From add30eda55ef78b12aeccb459d6c976090c51758 Mon Sep 17 00:00:00 2001 From: Ben Zuill-Smith Date: Fri, 1 May 2015 10:36:46 -0700 Subject: [PATCH] Updated tests. Browserified DxfParser. --- dist/dxf-parser.js | 195 +++++++++++++++++++++------- lib/DxfParser.js | 10 +- test/DxfParser.test.js | 39 ++++-- test/data/blocks.expected.json | 1 + test/data/blocks.json | 3 - test/data/layer-table.expected.json | 16 +++ test/data/ltype-table.expected.json | 114 ++++++++++++++++ test/data/tables.parser.out | 110 ---------------- 8 files changed, 315 insertions(+), 173 deletions(-) create mode 100644 test/data/blocks.expected.json delete mode 100644 test/data/blocks.json create mode 100644 test/data/layer-table.expected.json create mode 100644 test/data/ltype-table.expected.json delete mode 100644 test/data/tables.parser.out diff --git a/dist/dxf-parser.js b/dist/dxf-parser.js index bb95e68..ffdcd43 100644 --- a/dist/dxf-parser.js +++ b/dist/dxf-parser.js @@ -392,8 +392,8 @@ var DxfArrayScanner = require('./DxfArrayScanner.js'), var log = require('loglevel'); //log.setLevel('trace'); -//log.setLevel('debug'); -log.setLevel('info'); +log.setLevel('debug'); +//log.setLevel('info'); //log.setLevel('warn'); //log.setLevel('error'); //log.setLevel('silent'); @@ -428,7 +428,11 @@ DxfParser.prototype.parseStream = function(stream, done) { } function onEnd() { - var dxf = self._parse(dxfString); + try { + var dxf = self._parse(dxfString); + }catch(err) { + return done(err); + } done(null, dxf); } @@ -638,13 +642,11 @@ DxfParser.prototype._parse = function(dxfString) { if(groupIs(0, 'TABLE')) { curr = scanner.next(); - if(groupIs(2, 'LAYER')) { - log.debug('LayerTable {'); - tables.layer = parseLayerTable(); - log.debug('}') - } else if(groupIs(2, 'LTYPE')) { - log.debug('LType Table {'); - tables.lineType = parseLineTypeTable(); + + var tableDefinition = tableDefinitions[curr.value]; + if(tableDefinition) { + log.debug(curr.value + ' Table {'); + tables[tableDefinitions[curr.value].tableName] = parseTable(); log.debug('}'); } else { log.debug('Unhandled Table ' + curr.value); @@ -659,12 +661,16 @@ DxfParser.prototype._parse = function(dxfString) { return tables; }; - var parseLayerTable = function() { - var table = {}, + const END_OF_TABLE_VALUE = 'ENDTAB'; + + var parseTable = function() { + var tableDefinition = tableDefinitions[curr.value], + table = {}, expectedCount = 0, actualCount; + curr = scanner.next(); - while(!groupIs(0, 'ENDTAB')) { + while(!groupIs(0, END_OF_TABLE_VALUE)) { switch(curr.code) { case 5: @@ -689,8 +695,8 @@ DxfParser.prototype._parse = function(dxfString) { curr = scanner.next(); break; case 0: - if(curr.value === 'LAYER') { - table.layers = parseLayers(); + if(curr.value === tableDefinition.dxfSymbolName) { + table[tableDefinition.tableRecordsProperty] = tableDefinition.parseTableRecords(); } else { logUnhandledGroup(curr); curr = scanner.next(); @@ -701,58 +707,138 @@ DxfParser.prototype._parse = function(dxfString) { curr = scanner.next(); } } - actualCount = Object.keys(table.layers).length; - if(expectedCount !== actualCount) log.warn('Parsed ' + actualCount + ' LAYER\'s but expected ' + expectedCount); + var tableRecords = table[tableDefinition.tableRecordsProperty]; + console.error(typeof(tableRecords)); + if(tableRecords) { + if(tableRecords.constructor === Array){ + actualCount = tableRecords.length; + } else if(typeof(tableRecords) === 'object') { + actualCount = Object.keys(tableRecords).length; + } + if(expectedCount !== actualCount) log.warn('Parsed ' + actualCount + ' ' + tableDefinition.dxfSymbolName + '\'s but expected ' + expectedCount); + } curr = scanner.next(); return table; }; - var parseLineTypeTable = function() { - var table = {}, - expectedCount = 0, - actualCount; + var parseViewPortRecords = function() { + var viewPorts = [], // Multiple table entries may have the same name indicating a multiple viewport configuration + viewPort = {}; + + log.debug('ViewPort {'); curr = scanner.next(); - while(!groupIs(0, 'ENDTAB')) { + while(!groupIs(0, END_OF_TABLE_VALUE)) { switch(curr.code) { - case 5: - table.handle = curr.value; + case 2: // layer name + viewPort.name = curr.value; curr = scanner.next(); break; - case 330: - table.ownerHandle = curr.value; + case 10: + viewPort.lowerLeftCorner = parsePoint(); + break; + case 11: + viewPort.upperRightCorner = parsePoint(); + break; + case 12: + viewPort.center = parsePoint(); + break; + case 13: + viewPort.snapBasePoint = parsePoint(); + break; + case 14: + viewPort.snapSpacing = parsePoint(); + break; + case 15: + viewPort.gridSpacing = parsePoint(); + break; + case 16: + viewPort.viewDirectionFromTarget = parsePoint(); + break; + case 17: + viewPort.viewTarget = parsePoint(); + break; + case 42: + viewPort.lensLength = curr.value; curr = scanner.next(); break; - case 100: - if(curr.value === 'AcDbSymbolTable') { - // ignore - curr = scanner.next(); - }else{ - logUnhandledGroup(curr); - curr = scanner.next(); - } + case 43: + viewPort.frontClippingPlane = curr.value; + curr = scanner.next(); break; - case 70: - expectedCount = curr.value; + case 44: + viewPort.backClippingPlane = curr.value; + curr = scanner.next(); + break; + case 45: + viewPort.viewHeight = curr.value; + curr = scanner.next(); + break; + case 50: + viewPort.snapRotationAngle = curr.value; + curr = scanner.next(); + break; + case 51: + viewPort.viewTwistAngle = curr.value; + curr = scanner.next(); + break; + case 110: + viewPort.ucsOrigin = parsePoint(); + break; + case 111: + viewPort.ucsXAxis = parsePoint(); + break; + case 112: + viewPort.ucsYAxis = parsePoint(); + break; + case 110: + viewPort.ucsOrigin = parsePoint(); + break; + case 281: + viewPort.renderMode = curr.value; + curr = scanner.next(); + break; + case 281: + // 0 is one distant light, 1 is two distant lights + viewPort.defaultLightingType = curr.value; + curr = scanner.next(); + break; + case 292: + viewPort.defaultLightingOn = curr.value; + curr = scanner.next(); + break; + case 330: + viewPort.ownerHandle = curr.value; + curr = scanner.next(); + break; + case 63: + case 421: + case 431: + viewPort.ambientColor = curr.value; curr = scanner.next(); break; case 0: - if(curr.value === 'LTYPE') { - table.lineTypes = parseLineTypes(); - } else { - logUnhandledGroup(curr); + // New ViewPort + if(curr.value === 'VPORT') { + log.debug('}'); + viewPorts.push(viewPort); + log.debug('ViewPort {'); + viewPort = {}; curr = scanner.next(); } break; default: logUnhandledGroup(curr); curr = scanner.next(); + break; } } - actualCount = Object.keys(table.lineTypes).length; - if(expectedCount !== actualCount) log.warn('Parsed ' + actualCount + ' LTYPE\'s but expected ' + expectedCount); - curr = scanner.next(); - return table; + // Note: do not call scanner.next() here, + // parseTable() needs the current group + log.debug('}'); + viewPorts.push(viewPort); + + return viewPorts; }; var parseLineTypes = function() { @@ -852,6 +938,27 @@ DxfParser.prototype._parse = function(dxfString) { return layers; }; + var tableDefinitions = { + VPORT: { + tableRecordsProperty: 'viewPorts', + tableName: 'viewPort', + dxfSymbolName: 'VPORT', + parseTableRecords: parseViewPortRecords + }, + LTYPE: { + tableRecordsProperty: 'lineTypes', + tableName: 'lineType', + dxfSymbolName: 'LTYPE', + parseTableRecords: parseLineTypes + }, + LAYER: { + tableRecordsProperty: 'layers', + tableName: 'layer', + dxfSymbolName: 'LAYER', + parseTableRecords: parseLayers + } + }; + /** * Is called after the parser first reads the 0:ENTITIES group. The scanner * should be on the start of the first entity already. diff --git a/lib/DxfParser.js b/lib/DxfParser.js index 29cc908..da6eece 100644 --- a/lib/DxfParser.js +++ b/lib/DxfParser.js @@ -4,8 +4,8 @@ var DxfArrayScanner = require('./DxfArrayScanner.js'), var log = require('loglevel'); //log.setLevel('trace'); -log.setLevel('debug'); -//log.setLevel('info'); +//log.setLevel('debug'); +log.setLevel('info'); //log.setLevel('warn'); //log.setLevel('error'); //log.setLevel('silent'); @@ -40,7 +40,11 @@ DxfParser.prototype.parseStream = function(stream, done) { } function onEnd() { - var dxf = self._parse(dxfString); + try { + var dxf = self._parse(dxfString); + }catch(err) { + return done(err); + } done(null, dxf); } diff --git a/test/DxfParser.test.js b/test/DxfParser.test.js index bee600c..eb898e1 100644 --- a/test/DxfParser.test.js +++ b/test/DxfParser.test.js @@ -4,6 +4,7 @@ var should = require('should'); var path = require('path'); describe('Parser', function() { + it('should parse the dxf header variables into an object', function(done) { var file = fs.createReadStream(__dirname + '/data/header.dxf', { encoding: 'utf8' }); var parser = new DxfParser(); @@ -16,27 +17,36 @@ describe('Parser', function() { }); }); - it('should parse the dxf layers', function(done) { + var tables; + + it('should parse the tables section without error', function(done) { var file = fs.createReadStream(__dirname + '/data/tables.dxf', { encoding: 'utf8' }); var parser = new DxfParser(); parser.parseStream(file, function(err, result) { should.not.exist(err); - result.tables.layers.should.eql({ '0': { name: '0', color: 16777215 }, 'Layer 1': { name: 'Layer 1', color: 16777215}}); + tables = result.tables; done(); }); }); - it('should parse the dxf ltype table', function(done) { - var file = fs.createReadStream(__dirname + '/data/tables.dxf', { encoding: 'utf8' }); - var parser = new DxfParser(); + it('should parse the dxf layers', function() { + should.exist(tables); + tables.should.have.property('layer'); - parser.parseStream(file, function(err, result) { - should.not.exist(err); - var expected = fs.readFileSync(__dirname + '/data/tables.parser.out', {encoding: 'utf8'}) - result.tables.lineTypes.should.eql(JSON.parse(expected)); - done(); - }); + //fs.writeFileSync(__dirname + '/data/layer-table.actual.json', JSON.stringify(tables.layer, null, 2)); + var expected = fs.readFileSync(path.join(__dirname,'data','layer-table.expected.json'), {encoding: 'utf8'}); + tables.layer.should.eql(JSON.parse(expected)); + }); + + it('should parse the dxf ltype table', function() { + should.exist(tables); + tables.should.have.property('lineType'); + + //fs.writeFileSync(__dirname + '/data/ltype-table.actual.json', JSON.stringify(tables.lineType, null, 2)); + + var expected = fs.readFileSync(path.join(__dirname,'data','ltype-table.expected.json'), {encoding: 'utf8'}); + tables.lineType.should.eql(JSON.parse(expected)); }); it('should parse the BLOCKS section', function() { @@ -50,7 +60,10 @@ describe('Parser', function() { should.not.exist(err); } should.exist(dxf); - var expected = require('./data/blocks.json'); - dxf.should.eql(expected); + + //fs.writeFileSync(__dirname + '/data/blocks.actual.json', JSON.stringify(dxf, null, 2)); + + var expected = fs.readFileSync(path.join(__dirname,'data','blocks.expected.json'), {encoding: 'utf8'}); + dxf.should.eql(JSON.parse(expected)); }); }); \ No newline at end of file diff --git a/test/data/blocks.expected.json b/test/data/blocks.expected.json new file mode 100644 index 0000000..a7c5d32 --- /dev/null +++ b/test/data/blocks.expected.json @@ -0,0 +1 @@ +{"blocks":{"20":{"handle":"20","ownerHandle":"29F","layer":"0","name":"*Model_Space","position":{"x":0,"y":0,"z":0},"name2":"*Model_Space","xrefPath":"","entities":[],"paperSpace":true},"164":{"handle":"164","ownerHandle":"163","layer":"0","name":"_Oblique","position":{"x":0,"y":0,"z":0},"name2":"_Oblique","xrefPath":"","entities":[]},"1413":{"handle":"1413","ownerHandle":"1410","layer":"0","name":"027-853","position":{"x":0,"y":0,"z":0},"name2":"027-853","xrefPath":"","entities":[]},"1572":{"handle":"1572","ownerHandle":"1571","layer":"0","name":"*D7","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D7","xrefPath":"","entities":[{"type":"SOLID","points":[{"x":523.4720780981093,"y":336.5445861367825,"z":0},{"x":523.5554114314425,"y":336.5445861367825,"z":0},{"x":523.5137447647758,"y":336.7945861367825,"z":0},{"x":523.5137447647758,"y":336.7945861367825,"z":0}],"handle":"B2C7","ownerHandle":"1571","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":523.4720780981093,"y":334.5445861367825,"z":0},{"x":523.5554114314425,"y":334.5445861367825,"z":0},{"x":523.5137447647758,"y":334.2945861367825,"z":0},{"x":523.5137447647758,"y":334.2945861367825,"z":0}],"handle":"B2C8","ownerHandle":"1571","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B2C9","ownerHandle":"1571","layer":"FG-Dtl-Dim","position":{"x":523.2637447647757,"y":335.5445861367826,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2{\\H1.000000x;\\S1#2;}\""},{"type":"POINT","handle":"B2CA","ownerHandle":"1571","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":523.5137447647758,"y":336.7945861367825,"z":0}},{"type":"POINT","handle":"B2CB","ownerHandle":"1571","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":523.5137447647758,"y":334.2945861367825,"z":0}},{"type":"POINT","handle":"B2CC","ownerHandle":"1571","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":523.5137447647758,"y":334.2945861367825,"z":0}}]},"1588":{"handle":"1588","ownerHandle":"1587","layer":"0","name":"*D9","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D9","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":539.4426649206374,"y":317.8374602977892,"z":0},{"x":539.4426649206374,"y":315.8374602977892,"z":0}],"handle":"B2D5","ownerHandle":"1587","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":539.4009982539707,"y":317.8374602977892,"z":0},{"x":539.484331587304,"y":317.8374602977892,"z":0},{"x":539.4426649206374,"y":318.0874602977892,"z":0},{"x":539.4426649206374,"y":318.0874602977892,"z":0}],"handle":"B2D6","ownerHandle":"1587","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":539.4009982539707,"y":315.8374602977892,"z":0},{"x":539.484331587304,"y":315.8374602977892,"z":0},{"x":539.4426649206374,"y":315.5874602977892,"z":0},{"x":539.4426649206374,"y":315.5874602977892,"z":0}],"handle":"B2D7","ownerHandle":"1587","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B2D8","ownerHandle":"1587","layer":"FG-Dtl-Dim","position":{"x":539.1926649206372,"y":316.8374602977893,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2{\\H1.000000x;\\S1#2;}\""},{"type":"POINT","handle":"B2D9","ownerHandle":"1587","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":539.4426649206374,"y":318.0874602977892,"z":0}},{"type":"POINT","handle":"B2DA","ownerHandle":"1587","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":538.1023942530417,"y":315.5874602977892,"z":0}},{"type":"POINT","handle":"B2DB","ownerHandle":"1587","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":539.4426649206374,"y":315.5874602977892,"z":0}}]},"1626":{"handle":"1626","ownerHandle":"1625","layer":"0","name":"*D11","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D11","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":565.2066714625524,"y":330.5893676899463,"z":0},{"x":565.2066714625524,"y":328.9577210754922,"z":0}],"handle":"B2E6","ownerHandle":"1625","layer":"FG-Dtl-Dim"},{"type":"LINE","vertices":[{"x":559.8437504589006,"y":329.0827210754922,"z":0},{"x":564.9566714625524,"y":329.0827210754922,"z":0}],"handle":"B2E7","ownerHandle":"1625","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":559.8437504589006,"y":329.1243877421589,"z":0},{"x":559.8437504589006,"y":329.0410544088255,"z":0},{"x":559.5937504589007,"y":329.0827210754922,"z":0},{"x":559.5937504589007,"y":329.0827210754922,"z":0}],"handle":"B2E8","ownerHandle":"1625","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":564.9566714625524,"y":329.1243877421589,"z":0},{"x":564.9566714625524,"y":329.0410544088255,"z":0},{"x":565.2066714625524,"y":329.0827210754922,"z":0},{"x":565.2066714625524,"y":329.0827210754922,"z":0}],"handle":"B2E9","ownerHandle":"1625","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B2EA","ownerHandle":"1625","layer":"FG-Dtl-Dim","position":{"x":562.4002109607266,"y":329.2389710754922,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;DAYLIGHT OPENING"},{"type":"POINT","handle":"B2EB","ownerHandle":"1625","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":559.5937504589007,"y":330.7143676899463,"z":0}},{"type":"POINT","handle":"B2EC","ownerHandle":"1625","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":565.2066714625524,"y":330.7143676899463,"z":0}},{"type":"POINT","handle":"B2ED","ownerHandle":"1625","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":565.2066714625524,"y":329.0827210754922,"z":0}}]},"1656":{"handle":"1656","ownerHandle":"1655","layer":"0","name":"*D13","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D13","xrefPath":"","entities":[{"type":"SOLID","points":[{"x":565.4566714625524,"y":329.1243877421589,"z":0},{"x":565.4566714625524,"y":329.0410544088255,"z":0},{"x":565.2066714625524,"y":329.0827210754922,"z":0},{"x":565.2066714625524,"y":329.0827210754922,"z":0}],"handle":"B2F8","ownerHandle":"1655","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":567.4566714625524,"y":329.1243877421589,"z":0},{"x":567.4566714625524,"y":329.0410544088255,"z":0},{"x":567.7066714625524,"y":329.0827210754922,"z":0},{"x":567.7066714625524,"y":329.0827210754922,"z":0}],"handle":"B2F9","ownerHandle":"1655","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B2FA","ownerHandle":"1655","layer":"FG-Dtl-Dim","position":{"x":566.4566714625524,"y":329.3327210754922,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2{\\H1.000000x;\\S1#2;}\""},{"type":"POINT","handle":"B2FB","ownerHandle":"1655","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":565.2066714625524,"y":329.0827210754922,"z":0}},{"type":"POINT","handle":"B2FC","ownerHandle":"1655","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":567.7066714625524,"y":329.0827210754922,"z":0}},{"type":"POINT","handle":"B2FD","ownerHandle":"1655","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":567.7066714625524,"y":329.0827210754922,"z":0}}]},"1661":{"handle":"1661","ownerHandle":"1660","layer":"0","name":"*D14","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D14","xrefPath":"","entities":[{"type":"SOLID","points":[{"x":559.3437504589006,"y":329.1243877421589,"z":0},{"x":559.3437504589006,"y":329.0410544088256,"z":0},{"x":559.5937504589007,"y":329.0827210754923,"z":0},{"x":559.5937504589007,"y":329.0827210754923,"z":0}],"handle":"B2FF","ownerHandle":"1660","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":557.3437504589007,"y":329.1243877421589,"z":0},{"x":557.3437504589007,"y":329.0410544088256,"z":0},{"x":557.0937504589006,"y":329.0827210754923,"z":0},{"x":557.0937504589006,"y":329.0827210754923,"z":0}],"handle":"B300","ownerHandle":"1660","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B301","ownerHandle":"1660","layer":"FG-Dtl-Dim","position":{"x":558.3437504589007,"y":329.3327210754922,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2{\\H1.000000x;\\S1#2;}\""},{"type":"POINT","handle":"B302","ownerHandle":"1660","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":559.5937504589007,"y":329.0827210754923,"z":0}},{"type":"POINT","handle":"B303","ownerHandle":"1660","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":557.0937504589006,"y":329.0827210754923,"z":0}},{"type":"POINT","handle":"B304","ownerHandle":"1660","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":557.0937504589006,"y":329.0827210754923,"z":0}}]},"2128":{"handle":"2128","ownerHandle":"2127","layer":"0","name":"*D32","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D32","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":539.4426649206374,"y":319.8374602977894,"z":0},{"x":539.4426649206374,"y":318.3374602977892,"z":0}],"handle":"BD91","ownerHandle":"2127","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":539.4009982539707,"y":319.8374602977894,"z":0},{"x":539.484331587304,"y":319.8374602977894,"z":0},{"x":539.4426649206374,"y":320.0874602977894,"z":0},{"x":539.4426649206374,"y":320.0874602977894,"z":0}],"handle":"BD92","ownerHandle":"2127","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":539.4009982539707,"y":318.3374602977892,"z":0},{"x":539.484331587304,"y":318.3374602977892,"z":0},{"x":539.4426649206374,"y":318.0874602977892,"z":0},{"x":539.4426649206374,"y":318.0874602977892,"z":0}],"handle":"BD93","ownerHandle":"2127","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"BD94","ownerHandle":"2127","layer":"FG-Dtl-Dim","position":{"x":539.2864149206372,"y":319.0874602977894,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;D.L.O."},{"type":"POINT","handle":"BD95","ownerHandle":"2127","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":539.4426649206374,"y":320.0874602977894,"z":0}},{"type":"POINT","handle":"BD96","ownerHandle":"2127","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":538.1023942530417,"y":318.0874602977892,"z":0}},{"type":"POINT","handle":"BD97","ownerHandle":"2127","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":539.4426649206374,"y":318.0874602977892,"z":0}}]},"2269":{"handle":"2269","ownerHandle":"2268","layer":"0","name":"*U34","type":3,"position":{"x":0,"y":0,"z":0},"name2":"*U34","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":0.1875,"y":0,"z":0},{"x":-0.1875,"y":0,"z":0}],"handle":"226C","ownerHandle":"2268","layer":"0"},{"type":"LINE","vertices":[{"x":0,"y":0.1875,"z":0},{"x":0,"y":0.6811772682290212,"z":0}],"handle":"226F","ownerHandle":"2268","layer":"0"}]},"2957":{"handle":"2957","ownerHandle":"2956","layer":"0","name":"*D39","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D39","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":352.8510860704455,"y":518.0751418993036,"z":0},{"x":352.8510860704455,"y":517.5751418993036,"z":0}],"handle":"A760","ownerHandle":"2956","layer":"FG-Dim"},{"type":"LINE","vertices":[{"x":352.3510860704455,"y":520.5751418993036,"z":0},{"x":346.3510860704455,"y":520.5751418993036,"z":0}],"handle":"A761","ownerHandle":"2956","layer":"FG-Dim"},{"type":"LINE","vertices":[{"x":352.8510860704455,"y":520.5751418993036,"z":0},{"x":375.3618003561598,"y":520.5751418993036,"z":0}],"handle":"A762","ownerHandle":"2956","layer":"FG-Dim"},{"type":"LINE","vertices":[{"x":352.3510860704455,"y":520.5751418993036,"z":0},{"x":352.8510860704455,"y":520.5751418993036,"z":0}],"handle":"A763","ownerHandle":"2956","layer":"FG-Dim"},{"type":"MTEXT","handle":"A766","ownerHandle":"2956","layer":"FG-Dim","position":{"x":370.1064432133026,"y":526.5751418993036,"z":0},"height":4.5,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;{\\H1.000000x;\\S1#2;}\""},{"type":"POINT","handle":"A767","ownerHandle":"2956","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":352.3510860704455,"y":521.0751418993035,"z":0}},{"type":"POINT","handle":"A768","ownerHandle":"2956","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":352.8510860704455,"y":521.0751418993035,"z":0}},{"type":"POINT","handle":"A769","ownerHandle":"2956","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":352.8510860704455,"y":520.5751418993036,"z":0}}]},"3203":{"handle":"3203","ownerHandle":"3201","layer":"0","name":"Detail Title","type":2,"position":{"x":0,"y":0,"z":0},"name2":"Detail Title","xrefPath":"","entities":[{"type":"TEXT","handle":"3205","ownerHandle":"3201","layer":"0","startPoint":{"x":0.0411014722480356,"y":-0.179637496905297,"z":0},"textHeight":0.125,"text":"Detail","endPoint":{"x":0.0411014722480356,"y":-0.117137496905297,"z":0},"valign":2},{"type":"LINE","vertices":[{"x":0.8749999999999982,"y":-0.609274993810594,"z":0},{"x":0.8749999999999982,"y":-0.2342749938105939,"z":0}],"handle":"3206","ownerHandle":"3201","layer":"0"},{"type":"LINE","vertices":[{"x":0.8749999999999982,"y":-0.421774993810594,"z":0},{"x":2.374999999999997,"y":-0.421774993810594,"z":0}],"handle":"3207","ownerHandle":"3201","layer":"0"},{"type":"TEXT","handle":"3208","ownerHandle":"3201","layer":"0","startPoint":{"x":0.898554014920327,"y":-0.5671272951337798,"z":0},"textHeight":0.09375,"text":"SCALE:"},{"type":"TEXT","handle":"3209","ownerHandle":"3201","layer":"0","startPoint":{"x":0.898554014920327,"y":-0.3796272951337798,"z":0},"textHeight":0.09375,"text":"ARCH. REF."},{"type":"LWPOLYLINE","vertices":[{"x":2.374999999999998,"y":-0.609274993810594},{"x":2.374999999999998,"y":0},{"x":0,"y":0},{"x":-1.8e-15,"y":-0.609274993810594}],"handle":"320A","ownerHandle":"3201","layer":"0","shape":true}]},"3340":{"handle":"3340","ownerHandle":"333F","layer":"0","name":"_OPEN","position":{"x":0,"y":0,"z":0},"name2":"_OPEN","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":0,"y":0,"z":0},{"x":-1,"y":-0.1666666666666666,"z":0}],"handle":"3342","ownerHandle":"333F","layer":"0","lineType":"ByBlock","colorIndex":0,"color":0},{"type":"LINE","vertices":[{"x":0,"y":0,"z":0},{"x":-1,"y":0,"z":0}],"handle":"3343","ownerHandle":"333F","layer":"0","lineType":"ByBlock","colorIndex":0,"color":0}]},"3346":{"handle":"3346","ownerHandle":"3345","layer":"0","name":"_Open30","position":{"x":0,"y":0,"z":0},"name2":"_Open30","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":0,"y":0,"z":0},{"x":-1,"y":-0.26794919,"z":0}],"handle":"3348","ownerHandle":"3345","layer":"0","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":0,"y":0,"z":0},{"x":-1,"y":0,"z":0}],"handle":"3349","ownerHandle":"3345","layer":"0","colorIndex":0,"color":0,"lineweight":-2}]},"3617":{"handle":"3617","ownerHandle":"3616","layer":"0","name":"*D58","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D58","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.8441823997,"y":348.8159732686962,"z":0},{"x":649.8441823997,"y":349.8076671349064,"z":0}],"handle":"B3CC","ownerHandle":"3616","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":649.5711823994656,"y":349.7476671347871,"z":0},{"x":649.453182399231,"y":349.7476671347871,"z":0}],"handle":"B3CD","ownerHandle":"3616","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.9621823999344,"y":349.7476671347871,"z":0},{"x":650.080182400169,"y":349.7476671347871,"z":0}],"handle":"B3CE","ownerHandle":"3616","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B3D1","ownerHandle":"3616","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.3214324006485,"y":349.7476671347871,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.155"},{"type":"POINT","handle":"B3D2","ownerHandle":"3616","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.6891823997,"y":348.5609732684974,"z":0}},{"type":"POINT","handle":"B3D3","ownerHandle":"3616","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.8441823997,"y":348.7159732684975,"z":0}},{"type":"POINT","handle":"B3D4","ownerHandle":"3616","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.8441823997,"y":349.7476671347871,"z":0}}]},"3624":{"handle":"3624","ownerHandle":"3623","layer":"0","name":"*D59","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D59","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.3009590949966,"y":348.8159732686962,"z":0},{"x":650.3009590949966,"y":349.4030432438385,"z":0}],"handle":"B3D6","ownerHandle":"3623","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":649.9621823999344,"y":349.3430432437192,"z":0},{"x":650.1829590947622,"y":349.3430432437192,"z":0}],"handle":"B3D7","ownerHandle":"3623","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B3DA","ownerHandle":"3623","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.0725707473483,"y":349.3430432437192,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.457"},{"type":"POINT","handle":"B3DB","ownerHandle":"3623","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.8441823997,"y":348.7159732684975,"z":0}},{"type":"POINT","handle":"B3DC","ownerHandle":"3623","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.3009590949966,"y":348.7159732684975,"z":0}},{"type":"POINT","handle":"B3DD","ownerHandle":"3623","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.3009590949966,"y":349.3430432437192,"z":0}}]},"3630":{"handle":"3630","ownerHandle":"362F","layer":"0","name":"*D60","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D60","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.5041823996826,"y":347.3209732684974,"z":0},{"x":653.1640136387163,"y":347.3209732684974,"z":0}],"handle":"B3DF","ownerHandle":"362F","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.1940136387265,"y":347.6499732685177,"z":0},{"x":653.1940136387265,"y":347.708973268538,"z":0}],"handle":"B3E0","ownerHandle":"362F","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.1940136387265,"y":347.261973268477,"z":0},{"x":653.1940136387265,"y":347.2029732684568,"z":0}],"handle":"B3E1","ownerHandle":"362F","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B3E4","ownerHandle":"362F","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.1940136387263,"y":347.5112466694342,"z":0},"height":0.0575000000197755,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.270"},{"type":"POINT","handle":"B3E5","ownerHandle":"362F","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5541823996999,"y":347.5909732684974,"z":0}},{"type":"POINT","handle":"B3E6","ownerHandle":"362F","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5541823996999,"y":347.3209732684974,"z":0}},{"type":"POINT","handle":"B3E7","ownerHandle":"362F","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.1940136387265,"y":347.3209732684974,"z":0}}]},"3658":{"handle":"3658","ownerHandle":"3657","layer":"0","name":"*D63","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D63","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.0649109722774,"y":348.2509732684974,"z":0},{"x":653.174082647307,"y":348.2509732684974,"z":0}],"handle":"B3FE","ownerHandle":"3657","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.1440826472967,"y":348.3099732685178,"z":0},{"x":653.1440826472967,"y":348.368973268538,"z":0}],"handle":"B3FF","ownerHandle":"3657","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.1440826472967,"y":348.0669732684771,"z":0},{"x":653.1440826472967,"y":348.0079732684568,"z":0}],"handle":"B400","ownerHandle":"3657","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.1440826472967,"y":348.0079732684568,"z":0},{"x":653.0850826472764,"y":348.0079732684568,"z":0}],"handle":"B401","ownerHandle":"3657","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B404","ownerHandle":"3657","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":652.9644576472348,"y":348.0079732684568,"z":0},"height":0.0575000000197755,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.125"},{"type":"POINT","handle":"B405","ownerHandle":"3657","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.01491097226,"y":348.1259732684975,"z":0}},{"type":"POINT","handle":"B406","ownerHandle":"3657","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.01491097226,"y":348.2509732684974,"z":0}},{"type":"POINT","handle":"B407","ownerHandle":"3657","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.1440826472967,"y":348.2509732684974,"z":0}}]},"3666":{"handle":"3666","ownerHandle":"3665","layer":"0","name":"*D64","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D64","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.7491823997171,"y":348.2509732684974,"z":0},{"x":654.254210874781,"y":348.2509732684974,"z":0}],"handle":"B409","ownerHandle":"3665","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.2242108747708,"y":347.3799732685177,"z":0},{"x":654.2242108747708,"y":347.7415515210174,"z":0}],"handle":"B40A","ownerHandle":"3665","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.2242108747708,"y":348.1919732684771,"z":0},{"x":654.2242108747708,"y":347.8390515210509,"z":0}],"handle":"B40B","ownerHandle":"3665","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B40E","ownerHandle":"3665","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.2242108747707,"y":347.7903015210342,"z":0},"height":0.0575000000197755,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.930"},{"type":"POINT","handle":"B40F","ownerHandle":"3665","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5541823996999,"y":347.3209732684974,"z":0}},{"type":"POINT","handle":"B410","ownerHandle":"3665","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6991823996999,"y":348.2509732684974,"z":0}},{"type":"POINT","handle":"B411","ownerHandle":"3665","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.2242108747708,"y":348.2509732684974,"z":0}}]},"3673":{"handle":"3673","ownerHandle":"3672","layer":"0","name":"*D65","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D65","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8846493343501,"y":347.3876616719205,"z":0},{"x":653.9436493344786,"y":347.3876616719205,"z":0}],"handle":"B413","ownerHandle":"3672","layer":"FG-Dim","lineweight":-2},{"type":"MTEXT","handle":"B415","ownerHandle":"3672","layer":"FG-Dim","position":{"x":654.0738576680955,"y":347.3876616719205,"z":0},"height":0.0575000001252384,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R.270"},{"type":"POINT","handle":"B416","ownerHandle":"3672","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7841465035569,"y":347.4494935493237,"z":0}},{"type":"POINT","handle":"B417","ownerHandle":"3672","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5541823997002,"y":347.5909732684973,"z":0}}]},"3687":{"handle":"3687","ownerHandle":"3686","layer":"0","name":"*D67","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D67","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8141823999431,"y":348.7159732684975,"z":0},{"x":654.4384736416246,"y":348.7159732684975,"z":0}],"handle":"B421","ownerHandle":"3686","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.4084736414786,"y":347.3799732687845,"z":0},{"x":654.4084736414786,"y":348.0146557172704,"z":0}],"handle":"B422","ownerHandle":"3686","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.4084736414786,"y":348.6569732682104,"z":0},{"x":654.4084736414786,"y":348.1121557177448,"z":0}],"handle":"B423","ownerHandle":"3686","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B426","ownerHandle":"3686","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.4084736414784,"y":348.0634057175077,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.395"},{"type":"POINT","handle":"B427","ownerHandle":"3686","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5541823996999,"y":347.3209732684974,"z":0}},{"type":"POINT","handle":"B428","ownerHandle":"3686","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7641823996998,"y":348.7159732684975,"z":0}},{"type":"POINT","handle":"B429","ownerHandle":"3686","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.4084736414786,"y":348.7159732684975,"z":0}}]},"3694":{"handle":"3694","ownerHandle":"3693","layer":"0","name":"*D68","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D68","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.7491823999432,"y":348.5609732684974,"z":0},{"x":654.2542108749167,"y":348.5609732684974,"z":0}],"handle":"B42B","ownerHandle":"3693","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.2242108747708,"y":348.3099732687845,"z":0},{"x":654.2242108747708,"y":348.3455033181723,"z":0}],"handle":"B42C","ownerHandle":"3693","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.2242108747708,"y":348.5019732682104,"z":0},{"x":654.2242108747708,"y":348.4430033186467,"z":0}],"handle":"B42D","ownerHandle":"3693","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B430","ownerHandle":"3693","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.2242108747707,"y":348.3942533184097,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.310"},{"type":"POINT","handle":"B431","ownerHandle":"3693","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6991823996999,"y":348.2509732684974,"z":0}},{"type":"POINT","handle":"B432","ownerHandle":"3693","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6991823996999,"y":348.5609732684974,"z":0}},{"type":"POINT","handle":"B433","ownerHandle":"3693","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.2242108747708,"y":348.5609732684974,"z":0}}]},"3707":{"handle":"3707","ownerHandle":"3706","layer":"0","name":"*D77","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D77","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.3557849402504,"y":347.7651035764724,"z":0},{"x":650.7646923658627,"y":348.0011863887232,"z":0}],"handle":"B483","ownerHandle":"3706","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"ARC","handle":"B484","ownerHandle":"3706","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2,"center":{"x":650.0541823996996,"y":347.5909732684974,"z":0},"radius":0.7604262403327394,"startAngle":5.914918774684569,"angleLength":0.28231298336862665,"endAngle":6.197231758053196},{"type":"ARC","handle":"B485","ownerHandle":"3706","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2,"center":{"x":650.0541823996996,"y":347.5909732684974,"z":0},"radius":0.7604262403327394,"startAngle":0.17142575351662748,"angleLength":0.19684077897822672,"endAngle":0.3682665324948542},{"type":"MTEXT","handle":"B488","ownerHandle":"3706","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.8139257744143,"y":347.6231923864878,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;60�"},{"type":"POINT","handle":"B489","ownerHandle":"3706","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.8030560567732,"y":347.4589266376136,"z":0}},{"type":"POINT","handle":"B48A","ownerHandle":"3706","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.2691823996998,"y":347.4668429606217,"z":0}},{"type":"POINT","handle":"B48B","ownerHandle":"3706","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.1511772449236,"y":347.6469732684975,"z":0}},{"type":"POINT","handle":"B48C","ownerHandle":"3706","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.2691823996998,"y":347.7151035763731,"z":0}},{"type":"POINT","handle":"B48D","ownerHandle":"3706","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.1511772449238,"y":347.5349732684974,"z":0}}]},"3716":{"handle":"3716","ownerHandle":"3715","layer":"0","name":"*D78","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D78","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.2461644467433,"y":348.179008524893,"z":0},{"x":650.1281644465088,"y":348.179008524893,"z":0}],"handle":"B48F","ownerHandle":"3715","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B491","ownerHandle":"3715","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.8102477792106,"y":348.179008524893,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;?0.224"},{"type":"LINE","vertices":[{"x":649.9641823995213,"y":347.5909732684976,"z":0},{"x":650.1441823998791,"y":347.5909732684976,"z":0}],"handle":"B492","ownerHandle":"3715","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":650.0541823997003,"y":347.5009732683187,"z":0},{"x":650.0541823997003,"y":347.6809732686764,"z":0}],"handle":"B493","ownerHandle":"3715","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"POINT","handle":"B494","ownerHandle":"3715","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.088942578272,"y":347.6974426537012,"z":0}},{"type":"POINT","handle":"B495","ownerHandle":"3715","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.0194222211284,"y":347.4845038832939,"z":0}}]},"3739":{"handle":"3739","ownerHandle":"3738","layer":"0","name":"*D81","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D81","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.4885706572148,"y":348.6859732684974,"z":0},{"x":653.5061071352114,"y":348.6859732684974,"z":0}],"handle":"B4AB","ownerHandle":"3738","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.5361071357266,"y":348.5019732674842,"z":0},{"x":653.5361071357266,"y":348.4429732664708,"z":0}],"handle":"B4AC","ownerHandle":"3738","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.5361071357266,"y":348.7449732695107,"z":0},{"x":653.5361071357266,"y":348.803973270524,"z":0}],"handle":"B4AD","ownerHandle":"3738","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B4B0","ownerHandle":"3738","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.5361071357264,"y":348.6234732684975,"z":0},"height":0.0575000009875156,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.125"},{"type":"POINT","handle":"B4B1","ownerHandle":"3738","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5385706580735,"y":348.5609732684974,"z":0}},{"type":"POINT","handle":"B4B2","ownerHandle":"3738","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5385706580735,"y":348.6859732684974,"z":0}},{"type":"POINT","handle":"B4B3","ownerHandle":"3738","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5361071357266,"y":348.6859732684974,"z":0}}]},"3746":{"handle":"3746","ownerHandle":"3745","layer":"0","name":"*D82","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D82","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.3009590949966,"y":348.8159732686962,"z":0},{"x":650.3009590949966,"y":349.6091928571908,"z":0}],"handle":"B4B5","ownerHandle":"3745","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":650.1829590947622,"y":349.5491928570715,"z":0},{"x":650.0649590945275,"y":349.5491928570715,"z":0}],"handle":"B4B6","ownerHandle":"3745","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":650.8939590952311,"y":349.5491928570715,"z":0},{"x":651.0684666144315,"y":349.5491928570715,"z":0}],"handle":"B4B7","ownerHandle":"3745","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B4BA","ownerHandle":"3745","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.3288832816157,"y":349.5491928570715,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.475"},{"type":"POINT","handle":"B4BB","ownerHandle":"3745","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.7759590949966,"y":348.2509732684974,"z":0}},{"type":"POINT","handle":"B4BC","ownerHandle":"3745","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.3009590949966,"y":348.7159732684975,"z":0}},{"type":"POINT","handle":"B4BD","ownerHandle":"3745","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.3009590949966,"y":349.5491928570715,"z":0}}]},"4351":{"handle":"4351","ownerHandle":"4350","layer":"0","name":"SYM","position":{"x":0,"y":0,"z":0},"name2":"SYM","xrefPath":"","entities":[]},"4427":{"handle":"4427","ownerHandle":"4426","layer":"0","name":"*D86","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D86","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.0640686763782,"y":343.6882595970946,"z":0},{"x":654.0640686763782,"y":344.4999629202838,"z":0}],"handle":"B4D3","ownerHandle":"4426","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":649.7870686766126,"y":344.4399629201645,"z":0},{"x":651.8398548670258,"y":344.4399629201645,"z":0}],"handle":"B4D4","ownerHandle":"4426","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.9460686761437,"y":344.4399629201645,"z":0},{"x":652.3798548680988,"y":344.4399629201645,"z":0}],"handle":"B4D5","ownerHandle":"4426","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B4D8","ownerHandle":"4426","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.1098548675624,"y":344.4399629201645,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;4.395"},{"type":"POINT","handle":"B4D9","ownerHandle":"4426","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.6690686763782,"y":343.4632595968957,"z":0}},{"type":"POINT","handle":"B4DA","ownerHandle":"4426","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.0640686763782,"y":343.5882595968958,"z":0}},{"type":"POINT","handle":"B4DB","ownerHandle":"4426","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.0640686763782,"y":344.4399629201645,"z":0}}]},"4434":{"handle":"4434","ownerHandle":"4433","layer":"0","name":"*D87","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D87","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.9840686761794,"y":341.3982595968958,"z":0},{"x":648.1390830541623,"y":341.3982595968958,"z":0}],"handle":"B4DD","ownerHandle":"4433","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":648.1990830542813,"y":343.5302595966612,"z":0},{"x":648.1990830542813,"y":342.4136730334506,"z":0}],"handle":"B4DE","ownerHandle":"4433","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":648.1990830542813,"y":341.5162595971303,"z":0},{"x":648.1990830542813,"y":342.2186730330631,"z":0}],"handle":"B4DF","ownerHandle":"4433","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B4E2","ownerHandle":"4433","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.1990830542813,"y":342.3161730332569,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2.250"},{"type":"POINT","handle":"B4E3","ownerHandle":"4433","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.0840686763783,"y":343.6482595968957,"z":0}},{"type":"POINT","handle":"B4E4","ownerHandle":"4433","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.0840686763783,"y":341.3982595968958,"z":0}},{"type":"POINT","handle":"B4E5","ownerHandle":"4433","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.1990830542813,"y":341.3982595968958,"z":0}}]},"4441":{"handle":"4441","ownerHandle":"4440","layer":"0","name":"*D88","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D88","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.0840686763783,"y":341.298259596697,"z":0},{"x":650.0840686763783,"y":340.9145720624229,"z":0}],"handle":"B4E7","ownerHandle":"4440","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":650.2020686766127,"y":340.9745720625422,"z":0},{"x":650.3200686768472,"y":340.9745720625422,"z":0}],"handle":"B4E8","ownerHandle":"4440","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.8110686761438,"y":340.9745720625422,"z":0},{"x":649.6930686759092,"y":340.9745720625422,"z":0}],"handle":"B4E9","ownerHandle":"4440","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B4EC","ownerHandle":"4440","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.4518186754296,"y":340.9745720625422,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.155"},{"type":"POINT","handle":"B4ED","ownerHandle":"4440","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.9290686763782,"y":341.5532595968957,"z":0}},{"type":"POINT","handle":"B4EE","ownerHandle":"4440","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.0840686763783,"y":341.3982595968958,"z":0}},{"type":"POINT","handle":"B4EF","ownerHandle":"4440","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.0840686763783,"y":340.9745720625422,"z":0}}]},"4468":{"handle":"4468","ownerHandle":"4467","layer":"0","name":"*D91","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D91","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.1990686763781,"y":341.3782595966524,"z":0},{"x":650.1990686763781,"y":341.1206905736019,"z":0}],"handle":"B505","ownerHandle":"4467","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":650.2580686766653,"y":341.1506905737478,"z":0},{"x":650.3170686769524,"y":341.1506905737478,"z":0}],"handle":"B506","ownerHandle":"4467","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":650.1100686760913,"y":341.1506905737478,"z":0},{"x":650.051068675804,"y":341.1506905737478,"z":0}],"handle":"B507","ownerHandle":"4467","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B50A","ownerHandle":"4467","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":649.9304436752172,"y":341.1506905737478,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.030"},{"type":"POINT","handle":"B50B","ownerHandle":"4467","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.1690686763782,"y":341.3982595968958,"z":0}},{"type":"POINT","handle":"B50C","ownerHandle":"4467","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.1990686763781,"y":341.4282595968957,"z":0}},{"type":"POINT","handle":"B50D","ownerHandle":"4467","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.1990686763781,"y":341.1506905737478,"z":0}}]},"4475":{"handle":"4475","ownerHandle":"4474","layer":"0","name":"*D92","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D92","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.3890686763782,"y":341.3782595966524,"z":0},{"x":650.3890686763782,"y":340.983252589781,"z":0}],"handle":"B50F","ownerHandle":"4474","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":650.4480686766653,"y":341.0132525899269,"z":0},{"x":650.5070686769524,"y":341.0132525899269,"z":0}],"handle":"B510","ownerHandle":"4474","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":650.1400686760912,"y":341.0132525899269,"z":0},{"x":650.0810686758041,"y":341.0132525899269,"z":0}],"handle":"B511","ownerHandle":"4474","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B514","ownerHandle":"4474","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":649.9652353419071,"y":341.0132525899269,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.190"},{"type":"POINT","handle":"B515","ownerHandle":"4474","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.1990686763781,"y":341.4282595968957,"z":0}},{"type":"POINT","handle":"B516","ownerHandle":"4474","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.3890686763782,"y":341.4282595968957,"z":0}},{"type":"POINT","handle":"B517","ownerHandle":"4474","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.3890686763782,"y":341.0132525899269,"z":0}}]},"4482":{"handle":"4482","ownerHandle":"4481","layer":"0","name":"*D93","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D93","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.4190686763783,"y":341.3482595966524,"z":0},{"x":650.4190686763783,"y":341.1206905736019,"z":0}],"handle":"B519","ownerHandle":"4481","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":650.3300686760913,"y":341.1506905737478,"z":0},{"x":650.2710686758041,"y":341.1506905737478,"z":0}],"handle":"B51A","ownerHandle":"4481","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":650.4780686766653,"y":341.1506905737478,"z":0},{"x":650.5370686769523,"y":341.1506905737478,"z":0}],"handle":"B51B","ownerHandle":"4481","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B51E","ownerHandle":"4481","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":650.6576936775393,"y":341.1506905737478,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.030"},{"type":"POINT","handle":"B51F","ownerHandle":"4481","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.3890686763782,"y":341.4282595968957,"z":0}},{"type":"POINT","handle":"B520","ownerHandle":"4481","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.4190686763783,"y":341.3982595968958,"z":0}},{"type":"POINT","handle":"B521","ownerHandle":"4481","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.4190686763783,"y":341.1506905737478,"z":0}}]},"4500":{"handle":"4500","ownerHandle":"44FF","layer":"0","name":"*D103","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D103","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.0390686765769,"y":341.5532595968957,"z":0},{"x":655.1143033132454,"y":341.5532595968957,"z":0}],"handle":"B57B","ownerHandle":"44FF","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":655.0543033131263,"y":343.3752595966613,"z":0},{"x":655.0543033131263,"y":342.3764289997324,"z":0}],"handle":"B57C","ownerHandle":"44FF","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.0543033131263,"y":341.6712595971302,"z":0},{"x":655.0543033131263,"y":342.1814289993449,"z":0}],"handle":"B57D","ownerHandle":"44FF","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B580","ownerHandle":"44FF","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":655.0543033131262,"y":342.2789289995387,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.940"},{"type":"POINT","handle":"B581","ownerHandle":"44FF","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.9390686763782,"y":343.4932595968958,"z":0}},{"type":"POINT","handle":"B582","ownerHandle":"44FF","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.9390686763782,"y":341.5532595968957,"z":0}},{"type":"POINT","handle":"B583","ownerHandle":"44FF","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":655.0543033131263,"y":341.5532595968957,"z":0}}]},"4527":{"handle":"4527","ownerHandle":"4526","layer":"0","name":"*D106","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D106","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.9746531486466,"y":342.6032595968957,"z":0},{"x":649.9726107055924,"y":342.6032595968957,"z":0}],"handle":"B599","ownerHandle":"4526","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":649.9426107054464,"y":342.3842595966087,"z":0},{"x":649.9426107054464,"y":342.3252595963216,"z":0}],"handle":"B59A","ownerHandle":"4526","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.9426107054464,"y":342.6622595971828,"z":0},{"x":649.9426107054464,"y":342.8669385563146,"z":0}],"handle":"B59B","ownerHandle":"4526","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.9426107054464,"y":342.8669385563146,"z":0},{"x":650.0016107057335,"y":342.8669385563146,"z":0}],"handle":"B59C","ownerHandle":"4526","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B59F","ownerHandle":"4526","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":650.1174440396303,"y":342.8669385563147,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.160"},{"type":"POINT","handle":"B5A0","ownerHandle":"4526","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.9246531484033,"y":342.4432595968958,"z":0}},{"type":"POINT","handle":"B5A1","ownerHandle":"4526","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.9246531484033,"y":342.6032595968957,"z":0}},{"type":"POINT","handle":"B5A2","ownerHandle":"4526","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.9426107054464,"y":342.6032595968957,"z":0}}]},"4535":{"handle":"4535","ownerHandle":"4534","layer":"0","name":"*D107","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D107","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.6690686763782,"y":343.0632595966525,"z":0},{"x":649.6690686763782,"y":343.0539045994937,"z":0}],"handle":"B5A4","ownerHandle":"4534","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":649.6100686760911,"y":343.0839045996397,"z":0},{"x":649.551068675804,"y":343.0839045996397,"z":0}],"handle":"B5A5","ownerHandle":"4534","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.8880686766653,"y":343.0839045996397,"z":0},{"x":649.9470686769523,"y":343.0839045996397,"z":0}],"handle":"B5A6","ownerHandle":"4534","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B5A9","ownerHandle":"4534","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":650.0629020108493,"y":343.0839045996397,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.160"},{"type":"POINT","handle":"B5AA","ownerHandle":"4534","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.8290686763783,"y":343.1132595968958,"z":0}},{"type":"POINT","handle":"B5AB","ownerHandle":"4534","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.6690686763782,"y":343.1132595968958,"z":0}},{"type":"POINT","handle":"B5AC","ownerHandle":"4534","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.6690686763782,"y":343.0839045996397,"z":0}}]},"4542":{"handle":"4542","ownerHandle":"4541","layer":"0","name":"*D108","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D108","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.649068676135,"y":341.5532595968957,"z":0},{"x":649.4085599070728,"y":341.5532595968957,"z":0}],"handle":"B5AE","ownerHandle":"4541","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":649.4385599072187,"y":341.6122595971828,"z":0},{"x":649.4385599072187,"y":341.6712595974698,"z":0}],"handle":"B5AF","ownerHandle":"4541","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.4385599072187,"y":341.3392595966087,"z":0},{"x":649.4385599072187,"y":341.2802595963216,"z":0}],"handle":"B5B0","ownerHandle":"4541","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.4385599072187,"y":341.2802595963216,"z":0},{"x":649.3795599069317,"y":341.2802595963216,"z":0}],"handle":"B5B1","ownerHandle":"4541","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B5B4","ownerHandle":"4541","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":649.2589349063446,"y":341.2802595963217,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.155"},{"type":"POINT","handle":"B5B5","ownerHandle":"4541","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.0840686763783,"y":341.3982595968958,"z":0}},{"type":"POINT","handle":"B5B6","ownerHandle":"4541","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.6990686763781,"y":341.5532595968957,"z":0}},{"type":"POINT","handle":"B5B7","ownerHandle":"4541","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.4385599072187,"y":341.5532595968957,"z":0}}]},"4550":{"handle":"4550","ownerHandle":"454F","layer":"0","name":"*D109","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D109","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.634068676135,"y":341.8982595968957,"z":0},{"x":649.3884349068178,"y":341.8982595968957,"z":0}],"handle":"B5B9","ownerHandle":"454F","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":649.4184349069637,"y":341.6122595971828,"z":0},{"x":649.4184349069637,"y":341.6912873464266,"z":0}],"handle":"B5BA","ownerHandle":"454F","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.4184349069637,"y":341.8392595966087,"z":0},{"x":649.4184349069637,"y":341.788787346901,"z":0}],"handle":"B5BB","ownerHandle":"454F","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B5BE","ownerHandle":"454F","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":649.4184349069636,"y":341.740037346664,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.345"},{"type":"POINT","handle":"B5BF","ownerHandle":"454F","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.6990686763781,"y":341.5532595968957,"z":0}},{"type":"POINT","handle":"B5C0","ownerHandle":"454F","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.6840686763782,"y":341.8982595968957,"z":0}},{"type":"POINT","handle":"B5C1","ownerHandle":"454F","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.4184349069637,"y":341.8982595968957,"z":0}}]},"4577":{"handle":"4577","ownerHandle":"4576","layer":"0","name":"*D112","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D112","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.244068676135,"y":342.5232595968957,"z":0},{"x":648.9283113621404,"y":342.5232595968957,"z":0}],"handle":"B5D7","ownerHandle":"4576","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":648.9583113622865,"y":341.6122595971828,"z":0},{"x":648.9583113622865,"y":342.0439460337571,"z":0}],"handle":"B5D8","ownerHandle":"4576","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":648.9583113622865,"y":342.4642595966086,"z":0},{"x":648.9583113622865,"y":342.1414460342315,"z":0}],"handle":"B5D9","ownerHandle":"4576","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B5DC","ownerHandle":"4576","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":648.9583113622863,"y":342.0926960339944,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.970"},{"type":"POINT","handle":"B5DD","ownerHandle":"4576","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.6990686763781,"y":341.5532595968957,"z":0}},{"type":"POINT","handle":"B5DE","ownerHandle":"4576","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.2940686763783,"y":342.5232595968957,"z":0}},{"type":"POINT","handle":"B5DF","ownerHandle":"4576","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":648.9583113622865,"y":342.5232595968957,"z":0}}]},"4584":{"handle":"4584","ownerHandle":"4583","layer":"0","name":"*D113","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D113","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.5690686766216,"y":343.4932595968958,"z":0},{"x":650.8933004963986,"y":343.4932595968958,"z":0}],"handle":"B5E1","ownerHandle":"4583","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":650.8633004962526,"y":343.7072595971828,"z":0},{"x":650.8633004962526,"y":343.7662595974698,"z":0}],"handle":"B5E2","ownerHandle":"4583","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":650.8633004962526,"y":343.4342595966087,"z":0},{"x":650.8633004962526,"y":343.3752595963217,"z":0}],"handle":"B5E3","ownerHandle":"4583","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B5E6","ownerHandle":"4583","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":650.8633004962526,"y":343.5707595968959,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.155"},{"type":"POINT","handle":"B5E7","ownerHandle":"4583","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.5408453716748,"y":343.6482595968957,"z":0}},{"type":"POINT","handle":"B5E8","ownerHandle":"4583","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.5190686763783,"y":343.4932595968958,"z":0}},{"type":"POINT","handle":"B5E9","ownerHandle":"4583","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.8633004962526,"y":343.4932595968958,"z":0}}]},"4591":{"handle":"4591","ownerHandle":"4590","layer":"0","name":"*D114","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D114","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.2490686766215,"y":343.4932595968958,"z":0},{"x":650.3369069470231,"y":343.4932595968958,"z":0}],"handle":"B5EB","ownerHandle":"4590","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":650.3069069468772,"y":343.6772595971829,"z":0},{"x":650.3069069468772,"y":343.7362595974699,"z":0}],"handle":"B5EC","ownerHandle":"4590","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":650.3069069468772,"y":343.4342595966087,"z":0},{"x":650.3069069468772,"y":343.3139734373108,"z":0}],"handle":"B5ED","ownerHandle":"4590","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":650.3069069468772,"y":343.3139734373108,"z":0},{"x":650.2479069465902,"y":343.3139734373108,"z":0}],"handle":"B5EE","ownerHandle":"4590","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B5F1","ownerHandle":"4590","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":650.1272819460031,"y":343.313973437311,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.125"},{"type":"POINT","handle":"B5F2","ownerHandle":"4590","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.1990686763781,"y":343.6182595968958,"z":0}},{"type":"POINT","handle":"B5F3","ownerHandle":"4590","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.1990686763781,"y":343.4932595968958,"z":0}},{"type":"POINT","handle":"B5F4","ownerHandle":"4590","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.3069069468772,"y":343.4932595968958,"z":0}}]},"4603":{"handle":"4603","ownerHandle":"4602","layer":"0","name":"*D124","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D124","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8440686766215,"y":343.4932595968958,"z":0},{"x":653.8360822177866,"y":343.4932595968958,"z":0}],"handle":"B647","ownerHandle":"4602","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.8060822176406,"y":343.6772595971829,"z":0},{"x":653.8060822176406,"y":343.7362595974699,"z":0}],"handle":"B648","ownerHandle":"4602","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.8060822176406,"y":343.4342595966087,"z":0},{"x":653.8060822176406,"y":343.3752595963217,"z":0}],"handle":"B649","ownerHandle":"4602","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.8060822176406,"y":343.3752595963217,"z":0},{"x":653.7470822173536,"y":343.3752595963217,"z":0}],"handle":"B64A","ownerHandle":"4602","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B64D","ownerHandle":"4602","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.6264572167665,"y":343.3752595963218,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.125"},{"type":"POINT","handle":"B64E","ownerHandle":"4602","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7940686763782,"y":343.6182595968958,"z":0}},{"type":"POINT","handle":"B64F","ownerHandle":"4602","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7940686763782,"y":343.4932595968958,"z":0}},{"type":"POINT","handle":"B650","ownerHandle":"4602","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8060822176406,"y":343.4932595968958,"z":0}}]},"4611":{"handle":"4611","ownerHandle":"4610","layer":"0","name":"*D125","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D125","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.424068676135,"y":343.6482595968957,"z":0},{"x":653.1717064391677,"y":343.6482595968957,"z":0}],"handle":"B652","ownerHandle":"4610","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.2017064393136,"y":343.4342595966087,"z":0},{"x":653.2017064393136,"y":343.3752595963217,"z":0}],"handle":"B653","ownerHandle":"4610","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.2017064393136,"y":343.7072595971828,"z":0},{"x":653.2017064393136,"y":343.7662595974698,"z":0}],"handle":"B654","ownerHandle":"4610","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B657","ownerHandle":"4610","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.2017064393135,"y":343.5707595968959,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.155"},{"type":"POINT","handle":"B658","ownerHandle":"4610","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5040686763783,"y":343.4932595968958,"z":0}},{"type":"POINT","handle":"B659","ownerHandle":"4610","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.4740686763782,"y":343.6482595968957,"z":0}},{"type":"POINT","handle":"B65A","ownerHandle":"4610","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.2017064393136,"y":343.6482595968957,"z":0}}]},"4637":{"handle":"4637","ownerHandle":"4636","layer":"0","name":"*D128","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D128","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8440686766215,"y":342.5232595968958,"z":0},{"x":654.5540592483676,"y":342.5232595968958,"z":0}],"handle":"B670","ownerHandle":"4636","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.5240592482216,"y":343.4342595966087,"z":0},{"x":654.5240592482216,"y":342.9720969708335,"z":0}],"handle":"B671","ownerHandle":"4636","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.5240592482216,"y":342.5822595971828,"z":0},{"x":654.5240592482216,"y":342.8745969703591,"z":0}],"handle":"B672","ownerHandle":"4636","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B675","ownerHandle":"4636","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.5240592482215,"y":342.9233469705964,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.970"},{"type":"POINT","handle":"B676","ownerHandle":"4636","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.9390686763782,"y":343.4932595968958,"z":0}},{"type":"POINT","handle":"B677","ownerHandle":"4636","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7940686763782,"y":342.5232595968958,"z":0}},{"type":"POINT","handle":"B678","ownerHandle":"4636","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.5240592482216,"y":342.5232595968958,"z":0}}]},"4644":{"handle":"4644","ownerHandle":"4643","layer":"0","name":"*D129","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D129","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.9390686763782,"y":342.7932595971391,"z":0},{"x":653.9390686763782,"y":342.9346637926723,"z":0}],"handle":"B67A","ownerHandle":"4643","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.5800686760913,"y":342.9046637925263,"z":0},{"x":653.5210686758041,"y":342.9046637925263,"z":0}],"handle":"B67B","ownerHandle":"4643","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.9980686766653,"y":342.9046637925263,"z":0},{"x":654.0570686769524,"y":342.9046637925263,"z":0}],"handle":"B67C","ownerHandle":"4643","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B67F","ownerHandle":"4643","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.7838495820846,"y":342.9046637925263,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.300"},{"type":"POINT","handle":"B680","ownerHandle":"4643","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6390686763783,"y":342.7432595968958,"z":0}},{"type":"POINT","handle":"B681","ownerHandle":"4643","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.9390686763782,"y":342.7432595968958,"z":0}},{"type":"POINT","handle":"B682","ownerHandle":"4643","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.9390686763782,"y":342.9046637925263,"z":0}}]},"4651":{"handle":"4651","ownerHandle":"4650","layer":"0","name":"*D130","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D130","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.5890686761351,"y":342.3032595968958,"z":0},{"x":653.1000197664662,"y":342.3032595968958,"z":0}],"handle":"B684","ownerHandle":"4650","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.1300197666122,"y":342.6842595966087,"z":0},{"x":653.1300197666122,"y":342.4944829525945,"z":0}],"handle":"B685","ownerHandle":"4650","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.1300197666122,"y":342.3622595971829,"z":0},{"x":653.1300197666122,"y":342.3969829521201,"z":0}],"handle":"B686","ownerHandle":"4650","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B689","ownerHandle":"4650","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.1300197666121,"y":342.4457329523574,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.440"},{"type":"POINT","handle":"B68A","ownerHandle":"4650","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6390686763783,"y":342.7432595968958,"z":0}},{"type":"POINT","handle":"B68B","ownerHandle":"4650","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6390686763783,"y":342.3032595968958,"z":0}},{"type":"POINT","handle":"B68C","ownerHandle":"4650","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.1300197666122,"y":342.3032595968958,"z":0}}]},"4669":{"handle":"4669","ownerHandle":"4668","layer":"0","name":"*D132","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D132","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.6990686763783,"y":341.3782595966524,"z":0},{"x":653.6990686763783,"y":341.1788992020932,"z":0}],"handle":"B696","ownerHandle":"4668","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.7580686766652,"y":341.2088992022392,"z":0},{"x":653.8170686769524,"y":341.2088992022392,"z":0}],"handle":"B697","ownerHandle":"4668","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.6100686760911,"y":341.2088992022392,"z":0},{"x":653.5510686758041,"y":341.2088992022392,"z":0}],"handle":"B698","ownerHandle":"4668","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B69B","ownerHandle":"4668","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.4304436752172,"y":341.2088992022392,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.030"},{"type":"POINT","handle":"B69C","ownerHandle":"4668","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6690686763782,"y":341.3982595968958,"z":0}},{"type":"POINT","handle":"B69D","ownerHandle":"4668","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6990686763783,"y":341.4282595968957,"z":0}},{"type":"POINT","handle":"B69E","ownerHandle":"4668","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6990686763783,"y":341.2088992022392,"z":0}}]},"4676":{"handle":"4676","ownerHandle":"4675","layer":"0","name":"*D133","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D133","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8890686763783,"y":341.3782595966524,"z":0},{"x":653.8890686763783,"y":341.0690680671488,"z":0}],"handle":"B6A0","ownerHandle":"4675","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.6400686760912,"y":341.0990680672948,"z":0},{"x":653.5810686758041,"y":341.0990680672948,"z":0}],"handle":"B6A1","ownerHandle":"4675","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.9480686766653,"y":341.0990680672948,"z":0},{"x":654.0070686769523,"y":341.0990680672948,"z":0}],"handle":"B6A2","ownerHandle":"4675","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B6A5","ownerHandle":"4675","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.1229020108493,"y":341.0990680672948,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.190"},{"type":"POINT","handle":"B6A6","ownerHandle":"4675","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6990686763783,"y":341.4282595968957,"z":0}},{"type":"POINT","handle":"B6A7","ownerHandle":"4675","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8890686763783,"y":341.4282595968957,"z":0}},{"type":"POINT","handle":"B6A8","ownerHandle":"4675","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8890686763783,"y":341.0990680672948,"z":0}}]},"4683":{"handle":"4683","ownerHandle":"4682","layer":"0","name":"*D134","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D134","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.1290823674212,"y":341.2375756384441,"z":0},{"x":654.1880823677081,"y":341.2375756384441,"z":0}],"handle":"B6AA","ownerHandle":"4682","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B6AC","ownerHandle":"4682","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.3374573684353,"y":341.2375756384443,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.060"},{"type":"LINE","vertices":[{"x":653.9590686761588,"y":341.4582595968957,"z":0},{"x":654.0490686765967,"y":341.4582595968957,"z":0}],"handle":"B6AD","ownerHandle":"4682","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.0040686763778,"y":341.4132595966768,"z":0},{"x":654.0040686763778,"y":341.5032595971148,"z":0}],"handle":"B6AE","ownerHandle":"4682","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B6AF","ownerHandle":"4682","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0336421690362,"y":341.4060541514711,"z":0}},{"type":"POINT","handle":"B6B0","ownerHandle":"4682","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0040686763778,"y":341.4582595968957,"z":0}}]},"4695":{"handle":"4695","ownerHandle":"4694","layer":"0","name":"*D136","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D136","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.362257161863,"y":341.2948849797189,"z":0},{"x":653.3032571615761,"y":341.2948849797189,"z":0}],"handle":"B6BA","ownerHandle":"4694","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B6BC","ownerHandle":"4694","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.153882160849,"y":341.294884979719,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.030"},{"type":"LINE","vertices":[{"x":653.4290686761587,"y":341.4282595968958,"z":0},{"x":653.5190686765965,"y":341.4282595968959,"z":0}],"handle":"B6BD","ownerHandle":"4694","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.4740686763776,"y":341.3832595966768,"z":0},{"x":653.4740686763777,"y":341.4732595971149,"z":0}],"handle":"B6BE","ownerHandle":"4694","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B6BF","ownerHandle":"4694","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.454795476592,"y":341.4052695170785,"z":0}},{"type":"POINT","handle":"B6C0","ownerHandle":"4694","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.4740686763776,"y":341.4282595968958,"z":0}}]},"5527":{"handle":"5527","ownerHandle":"5526","layer":"0","name":"*D183","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D183","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":648.666976880357,"y":329.9690979832006,"z":0},{"x":647.7814759482618,"y":329.9690979832006,"z":0}],"handle":"B887","ownerHandle":"5526","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":647.8414759483809,"y":327.5870979834351,"z":0},{"x":647.8414759483809,"y":328.7854311921263,"z":0}],"handle":"B888","ownerHandle":"5526","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":647.8414759483809,"y":329.8510979829661,"z":0},{"x":647.8414759483809,"y":328.9804311925138,"z":0}],"handle":"B889","ownerHandle":"5526","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B88C","ownerHandle":"5526","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":647.8414759483809,"y":328.8829311923202,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2.500"},{"type":"POINT","handle":"B88D","ownerHandle":"5526","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7669768805557,"y":327.4690979832006,"z":0}},{"type":"POINT","handle":"B88E","ownerHandle":"5526","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7669768805557,"y":329.9690979832006,"z":0}},{"type":"POINT","handle":"B88F","ownerHandle":"5526","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":647.8414759483809,"y":329.9690979832006,"z":0}}]},"5534":{"handle":"5534","ownerHandle":"5533","layer":"0","name":"*D184","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D184","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.0169768805557,"y":330.0490979833993,"z":0},{"x":654.0169768805557,"y":330.8423648803957,"z":0}],"handle":"B891","ownerHandle":"5533","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":648.8849768807901,"y":330.7823648802764,"z":0},{"x":651.4864134148921,"y":330.7823648802764,"z":0}],"handle":"B892","ownerHandle":"5533","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.8989768803212,"y":330.7823648802764,"z":0},{"x":652.0072467492606,"y":330.7823648802764,"z":0}],"handle":"B893","ownerHandle":"5533","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B896","ownerHandle":"5533","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.7468300820763,"y":330.7823648802764,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;5.250"},{"type":"POINT","handle":"B897","ownerHandle":"5533","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7669768805557,"y":329.9690979832006,"z":0}},{"type":"POINT","handle":"B898","ownerHandle":"5533","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.0169768805557,"y":329.9490979832006,"z":0}},{"type":"POINT","handle":"B899","ownerHandle":"5533","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.0169768805557,"y":330.7823648802764,"z":0}}]},"5541":{"handle":"5541","ownerHandle":"5540","layer":"0","name":"*D185","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D185","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":655.2669768805557,"y":329.1320979833993,"z":0},{"x":655.2669768805557,"y":331.3486563632355,"z":0}],"handle":"B89B","ownerHandle":"5540","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":648.8849768807901,"y":331.2886563631162,"z":0},{"x":651.4869581869001,"y":331.2886563631162,"z":0}],"handle":"B89C","ownerHandle":"5540","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.1489768803212,"y":331.2886563631162,"z":0},{"x":651.9886248545637,"y":331.2886563631162,"z":0}],"handle":"B89D","ownerHandle":"5540","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B8A0","ownerHandle":"5540","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.7377915207319,"y":331.2886563631162,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;6.500"},{"type":"POINT","handle":"B8A1","ownerHandle":"5540","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7669768805557,"y":329.9690979832006,"z":0}},{"type":"POINT","handle":"B8A2","ownerHandle":"5540","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":655.2669768805557,"y":329.0320979832006,"z":0}},{"type":"POINT","handle":"B8A3","ownerHandle":"5540","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":655.2669768805557,"y":331.2886563631162,"z":0}}]},"5568":{"handle":"5568","ownerHandle":"5567","layer":"0","name":"*D188","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D188","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":651.2019768803569,"y":329.9690979832006,"z":0},{"x":651.1116660113722,"y":329.9690979832006,"z":0}],"handle":"B8B9","ownerHandle":"5567","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":651.1716660114914,"y":329.741097982966,"z":0},{"x":651.1716660114914,"y":329.6230979827316,"z":0}],"handle":"B8BA","ownerHandle":"5567","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":651.1716660114914,"y":330.0870979834351,"z":0},{"x":651.1716660114914,"y":330.2050979948716,"z":0}],"handle":"B8BB","ownerHandle":"5567","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":651.1716660114914,"y":330.2050979948716,"z":0},{"x":651.2896660117259,"y":330.2050979948716,"z":0}],"handle":"B8BC","ownerHandle":"5567","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B8BF","ownerHandle":"5567","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.502166012148,"y":330.2050979948717,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.110"},{"type":"POINT","handle":"B8C0","ownerHandle":"5567","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.3019768805556,"y":329.8590979832006,"z":0}},{"type":"POINT","handle":"B8C1","ownerHandle":"5567","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.3019768805556,"y":329.9690979832006,"z":0}},{"type":"POINT","handle":"B8C2","ownerHandle":"5567","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.1716660114914,"y":329.9690979832006,"z":0}}]},"5576":{"handle":"5576","ownerHandle":"5575","layer":"0","name":"*D189","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D189","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.686976880357,"y":328.2360979832006,"z":0},{"x":653.0950506768363,"y":328.2360979832006,"z":0}],"handle":"B8C4","ownerHandle":"5575","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":653.1550506769555,"y":329.0840979829661,"z":0},{"x":653.1550506769555,"y":329.0701894433967,"z":0}],"handle":"B8C5","ownerHandle":"5575","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.1550506769555,"y":328.3540979834351,"z":0},{"x":653.1550506769555,"y":328.8751894430092,"z":0}],"handle":"B8C6","ownerHandle":"5575","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B8C9","ownerHandle":"5575","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.1550506769554,"y":328.972689443203,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.966"},{"type":"POINT","handle":"B8CA","ownerHandle":"5575","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.7869768805556,"y":329.2020979832006,"z":0}},{"type":"POINT","handle":"B8CB","ownerHandle":"5575","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.7869768805556,"y":328.2360979832006,"z":0}},{"type":"POINT","handle":"B8CC","ownerHandle":"5575","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.1550506769555,"y":328.2360979832006,"z":0}}]},"5583":{"handle":"5583","ownerHandle":"5582","layer":"0","name":"*D190","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D190","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.686976880357,"y":328.2360979832006,"z":0},{"x":653.3703520500917,"y":328.2360979832006,"z":0}],"handle":"B8CE","ownerHandle":"5582","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":653.430352050211,"y":328.3540979834351,"z":0},{"x":653.430352050211,"y":328.4720979836696,"z":0}],"handle":"B8CF","ownerHandle":"5582","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.430352050211,"y":328.0380979829661,"z":0},{"x":653.430352050211,"y":327.9200979710652,"z":0}],"handle":"B8D0","ownerHandle":"5582","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.430352050211,"y":327.9200979710652,"z":0},{"x":653.3123520499765,"y":327.9200979710652,"z":0}],"handle":"B8D1","ownerHandle":"5582","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B8D4","ownerHandle":"5582","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.0711020494969,"y":327.9200979710653,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.080"},{"type":"POINT","handle":"B8D5","ownerHandle":"5582","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.7869768805556,"y":328.1560979832006,"z":0}},{"type":"POINT","handle":"B8D6","ownerHandle":"5582","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.7869768805556,"y":328.2360979832006,"z":0}},{"type":"POINT","handle":"B8D7","ownerHandle":"5582","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.430352050211,"y":328.2360979832006,"z":0}}]},"5591":{"handle":"5591","ownerHandle":"5590","layer":"0","name":"*D191","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D191","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.9919768807544,"y":328.1560979832006,"z":0},{"x":654.3642122861606,"y":328.1560979832006,"z":0}],"handle":"B8D9","ownerHandle":"5590","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":654.3042122860414,"y":327.7060979829661,"z":0},{"x":654.3042122860414,"y":327.5880979827316,"z":0}],"handle":"B8DA","ownerHandle":"5590","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.3042122860414,"y":328.2740979834351,"z":0},{"x":654.3042122860414,"y":328.3920979836696,"z":0}],"handle":"B8DB","ownerHandle":"5590","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B8DE","ownerHandle":"5590","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.3042122860413,"y":328.011308025719,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.332"},{"type":"POINT","handle":"B8DF","ownerHandle":"5590","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.8919768805556,"y":327.8240979832006,"z":0}},{"type":"POINT","handle":"B8E0","ownerHandle":"5590","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.8919768805556,"y":328.1560979832006,"z":0}},{"type":"POINT","handle":"B8E1","ownerHandle":"5590","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.3042122860414,"y":328.1560979832006,"z":0}}]},"5604":{"handle":"5604","ownerHandle":"5603","layer":"0","name":"*D201","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D201","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.0929768805557,"y":329.0720979834439,"z":0},{"x":654.0929768805557,"y":329.2900936863897,"z":0}],"handle":"B936","ownerHandle":"5603","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":655.2079768802687,"y":329.2600936862437,"z":0},{"x":654.8000490475935,"y":329.2600936862437,"z":0}],"handle":"B937","ownerHandle":"5603","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.1519768808427,"y":329.2600936862437,"z":0},{"x":654.5683823797997,"y":329.2600936862437,"z":0}],"handle":"B938","ownerHandle":"5603","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B93B","ownerHandle":"5603","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.6842157136966,"y":329.2600936862437,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.174"},{"type":"POINT","handle":"B93C","ownerHandle":"5603","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.2669768805557,"y":329.0320979832006,"z":0}},{"type":"POINT","handle":"B93D","ownerHandle":"5603","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0929768805557,"y":329.0220979832006,"z":0}},{"type":"POINT","handle":"B93E","ownerHandle":"5603","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0929768805557,"y":329.2600936862437,"z":0}}]},"5611":{"handle":"5611","ownerHandle":"5610","layer":"0","name":"*D202","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D202","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.0169768805557,"y":329.0720979834439,"z":0},{"x":654.0169768805557,"y":329.187489337101,"z":0}],"handle":"B940","ownerHandle":"5610","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.9579768802687,"y":329.157489336955,"z":0},{"x":653.8989768799815,"y":329.157489336955,"z":0}],"handle":"B941","ownerHandle":"5610","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.1519768808427,"y":329.157489336955,"z":0},{"x":654.2109768811298,"y":329.157489336955,"z":0}],"handle":"B942","ownerHandle":"5610","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B945","ownerHandle":"5610","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.3363935484067,"y":329.157489336955,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.076"},{"type":"POINT","handle":"B946","ownerHandle":"5610","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0929768805557,"y":329.0220979832006,"z":0}},{"type":"POINT","handle":"B947","ownerHandle":"5610","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0169768805557,"y":329.0220979832006,"z":0}},{"type":"POINT","handle":"B948","ownerHandle":"5610","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0169768805557,"y":329.157489336955,"z":0}}]},"5638":{"handle":"5638","ownerHandle":"5637","layer":"0","name":"*D205","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D205","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.9669768803125,"y":328.5660979832004,"z":0},{"x":653.5599793723726,"y":328.5660979832004,"z":0}],"handle":"B95E","ownerHandle":"5637","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.5899793725185,"y":328.9310979834876,"z":0},{"x":653.5899793725185,"y":328.9900979837746,"z":0}],"handle":"B95F","ownerHandle":"5637","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.5899793725185,"y":328.5070979829133,"z":0},{"x":653.5899793725185,"y":328.4480979826263,"z":0}],"handle":"B960","ownerHandle":"5637","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B963","ownerHandle":"5637","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.5899793725184,"y":328.6657844550765,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.306"},{"type":"POINT","handle":"B964","ownerHandle":"5637","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0169768805557,"y":328.8720979832005,"z":0}},{"type":"POINT","handle":"B965","ownerHandle":"5637","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0169768805557,"y":328.5660979832004,"z":0}},{"type":"POINT","handle":"B966","ownerHandle":"5637","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5899793725185,"y":328.5660979832004,"z":0}}]},"5645":{"handle":"5645","ownerHandle":"5644","layer":"0","name":"*D206","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D206","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.0519768807989,"y":327.5860979832006,"z":0},{"x":654.3623761132129,"y":327.5860979832006,"z":0}],"handle":"B968","ownerHandle":"5644","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.3323761130669,"y":327.6450979834877,"z":0},{"x":654.3323761130669,"y":327.7040979837747,"z":0}],"handle":"B969","ownerHandle":"5644","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.3323761130669,"y":327.4100979829135,"z":0},{"x":654.3323761130669,"y":327.3494818234054,"z":0}],"handle":"B96A","ownerHandle":"5644","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.3323761130669,"y":327.3494818234054,"z":0},{"x":654.2733761127799,"y":327.3494818234054,"z":0}],"handle":"B96B","ownerHandle":"5644","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B96E","ownerHandle":"5644","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.1623344455728,"y":327.3494818234055,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.117"},{"type":"POINT","handle":"B96F","ownerHandle":"5644","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.9969768805557,"y":327.4690979832006,"z":0}},{"type":"POINT","handle":"B970","ownerHandle":"5644","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0019768805557,"y":327.5860979832006,"z":0}},{"type":"POINT","handle":"B971","ownerHandle":"5644","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.3323761130669,"y":327.5860979832006,"z":0}}]},"5653":{"handle":"5653","ownerHandle":"5652","layer":"0","name":"*D207","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D207","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.0519768807989,"y":327.7120979832006,"z":0},{"x":654.5271236210798,"y":327.7120979832006,"z":0}],"handle":"B973","ownerHandle":"5652","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.4971236209338,"y":327.5270979829135,"z":0},{"x":654.4971236209338,"y":327.4680979826265,"z":0}],"handle":"B974","ownerHandle":"5652","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.4971236209338,"y":327.7710979834877,"z":0},{"x":654.4971236209338,"y":327.8300979837747,"z":0}],"handle":"B975","ownerHandle":"5652","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B978","ownerHandle":"5652","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.4971236209338,"y":327.6490979832007,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.126"},{"type":"POINT","handle":"B979","ownerHandle":"5652","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0019768805557,"y":327.5860979832006,"z":0}},{"type":"POINT","handle":"B97A","ownerHandle":"5652","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0019768805557,"y":327.7120979832006,"z":0}},{"type":"POINT","handle":"B97B","ownerHandle":"5652","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.4971236209338,"y":327.7120979832006,"z":0}}]},"5660":{"handle":"5660","ownerHandle":"565F","layer":"0","name":"*D208","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D208","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.977485270533,"y":327.7430979832006,"z":0},{"x":654.7338304069207,"y":327.7430979832006,"z":0}],"handle":"B97D","ownerHandle":"565F","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.7038304067748,"y":327.4960979829135,"z":0},{"x":654.7038304067748,"y":327.4370979826265,"z":0}],"handle":"B97E","ownerHandle":"565F","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.7038304067748,"y":327.8020979834877,"z":0},{"x":654.7038304067748,"y":327.8610979837747,"z":0}],"handle":"B97F","ownerHandle":"565F","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B982","ownerHandle":"565F","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.7038304067747,"y":327.6527893137646,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.188"},{"type":"POINT","handle":"B983","ownerHandle":"565F","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.9274852702898,"y":327.5550979832006,"z":0}},{"type":"POINT","handle":"B984","ownerHandle":"565F","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.9274852702898,"y":327.7430979832006,"z":0}},{"type":"POINT","handle":"B985","ownerHandle":"565F","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.7038304067748,"y":327.7430979832006,"z":0}}]},"5676":{"handle":"5676","ownerHandle":"5675","layer":"0","name":"*D210","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D210","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.7538137783973,"y":327.9439298659527,"z":0},{"x":653.6948137781102,"y":327.9439298659527,"z":0}],"handle":"B98F","ownerHandle":"5675","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B991","ownerHandle":"5675","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.5454387773837,"y":327.9439298659527,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.020"},{"type":"LINE","vertices":[{"x":653.7419768803367,"y":327.8040979832009,"z":0},{"x":653.8319768807745,"y":327.8040979832009,"z":0}],"handle":"B992","ownerHandle":"5675","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.7869768805558,"y":327.7590979829818,"z":0},{"x":653.7869768805555,"y":327.8490979834198,"z":0}],"handle":"B993","ownerHandle":"5675","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B994","ownerHandle":"5675","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7823616198934,"y":327.823558182815,"z":0}},{"type":"POINT","handle":"B995","ownerHandle":"5675","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7869768805558,"y":327.8040979832009,"z":0}}]},"5688":{"handle":"5688","ownerHandle":"5687","layer":"0","name":"*D212","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D212","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.0168830797869,"y":327.9561074989347,"z":0},{"x":654.075883080074,"y":327.9561074989347,"z":0}],"handle":"B99F","ownerHandle":"5687","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B9A1","ownerHandle":"5687","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.2252580808008,"y":327.9561074989347,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.090"},{"type":"LINE","vertices":[{"x":653.8824852700709,"y":327.6530979832004,"z":0},{"x":653.9724852705087,"y":327.6530979832004,"z":0}],"handle":"B9A2","ownerHandle":"5687","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.9274852702897,"y":327.6080979829814,"z":0},{"x":653.9274852702898,"y":327.6980979834194,"z":0}],"handle":"B9A3","ownerHandle":"5687","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B9A4","ownerHandle":"5687","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.9529529548818,"y":327.7394194581733,"z":0}},{"type":"POINT","handle":"B9A5","ownerHandle":"5687","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.9274852702897,"y":327.6530979832004,"z":0}}]},"5691":{"handle":"5691","ownerHandle":"5690","layer":"0","name":"*D213","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D213","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.7369768803125,"y":329.6140979832006,"z":0},{"x":653.548183463127,"y":329.6140979832006,"z":0}],"handle":"B9A7","ownerHandle":"5690","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.578183463273,"y":329.8000979829135,"z":0},{"x":653.578183463273,"y":329.7859090009876,"z":0}],"handle":"B9A8","ownerHandle":"5690","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.578183463273,"y":329.6730979834876,"z":0},{"x":653.578183463273,"y":329.6884090005132,"z":0}],"handle":"B9A9","ownerHandle":"5690","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B9AC","ownerHandle":"5690","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.5781834632729,"y":329.7371590007505,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.245"},{"type":"POINT","handle":"B9AD","ownerHandle":"5690","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7369768805557,"y":329.8590979832006,"z":0}},{"type":"POINT","handle":"B9AE","ownerHandle":"5690","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7869768805556,"y":329.6140979832006,"z":0}},{"type":"POINT","handle":"B9AF","ownerHandle":"5690","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.578183463273,"y":329.6140979832006,"z":0}}]},"6703":{"handle":"6703","ownerHandle":"6702","layer":"0","name":"*D252","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D252","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.9515287426572,"y":341.214230102225,"z":0},{"x":661.9515287426572,"y":340.9817428916349,"z":0}],"handle":"BB03","ownerHandle":"6702","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":660.5245287429434,"y":341.0117428917808,"z":0},{"x":661.105000883622,"y":341.0117428917808,"z":0}],"handle":"BB04","ownerHandle":"6702","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.8925287423701,"y":341.0117428917808,"z":0},{"x":661.3558342181757,"y":341.0117428917808,"z":0}],"handle":"BB05","ownerHandle":"6702","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BB08","ownerHandle":"6702","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.2304175508988,"y":341.0117428917808,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.486"},{"type":"POINT","handle":"BB09","ownerHandle":"6702","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":660.4655287426563,"y":341.2142301024681,"z":0}},{"type":"POINT","handle":"BB0A","ownerHandle":"6702","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.9515287426572,"y":341.2642301024683,"z":0}},{"type":"POINT","handle":"BB0B","ownerHandle":"6702","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.9515287426572,"y":341.0117428917808,"z":0}}]},"6710":{"handle":"6710","ownerHandle":"670F","layer":"0","name":"*D253","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D253","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":662.2515287426554,"y":341.3903120916275,"z":0},{"x":662.2515287426554,"y":340.7715242869296,"z":0}],"handle":"BB0D","ownerHandle":"670F","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":660.5245287429434,"y":340.8015242870756,"z":0},{"x":661.2533991964245,"y":340.8015242870756,"z":0}],"handle":"BB0E","ownerHandle":"670F","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.1925287423684,"y":340.8015242870756,"z":0},{"x":661.5042325309784,"y":340.8015242870756,"z":0}],"handle":"BB0F","ownerHandle":"670F","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BB12","ownerHandle":"670F","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.3788158637014,"y":340.8015242870756,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.786"},{"type":"POINT","handle":"BB13","ownerHandle":"670F","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":660.4655287426563,"y":341.2142301024681,"z":0}},{"type":"POINT","handle":"BB14","ownerHandle":"670F","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.2515287426554,"y":341.4403120918708,"z":0}},{"type":"POINT","handle":"BB15","ownerHandle":"670F","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.2515287426554,"y":340.8015242870756,"z":0}}]},"6737":{"handle":"6737","ownerHandle":"6736","layer":"0","name":"*D256","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D256","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.6855287424136,"y":343.7142301024681,"z":0},{"x":661.240036119806,"y":343.7142301024681,"z":0}],"handle":"BB2B","ownerHandle":"6736","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.270036119952,"y":342.7407301027552,"z":0},{"x":661.270036119952,"y":343.1492301022309,"z":0}],"handle":"BB2C","ownerHandle":"6736","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.270036119952,"y":343.655230102181,"z":0},{"x":661.270036119952,"y":343.2467301027053,"z":0}],"handle":"BB2D","ownerHandle":"6736","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BB30","ownerHandle":"6736","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.2700361199519,"y":343.1979801024682,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.033"},{"type":"POINT","handle":"BB31","ownerHandle":"6736","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.700528742657,"y":342.6817301024681,"z":0}},{"type":"POINT","handle":"BB32","ownerHandle":"6736","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7355287426568,"y":343.7142301024681,"z":0}},{"type":"POINT","handle":"BB33","ownerHandle":"6736","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.270036119952,"y":343.7142301024681,"z":0}}]},"6744":{"handle":"6744","ownerHandle":"6743","layer":"0","name":"*D257","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D257","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.8155287426549,"y":341.8567301027116,"z":0},{"x":661.8155287426549,"y":341.8591809363758,"z":0}],"handle":"BB35","ownerHandle":"6743","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.6565287423693,"y":341.8291809362299,"z":0},{"x":661.5975287420821,"y":341.8291809362299,"z":0}],"handle":"BB36","ownerHandle":"6743","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.874528742942,"y":341.8291809362299,"z":0},{"x":661.9335287434251,"y":341.8291809362299,"z":0}],"handle":"BB37","ownerHandle":"6743","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BB3A","ownerHandle":"6743","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":662.044570410632,"y":341.8291809362299,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.100"},{"type":"POINT","handle":"BB3B","ownerHandle":"6743","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7155287426563,"y":341.8067301024683,"z":0}},{"type":"POINT","handle":"BB3C","ownerHandle":"6743","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8155287426549,"y":341.8067301024683,"z":0}},{"type":"POINT","handle":"BB3D","ownerHandle":"6743","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8155287426549,"y":341.8291809362299,"z":0}}]},"6751":{"handle":"6751","ownerHandle":"6750","layer":"0","name":"*D258","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D258","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.8405287426563,"y":342.39250999009,"z":0},{"x":661.8405287426563,"y":342.3793543835417,"z":0}],"handle":"BB3F","ownerHandle":"6750","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.6565287423693,"y":342.3493543833958,"z":0},{"x":661.5975287420821,"y":342.3493543833958,"z":0}],"handle":"BB40","ownerHandle":"6750","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.8995287429433,"y":342.3493543833958,"z":0},{"x":661.980508810376,"y":342.3493543833958,"z":0}],"handle":"BB41","ownerHandle":"6750","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BB44","ownerHandle":"6750","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":662.1011338109629,"y":342.3493543833958,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.125"},{"type":"POINT","handle":"BB45","ownerHandle":"6750","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7155287426563,"y":342.3390877971298,"z":0}},{"type":"POINT","handle":"BB46","ownerHandle":"6750","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8405287426563,"y":342.3425099898467,"z":0}},{"type":"POINT","handle":"BB47","ownerHandle":"6750","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8405287426563,"y":342.3493543833958,"z":0}}]},"6778":{"handle":"6778","ownerHandle":"6777","layer":"0","name":"*D261","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D261","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.8905287428995,"y":342.7642301024683,"z":0},{"x":662.6740428496641,"y":342.7642301024683,"z":0}],"handle":"BB5D","ownerHandle":"6777","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":662.6440428495182,"y":342.223230102755,"z":0},{"x":662.6440428495182,"y":342.5603551021913,"z":0}],"handle":"BB5E","ownerHandle":"6777","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.6440428495182,"y":342.7052301021812,"z":0},{"x":662.6440428495182,"y":342.6578551026657,"z":0}],"handle":"BB5F","ownerHandle":"6777","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BB62","ownerHandle":"6777","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":662.6440428495182,"y":342.6091051024286,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.600"},{"type":"POINT","handle":"BB63","ownerHandle":"6777","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8405287426563,"y":342.1642301024679,"z":0}},{"type":"POINT","handle":"BB64","ownerHandle":"6777","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8405287426563,"y":342.7642301024683,"z":0}},{"type":"POINT","handle":"BB65","ownerHandle":"6777","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.6440428495182,"y":342.7642301024683,"z":0}}]},"6785":{"handle":"6785","ownerHandle":"6784","layer":"0","name":"*D262","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D262","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.9715287428992,"y":343.7142301024681,"z":0},{"x":662.6740428496641,"y":343.7142301024681,"z":0}],"handle":"BB67","ownerHandle":"6784","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":662.6440428495182,"y":342.8232301027553,"z":0},{"x":662.6440428495182,"y":343.190480102231,"z":0}],"handle":"BB68","ownerHandle":"6784","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.6440428495182,"y":343.655230102181,"z":0},{"x":662.6440428495182,"y":343.2879801027054,"z":0}],"handle":"BB69","ownerHandle":"6784","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BB6C","ownerHandle":"6784","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":662.6440428495181,"y":343.2392301024683,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.950"},{"type":"POINT","handle":"BB6D","ownerHandle":"6784","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8405287426563,"y":342.7642301024683,"z":0}},{"type":"POINT","handle":"BB6E","ownerHandle":"6784","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.921528742656,"y":343.7142301024681,"z":0}},{"type":"POINT","handle":"BB6F","ownerHandle":"6784","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.6440428495182,"y":343.7142301024681,"z":0}}]},"6792":{"handle":"6792","ownerHandle":"6791","layer":"0","name":"*D263","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D263","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.9715287428979,"y":341.2142301024681,"z":0},{"x":662.975442674594,"y":341.2142301024681,"z":0}],"handle":"BB71","ownerHandle":"6791","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":662.945442674448,"y":343.655230102181,"z":0},{"x":662.945442674448,"y":342.4493716955203,"z":0}],"handle":"BB72","ownerHandle":"6791","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.945442674448,"y":341.2732301027552,"z":0},{"x":662.945442674448,"y":342.3518716950459,"z":0}],"handle":"BB73","ownerHandle":"6791","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BB76","ownerHandle":"6791","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":662.9454426744479,"y":342.4006216952832,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2.500"},{"type":"POINT","handle":"BB77","ownerHandle":"6791","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.9215287426547,"y":343.7142301024681,"z":0}},{"type":"POINT","handle":"BB78","ownerHandle":"6791","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.9215287426547,"y":341.2142301024681,"z":0}},{"type":"POINT","handle":"BB79","ownerHandle":"6791","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.945442674448,"y":341.2142301024681,"z":0}}]},"6808":{"handle":"6808","ownerHandle":"6807","layer":"0","name":"*D273","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D273","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.7525391084405,"y":343.7510616363626,"z":0},{"x":661.7820391100623,"y":343.7510616363626,"z":0}],"handle":"BBCF","ownerHandle":"6807","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BBD1","ownerHandle":"6807","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":661.8567266141685,"y":343.7510616363626,"z":0},"height":0.02875000158064,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.050"},{"type":"LINE","vertices":[{"x":661.7930287414192,"y":343.5782301024669,"z":0},{"x":661.8380287438933,"y":343.5782301024669,"z":0}],"handle":"BBD2","ownerHandle":"6807","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.8155287426563,"y":343.55573010123,"z":0},{"x":661.8155287426564,"y":343.600730103704,"z":0}],"handle":"BBD3","ownerHandle":"6807","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"BBD4","ownerHandle":"6807","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7984075518124,"y":343.6252073823396,"z":0}},{"type":"POINT","handle":"BBD5","ownerHandle":"6807","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.815528742656,"y":343.5782301024669,"z":0}}]},"6811":{"handle":"6811","ownerHandle":"6810","layer":"0","name":"*D274","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D274","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.7055287412817,"y":343.5972301024685,"z":0},{"x":661.6200598560944,"y":343.5972301024685,"z":0}],"handle":"BBD7","ownerHandle":"6810","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.6350598569192,"y":343.6847301008466,"z":0},{"x":661.6350598569192,"y":343.6782624711499,"z":0}],"handle":"BBD8","ownerHandle":"6810","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.6350598569192,"y":343.6267301040904,"z":0},{"x":661.6350598569192,"y":343.6295124684697,"z":0}],"handle":"BBD9","ownerHandle":"6810","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BBDC","ownerHandle":"6810","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":661.635059856919,"y":343.6538874698099,"z":0},"height":0.02875000158064,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.117"},{"type":"POINT","handle":"BBDD","ownerHandle":"6810","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7355287426568,"y":343.7142301024686,"z":0}},{"type":"POINT","handle":"BBDE","ownerHandle":"6810","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7305287426562,"y":343.5972301024685,"z":0}},{"type":"POINT","handle":"BBDF","ownerHandle":"6810","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6350598569192,"y":343.5972301024685,"z":0}}]},"6834":{"handle":"6834","ownerHandle":"6833","layer":"0","name":"*D277","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D277","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.9820613861484,"y":343.7870108167332,"z":0},{"x":662.0115613877701,"y":343.7870108167331,"z":0}],"handle":"BBF3","ownerHandle":"6833","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BBF5","ownerHandle":"6833","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":662.0862488918766,"y":343.7870108167329,"z":0},"height":0.02875000158064,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.030"},{"type":"LINE","vertices":[{"x":661.899028741419,"y":343.6842301024672,"z":0},{"x":661.9440287438931,"y":343.6842301024673,"z":0}],"handle":"BBF6","ownerHandle":"6833","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.9215287426562,"y":343.6617301012302,"z":0},{"x":661.9215287426562,"y":343.7067301037042,"z":0}],"handle":"BBF7","ownerHandle":"6833","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"BBF8","ownerHandle":"6833","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.9367530591721,"y":343.7100800577222,"z":0}},{"type":"POINT","handle":"BBF9","ownerHandle":"6833","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.9215287426562,"y":343.6842301024674,"z":0}}]},"7586":{"handle":"7586","ownerHandle":"7585","layer":"0","name":"*D317","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D317","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":674.3418266369808,"y":335.0774464412536,"z":0},{"x":674.3418266369808,"y":335.4376189896399,"z":0}],"handle":"BD74","ownerHandle":"7585","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":674.1238266367465,"y":335.3776189895207,"z":0},{"x":674.0058266365118,"y":335.3776189895207,"z":0}],"handle":"BD75","ownerHandle":"7585","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":674.4598266372153,"y":335.3776189895207,"z":0},{"x":674.5778266374498,"y":335.3776189895207,"z":0}],"handle":"BD76","ownerHandle":"7585","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BD79","ownerHandle":"7585","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.7999099712245,"y":335.3776189895207,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.100"},{"type":"POINT","handle":"BD7A","ownerHandle":"7585","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.2418266369809,"y":334.9774464410549,"z":0}},{"type":"POINT","handle":"BD7B","ownerHandle":"7585","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.3418266369808,"y":334.9774464410549,"z":0}},{"type":"POINT","handle":"BD7C","ownerHandle":"7585","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.3418266369808,"y":335.3776189895207,"z":0}}]},"2DD":{"handle":"2DD","ownerHandle":"2DC","layer":"0","name":"Section Callout","type":2,"position":{"x":0,"y":0,"z":0},"name2":"Section Callout","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":0.1875,"y":0,"z":0},{"x":-0.1875,"y":0,"z":0}],"handle":"3AD","ownerHandle":"2DC","layer":"0"},{"type":"LINE","vertices":[{"x":0.1875,"y":0,"z":0},{"x":0.6811772682290212,"y":0,"z":0}],"handle":"3B0","ownerHandle":"2DC","layer":"0"}]},"E25":{"handle":"E25","ownerHandle":"E1C","layer":"0","name":"FG-11x17 Border","type":2,"position":{"x":0,"y":0,"z":0},"name2":"FG-11x17 Border","xrefPath":"","entities":[{"type":"POINT","handle":"E27","ownerHandle":"E1C","layer":"Vport","position":{"x":0,"y":0,"z":0}},{"type":"LINE","vertices":[{"x":16.5,"y":0.75,"z":0},{"x":15.25,"y":0.75,"z":0}],"handle":"E28","ownerHandle":"E1C","layer":"FG-Border"},{"type":"TEXT","handle":"E29","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":15.31622398702282,"y":0.6113894294683249,"z":0},"textHeight":0.09375,"text":"Sheet No.","xScale":0.85},{"type":"LINE","vertices":[{"x":16.5,"y":1.125,"z":0},{"x":15.25,"y":1.125,"z":0}],"handle":"E2A","ownerHandle":"E1C","layer":"FG-Border"},{"type":"TEXT","handle":"E2B","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":15.31622398702282,"y":0.9863894294683248,"z":0},"textHeight":0.09375,"text":"Scale:","xScale":0.85},{"type":"LINE","vertices":[{"x":15.875,"y":1.125,"z":0},{"x":15.875,"y":1.5,"z":0}],"handle":"E2C","ownerHandle":"E1C","layer":"FG-Border"},{"type":"LINE","vertices":[{"x":16.5,"y":1.5,"z":0},{"x":15.25,"y":1.5,"z":0}],"handle":"E2D","ownerHandle":"E1C","layer":"FG-Border"},{"type":"TEXT","handle":"E2E","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":15.31622398702282,"y":1.361389429468324,"z":0},"textHeight":0.09375,"text":"Drawn:","xScale":0.85},{"type":"TEXT","handle":"E2F","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":15.94122398702282,"y":1.361389429468324,"z":0},"textHeight":0.09375,"text":"Date:","xScale":0.85},{"type":"LINE","vertices":[{"x":16.5,"y":1.875,"z":0},{"x":15.25,"y":1.875,"z":0}],"handle":"E30","ownerHandle":"E1C","layer":"FG-Border"},{"type":"TEXT","handle":"E31","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":15.31622398702282,"y":1.736389429468324,"z":0},"textHeight":0.09375,"text":"Project No.","xScale":0.85},{"type":"TEXT","handle":"E32","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":15.38861057053167,"y":1.941223987022821,"z":0},"textHeight":0.09375,"text":"Project Name:","xScale":0.85},{"type":"LINE","vertices":[{"x":16.5,"y":4.4375,"z":0},{"x":15.25,"y":4.4375,"z":0}],"handle":"E33","ownerHandle":"E1C","layer":"FG-Border"},{"type":"LINE","vertices":[{"x":15.25,"y":2e-16,"z":0},{"x":15.25,"y":10.25,"z":0}],"handle":"E34","ownerHandle":"E1C","layer":"FG-Border"},{"type":"LINE","vertices":[{"x":16.5,"y":8.375,"z":0},{"x":15.25,"y":8.375,"z":0}],"handle":"E35","ownerHandle":"E1C","layer":"FG-Border"},{"type":"LINE","vertices":[{"x":15.5625,"y":10.25,"z":0},{"x":15.5625,"y":8.375,"z":0}],"handle":"E36","ownerHandle":"E1C","layer":"FG-Border"},{"type":"LINE","vertices":[{"x":16.5,"y":8.5625,"z":0},{"x":15.25,"y":8.562500000000002,"z":0}],"handle":"E37","ownerHandle":"E1C","layer":"FG-Logo"},{"type":"LINE","vertices":[{"x":16.5,"y":9.4375,"z":0},{"x":15.25,"y":9.437500000000002,"z":0}],"handle":"E38","ownerHandle":"E1C","layer":"FG-Logo"},{"type":"LINE","vertices":[{"x":16.5,"y":9.8125,"z":0},{"x":15.25,"y":9.812500000000002,"z":0}],"handle":"E39","ownerHandle":"E1C","layer":"FG-Logo"},{"type":"LINE","vertices":[{"x":16.5,"y":10.03125,"z":0},{"x":15.25,"y":10.03125,"z":0}],"handle":"E3A","ownerHandle":"E1C","layer":"FG-Logo"},{"type":"TEXT","handle":"E3B","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":15.43459372187382,"y":8.406145103075476,"z":0},"textHeight":0.0625,"text":"NO.","halign":1,"endPoint":{"x":15.43459372187382,"y":8.483758506895393,"z":0}},{"type":"TEXT","handle":"E3C","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":15.43459372187382,"y":8.81119704916414,"z":0},"textHeight":0.0625,"text":"REVISION","halign":1,"endPoint":{"x":15.43459372187382,"y":9.01982170810002,"z":0}},{"type":"TEXT","handle":"E3D","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":15.43459372187382,"y":9.86903088853217,"z":0},"textHeight":0.0625,"text":"BY","halign":1,"endPoint":{"x":15.43459372187382,"y":9.927267587031489,"z":0}},{"type":"TEXT","handle":"E3E","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":15.47614878817657,"y":10.08619062171198,"z":0},"textHeight":0.0625,"text":"BY","halign":1,"endPoint":{"x":15.47614878817657,"y":10.1444273202113,"z":0}},{"type":"TEXT","handle":"E3F","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":15.38472723081318,"y":10.05225474176655,"z":0},"textHeight":0.0625,"text":"CKD","halign":1,"endPoint":{"x":15.38472723081318,"y":10.1444273202113,"z":0}},{"type":"TEXT","handle":"E40","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":15.47614878817657,"y":9.507783054846366,"z":0},"textHeight":0.0625,"text":"DATE","halign":1,"endPoint":{"x":15.47614878817657,"y":9.624213818829995,"z":0}},{"type":"TEXT","handle":"E41","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":15.38472723081318,"y":9.493202563714034,"z":0},"textHeight":0.0625,"text":"ISSUE","halign":1,"endPoint":{"x":15.38472723081318,"y":9.624213818829995,"z":0}},{"type":"LINE","vertices":[{"x":15.75,"y":10.25,"z":0},{"x":15.75,"y":8.375,"z":0}],"handle":"E42","ownerHandle":"E1C","layer":"FG-Logo"},{"type":"LINE","vertices":[{"x":15.9375,"y":10.25,"z":0},{"x":15.9375,"y":8.375,"z":0}],"handle":"E43","ownerHandle":"E1C","layer":"FG-Logo"},{"type":"LINE","vertices":[{"x":16.125,"y":10.25,"z":0},{"x":16.125,"y":8.375,"z":0}],"handle":"E44","ownerHandle":"E1C","layer":"FG-Logo"},{"type":"LINE","vertices":[{"x":16.3125,"y":10.25,"z":0},{"x":16.3125,"y":8.375,"z":0}],"handle":"E45","ownerHandle":"E1C","layer":"FG-Logo"},{"type":"LINE","vertices":[{"x":16.125,"y":4.4375,"z":0},{"x":16.125,"y":1.875,"z":0}],"handle":"E4E","ownerHandle":"E1C","layer":"FG-Border"},{"type":"TEXT","handle":"E50","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":16.26361057053167,"y":1.941223987022821,"z":0},"textHeight":0.09375,"text":"Sheet Title:","xScale":0.85},{"type":"TEXT","handle":"E51","ownerHandle":"E1C","layer":"FG-Note","lineType":"Continuous","visible":false,"startPoint":{"x":16.2876932884152,"y":4.780630417384017,"z":0},"textHeight":0.0646223872815218,"text":"PRODUCTS, INC."},{"type":"TEXT","handle":"E52","ownerHandle":"E1C","layer":"FG-Note","lineType":"Continuous","visible":false,"startPoint":{"x":16.16421397908618,"y":4.896012119506984,"z":0},"textHeight":0.0646223872815218,"text":"AMERICAN"},{"type":"TEXT","handle":"E56","ownerHandle":"E1C","layer":"FG-Note","lineType":"Continuous","visible":false,"startPoint":{"x":15.99010978221893,"y":5.702694084279322,"z":0},"textHeight":0.0939961996822135,"text":"CONTACT:KERRI BEALS"},{"type":"TEXT","handle":"E57","ownerHandle":"E1C","layer":"FG-Note","lineType":"Continuous","visible":false,"startPoint":{"x":15.68811653494524,"y":5.702694084279322,"z":0},"textHeight":0.0939961996822135,"text":"12157 W LINEBAUGH AVENUE #335"},{"type":"TEXT","handle":"E58","ownerHandle":"E1C","layer":"FG-Note","lineType":"Continuous","visible":false,"startPoint":{"x":15.53711991130839,"y":5.702694084279322,"z":0},"textHeight":0.0939961996822135,"text":"AMERICAN PRODUCTS, INC. (API)"},{"type":"TEXT","handle":"E59","ownerHandle":"E1C","layer":"FG-Note","lineType":"Continuous","visible":false,"startPoint":{"x":16.14110640585577,"y":5.702694084279322,"z":0},"textHeight":0.0939961996822135,"text":"PH (813)925-0144 /"},{"type":"TEXT","handle":"E5A","ownerHandle":"E1C","layer":"FG-Note","lineType":"Continuous","visible":false,"startPoint":{"x":15.83911315858208,"y":5.702694084279322,"z":0},"textHeight":0.0939961996822135,"text":"TAMPA, FL 33626"},{"type":"TEXT","handle":"E5B","ownerHandle":"E1C","layer":"FG-Note","lineType":"Continuous","visible":false,"startPoint":{"x":16.30980394355741,"y":5.701296337694996,"z":0},"textHeight":0.0939961996822135,"text":"WWW.AMERICANPROD.COM"},{"type":"LWPOLYLINE","vertices":[{"x":15.70038918344339,"y":4.868171514036259},{"x":15.79091956527286,"y":4.889350499860633},{"x":15.79026691666356,"y":4.847315726797587}],"handle":"E5C","ownerHandle":"E1C","layer":"FG-Note","visible":false,"shape":true},{"type":"LWPOLYLINE","vertices":[{"x":15.375,"y":4.5625},{"x":16.375,"y":4.5625},{"x":16.375,"y":5.5625},{"x":15.375,"y":5.5625}],"handle":"E5E","ownerHandle":"E1C","layer":"FG-Border","shape":true},{"type":"TEXT","handle":"E63","ownerHandle":"E1C","layer":"FG-Logo","startPoint":{"x":15.80487678893379,"y":5.695298462159226,"z":0},"textHeight":0.188,"text":"FLORIDA GLASS","xScale":0.85,"halign":1,"endPoint":{"x":15.80487678893379,"y":6.766898462159226,"z":0}},{"type":"TEXT","handle":"E64","ownerHandle":"E1C","layer":"FG-Logo","startPoint":{"x":16.1156678639845,"y":5.780546738021295,"z":0},"textHeight":0.188,"text":"OF TAMPA BAY","xScale":0.85,"halign":1,"endPoint":{"x":16.1156678639845,"y":6.766898462159226,"z":0}},{"type":"TEXT","handle":"E65","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":15.32098214285714,"y":8.22432530753071,"z":0},"textHeight":0.0625,"text":"13009 LYNMAR BOULEVARD","xScale":0.85,"halign":1,"endPoint":{"x":15.875,"y":8.22432530753071,"z":0}},{"type":"TEXT","handle":"E66","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":15.39813988095238,"y":8.117182450387851,"z":0},"textHeight":0.0625,"text":"TAMPA, FLORIDA 33626","xScale":0.85,"halign":1,"endPoint":{"x":15.875,"y":8.117182450387851,"z":0}},{"type":"TEXT","handle":"E67","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":15.3703125,"y":8.010039593244995,"z":0},"textHeight":0.0625,"text":"PHONE: (813) 925-1330","xScale":0.85,"halign":1,"endPoint":{"x":15.875,"y":8.010039593244995,"z":0}},{"type":"TEXT","handle":"E68","ownerHandle":"E1C","layer":"FG-Note","startPoint":{"x":15.43988095238095,"y":7.902896736102137,"z":0},"textHeight":0.0625,"text":"FAX: (813) 925-1331","xScale":0.85,"halign":1,"endPoint":{"x":15.875,"y":7.902896736102137,"z":0}}]},"13FA":{"handle":"13FA","ownerHandle":"13F9","layer":"0","name":"Fast-128-284-S","position":{"x":0,"y":0,"z":0},"name2":"Fast-128-284-S","xrefPath":"","entities":[{"type":"LWPOLYLINE","vertices":[{"x":0.132000000000005,"y":0.1080000000000041},{"x":0,"y":0.2190000000000225},{"x":0,"y":-0.2189999999999941},{"x":0.132000000000005,"y":-0.1079999999999757},{"x":0.6626587131562758,"y":-0.1079999999999757},{"x":0.8564805029709532,"y":-0.0277163859753387,"bulge":0.6681786379193252},{"x":0.8564805029709532,"y":0.0277163859753387},{"x":0.6626587131563042,"y":0.1080000000000041}],"handle":"13FC","ownerHandle":"13F9","layer":"0","shape":true}]},"13FF":{"handle":"13FF","ownerHandle":"13FE","layer":"0","name":"Fast-128-406-S","position":{"x":0,"y":0,"z":0},"name2":"Fast-128-406-S","xrefPath":"","entities":[{"type":"LWPOLYLINE","vertices":[{"x":-0.1796800000000189,"y":0.1014549999999872},{"x":-0.0400000000000205,"y":0.1014549999999872}],"handle":"1401","ownerHandle":"13FE","layer":"0","shape":false},{"type":"LWPOLYLINE","vertices":[{"x":-0.1796800000000189,"y":-0.1014649999999904},{"x":-0.0400000000000205,"y":-0.1014649999999904}],"handle":"1402","ownerHandle":"13FE","layer":"0","shape":false},{"type":"LWPOLYLINE","vertices":[{"x":-0.2146050000000059,"y":0.1521799999999871},{"x":-0.2146050000000059,"y":-0.1521950000000061}],"handle":"1403","ownerHandle":"13FE","layer":"0","shape":false},{"type":"LWPOLYLINE","vertices":[{"x":-0.0400000000000205,"y":0.2029100000000028},{"x":-0.1796941138653096,"y":0.2029100000000028,"bulge":0.6882439286536578},{"x":-0.1796910510813348,"y":0.1014488288996631,"bulge":0.3441697783146708},{"x":-0.1796820307746429,"y":-0.101460381084479,"bulge":0.6882145081578868},{"x":-0.1797071841573938,"y":-0.202920000000006},{"x":-0.0400000000000205,"y":-0.202920000000006}],"handle":"1404","ownerHandle":"13FE","layer":"0","shape":false},{"type":"LWPOLYLINE","vertices":[{"x":-0.2023100000000113,"y":0.1865899999999954},{"x":-0.183605,"y":0.1865899999999954},{"x":-0.183605,"y":-0.1865999999999985},{"x":-0.2023100000000113,"y":-0.1865999999999985}],"handle":"1405","ownerHandle":"13FE","layer":"0","shape":false},{"type":"LWPOLYLINE","vertices":[{"x":-0.0400000000000205,"y":-0.25},{"x":-0.0400000000000205,"y":0.25},{"x":0,"y":0.25},{"x":0,"y":-0.25}],"handle":"1406","ownerHandle":"13FE","layer":"0","shape":true},{"type":"LWPOLYLINE","vertices":[{"x":0,"y":-0.1253899999999817},{"x":0.6649999999999922,"y":-0.1253899999999817},{"x":1,"y":0},{"x":0.6649999999999922,"y":0.1253800000000069},{"x":0,"y":0.1253800000000069}],"handle":"1407","ownerHandle":"13FE","layer":"0","shape":false}]},"140A":{"handle":"140A","ownerHandle":"1409","layer":"0","name":"Fast-128-394-T","position":{"x":0,"y":0,"z":0},"name2":"Fast-128-394-T","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":-0.5625,"y":0,"z":0},{"x":0.5625,"y":0,"z":0}],"handle":"140C","ownerHandle":"1409","layer":"0","lineType":"CENTER2"},{"type":"LINE","vertices":[{"x":0,"y":0.5625,"z":0},{"x":0,"y":-0.5625,"z":0}],"handle":"140D","ownerHandle":"1409","layer":"0","lineType":"CENTER2"},{"type":"CIRCLE","handle":"140E","ownerHandle":"1409","layer":"0","center":{"x":5.68e-14,"y":0,"z":0},"radius":0.2125}]},"157D":{"handle":"157D","ownerHandle":"157C","layer":"0","name":"*D8","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D8","xrefPath":"","entities":[{"type":"SOLID","points":[{"x":539.4009982539707,"y":343.0204310602996,"z":0},{"x":539.484331587304,"y":343.0204310602996,"z":0},{"x":539.4426649206374,"y":342.7704310602995,"z":0},{"x":539.4426649206374,"y":342.7704310602995,"z":0}],"handle":"B2CE","ownerHandle":"157C","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":539.4009982539707,"y":345.0204310602995,"z":0},{"x":539.484331587304,"y":345.0204310602995,"z":0},{"x":539.4426649206374,"y":345.2704310602995,"z":0},{"x":539.4426649206374,"y":345.2704310602995,"z":0}],"handle":"B2CF","ownerHandle":"157C","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B2D0","ownerHandle":"157C","layer":"FG-Dtl-Dim","position":{"x":539.1926649206372,"y":344.0204310602996,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2{\\H1.000000x;\\S1#2;}\""},{"type":"POINT","handle":"B2D1","ownerHandle":"157C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":539.4426649206374,"y":342.7704310602995,"z":0}},{"type":"POINT","handle":"B2D2","ownerHandle":"157C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":539.4426649206374,"y":345.2704310602995,"z":0}},{"type":"POINT","handle":"B2D3","ownerHandle":"157C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":539.4426649206374,"y":345.2704310602995,"z":0}}]},"160E":{"handle":"160E","ownerHandle":"160D","layer":"0","name":"*D10","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D10","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":576.0527398962706,"y":330.5893676899464,"z":0},{"x":576.0527398962706,"y":328.1047429878693,"z":0}],"handle":"B2DD","ownerHandle":"160D","layer":"FG-Dtl-Dim"},{"type":"LINE","vertices":[{"x":557.3437504589007,"y":328.2297429878692,"z":0},{"x":575.8027398962706,"y":328.2297429878692,"z":0}],"handle":"B2DE","ownerHandle":"160D","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":557.3437504589007,"y":328.271409654536,"z":0},{"x":557.3437504589007,"y":328.1880763212026,"z":0},{"x":557.0937504589006,"y":328.2297429878692,"z":0},{"x":557.0937504589006,"y":328.2297429878692,"z":0}],"handle":"B2DF","ownerHandle":"160D","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":575.8027398962706,"y":328.271409654536,"z":0},{"x":575.8027398962706,"y":328.1880763212026,"z":0},{"x":576.0527398962706,"y":328.2297429878692,"z":0},{"x":576.0527398962706,"y":328.2297429878692,"z":0}],"handle":"B2E0","ownerHandle":"160D","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B2E1","ownerHandle":"160D","layer":"FG-Dtl-Dim","position":{"x":566.5732451775856,"y":328.3859929878693,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;FRAME SIZE"},{"type":"POINT","handle":"B2E2","ownerHandle":"160D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":557.0937504589006,"y":330.7143676899463,"z":0}},{"type":"POINT","handle":"B2E3","ownerHandle":"160D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":576.0527398962706,"y":330.7143676899463,"z":0}},{"type":"POINT","handle":"B2E4","ownerHandle":"160D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":576.0527398962706,"y":328.2297429878692,"z":0}}]},"163E":{"handle":"163E","ownerHandle":"163D","layer":"0","name":"*D12","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D12","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":573.5527398962706,"y":330.5893676899464,"z":0},{"x":573.5527398962706,"y":328.9577210754922,"z":0}],"handle":"B2EF","ownerHandle":"163D","layer":"FG-Dtl-Dim"},{"type":"LINE","vertices":[{"x":567.9566714625524,"y":329.0827210754922,"z":0},{"x":573.3027398962706,"y":329.0827210754922,"z":0}],"handle":"B2F0","ownerHandle":"163D","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":567.9566714625524,"y":329.1243877421589,"z":0},{"x":567.9566714625524,"y":329.0410544088255,"z":0},{"x":567.7066714625524,"y":329.0827210754922,"z":0},{"x":567.7066714625524,"y":329.0827210754922,"z":0}],"handle":"B2F1","ownerHandle":"163D","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":573.3027398962706,"y":329.1243877421589,"z":0},{"x":573.3027398962706,"y":329.0410544088255,"z":0},{"x":573.5527398962706,"y":329.0827210754922,"z":0},{"x":573.5527398962706,"y":329.0827210754922,"z":0}],"handle":"B2F2","ownerHandle":"163D","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B2F3","ownerHandle":"163D","layer":"FG-Dtl-Dim","position":{"x":570.6297056794114,"y":329.2389710754922,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;DAYLIGHT OPENING"},{"type":"POINT","handle":"B2F4","ownerHandle":"163D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":567.7066714625524,"y":330.7143676899463,"z":0}},{"type":"POINT","handle":"B2F5","ownerHandle":"163D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":573.5527398962706,"y":330.7143676899463,"z":0}},{"type":"POINT","handle":"B2F6","ownerHandle":"163D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":573.5527398962706,"y":329.0827210754922,"z":0}}]},"166C":{"handle":"166C","ownerHandle":"166B","layer":"0","name":"*D15","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D15","xrefPath":"","entities":[{"type":"SOLID","points":[{"x":575.8027398962706,"y":329.1243877421589,"z":0},{"x":575.8027398962706,"y":329.0410544088256,"z":0},{"x":576.0527398962706,"y":329.0827210754923,"z":0},{"x":576.0527398962706,"y":329.0827210754923,"z":0}],"handle":"B306","ownerHandle":"166B","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":573.8027398962706,"y":329.1243877421589,"z":0},{"x":573.8027398962706,"y":329.0410544088256,"z":0},{"x":573.5527398962706,"y":329.0827210754923,"z":0},{"x":573.5527398962706,"y":329.0827210754923,"z":0}],"handle":"B307","ownerHandle":"166B","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B308","ownerHandle":"166B","layer":"FG-Dtl-Dim","position":{"x":574.8027398962705,"y":329.3327210754922,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2{\\H1.000000x;\\S1#2;}\""},{"type":"POINT","handle":"B309","ownerHandle":"166B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":576.0527398962706,"y":329.0827210754923,"z":0}},{"type":"POINT","handle":"B30A","ownerHandle":"166B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":573.5527398962706,"y":329.0827210754923,"z":0}},{"type":"POINT","handle":"B30B","ownerHandle":"166B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":573.5527398962706,"y":329.0827210754923,"z":0}}]},"1A5B":{"handle":"1A5B","ownerHandle":"1A5A","layer":"0","name":"*D16","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D16","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":576.5527398962706,"y":329.6191530980175,"z":0},{"x":576.5527398962706,"y":327.3150678468261,"z":0}],"handle":"B30D","ownerHandle":"1A5A","layer":"FG-Dtl-Dim"},{"type":"LINE","vertices":[{"x":556.8437504589008,"y":327.4400678468261,"z":0},{"x":576.3027398962706,"y":327.4400678468261,"z":0}],"handle":"B30E","ownerHandle":"1A5A","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":556.8437504589008,"y":327.4817345134928,"z":0},{"x":556.8437504589008,"y":327.3984011801595,"z":0},{"x":556.5937504589007,"y":327.4400678468261,"z":0},{"x":556.5937504589007,"y":327.4400678468261,"z":0}],"handle":"B30F","ownerHandle":"1A5A","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":576.3027398962706,"y":327.4817345134928,"z":0},{"x":576.3027398962706,"y":327.3984011801595,"z":0},{"x":576.5527398962706,"y":327.4400678468261,"z":0},{"x":576.5527398962706,"y":327.4400678468261,"z":0}],"handle":"B310","ownerHandle":"1A5A","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B311","ownerHandle":"1A5A","layer":"FG-Dtl-Dim","position":{"x":566.5732451775856,"y":327.5963178468261,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;ROUGH OPENING"},{"type":"POINT","handle":"B312","ownerHandle":"1A5A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":556.5937504589007,"y":329.7441530980175,"z":0}},{"type":"POINT","handle":"B313","ownerHandle":"1A5A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":576.5527398962706,"y":329.7441530980175,"z":0}},{"type":"POINT","handle":"B314","ownerHandle":"1A5A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":576.5527398962706,"y":327.4400678468261,"z":0}}]},"1A7C":{"handle":"1A7C","ownerHandle":"1A7B","layer":"0","name":"*D17","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D17","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":556.3437504589008,"y":328.2297429878692,"z":0},{"x":555.6558040303293,"y":328.2297429878692,"z":0}],"handle":"B316","ownerHandle":"1A7B","layer":"FG-Dtl-Dim"},{"type":"LINE","vertices":[{"x":557.0937504589006,"y":328.2297429878692,"z":0},{"x":556.5937504589007,"y":328.2297429878692,"z":0}],"handle":"B317","ownerHandle":"1A7B","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":557.3437504589007,"y":328.271409654536,"z":0},{"x":557.3437504589007,"y":328.1880763212026,"z":0},{"x":557.0937504589006,"y":328.2297429878692,"z":0},{"x":557.0937504589006,"y":328.2297429878692,"z":0}],"handle":"B318","ownerHandle":"1A7B","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":556.3437504589008,"y":328.271409654536,"z":0},{"x":556.3437504589008,"y":328.1880763212026,"z":0},{"x":556.5937504589007,"y":328.2297429878692,"z":0},{"x":556.5937504589007,"y":328.2297429878692,"z":0}],"handle":"B319","ownerHandle":"1A7B","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B31A","ownerHandle":"1A7B","layer":"FG-Dtl-Dim","position":{"x":555.874777244615,"y":328.4797429878693,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;{\\H1.000000x;\\S1#2;}\""},{"type":"POINT","handle":"B31B","ownerHandle":"1A7B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":557.0937504589006,"y":328.2297429878692,"z":0}},{"type":"POINT","handle":"B31C","ownerHandle":"1A7B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":556.5937504589007,"y":328.2297429878692,"z":0}},{"type":"POINT","handle":"B31D","ownerHandle":"1A7B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":556.5937504589007,"y":328.2297429878692,"z":0}}]},"1A89":{"handle":"1A89","ownerHandle":"1A88","layer":"0","name":"*D18","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D18","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":576.8027398962706,"y":328.2297429878692,"z":0},{"x":577.490686324842,"y":328.2297429878692,"z":0}],"handle":"B31F","ownerHandle":"1A88","layer":"FG-Dtl-Dim"},{"type":"LINE","vertices":[{"x":576.0527398962707,"y":328.2297429878692,"z":0},{"x":576.5527398962706,"y":328.2297429878692,"z":0}],"handle":"B320","ownerHandle":"1A88","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":575.8027398962707,"y":328.271409654536,"z":0},{"x":575.8027398962707,"y":328.1880763212026,"z":0},{"x":576.0527398962707,"y":328.2297429878692,"z":0},{"x":576.0527398962707,"y":328.2297429878692,"z":0}],"handle":"B321","ownerHandle":"1A88","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":576.8027398962706,"y":328.271409654536,"z":0},{"x":576.8027398962706,"y":328.1880763212026,"z":0},{"x":576.5527398962706,"y":328.2297429878692,"z":0},{"x":576.5527398962706,"y":328.2297429878692,"z":0}],"handle":"B322","ownerHandle":"1A88","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B323","ownerHandle":"1A88","layer":"FG-Dtl-Dim","position":{"x":577.2717131105563,"y":328.4797429878693,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;{\\H1.000000x;\\S1#2;}\""},{"type":"POINT","handle":"B324","ownerHandle":"1A88","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":576.0527398962707,"y":328.2297429878692,"z":0}},{"type":"POINT","handle":"B325","ownerHandle":"1A88","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":576.5527398962706,"y":328.2297429878692,"z":0}},{"type":"POINT","handle":"B326","ownerHandle":"1A88","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":576.5527398962706,"y":328.2297429878692,"z":0}}]},"1B79":{"handle":"1B79","ownerHandle":"1B78","layer":"0","name":"*D19","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D19","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":292.3510860704455,"y":161.8401280553116,"z":0},{"x":292.3510860704455,"y":146.3311490060021,"z":0}],"handle":"A6F7","ownerHandle":"1B78","layer":"FG-Dim"},{"type":"LINE","vertices":[{"x":289.8510860704455,"y":149.3311490060021,"z":0},{"x":283.8510860704455,"y":149.3311490060021,"z":0}],"handle":"A6F8","ownerHandle":"1B78","layer":"FG-Dim"},{"type":"LINE","vertices":[{"x":292.3510860704455,"y":149.3311490060021,"z":0},{"x":332.5296574990169,"y":149.3311490060021,"z":0}],"handle":"A6F9","ownerHandle":"1B78","layer":"FG-Dim"},{"type":"LINE","vertices":[{"x":289.8510860704455,"y":149.3311490060021,"z":0},{"x":292.3510860704455,"y":149.3311490060021,"z":0}],"handle":"A6FA","ownerHandle":"1B78","layer":"FG-Dim"},{"type":"MTEXT","handle":"A6FD","ownerHandle":"1B78","layer":"FG-Dim","position":{"x":318.4403717847312,"y":156.0811490060021,"z":0},"height":4.5,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2{\\H1.000000x;\\S1#2;}\" typ."},{"type":"POINT","handle":"A6FE","ownerHandle":"1B78","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":289.8510860704455,"y":164.8401280553116,"z":0}},{"type":"POINT","handle":"A6FF","ownerHandle":"1B78","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":292.3510860704455,"y":164.8401280553116,"z":0}},{"type":"POINT","handle":"A700","ownerHandle":"1B78","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":292.3510860704455,"y":149.3311490060021,"z":0}}]},"1BE0":{"handle":"1BE0","ownerHandle":"1BDF","layer":"0","name":"*D20","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D20","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":392.4080167736164,"y":477.3401280553115,"z":0},{"x":392.4080167736164,"y":499.8508423410259,"z":0}],"handle":"A702","ownerHandle":"1BDF","layer":"FG-Dim"},{"type":"LINE","vertices":[{"x":392.4080167736164,"y":476.8401280553116,"z":0},{"x":392.4080167736164,"y":477.3401280553115,"z":0}],"handle":"A703","ownerHandle":"1BDF","layer":"FG-Dim"},{"type":"MTEXT","handle":"A706","ownerHandle":"1BDF","layer":"FG-Dim","position":{"x":386.4080167736163,"y":494.5954851981688,"z":0},"height":4.5,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;{\\H1.000000x;\\S1#2;}\""},{"type":"POINT","handle":"A707","ownerHandle":"1BDF","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":392.4080167736164,"y":476.8401280553116,"z":0}},{"type":"POINT","handle":"A708","ownerHandle":"1BDF","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":392.4080167736164,"y":477.3401280553115,"z":0}},{"type":"POINT","handle":"A709","ownerHandle":"1BDF","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":392.4080167736164,"y":477.3401280553115,"z":0}}]},"1BFF":{"handle":"1BFF","ownerHandle":"1BFE","layer":"0","name":"*D21","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D21","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":392.4080167736164,"y":164.3401280553118,"z":0},{"x":392.4080167736164,"y":141.8294137695975,"z":0}],"handle":"A70B","ownerHandle":"1BFE","layer":"FG-Dim"},{"type":"LINE","vertices":[{"x":392.4080167736164,"y":164.8401280553117,"z":0},{"x":392.4080167736164,"y":164.3401280553118,"z":0}],"handle":"A70C","ownerHandle":"1BFE","layer":"FG-Dim"},{"type":"MTEXT","handle":"A70F","ownerHandle":"1BFE","layer":"FG-Dim","position":{"x":386.4080167736163,"y":147.0847709124547,"z":0},"height":4.5,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;{\\H1.000000x;\\S1#2;}\""},{"type":"POINT","handle":"A710","ownerHandle":"1BFE","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":392.4080167736164,"y":164.8401280553117,"z":0}},{"type":"POINT","handle":"A711","ownerHandle":"1BFE","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":392.4080167736164,"y":164.3401280553118,"z":0}},{"type":"POINT","handle":"A712","ownerHandle":"1BFE","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":392.4080167736164,"y":164.3401280553118,"z":0}}]},"1C15":{"handle":"1C15","ownerHandle":"1C14","layer":"0","name":"*D22","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D22","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":169.3510860704455,"y":518.0751418993036,"z":0},{"x":169.3510860704455,"y":517.5751418993036,"z":0}],"handle":"A714","ownerHandle":"1C14","layer":"FG-Dim"},{"type":"LINE","vertices":[{"x":169.8510860704455,"y":520.5751418993036,"z":0},{"x":175.8510860704455,"y":520.5751418993036,"z":0}],"handle":"A715","ownerHandle":"1C14","layer":"FG-Dim"},{"type":"LINE","vertices":[{"x":169.3510860704455,"y":520.5751418993036,"z":0},{"x":146.8403717847312,"y":520.5751418993036,"z":0}],"handle":"A716","ownerHandle":"1C14","layer":"FG-Dim"},{"type":"LINE","vertices":[{"x":169.8510860704455,"y":520.5751418993036,"z":0},{"x":169.3510860704455,"y":520.5751418993036,"z":0}],"handle":"A717","ownerHandle":"1C14","layer":"FG-Dim"},{"type":"MTEXT","handle":"A71A","ownerHandle":"1C14","layer":"FG-Dim","position":{"x":152.0957289275883,"y":526.5751418993036,"z":0},"height":4.5,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;{\\H1.000000x;\\S1#2;}\""},{"type":"POINT","handle":"A71B","ownerHandle":"1C14","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":169.8510860704455,"y":521.0751418993035,"z":0}},{"type":"POINT","handle":"A71C","ownerHandle":"1C14","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":169.3510860704455,"y":521.0751418993035,"z":0}},{"type":"POINT","handle":"A71D","ownerHandle":"1C14","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":169.3510860704455,"y":520.5751418993036,"z":0}}]},"1C87":{"handle":"1C87","ownerHandle":"1C86","layer":"0","name":"*D23","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D23","xrefPath":"","entities":[{"type":"SOLID","points":[{"x":539.4009982539708,"y":336.5445861367825,"z":0},{"x":539.4843315873042,"y":336.5445861367825,"z":0},{"x":539.4426649206375,"y":336.7945861367825,"z":0},{"x":539.4426649206375,"y":336.7945861367825,"z":0}],"handle":"B338","ownerHandle":"1C86","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":539.4009982539708,"y":334.5445861367825,"z":0},{"x":539.4843315873042,"y":334.5445861367825,"z":0},{"x":539.4426649206375,"y":334.2945861367825,"z":0},{"x":539.4426649206375,"y":334.2945861367825,"z":0}],"handle":"B339","ownerHandle":"1C86","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B33A","ownerHandle":"1C86","layer":"FG-Dtl-Dim","position":{"x":539.1926649206374,"y":335.5445861367826,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2{\\H1.000000x;\\S1#2;}\""},{"type":"POINT","handle":"B33B","ownerHandle":"1C86","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":539.4426649206375,"y":336.7945861367825,"z":0}},{"type":"POINT","handle":"B33C","ownerHandle":"1C86","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":539.4426649206375,"y":334.2945861367825,"z":0}},{"type":"POINT","handle":"B33D","ownerHandle":"1C86","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":539.4426649206375,"y":334.2945861367825,"z":0}}]},"1C91":{"handle":"1C91","ownerHandle":"1C90","layer":"0","name":"*D24","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D24","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":539.4426649206374,"y":338.5445861367827,"z":0},{"x":539.4426649206374,"y":337.0445861367825,"z":0}],"handle":"B328","ownerHandle":"1C90","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":539.4009982539707,"y":338.5445861367827,"z":0},{"x":539.484331587304,"y":338.5445861367827,"z":0},{"x":539.4426649206374,"y":338.7945861367827,"z":0},{"x":539.4426649206374,"y":338.7945861367827,"z":0}],"handle":"B329","ownerHandle":"1C90","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":539.4009982539707,"y":337.0445861367825,"z":0},{"x":539.484331587304,"y":337.0445861367825,"z":0},{"x":539.4426649206374,"y":336.7945861367825,"z":0},{"x":539.4426649206374,"y":336.7945861367825,"z":0}],"handle":"B32A","ownerHandle":"1C90","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B32B","ownerHandle":"1C90","layer":"FG-Dtl-Dim","position":{"x":539.2864149206372,"y":337.7945861367827,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;D.L.O."},{"type":"POINT","handle":"B32C","ownerHandle":"1C90","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":539.4426649206374,"y":338.7945861367827,"z":0}},{"type":"POINT","handle":"B32D","ownerHandle":"1C90","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":538.1023942530417,"y":336.7945861367825,"z":0}},{"type":"POINT","handle":"B32E","ownerHandle":"1C90","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":539.4426649206374,"y":336.7945861367825,"z":0}}]},"1C9D":{"handle":"1C9D","ownerHandle":"1C9C","layer":"0","name":"*D25","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D25","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":539.4426649206374,"y":334.0445861367825,"z":0},{"x":539.4426649206374,"y":332.5445861367824,"z":0}],"handle":"B330","ownerHandle":"1C9C","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":539.4009982539707,"y":334.0445861367825,"z":0},{"x":539.484331587304,"y":334.0445861367825,"z":0},{"x":539.4426649206374,"y":334.2945861367825,"z":0},{"x":539.4426649206374,"y":334.2945861367825,"z":0}],"handle":"B331","ownerHandle":"1C9C","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":539.4009982539707,"y":332.5445861367824,"z":0},{"x":539.484331587304,"y":332.5445861367824,"z":0},{"x":539.4426649206374,"y":332.2945861367824,"z":0},{"x":539.4426649206374,"y":332.2945861367824,"z":0}],"handle":"B332","ownerHandle":"1C9C","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B333","ownerHandle":"1C9C","layer":"FG-Dtl-Dim","position":{"x":539.2864149206372,"y":333.2945861367826,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;D.L.O."},{"type":"POINT","handle":"B334","ownerHandle":"1C9C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":538.1023942530417,"y":334.2945861367825,"z":0}},{"type":"POINT","handle":"B335","ownerHandle":"1C9C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":539.4426649206374,"y":332.2945861367824,"z":0}},{"type":"POINT","handle":"B336","ownerHandle":"1C9C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":539.4426649206374,"y":332.2945861367824,"z":0}}]},"1CED":{"handle":"1CED","ownerHandle":"1CEC","layer":"0","name":"*D26","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D26","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":514.5584740971783,"y":334.2945861367825,"z":0},{"x":512.6757233937969,"y":334.2945861367825,"z":0}],"handle":"B33F","ownerHandle":"1CEC","layer":"FG-Dtl-Dim"},{"type":"LINE","vertices":[{"x":512.8007233937969,"y":332.5445861367825,"z":0},{"x":512.8007233937969,"y":334.0445861367825,"z":0}],"handle":"B340","ownerHandle":"1CEC","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":512.7590567271303,"y":332.5445861367825,"z":0},{"x":512.8423900604635,"y":332.5445861367825,"z":0},{"x":512.8007233937969,"y":332.2945861367825,"z":0},{"x":512.8007233937969,"y":332.2945861367825,"z":0}],"handle":"B341","ownerHandle":"1CEC","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":512.7590567271303,"y":334.0445861367825,"z":0},{"x":512.8423900604635,"y":334.0445861367825,"z":0},{"x":512.8007233937969,"y":334.2945861367825,"z":0},{"x":512.8007233937969,"y":334.2945861367825,"z":0}],"handle":"B342","ownerHandle":"1CEC","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B343","ownerHandle":"1CEC","layer":"FG-Dtl-Dim","position":{"x":512.6266162509397,"y":333.2945861367826,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2\""},{"type":"POINT","handle":"B344","ownerHandle":"1CEC","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":513.7816212321078,"y":332.2945861367825,"z":0}},{"type":"POINT","handle":"B345","ownerHandle":"1CEC","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":514.6834740971784,"y":334.2945861367825,"z":0}},{"type":"POINT","handle":"B346","ownerHandle":"1CEC","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":512.8007233937969,"y":334.2945861367825,"z":0}}]},"1D1A":{"handle":"1D1A","ownerHandle":"1D19","layer":"0","name":"*D27","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D27","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":538.1023942530418,"y":332.1695861367824,"z":0},{"x":538.1023942530418,"y":330.6237400045949,"z":0}],"handle":"B348","ownerHandle":"1D19","layer":"FG-Dtl-Dim"},{"type":"LINE","vertices":[{"x":530.8623942530401,"y":330.7487400045949,"z":0},{"x":537.8523942530417,"y":330.7487400045949,"z":0}],"handle":"B349","ownerHandle":"1D19","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":530.8623942530401,"y":330.7904066712616,"z":0},{"x":530.8623942530401,"y":330.7070733379282,"z":0},{"x":530.61239425304,"y":330.7487400045949,"z":0},{"x":530.61239425304,"y":330.7487400045949,"z":0}],"handle":"B34A","ownerHandle":"1D19","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":537.8523942530417,"y":330.7904066712616,"z":0},{"x":537.8523942530417,"y":330.7070733379282,"z":0},{"x":538.1023942530418,"y":330.7487400045949,"z":0},{"x":538.1023942530418,"y":330.7487400045949,"z":0}],"handle":"B34B","ownerHandle":"1D19","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B34C","ownerHandle":"1D19","layer":"FG-Dtl-Dim","position":{"x":534.3573942530408,"y":330.9987400045949,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;7{\\H1.000000x;\\S1#2;}\""},{"type":"POINT","handle":"B34D","ownerHandle":"1D19","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":530.61239425304,"y":332.2945861367825,"z":0}},{"type":"POINT","handle":"B34E","ownerHandle":"1D19","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":538.1023942530418,"y":332.2945861367824,"z":0}},{"type":"POINT","handle":"B34F","ownerHandle":"1D19","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":538.1023942530418,"y":330.7487400045949,"z":0}}]},"20A8":{"handle":"20A8","ownerHandle":"20A5","paperSpace":true,"layer":"0","name":"*Paper_Space28","position":{"x":0,"y":0,"z":0},"name2":"*Paper_Space28","xrefPath":"","entities":[]},"20FE":{"handle":"20FE","ownerHandle":"20FD","layer":"0","name":"*D29","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D29","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":539.4426649206374,"y":342.5204310602995,"z":0},{"x":539.4426649206374,"y":341.0204310602994,"z":0}],"handle":"BD89","ownerHandle":"20FD","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":539.4009982539707,"y":342.5204310602995,"z":0},{"x":539.484331587304,"y":342.5204310602995,"z":0},{"x":539.4426649206374,"y":342.7704310602995,"z":0},{"x":539.4426649206374,"y":342.7704310602995,"z":0}],"handle":"BD8A","ownerHandle":"20FD","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":539.4009982539707,"y":341.0204310602994,"z":0},{"x":539.484331587304,"y":341.0204310602994,"z":0},{"x":539.4426649206374,"y":340.7704310602994,"z":0},{"x":539.4426649206374,"y":340.7704310602994,"z":0}],"handle":"BD8B","ownerHandle":"20FD","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"BD8C","ownerHandle":"20FD","layer":"FG-Dtl-Dim","position":{"x":539.2864149206372,"y":341.7704310602995,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;D.L.O."},{"type":"POINT","handle":"BD8D","ownerHandle":"20FD","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":538.1023942530417,"y":342.7704310602995,"z":0}},{"type":"POINT","handle":"BD8E","ownerHandle":"20FD","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":539.4426649206374,"y":340.7704310602994,"z":0}},{"type":"POINT","handle":"BD8F","ownerHandle":"20FD","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":539.4426649206374,"y":340.7704310602994,"z":0}}]},"210C":{"handle":"210C","ownerHandle":"210B","layer":"0","name":"*D30","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D30","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":523.5137447647757,"y":338.5445861367824,"z":0},{"x":523.5137447647757,"y":337.0445861367822,"z":0}],"handle":"B359","ownerHandle":"210B","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":523.4720780981091,"y":338.5445861367824,"z":0},{"x":523.5554114314424,"y":338.5445861367824,"z":0},{"x":523.5137447647757,"y":338.7945861367824,"z":0},{"x":523.5137447647757,"y":338.7945861367824,"z":0}],"handle":"B35A","ownerHandle":"210B","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":523.4720780981091,"y":337.0445861367822,"z":0},{"x":523.5554114314424,"y":337.0445861367822,"z":0},{"x":523.5137447647757,"y":336.7945861367822,"z":0},{"x":523.5137447647757,"y":336.7945861367822,"z":0}],"handle":"B35B","ownerHandle":"210B","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B35C","ownerHandle":"210B","layer":"FG-Dtl-Dim","position":{"x":523.3574947647757,"y":337.7945861367824,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;D.L.O."},{"type":"POINT","handle":"B35D","ownerHandle":"210B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":523.5137447647757,"y":338.7945861367824,"z":0}},{"type":"POINT","handle":"B35E","ownerHandle":"210B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":522.17347409718,"y":336.7945861367822,"z":0}},{"type":"POINT","handle":"B35F","ownerHandle":"210B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":523.5137447647757,"y":336.7945861367822,"z":0}}]},"211A":{"handle":"211A","ownerHandle":"2119","layer":"0","name":"*D31","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D31","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":523.5137447647757,"y":334.0445861367825,"z":0},{"x":523.5137447647757,"y":322.6558600731113,"z":0}],"handle":"B361","ownerHandle":"2119","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":523.472078098109,"y":334.0445861367825,"z":0},{"x":523.5554114314423,"y":334.0445861367825,"z":0},{"x":523.5137447647757,"y":334.2945861367825,"z":0},{"x":523.5137447647757,"y":334.2945861367825,"z":0}],"handle":"B362","ownerHandle":"2119","layer":"FG-Dtl-Dim"},{"type":"SOLID","points":[{"x":523.472078098109,"y":322.6558600731113,"z":0},{"x":523.5554114314423,"y":322.6558600731113,"z":0},{"x":523.5137447647757,"y":322.4058600731113,"z":0},{"x":523.5137447647757,"y":322.4058600731113,"z":0}],"handle":"B363","ownerHandle":"2119","layer":"FG-Dtl-Dim"},{"type":"MTEXT","handle":"B364","ownerHandle":"2119","layer":"FG-Dtl-Dim","position":{"x":523.3574947647755,"y":328.350223104947,"z":0},"height":0.1875,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;D.L.O."},{"type":"POINT","handle":"B365","ownerHandle":"2119","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":522.17347409718,"y":334.2945861367825,"z":0}},{"type":"POINT","handle":"B366","ownerHandle":"2119","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":523.5137447647757,"y":322.4058600731113,"z":0}},{"type":"POINT","handle":"B367","ownerHandle":"2119","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":523.5137447647757,"y":322.4058600731113,"z":0}}]},"220A":{"handle":"220A","ownerHandle":"2209","layer":"0","name":"*U33","type":3,"position":{"x":0,"y":0,"z":0},"name2":"*U33","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":0.1875,"y":0,"z":0},{"x":-0.1875,"y":0,"z":0}],"handle":"220D","ownerHandle":"2209","layer":"0"},{"type":"LINE","vertices":[{"x":-0.1325825214724777,"y":-0.1325825214724776,"z":0},{"x":-0.4816650655548688,"y":-0.4816650655548686,"z":0}],"handle":"2210","ownerHandle":"2209","layer":"0"}]},"22A6":{"handle":"22A6","ownerHandle":"22A5","layer":"0","name":"*U35","type":3,"position":{"x":0,"y":0,"z":0},"name2":"*U35","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":0.1875,"y":0,"z":0},{"x":-0.1875,"y":0,"z":0}],"handle":"22A9","ownerHandle":"22A5","layer":"0"},{"type":"LINE","vertices":[{"x":-0.1875,"y":-5e-16,"z":0},{"x":-0.6811772682290212,"y":-1.7e-15,"z":0}],"handle":"22AC","ownerHandle":"22A5","layer":"0"}]},"22C3":{"handle":"22C3","ownerHandle":"22C2","layer":"0","name":"*U36","type":3,"position":{"x":0,"y":0,"z":0},"name2":"*U36","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":0.1875,"y":0,"z":0},{"x":-0.1875,"y":0,"z":0}],"handle":"22C6","ownerHandle":"22C2","layer":"0"},{"type":"LINE","vertices":[{"x":0.1875,"y":-3e-16,"z":0},{"x":0.6811772682290212,"y":-1.3e-15,"z":0}],"handle":"22C9","ownerHandle":"22C2","layer":"0"}]},"22E0":{"handle":"22E0","ownerHandle":"22DF","layer":"0","name":"*U37","type":3,"position":{"x":0,"y":0,"z":0},"name2":"*U37","xrefPath":"","entities":[{"type":"POINT","handle":"22E3","ownerHandle":"22DF","layer":"Vport","position":{"x":0,"y":0,"z":0}},{"type":"LINE","vertices":[{"x":16.5,"y":0.75,"z":0},{"x":15.25,"y":0.75,"z":0}],"handle":"22E4","ownerHandle":"22DF","layer":"FG-Border"},{"type":"TEXT","handle":"22E5","ownerHandle":"22DF","layer":"FG-Note","startPoint":{"x":15.31622398702282,"y":0.6113894294683249,"z":0},"textHeight":0.09375,"text":"Sheet No.","xScale":0.85},{"type":"LINE","vertices":[{"x":16.5,"y":1.125,"z":0},{"x":15.25,"y":1.125,"z":0}],"handle":"22E6","ownerHandle":"22DF","layer":"FG-Border"},{"type":"TEXT","handle":"22E7","ownerHandle":"22DF","layer":"FG-Note","startPoint":{"x":15.31622398702282,"y":0.9863894294683248,"z":0},"textHeight":0.09375,"text":"Scale:","xScale":0.85},{"type":"LINE","vertices":[{"x":15.875,"y":1.125,"z":0},{"x":15.875,"y":1.5,"z":0}],"handle":"22E8","ownerHandle":"22DF","layer":"FG-Border"},{"type":"LINE","vertices":[{"x":16.5,"y":1.5,"z":0},{"x":15.25,"y":1.5,"z":0}],"handle":"22E9","ownerHandle":"22DF","layer":"FG-Border"},{"type":"TEXT","handle":"22EA","ownerHandle":"22DF","layer":"FG-Note","startPoint":{"x":15.31622398702282,"y":1.361389429468324,"z":0},"textHeight":0.09375,"text":"Drawn:","xScale":0.85},{"type":"TEXT","handle":"22EB","ownerHandle":"22DF","layer":"FG-Note","startPoint":{"x":15.94122398702282,"y":1.361389429468324,"z":0},"textHeight":0.09375,"text":"Date:","xScale":0.85},{"type":"LINE","vertices":[{"x":16.5,"y":1.875,"z":0},{"x":15.25,"y":1.875,"z":0}],"handle":"22EC","ownerHandle":"22DF","layer":"FG-Border"},{"type":"TEXT","handle":"22ED","ownerHandle":"22DF","layer":"FG-Note","startPoint":{"x":15.31622398702282,"y":1.736389429468324,"z":0},"textHeight":0.09375,"text":"Project No.","xScale":0.85},{"type":"TEXT","handle":"22EE","ownerHandle":"22DF","layer":"FG-Note","startPoint":{"x":15.38861057053167,"y":1.941223987022821,"z":0},"textHeight":0.09375,"text":"Project Name:","xScale":0.85},{"type":"LINE","vertices":[{"x":16.5,"y":4.4375,"z":0},{"x":15.25,"y":4.4375,"z":0}],"handle":"22EF","ownerHandle":"22DF","layer":"FG-Border"},{"type":"LINE","vertices":[{"x":15.25,"y":2e-16,"z":0},{"x":15.25,"y":10.25,"z":0}],"handle":"22F0","ownerHandle":"22DF","layer":"FG-Border"},{"type":"LINE","vertices":[{"x":16.5,"y":8.375,"z":0},{"x":15.25,"y":8.375,"z":0}],"handle":"22F1","ownerHandle":"22DF","layer":"FG-Border"},{"type":"LINE","vertices":[{"x":15.5625,"y":10.25,"z":0},{"x":15.5625,"y":8.375,"z":0}],"handle":"22F2","ownerHandle":"22DF","layer":"FG-Border"},{"type":"LINE","vertices":[{"x":16.5,"y":8.5625,"z":0},{"x":15.25,"y":8.562500000000002,"z":0}],"handle":"22F3","ownerHandle":"22DF","layer":"FG-Logo"},{"type":"LINE","vertices":[{"x":16.5,"y":9.4375,"z":0},{"x":15.25,"y":9.437500000000002,"z":0}],"handle":"22F4","ownerHandle":"22DF","layer":"FG-Logo"},{"type":"LINE","vertices":[{"x":16.5,"y":9.8125,"z":0},{"x":15.25,"y":9.812500000000002,"z":0}],"handle":"22F5","ownerHandle":"22DF","layer":"FG-Logo"},{"type":"LINE","vertices":[{"x":16.5,"y":10.03125,"z":0},{"x":15.25,"y":10.03125,"z":0}],"handle":"22F6","ownerHandle":"22DF","layer":"FG-Logo"},{"type":"TEXT","handle":"22F7","ownerHandle":"22DF","layer":"FG-Note","startPoint":{"x":15.43459372187382,"y":8.406145103075476,"z":0},"textHeight":0.0625,"text":"NO.","halign":1,"endPoint":{"x":15.43459372187382,"y":8.483758506895393,"z":0}},{"type":"TEXT","handle":"22F8","ownerHandle":"22DF","layer":"FG-Note","startPoint":{"x":15.43459372187382,"y":8.81119704916414,"z":0},"textHeight":0.0625,"text":"REVISION","halign":1,"endPoint":{"x":15.43459372187382,"y":9.01982170810002,"z":0}},{"type":"TEXT","handle":"22F9","ownerHandle":"22DF","layer":"FG-Note","startPoint":{"x":15.43459372187382,"y":9.86903088853217,"z":0},"textHeight":0.0625,"text":"BY","halign":1,"endPoint":{"x":15.43459372187382,"y":9.927267587031489,"z":0}},{"type":"TEXT","handle":"22FA","ownerHandle":"22DF","layer":"FG-Note","startPoint":{"x":15.47614878817657,"y":10.08619062171198,"z":0},"textHeight":0.0625,"text":"BY","halign":1,"endPoint":{"x":15.47614878817657,"y":10.1444273202113,"z":0}},{"type":"TEXT","handle":"22FB","ownerHandle":"22DF","layer":"FG-Note","startPoint":{"x":15.38472723081318,"y":10.05225474176655,"z":0},"textHeight":0.0625,"text":"CKD","halign":1,"endPoint":{"x":15.38472723081318,"y":10.1444273202113,"z":0}},{"type":"TEXT","handle":"22FC","ownerHandle":"22DF","layer":"FG-Note","startPoint":{"x":15.47614878817657,"y":9.507783054846366,"z":0},"textHeight":0.0625,"text":"DATE","halign":1,"endPoint":{"x":15.47614878817657,"y":9.624213818829995,"z":0}},{"type":"TEXT","handle":"22FD","ownerHandle":"22DF","layer":"FG-Note","startPoint":{"x":15.38472723081318,"y":9.493202563714034,"z":0},"textHeight":0.0625,"text":"ISSUE","halign":1,"endPoint":{"x":15.38472723081318,"y":9.624213818829995,"z":0}},{"type":"LINE","vertices":[{"x":15.75,"y":10.25,"z":0},{"x":15.75,"y":8.375,"z":0}],"handle":"22FE","ownerHandle":"22DF","layer":"FG-Logo"},{"type":"LINE","vertices":[{"x":15.9375,"y":10.25,"z":0},{"x":15.9375,"y":8.375,"z":0}],"handle":"22FF","ownerHandle":"22DF","layer":"FG-Logo"},{"type":"LINE","vertices":[{"x":16.125,"y":10.25,"z":0},{"x":16.125,"y":8.375,"z":0}],"handle":"2300","ownerHandle":"22DF","layer":"FG-Logo"},{"type":"LINE","vertices":[{"x":16.3125,"y":10.25,"z":0},{"x":16.3125,"y":8.375,"z":0}],"handle":"2301","ownerHandle":"22DF","layer":"FG-Logo"},{"type":"LINE","vertices":[{"x":16.125,"y":4.4375,"z":0},{"x":16.125,"y":1.875,"z":0}],"handle":"230A","ownerHandle":"22DF","layer":"FG-Border"},{"type":"TEXT","handle":"230C","ownerHandle":"22DF","layer":"FG-Note","startPoint":{"x":16.26361057053167,"y":1.941223987022821,"z":0},"textHeight":0.09375,"text":"Sheet Title:","xScale":0.85},{"type":"TEXT","handle":"230D","ownerHandle":"22DF","layer":"FG-Note","lineType":"Continuous","startPoint":{"x":16.2876932884152,"y":4.780630417384017,"z":0},"textHeight":0.0646223872815218,"text":"PRODUCTS, INC."},{"type":"TEXT","handle":"230E","ownerHandle":"22DF","layer":"FG-Note","lineType":"Continuous","startPoint":{"x":16.16421397908618,"y":4.896012119506984,"z":0},"textHeight":0.0646223872815218,"text":"AMERICAN"},{"type":"TEXT","handle":"2312","ownerHandle":"22DF","layer":"FG-Note","lineType":"Continuous","startPoint":{"x":15.99010978221893,"y":5.702694084279322,"z":0},"textHeight":0.0939961996822135,"text":"CONTACT:KERRI BEALS"},{"type":"TEXT","handle":"2313","ownerHandle":"22DF","layer":"FG-Note","lineType":"Continuous","startPoint":{"x":15.68811653494524,"y":5.702694084279322,"z":0},"textHeight":0.0939961996822135,"text":"12157 W LINEBAUGH AVENUE #335"},{"type":"TEXT","handle":"2314","ownerHandle":"22DF","layer":"FG-Note","lineType":"Continuous","startPoint":{"x":15.53711991130839,"y":5.702694084279322,"z":0},"textHeight":0.0939961996822135,"text":"AMERICAN PRODUCTS, INC. (API)"},{"type":"TEXT","handle":"2315","ownerHandle":"22DF","layer":"FG-Note","lineType":"Continuous","startPoint":{"x":16.14110640585577,"y":5.702694084279322,"z":0},"textHeight":0.0939961996822135,"text":"PH (813)925-0144 /"},{"type":"TEXT","handle":"2316","ownerHandle":"22DF","layer":"FG-Note","lineType":"Continuous","startPoint":{"x":15.83911315858208,"y":5.702694084279322,"z":0},"textHeight":0.0939961996822135,"text":"TAMPA, FL 33626"},{"type":"TEXT","handle":"2317","ownerHandle":"22DF","layer":"FG-Note","lineType":"Continuous","startPoint":{"x":16.30980394355741,"y":5.701296337694996,"z":0},"textHeight":0.0939961996822135,"text":"WWW.AMERICANPROD.COM"},{"type":"LWPOLYLINE","vertices":[{"x":15.70038918344339,"y":4.868171514036259},{"x":15.79091956527286,"y":4.889350499860633},{"x":15.79026691666356,"y":4.847315726797587}],"handle":"2318","ownerHandle":"22DF","layer":"FG-Note","shape":true},{"type":"LWPOLYLINE","vertices":[{"x":15.375,"y":4.5625},{"x":16.375,"y":4.5625},{"x":16.375,"y":5.5625},{"x":15.375,"y":5.5625}],"handle":"231A","ownerHandle":"22DF","layer":"FG-Border","visible":false,"shape":true},{"type":"TEXT","handle":"231F","ownerHandle":"22DF","layer":"FG-Logo","visible":false,"startPoint":{"x":15.80487678893379,"y":5.695298462159226,"z":0},"textHeight":0.188,"text":"FLORIDA GLASS","xScale":0.85,"halign":1,"endPoint":{"x":15.80487678893379,"y":6.766898462159226,"z":0}},{"type":"TEXT","handle":"2320","ownerHandle":"22DF","layer":"FG-Logo","visible":false,"startPoint":{"x":16.1156678639845,"y":5.780546738021295,"z":0},"textHeight":0.188,"text":"OF TAMPA BAY","xScale":0.85,"halign":1,"endPoint":{"x":16.1156678639845,"y":6.766898462159226,"z":0}},{"type":"TEXT","handle":"2321","ownerHandle":"22DF","layer":"FG-Note","visible":false,"startPoint":{"x":15.32098214285714,"y":8.22432530753071,"z":0},"textHeight":0.0625,"text":"13009 LYNMAR BOULEVARD","xScale":0.85,"halign":1,"endPoint":{"x":15.875,"y":8.22432530753071,"z":0}},{"type":"TEXT","handle":"2322","ownerHandle":"22DF","layer":"FG-Note","visible":false,"startPoint":{"x":15.39813988095238,"y":8.117182450387851,"z":0},"textHeight":0.0625,"text":"TAMPA, FLORIDA 33626","xScale":0.85,"halign":1,"endPoint":{"x":15.875,"y":8.117182450387851,"z":0}},{"type":"TEXT","handle":"2323","ownerHandle":"22DF","layer":"FG-Note","visible":false,"startPoint":{"x":15.3703125,"y":8.010039593244995,"z":0},"textHeight":0.0625,"text":"PHONE: (813) 925-1330","xScale":0.85,"halign":1,"endPoint":{"x":15.875,"y":8.010039593244995,"z":0}},{"type":"TEXT","handle":"2324","ownerHandle":"22DF","layer":"FG-Note","visible":false,"startPoint":{"x":15.43988095238095,"y":7.902896736102137,"z":0},"textHeight":0.0625,"text":"FAX: (813) 925-1331","xScale":0.85,"halign":1,"endPoint":{"x":15.875,"y":7.902896736102137,"z":0}}]},"21B4":{"handle":"21B4","ownerHandle":"21B1","paperSpace":true,"layer":"0","name":"*Paper_Space38","position":{"x":0,"y":0,"z":0},"name2":"*Paper_Space38","xrefPath":"","entities":[{"type":"TEXT","handle":"327D","ownerHandle":"21B1","inPaperSpace":true,"layer":"FG-Title","startPoint":{"x":9.176771915441755,"y":0.6952163379022807,"z":0},"textHeight":0.25,"text":"%%UTypical Assembly Detail"},{"type":"TEXT","handle":"787E","ownerHandle":"21B1","inPaperSpace":true,"layer":"FG-Title","startPoint":{"x":2.058915675814155,"y":4.976314086161988,"z":0},"textHeight":0.25,"text":"%%UTypical Horizontal /"},{"type":"TEXT","handle":"788C","ownerHandle":"21B1","inPaperSpace":true,"layer":"FG-Title","startPoint":{"x":2.04243421827843,"y":4.548076258138802,"z":0},"textHeight":0.25,"text":"%%UVertical Intersection"}]},"2A89":{"handle":"2A89","ownerHandle":"2A88","layer":"0","name":"*D40","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D40","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":169.3510860704455,"y":305.8401280553117,"z":0},{"x":158.6377333269056,"y":305.8401280553117,"z":0}],"handle":"A76B","ownerHandle":"2A88","layer":"FG-Dim"},{"type":"LINE","vertices":[{"x":161.6377333269056,"y":308.3401280553117,"z":0},{"x":161.6377333269056,"y":314.3401280553117,"z":0}],"handle":"A76C","ownerHandle":"2A88","layer":"FG-Dim"},{"type":"LINE","vertices":[{"x":161.6377333269056,"y":305.8401280553117,"z":0},{"x":161.6377333269056,"y":265.6615566267402,"z":0}],"handle":"A76D","ownerHandle":"2A88","layer":"FG-Dim"},{"type":"LINE","vertices":[{"x":161.6377333269056,"y":308.3401280553117,"z":0},{"x":161.6377333269056,"y":305.8401280553117,"z":0}],"handle":"A76E","ownerHandle":"2A88","layer":"FG-Dim"},{"type":"MTEXT","handle":"A771","ownerHandle":"2A88","layer":"FG-Dim","position":{"x":154.8877333269056,"y":279.750842341026,"z":0},"height":4.5,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2{\\H1.000000x;\\S1#2;}\" typ."},{"type":"POINT","handle":"A772","ownerHandle":"2A88","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":172.3510860704455,"y":308.3401280553117,"z":0}},{"type":"POINT","handle":"A773","ownerHandle":"2A88","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":172.3510860704455,"y":305.8401280553117,"z":0}},{"type":"POINT","handle":"A774","ownerHandle":"2A88","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":161.6377333269056,"y":305.8401280553117,"z":0}}]},"2B5C":{"handle":"2B5C","ownerHandle":"2B5B","layer":"0","name":"*U41","type":3,"position":{"x":0,"y":0,"z":0},"name2":"*U41","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":0.1875,"y":0,"z":0},{"x":-0.1875,"y":0,"z":0}],"handle":"2B5F","ownerHandle":"2B5B","layer":"0"},{"type":"LINE","vertices":[{"x":1e-16,"y":-0.1875,"z":0},{"x":4e-16,"y":-0.6811772682290212,"z":0}],"handle":"2B62","ownerHandle":"2B5B","layer":"0"}]},"31B7":{"handle":"31B7","ownerHandle":"31B5","layer":"0","name":"Section Title","type":2,"position":{"x":0,"y":0,"z":0},"name2":"Section Title","xrefPath":"","entities":[{"type":"TEXT","handle":"31B9","ownerHandle":"31B5","layer":"0","startPoint":{"x":0.0411014722480356,"y":-0.179637496905297,"z":0},"textHeight":0.125,"text":"Section","endPoint":{"x":0.0411014722480356,"y":-0.117137496905297,"z":0},"valign":2},{"type":"LINE","vertices":[{"x":0.8749999999999982,"y":-0.609274993810594,"z":0},{"x":0.8749999999999982,"y":-0.2342749938105939,"z":0}],"handle":"31BA","ownerHandle":"31B5","layer":"0"},{"type":"LINE","vertices":[{"x":0.8749999999999982,"y":-0.421774993810594,"z":0},{"x":2.374999999999997,"y":-0.421774993810594,"z":0}],"handle":"31BB","ownerHandle":"31B5","layer":"0"},{"type":"TEXT","handle":"31BC","ownerHandle":"31B5","layer":"0","startPoint":{"x":0.898554014920327,"y":-0.5671272951337798,"z":0},"textHeight":0.09375,"text":"SCALE:"},{"type":"TEXT","handle":"31BD","ownerHandle":"31B5","layer":"0","startPoint":{"x":0.898554014920327,"y":-0.3796272951337798,"z":0},"textHeight":0.09375,"text":"ARCH. REF."},{"type":"LWPOLYLINE","vertices":[{"x":2.374999999999998,"y":-0.609274993810594},{"x":2.374999999999998,"y":0},{"x":0,"y":0},{"x":-1.8e-15,"y":-0.609274993810594}],"handle":"31BE","ownerHandle":"31B5","layer":"0","shape":true}]},"334C":{"handle":"334C","ownerHandle":"334B","layer":"0","name":"DTA2","position":{"x":0,"y":0,"z":0},"name2":"DTA2","xrefPath":"","entities":[{"type":"TEXT","handle":"334E","ownerHandle":"334B","layer":"0","startPoint":{"x":-0.6670622871983345,"y":0.0574050921827176,"z":0},"textHeight":0.18,"text":"DETAIL \"A\"","xScale":0.8,"halign":1,"endPoint":{"x":-0.0430622871983344,"y":0.0574050921827176,"z":0}}]},"34EB":{"handle":"34EB","ownerHandle":"34EA","layer":"0","name":"TYP","type":2,"position":{"x":0,"y":0,"z":0},"name2":"TYP","xrefPath":"","entities":[]},"34F0":{"handle":"34F0","ownerHandle":"34EF","layer":"0","name":"CL","position":{"x":0,"y":0,"z":0},"name2":"CL","xrefPath":"","entities":[{"type":"TEXT","handle":"409E","ownerHandle":"34EF","layer":"0","startPoint":{"x":-0.0505952380952381,"y":-0.0544578456641141,"z":0},"textHeight":0.125,"text":"L","halign":1,"endPoint":{"x":0,"y":0.008042154335886,"z":0},"valign":2}]},"35A1":{"handle":"35A1","ownerHandle":"35A0","layer":"0","name":"*D49","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D49","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.3591823995013,"y":346.6009732684975,"z":0},{"x":648.2343189296828,"y":346.6009732684975,"z":0}],"handle":"B371","ownerHandle":"35A0","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":648.2943189298019,"y":348.597973268263,"z":0},{"x":648.2943189298019,"y":347.7744384283852,"z":0}],"handle":"B372","ownerHandle":"35A0","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":648.2943189298019,"y":346.718973268732,"z":0},{"x":648.2943189298019,"y":347.5794384279977,"z":0}],"handle":"B373","ownerHandle":"35A0","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B376","ownerHandle":"35A0","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.2943189298018,"y":347.6769384281916,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2.115"},{"type":"POINT","handle":"B377","ownerHandle":"35A0","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.8441823997,"y":348.7159732684975,"z":0}},{"type":"POINT","handle":"B378","ownerHandle":"35A0","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.4591823997,"y":346.6009732684975,"z":0}},{"type":"POINT","handle":"B379","ownerHandle":"35A0","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.2943189298019,"y":346.6009732684975,"z":0}}]},"35AE":{"handle":"35AE","ownerHandle":"35AD","layer":"0","name":"*D50","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D50","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.9541823995011,"y":347.5909732684974,"z":0},{"x":649.0379194530016,"y":347.5909732684974,"z":0}],"handle":"B37B","ownerHandle":"35AD","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":649.0979194531209,"y":348.4429732682629,"z":0},{"x":649.0979194531209,"y":348.1779866159899,"z":0}],"handle":"B37C","ownerHandle":"35AD","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.0979194531209,"y":347.7089732687319,"z":0},{"x":649.0979194531209,"y":347.9829866156024,"z":0}],"handle":"B37D","ownerHandle":"35AD","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B380","ownerHandle":"35AD","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.0979194531207,"y":348.0804866157963,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.970"},{"type":"POINT","handle":"B381","ownerHandle":"35AD","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.4591823997,"y":348.5609732684974,"z":0}},{"type":"POINT","handle":"B382","ownerHandle":"35AD","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.0541823996999,"y":347.5909732684974,"z":0}},{"type":"POINT","handle":"B383","ownerHandle":"35AD","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.0979194531209,"y":347.5909732684974,"z":0}}]},"35BB":{"handle":"35BB","ownerHandle":"35BA","layer":"0","name":"*D51","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D51","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.3591823995013,"y":346.6009732684975,"z":0},{"x":648.6259241097956,"y":346.6009732684975,"z":0}],"handle":"B385","ownerHandle":"35BA","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":648.6859241099148,"y":348.4429732682629,"z":0},{"x":648.6859241099148,"y":347.4584375517238,"z":0}],"handle":"B386","ownerHandle":"35BA","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":648.6859241099148,"y":346.718973268732,"z":0},{"x":648.6859241099148,"y":347.2634375513363,"z":0}],"handle":"B387","ownerHandle":"35BA","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B38A","ownerHandle":"35BA","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.6859241099146,"y":347.3609375515301,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.960"},{"type":"POINT","handle":"B38B","ownerHandle":"35BA","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.4591823997,"y":348.5609732684974,"z":0}},{"type":"POINT","handle":"B38C","ownerHandle":"35BA","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.4591823997,"y":346.6009732684975,"z":0}},{"type":"POINT","handle":"B38D","ownerHandle":"35BA","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.6859241099148,"y":346.6009732684975,"z":0}}]},"35C8":{"handle":"35C8","ownerHandle":"35C7","layer":"0","name":"*D52","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D52","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8641823998987,"y":348.7159732684975,"z":0},{"x":654.5169698512719,"y":348.7159732684975,"z":0}],"handle":"B38F","ownerHandle":"35C7","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":654.4569698511527,"y":347.4389732687319,"z":0},{"x":654.4569698511527,"y":347.8812753419279,"z":0}],"handle":"B390","ownerHandle":"35C7","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.4569698511527,"y":348.597973268263,"z":0},{"x":654.4569698511527,"y":348.0762753423154,"z":0}],"handle":"B391","ownerHandle":"35C7","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B394","ownerHandle":"35C7","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.4569698511526,"y":347.9787753421218,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.395"},{"type":"POINT","handle":"B395","ownerHandle":"35C7","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.8241823996998,"y":347.3209732684974,"z":0}},{"type":"POINT","handle":"B396","ownerHandle":"35C7","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.7641823996998,"y":348.7159732684975,"z":0}},{"type":"POINT","handle":"B397","ownerHandle":"35C7","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.4569698511527,"y":348.7159732684975,"z":0}}]},"35D5":{"handle":"35D5","ownerHandle":"35D4","layer":"0","name":"*D53","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D53","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8241823996998,"y":347.4909732682986,"z":0},{"x":653.8241823996998,"y":346.9077211619905,"z":0}],"handle":"B399","ownerHandle":"35D4","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":653.4361823994655,"y":346.9677211621097,"z":0},{"x":653.3181823992307,"y":346.9677211621097,"z":0}],"handle":"B39A","ownerHandle":"35D4","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.9421823999344,"y":346.9677211621097,"z":0},{"x":654.0601824001689,"y":346.9677211621097,"z":0}],"handle":"B39B","ownerHandle":"35D4","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B39E","ownerHandle":"35D4","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.3110157340008,"y":346.9677211621097,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.270"},{"type":"POINT","handle":"B39F","ownerHandle":"35D4","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.5541823996999,"y":347.5909732684974,"z":0}},{"type":"POINT","handle":"B3A0","ownerHandle":"35D4","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.8241823996998,"y":347.5909732684974,"z":0}},{"type":"POINT","handle":"B3A1","ownerHandle":"35D4","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.8241823996998,"y":346.9677211621097,"z":0}}]},"35E2":{"handle":"35E2","ownerHandle":"35E1","layer":"0","name":"*D54","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D54","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":652.2826052292384,"y":347.4459732684973,"z":0},{"x":652.4290241006045,"y":347.4459732684973,"z":0}],"handle":"B3A3","ownerHandle":"35E1","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":652.3690241004853,"y":347.5639732687319,"z":0},{"x":652.3690241004853,"y":347.6819732689664,"z":0}],"handle":"B3A4","ownerHandle":"35E1","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":652.3690241004853,"y":347.2029732682628,"z":0},{"x":652.3690241004853,"y":347.0350478846714,"z":0}],"handle":"B3A5","ownerHandle":"35E1","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":652.3690241004853,"y":347.0350478846714,"z":0},{"x":652.2510241002509,"y":347.0350478846714,"z":0}],"handle":"B3A6","ownerHandle":"35E1","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B3A9","ownerHandle":"35E1","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.0097740997713,"y":347.0350478846715,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.125"},{"type":"POINT","handle":"B3AA","ownerHandle":"35E1","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.1826052290397,"y":347.3209732684974,"z":0}},{"type":"POINT","handle":"B3AB","ownerHandle":"35E1","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.1826052290397,"y":347.4459732684973,"z":0}},{"type":"POINT","handle":"B3AC","ownerHandle":"35E1","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.3690241004853,"y":347.4459732684973,"z":0}}]},"35F0":{"handle":"35F0","ownerHandle":"35EF","layer":"0","name":"*D55","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D55","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.6791823996999,"y":348.8159732686962,"z":0},{"x":653.6791823996999,"y":349.3852199355007,"z":0}],"handle":"B3AE","ownerHandle":"35EF","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":653.5611823994655,"y":349.3252199353814,"z":0},{"x":653.4431823992307,"y":349.3252199353814,"z":0}],"handle":"B3AF","ownerHandle":"35EF","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.9421823999344,"y":349.3252199353814,"z":0},{"x":654.0601824001689,"y":349.3252199353814,"z":0}],"handle":"B3B0","ownerHandle":"35EF","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B3B3","ownerHandle":"35EF","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.3014324006484,"y":349.3252199353814,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.145"},{"type":"POINT","handle":"B3B4","ownerHandle":"35EF","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.8241823996998,"y":348.6559732684975,"z":0}},{"type":"POINT","handle":"B3B5","ownerHandle":"35EF","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.6791823996999,"y":348.7159732684975,"z":0}},{"type":"POINT","handle":"B3B6","ownerHandle":"35EF","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.6791823996999,"y":349.3252199353814,"z":0}}]},"35FD":{"handle":"35FD","ownerHandle":"35FC","layer":"0","name":"*D56","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D56","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8241823996998,"y":348.7559732686962,"z":0},{"x":653.8241823996998,"y":350.0013599796336,"z":0}],"handle":"B3B8","ownerHandle":"35FC","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":649.5471823999344,"y":349.9413599795143,"z":0},{"x":651.2997013978368,"y":349.9413599795143,"z":0}],"handle":"B3B9","ownerHandle":"35FC","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.7061823994654,"y":349.9413599795143,"z":0},{"x":651.8397013989099,"y":349.9413599795143,"z":0}],"handle":"B3BA","ownerHandle":"35FC","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B3BD","ownerHandle":"35FC","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.5697013983734,"y":349.9413599795143,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;4.395"},{"type":"POINT","handle":"B3BE","ownerHandle":"35FC","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.4291823996999,"y":348.5309732684975,"z":0}},{"type":"POINT","handle":"B3BF","ownerHandle":"35FC","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.8241823996998,"y":348.6559732684975,"z":0}},{"type":"POINT","handle":"B3C0","ownerHandle":"35FC","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.8241823996998,"y":349.9413599795143,"z":0}}]},"360A":{"handle":"360A","ownerHandle":"3609","layer":"0","name":"*D57","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D57","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.6891823997,"y":348.6609732686962,"z":0},{"x":649.6891823997,"y":349.5479598323429,"z":0}],"handle":"B3C2","ownerHandle":"3609","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":649.8071823999345,"y":349.4879598322237,"z":0},{"x":649.925182400169,"y":349.4879598322237,"z":0}],"handle":"B3C3","ownerHandle":"3609","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.3111823994655,"y":349.4879598322237,"z":0},{"x":649.1931823992309,"y":349.4879598322237,"z":0}],"handle":"B3C4","ownerHandle":"3609","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B3C7","ownerHandle":"3609","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.942349065399,"y":349.4879598322237,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.260"},{"type":"POINT","handle":"B3C8","ownerHandle":"3609","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.4291823996999,"y":348.5309732684975,"z":0}},{"type":"POINT","handle":"B3C9","ownerHandle":"3609","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.6891823997,"y":348.5609732684974,"z":0}},{"type":"POINT","handle":"B3CA","ownerHandle":"3609","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.6891823997,"y":349.4879598322237,"z":0}}]},"363D":{"handle":"363D","ownerHandle":"363C","layer":"0","name":"*D61","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D61","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.5041823996826,"y":348.0284732684974,"z":0},{"x":653.1640136387163,"y":348.0284732684974,"z":0}],"handle":"B3E9","ownerHandle":"363C","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.1940136387265,"y":347.6499732685177,"z":0},{"x":653.1940136387265,"y":347.7469484352158,"z":0}],"handle":"B3EA","ownerHandle":"363C","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.1940136387265,"y":347.9694732684771,"z":0},{"x":653.1940136387265,"y":347.8444484352493,"z":0}],"handle":"B3EB","ownerHandle":"363C","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B3EE","ownerHandle":"363C","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.1940136387263,"y":347.7956984352327,"z":0},"height":0.0575000000197755,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.4375"},{"type":"POINT","handle":"B3EF","ownerHandle":"363C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5541823996999,"y":347.5909732684974,"z":0}},{"type":"POINT","handle":"B3F0","ownerHandle":"363C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5541823996999,"y":348.0284732684974,"z":0}},{"type":"POINT","handle":"B3F1","ownerHandle":"363C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.1940136387265,"y":348.0284732684974,"z":0}}]},"364A":{"handle":"364A","ownerHandle":"3649","layer":"0","name":"*D62","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D62","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.5041823996826,"y":348.2509732684974,"z":0},{"x":653.13622197204,"y":348.2509732684974,"z":0}],"handle":"B3F3","ownerHandle":"3649","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.1662219720502,"y":347.9694732684771,"z":0},{"x":653.1662219720502,"y":347.9104732684568,"z":0}],"handle":"B3F4","ownerHandle":"3649","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.1662219720502,"y":348.3099732685178,"z":0},{"x":653.1662219720502,"y":348.3807310468082,"z":0}],"handle":"B3F5","ownerHandle":"3649","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.1662219720502,"y":348.3807310468082,"z":0},{"x":653.2252219720706,"y":348.3807310468082,"z":0}],"handle":"B3F6","ownerHandle":"3649","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B3F9","ownerHandle":"3649","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.3841803054585,"y":348.3807310468084,"z":0},"height":0.0575000000197755,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.2225"},{"type":"POINT","handle":"B3FA","ownerHandle":"3649","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5541823996999,"y":348.0284732684974,"z":0}},{"type":"POINT","handle":"B3FB","ownerHandle":"3649","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5541823996999,"y":348.2509732684974,"z":0}},{"type":"POINT","handle":"B3FC","ownerHandle":"3649","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.1662219720502,"y":348.2509732684974,"z":0}}]},"367C":{"handle":"367C","ownerHandle":"367B","layer":"0","name":"*D66","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D66","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.6359143444818,"y":347.6675493039277,"z":0},{"x":653.77815466513,"y":347.8008166556671,"z":0}],"handle":"B419","ownerHandle":"367B","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.77815466513,"y":347.8008166556671,"z":0},{"x":653.8371546652586,"y":347.8008166556671,"z":0}],"handle":"B41A","ownerHandle":"367B","layer":"FG-Dim","lineweight":-2},{"type":"MTEXT","handle":"B41D","ownerHandle":"367B","layer":"FG-Dim","position":{"x":653.9721546655526,"y":347.8008166556671,"z":0},"height":0.0575000001252384,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;?.224"},{"type":"POINT","handle":"B41E","ownerHandle":"367B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6359143444818,"y":347.6675493039277,"z":0}},{"type":"POINT","handle":"B41F","ownerHandle":"367B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.4724504549187,"y":347.5143972330675,"z":0}}]},"36A1":{"handle":"36A1","ownerHandle":"36A0","layer":"0","name":"*D69","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D69","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.7491823999432,"y":348.5609732684974,"z":0},{"x":654.2542108749167,"y":348.5609732684974,"z":0}],"handle":"B435","ownerHandle":"36A0","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.2242108747708,"y":348.7749732687845,"z":0},{"x":654.2242108747708,"y":348.8339732690716,"z":0}],"handle":"B436","ownerHandle":"36A0","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.2242108747708,"y":348.5019732682104,"z":0},{"x":654.2242108747708,"y":348.4429732679233,"z":0}],"handle":"B437","ownerHandle":"36A0","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B43A","ownerHandle":"36A0","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.2242108747707,"y":348.6384732684975,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.155"},{"type":"POINT","handle":"B43B","ownerHandle":"36A0","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7641823996998,"y":348.7159732684975,"z":0}},{"type":"POINT","handle":"B43C","ownerHandle":"36A0","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6991823996999,"y":348.5609732684974,"z":0}},{"type":"POINT","handle":"B43D","ownerHandle":"36A0","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.2242108747708,"y":348.5609732684974,"z":0}}]},"36AE":{"handle":"36AE","ownerHandle":"36AD","layer":"0","name":"*D70","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D70","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.2041823996999,"y":348.7359732687407,"z":0},{"x":653.2041823996999,"y":349.0434441017043,"z":0}],"handle":"B43F","ownerHandle":"36AD","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.7651823994129,"y":349.0134441015584,"z":0},{"x":653.6447609226428,"y":349.0134441015584,"z":0}],"handle":"B440","ownerHandle":"36AD","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.2631823999869,"y":349.0134441015584,"z":0},{"x":653.3939275880889,"y":349.0134441015584,"z":0}],"handle":"B441","ownerHandle":"36AD","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B444","ownerHandle":"36AD","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.5193442553659,"y":349.0134441015584,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.620"},{"type":"POINT","handle":"B445","ownerHandle":"36AD","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8241823996998,"y":348.6559732684975,"z":0}},{"type":"POINT","handle":"B446","ownerHandle":"36AD","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.2041823996999,"y":348.6859732684974,"z":0}},{"type":"POINT","handle":"B447","ownerHandle":"36AD","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.2041823996999,"y":349.0134441015584,"z":0}}]},"36BB":{"handle":"36BB","ownerHandle":"36BA","layer":"0","name":"*D71","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D71","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.6491823997,"y":348.7359732687407,"z":0},{"x":653.6491823997,"y":348.9326963047322,"z":0}],"handle":"B449","ownerHandle":"36BA","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.5181823999869,"y":348.9026963045863,"z":0},{"x":653.5901823994129,"y":348.9026963045863,"z":0}],"handle":"B44A","ownerHandle":"36BA","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B44D","ownerHandle":"36BA","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.5541823996999,"y":348.9026963045863,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.190"},{"type":"POINT","handle":"B44E","ownerHandle":"36BA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.4591823996999,"y":348.6859732684974,"z":0}},{"type":"POINT","handle":"B44F","ownerHandle":"36BA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6491823997,"y":348.6859732684974,"z":0}},{"type":"POINT","handle":"B450","ownerHandle":"36BA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6491823997,"y":348.9026963045863,"z":0}}]},"36C7":{"handle":"36C7","ownerHandle":"36C6","layer":"0","name":"*D72","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D72","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.4291823996999,"y":348.6159732682987,"z":0},{"x":653.4291823996999,"y":348.3814413947295,"z":0}],"handle":"B452","ownerHandle":"36C6","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":653.5471823999344,"y":348.4414413948488,"z":0},{"x":653.6651824001689,"y":348.4414413948488,"z":0}],"handle":"B453","ownerHandle":"36C6","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.0861823994654,"y":348.4414413948488,"z":0},{"x":652.968182399231,"y":348.4414413948488,"z":0}],"handle":"B454","ownerHandle":"36C6","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B457","ownerHandle":"36C6","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.7077657320467,"y":348.4414413948488,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.225"},{"type":"POINT","handle":"B458","ownerHandle":"36C6","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.2041823996999,"y":348.6859732684974,"z":0}},{"type":"POINT","handle":"B459","ownerHandle":"36C6","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.4291823996999,"y":348.7159732684975,"z":0}},{"type":"POINT","handle":"B45A","ownerHandle":"36C6","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.4291823996999,"y":348.4414413948488,"z":0}}]},"36D4":{"handle":"36D4","ownerHandle":"36D3","layer":"0","name":"*D73","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D73","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.4291823996999,"y":348.8159732686962,"z":0},{"x":653.4291823996999,"y":348.9934697195558,"z":0}],"handle":"B45C","ownerHandle":"36D3","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":653.5771823999343,"y":348.9334697194365,"z":0},{"x":653.695182400169,"y":348.9334697194365,"z":0}],"handle":"B45D","ownerHandle":"36D3","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.3111823994655,"y":348.9334697194365,"z":0},{"x":652.9929616477641,"y":348.9334697194365,"z":0}],"handle":"B45E","ownerHandle":"36D3","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B461","ownerHandle":"36D3","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.7517116472847,"y":348.9334697194365,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.030"},{"type":"POINT","handle":"B462","ownerHandle":"36D3","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.4591823996999,"y":348.6859732684974,"z":0}},{"type":"POINT","handle":"B463","ownerHandle":"36D3","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.4291823996999,"y":348.7159732684975,"z":0}},{"type":"POINT","handle":"B464","ownerHandle":"36D3","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.4291823996999,"y":348.9334697194365,"z":0}}]},"36E1":{"handle":"36E1","ownerHandle":"36E0","layer":"0","name":"*D74","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D74","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.344182399501,"y":346.9559732684975,"z":0},{"x":649.0195895525318,"y":346.9559732684975,"z":0}],"handle":"B466","ownerHandle":"36E0","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":649.0795895526511,"y":347.073973268732,"z":0},{"x":649.0795895526511,"y":347.1919732689665,"z":0}],"handle":"B467","ownerHandle":"36E0","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.0795895526511,"y":346.4829732682629,"z":0},{"x":649.0795895526511,"y":346.20493934294,"z":0}],"handle":"B468","ownerHandle":"36E0","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.0795895526511,"y":346.20493934294,"z":0},{"x":648.9615895524166,"y":346.20493934294,"z":0}],"handle":"B469","ownerHandle":"36E0","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B46C","ownerHandle":"36E0","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7011728852323,"y":346.2049393429402,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.355"},{"type":"POINT","handle":"B46D","ownerHandle":"36E0","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.331290339409,"y":346.6009732684975,"z":0}},{"type":"POINT","handle":"B46E","ownerHandle":"36E0","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.4441823996999,"y":346.9559732684975,"z":0}},{"type":"POINT","handle":"B46F","ownerHandle":"36E0","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.0795895526511,"y":346.9559732684975,"z":0}}]},"36EF":{"handle":"36EF","ownerHandle":"36EE","layer":"0","name":"*D75","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D75","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.4291823996999,"y":347.4909732682986,"z":0},{"x":649.4291823996999,"y":347.0456219533567,"z":0}],"handle":"B471","ownerHandle":"36EE","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":650.1721823999345,"y":347.105621953476,"z":0},{"x":650.2901824001691,"y":347.105621953476,"z":0}],"handle":"B472","ownerHandle":"36EE","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.3111823994655,"y":347.105621953476,"z":0},{"x":649.1931823992309,"y":347.105621953476,"z":0}],"handle":"B473","ownerHandle":"36EE","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B476","ownerHandle":"36EE","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.7794199268594,"y":347.105621953476,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.625"},{"type":"POINT","handle":"B477","ownerHandle":"36EE","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.0541823997,"y":347.5909732684974,"z":0}},{"type":"POINT","handle":"B478","ownerHandle":"36EE","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.4291823996999,"y":347.5909732684974,"z":0}},{"type":"POINT","handle":"B479","ownerHandle":"36EE","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.4291823996999,"y":347.105621953476,"z":0}}]},"36FC":{"handle":"36FC","ownerHandle":"36FB","layer":"0","name":"*D76","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D76","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.6839870714713,"y":348.0586182232297,"z":0},{"x":650.8019870717058,"y":348.0586182232297,"z":0}],"handle":"B47B","ownerHandle":"36FB","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B47D","ownerHandle":"36FB","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.1103204056517,"y":348.0586182232298,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;?0.540"},{"type":"LINE","vertices":[{"x":649.9641823995205,"y":347.5909732684972,"z":0},{"x":650.1441823998783,"y":347.5909732684973,"z":0}],"handle":"B47E","ownerHandle":"36FB","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":650.0541823996995,"y":347.5009732683184,"z":0},{"x":650.0541823996992,"y":347.680973268676,"z":0}],"handle":"B47F","ownerHandle":"36FB","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"POINT","handle":"B480","ownerHandle":"36FB","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.2709578249963,"y":347.7519341798619,"z":0}},{"type":"POINT","handle":"B481","ownerHandle":"36FB","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.8374069744025,"y":347.4300123571327,"z":0}}]},"371F":{"handle":"371F","ownerHandle":"371E","layer":"0","name":"*D79","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D79","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.1791823996999,"y":348.8159732686962,"z":0},{"x":650.1791823996999,"y":349.1565293191345,"z":0}],"handle":"B497","ownerHandle":"371E","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":650.0311823994654,"y":349.0965293190153,"z":0},{"x":649.9131823992309,"y":349.0965293190153,"z":0}],"handle":"B498","ownerHandle":"371E","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":650.2971823999343,"y":349.0965293190153,"z":0},{"x":650.415182400169,"y":349.0965293190153,"z":0}],"handle":"B499","ownerHandle":"371E","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B49C","ownerHandle":"371E","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.6564324006484,"y":349.0965293190153,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.030"},{"type":"POINT","handle":"B49D","ownerHandle":"371E","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.1491823997,"y":348.6859732684974,"z":0}},{"type":"POINT","handle":"B49E","ownerHandle":"371E","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.1791823996999,"y":348.7159732684975,"z":0}},{"type":"POINT","handle":"B49F","ownerHandle":"371E","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.1791823996999,"y":349.0965293190153,"z":0}}]},"372C":{"handle":"372C","ownerHandle":"372B","layer":"0","name":"*D80","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D80","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.1491823997,"y":348.5859732682987,"z":0},{"x":650.1491823997,"y":348.3246646482862,"z":0}],"handle":"B4A1","ownerHandle":"372B","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":649.8411823994655,"y":348.3846646484054,"z":0},{"x":649.723182399231,"y":348.3846646484054,"z":0}],"handle":"B4A2","ownerHandle":"372B","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":650.2671823999344,"y":348.3846646484054,"z":0},{"x":650.8674965540201,"y":348.3846646484054,"z":0}],"handle":"B4A3","ownerHandle":"372B","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B4A6","ownerHandle":"372B","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.0991632211473,"y":348.3846646484054,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.190"},{"type":"POINT","handle":"B4A7","ownerHandle":"372B","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.9591823997,"y":348.6859732684974,"z":0}},{"type":"POINT","handle":"B4A8","ownerHandle":"372B","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.1491823997,"y":348.6859732684974,"z":0}},{"type":"POINT","handle":"B4A9","ownerHandle":"372B","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.1491823997,"y":348.3846646484054,"z":0}}]},"440D":{"handle":"440D","ownerHandle":"440C","layer":"0","name":"*D84","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D84","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.5990686761794,"y":341.5532595968957,"z":0},{"x":648.4457207659516,"y":341.5532595968957,"z":0}],"handle":"B4BF","ownerHandle":"440C","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":648.5057207660708,"y":343.3752595966613,"z":0},{"x":648.5057207660708,"y":342.8459232954248,"z":0}],"handle":"B4C0","ownerHandle":"440C","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":648.5057207660708,"y":341.6712595971302,"z":0},{"x":648.5057207660708,"y":342.6509232950373,"z":0}],"handle":"B4C1","ownerHandle":"440C","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B4C4","ownerHandle":"440C","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.5057207660706,"y":342.7484232952311,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.940"},{"type":"POINT","handle":"B4C5","ownerHandle":"440C","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.6990686763781,"y":343.4932595968958,"z":0}},{"type":"POINT","handle":"B4C6","ownerHandle":"440C","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.6990686763781,"y":341.5532595968957,"z":0}},{"type":"POINT","handle":"B4C7","ownerHandle":"440C","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.5057207660708,"y":341.5532595968957,"z":0}}]},"441A":{"handle":"441A","ownerHandle":"4419","layer":"0","name":"*D85","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D85","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.9290686763782,"y":343.5932595970945,"z":0},{"x":649.9290686763782,"y":344.0080421054942,"z":0}],"handle":"B4C9","ownerHandle":"4419","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":650.0470686766128,"y":343.948042105375,"z":0},{"x":650.1650686768473,"y":343.948042105375,"z":0}],"handle":"B4CA","ownerHandle":"4419","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.5510686761438,"y":343.948042105375,"z":0},{"x":649.4330686454804,"y":343.948042105375,"z":0}],"handle":"B4CB","ownerHandle":"4419","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B4CE","ownerHandle":"4419","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.1822353116487,"y":343.948042105375,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.260"},{"type":"POINT","handle":"B4CF","ownerHandle":"4419","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.6690686763782,"y":343.4632595968957,"z":0}},{"type":"POINT","handle":"B4D0","ownerHandle":"4419","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.9290686763782,"y":343.4932595968958,"z":0}},{"type":"POINT","handle":"B4D1","ownerHandle":"4419","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.9290686763782,"y":343.948042105375,"z":0}}]},"444E":{"handle":"444E","ownerHandle":"444D","layer":"0","name":"*D89","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D89","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.0840686763783,"y":343.698259597139,"z":0},{"x":650.0840686763783,"y":343.9083428611747,"z":0}],"handle":"B4F1","ownerHandle":"444D","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":650.1430686766653,"y":343.8783428610288,"z":0},{"x":650.2020686769524,"y":343.8783428610288,"z":0}],"handle":"B4F2","ownerHandle":"444D","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.8700686760913,"y":343.8783428610288,"z":0},{"x":649.8110686758041,"y":343.8783428610288,"z":0}],"handle":"B4F3","ownerHandle":"444D","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B4F6","ownerHandle":"444D","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":649.6904436752172,"y":343.8783428610288,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.155"},{"type":"POINT","handle":"B4F7","ownerHandle":"444D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.9290686763782,"y":343.4932595968958,"z":0}},{"type":"POINT","handle":"B4F8","ownerHandle":"444D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.0840686763783,"y":343.6482595968957,"z":0}},{"type":"POINT","handle":"B4F9","ownerHandle":"444D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.0840686763783,"y":343.8783428610288,"z":0}}]},"445B":{"handle":"445B","ownerHandle":"445A","layer":"0","name":"*D90","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D90","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.1690686763782,"y":343.698259597139,"z":0},{"x":650.1690686763782,"y":344.0164865871752,"z":0}],"handle":"B4FB","ownerHandle":"445A","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":650.0250686760913,"y":343.9864865870293,"z":0},{"x":649.9660686758041,"y":343.9864865870293,"z":0}],"handle":"B4FC","ownerHandle":"445A","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":650.2280686766653,"y":343.9864865870293,"z":0},{"x":650.2870686769523,"y":343.9864865870293,"z":0}],"handle":"B4FD","ownerHandle":"445A","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B500","ownerHandle":"445A","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":650.4124853442293,"y":343.9864865870293,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.085"},{"type":"POINT","handle":"B501","ownerHandle":"445A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.0840686763783,"y":343.6482595968957,"z":0}},{"type":"POINT","handle":"B502","ownerHandle":"445A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.1690686763782,"y":343.6482595968957,"z":0}},{"type":"POINT","handle":"B503","ownerHandle":"445A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.1690686763782,"y":343.9864865870293,"z":0}}]},"448F":{"handle":"448F","ownerHandle":"448E","layer":"0","name":"*D94","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D94","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.5408453716748,"y":343.698259597139,"z":0},{"x":650.5408453716748,"y":343.9073758052852,"z":0}],"handle":"B523","ownerHandle":"448E","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":650.3600686760911,"y":343.8773758051393,"z":0},{"x":650.3010686758041,"y":343.8773758051393,"z":0}],"handle":"B524","ownerHandle":"448E","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":650.5998453719619,"y":343.8773758051393,"z":0},{"x":650.658845372249,"y":343.8773758051393,"z":0}],"handle":"B525","ownerHandle":"448E","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B528","ownerHandle":"448E","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":650.7794703728359,"y":343.8773758051393,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.122"},{"type":"POINT","handle":"B529","ownerHandle":"448E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.4190686763783,"y":343.6482595968957,"z":0}},{"type":"POINT","handle":"B52A","ownerHandle":"448E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.5408453716748,"y":343.6482595968957,"z":0}},{"type":"POINT","handle":"B52B","ownerHandle":"448E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.5408453716748,"y":343.8773758051393,"z":0}}]},"449C":{"handle":"449C","ownerHandle":"449B","layer":"0","name":"*D95","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D95","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":651.0158453716749,"y":343.2832595970945,"z":0},{"x":651.0158453716749,"y":344.0991378426103,"z":0}],"handle":"B52D","ownerHandle":"449B","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":650.6588453719094,"y":344.039137842491,"z":0},{"x":650.8978453714404,"y":344.039137842491,"z":0}],"handle":"B52E","ownerHandle":"449B","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B531","ownerHandle":"449B","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.7783453716748,"y":344.039137842491,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.475"},{"type":"POINT","handle":"B532","ownerHandle":"449B","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.5408453716748,"y":343.6482595968957,"z":0}},{"type":"POINT","handle":"B533","ownerHandle":"449B","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.0158453716749,"y":343.1832595968958,"z":0}},{"type":"POINT","handle":"B534","ownerHandle":"449B","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.0158453716749,"y":344.039137842491,"z":0}}]},"44A8":{"handle":"44A8","ownerHandle":"44A7","layer":"0","name":"*D96","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D96","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.9390686763782,"y":343.5932595970945,"z":0},{"x":653.9390686763782,"y":344.1091378426103,"z":0}],"handle":"B536","ownerHandle":"44A7","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":651.1338453719093,"y":344.049137842491,"z":0},{"x":652.20745702349,"y":344.049137842491,"z":0}],"handle":"B537","ownerHandle":"44A7","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.8210686761438,"y":344.049137842491,"z":0},{"x":652.747457024563,"y":344.049137842491,"z":0}],"handle":"B538","ownerHandle":"44A7","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B53B","ownerHandle":"44A7","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.4774570240265,"y":344.049137842491,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2.923"},{"type":"POINT","handle":"B53C","ownerHandle":"44A7","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.0158453716749,"y":343.1832595968958,"z":0}},{"type":"POINT","handle":"B53D","ownerHandle":"44A7","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.9390686763782,"y":343.4932595968958,"z":0}},{"type":"POINT","handle":"B53E","ownerHandle":"44A7","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.9390686763782,"y":344.049137842491,"z":0}}]},"44B5":{"handle":"44B5","ownerHandle":"44B4","layer":"0","name":"*D97","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D97","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":651.978465400257,"y":343.0582595968957,"z":0},{"x":651.9101215104649,"y":343.0582595968957,"z":0}],"handle":"B540","ownerHandle":"44B4","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":651.9701215105841,"y":343.3012595971303,"z":0},{"x":651.9701215105841,"y":343.4192595973648,"z":0}],"handle":"B541","ownerHandle":"44B4","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":651.9701215105841,"y":342.9402595966613,"z":0},{"x":651.9701215105841,"y":342.8222595964268,"z":0}],"handle":"B542","ownerHandle":"44B4","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":651.9701215105841,"y":342.8222595964268,"z":0},{"x":651.8521215103495,"y":342.8222595964268,"z":0}],"handle":"B543","ownerHandle":"44B4","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B546","ownerHandle":"44B4","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.6108715098701,"y":342.8222595964269,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.125"},{"type":"POINT","handle":"B547","ownerHandle":"44B4","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.0784654004558,"y":343.1832595968958,"z":0}},{"type":"POINT","handle":"B548","ownerHandle":"44B4","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.0784654004558,"y":343.0582595968957,"z":0}},{"type":"POINT","handle":"B549","ownerHandle":"44B4","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.9701215105841,"y":343.0582595968957,"z":0}}]},"44C3":{"handle":"44C3","ownerHandle":"44C2","layer":"0","name":"*D98","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D98","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.9991792085904,"y":341.8692456150998,"z":0},{"x":650.0581792088775,"y":341.8692456150997,"z":0}],"handle":"B54B","ownerHandle":"44C2","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B54D","ownerHandle":"44C2","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":650.2075542096045,"y":341.8692456150998,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.125"},{"type":"LINE","vertices":[{"x":649.8840686761592,"y":341.5532595968957,"z":0},{"x":649.9740686765971,"y":341.5532595968957,"z":0}],"handle":"B54E","ownerHandle":"44C2","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":649.9290686763782,"y":341.5082595966768,"z":0},{"x":649.9290686763782,"y":341.5982595971146,"z":0}],"handle":"B54F","ownerHandle":"44C2","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B550","ownerHandle":"44C2","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.9561450213231,"y":341.6752918530593,"z":0}},{"type":"POINT","handle":"B551","ownerHandle":"44C2","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.9290686763782,"y":341.5532595968957,"z":0}}]},"44CC":{"handle":"44CC","ownerHandle":"44CB","layer":"0","name":"*D99","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D99","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.8290686763783,"y":341.728259597139,"z":0},{"x":649.8290686763783,"y":342.0148091451725,"z":0}],"handle":"B553","ownerHandle":"44CB","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":649.7700686760912,"y":341.9848091450266,"z":0},{"x":649.711068675804,"y":341.9848091450266,"z":0}],"handle":"B554","ownerHandle":"44CB","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.9880686766653,"y":341.9848091450266,"z":0},{"x":650.0470686769524,"y":341.9848091450266,"z":0}],"handle":"B555","ownerHandle":"44CB","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B558","ownerHandle":"44CB","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":650.1581103441594,"y":341.9848091450266,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.100"},{"type":"POINT","handle":"B559","ownerHandle":"44CB","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.9290686763782,"y":341.6782595968957,"z":0}},{"type":"POINT","handle":"B55A","ownerHandle":"44CB","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.8290686763783,"y":341.6782595968957,"z":0}},{"type":"POINT","handle":"B55B","ownerHandle":"44CB","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.8290686763783,"y":341.9848091450266,"z":0}}]},"44D9":{"handle":"44D9","ownerHandle":"44D8","layer":"0","name":"*D100","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D100","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.1940686761795,"y":342.5232595968957,"z":0},{"x":648.7597255531093,"y":342.5232595968957,"z":0}],"handle":"B55D","ownerHandle":"44D8","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":648.8197255532285,"y":343.3752595966613,"z":0},{"x":648.8197255532285,"y":343.1666768876933,"z":0}],"handle":"B55E","ownerHandle":"44D8","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":648.8197255532285,"y":342.6412595971302,"z":0},{"x":648.8197255532285,"y":342.9716768873058,"z":0}],"handle":"B55F","ownerHandle":"44D8","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B562","ownerHandle":"44D8","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.8197255532284,"y":343.0691768874996,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.970"},{"type":"POINT","handle":"B563","ownerHandle":"44D8","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.6990686763781,"y":343.4932595968958,"z":0}},{"type":"POINT","handle":"B564","ownerHandle":"44D8","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.2940686763783,"y":342.5232595968957,"z":0}},{"type":"POINT","handle":"B565","ownerHandle":"44D8","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.8197255532285,"y":342.5232595968957,"z":0}}]},"44E6":{"handle":"44E6","ownerHandle":"44E5","layer":"0","name":"*D101","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D101","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.1040686765768,"y":341.3982595968958,"z":0},{"x":655.4821801341556,"y":341.3982595968958,"z":0}],"handle":"B567","ownerHandle":"44E5","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":655.4221801340364,"y":343.5302595966612,"z":0},{"x":655.4221801340364,"y":342.8091944327617,"z":0}],"handle":"B568","ownerHandle":"44E5","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.4221801340364,"y":341.5162595971303,"z":0},{"x":655.4221801340364,"y":342.6141944323742,"z":0}],"handle":"B569","ownerHandle":"44E5","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B56C","ownerHandle":"44E5","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":655.4221801340362,"y":342.7116944325681,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2.250"},{"type":"POINT","handle":"B56D","ownerHandle":"44E5","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.0040686763782,"y":343.6482595968957,"z":0}},{"type":"POINT","handle":"B56E","ownerHandle":"44E5","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.0040686763782,"y":341.3982595968958,"z":0}},{"type":"POINT","handle":"B56F","ownerHandle":"44E5","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":655.4221801340364,"y":341.3982595968958,"z":0}}]},"44F3":{"handle":"44F3","ownerHandle":"44F2","layer":"0","name":"*D102","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D102","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.0640686763782,"y":341.358259596697,"z":0},{"x":654.0640686763782,"y":340.8782168958125,"z":0}],"handle":"B571","ownerHandle":"44F2","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":653.3260686761438,"y":340.9382168959318,"z":0},{"x":653.2080686759091,"y":340.9382168959318,"z":0}],"handle":"B572","ownerHandle":"44F2","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.1820686766127,"y":340.9382168959318,"z":0},{"x":654.3000686768473,"y":340.9382168959318,"z":0}],"handle":"B573","ownerHandle":"44F2","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B576","ownerHandle":"44F2","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.7398176900487,"y":340.9382168959318,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.620"},{"type":"POINT","handle":"B577","ownerHandle":"44F2","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.4440686763782,"y":341.4282595968957,"z":0}},{"type":"POINT","handle":"B578","ownerHandle":"44F2","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.0640686763782,"y":341.4582595968957,"z":0}},{"type":"POINT","handle":"B579","ownerHandle":"44F2","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.0640686763782,"y":340.9382168959318,"z":0}}]},"450D":{"handle":"450D","ownerHandle":"450C","layer":"0","name":"*D104","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D104","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.0390686765769,"y":343.1832595968958,"z":0},{"x":654.7135803694597,"y":343.1832595968958,"z":0}],"handle":"B585","ownerHandle":"450C","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":654.6535803693406,"y":343.6112595971303,"z":0},{"x":654.6535803693406,"y":343.7292595973648,"z":0}],"handle":"B586","ownerHandle":"450C","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.6535803693406,"y":343.0652595966612,"z":0},{"x":654.6535803693406,"y":342.9472595964268,"z":0}],"handle":"B587","ownerHandle":"450C","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B58A","ownerHandle":"450C","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.6535803693404,"y":343.3382595968959,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.310"},{"type":"POINT","handle":"B58B","ownerHandle":"450C","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.9390686763782,"y":343.4932595968958,"z":0}},{"type":"POINT","handle":"B58C","ownerHandle":"450C","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.9390686763782,"y":343.1832595968958,"z":0}},{"type":"POINT","handle":"B58D","ownerHandle":"450C","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.6535803693406,"y":343.1832595968958,"z":0}}]},"451A":{"handle":"451A","ownerHandle":"4519","layer":"0","name":"*D105","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D105","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.0390686765769,"y":341.8632595968957,"z":0},{"x":654.7135803694597,"y":341.8632595968957,"z":0}],"handle":"B58F","ownerHandle":"4519","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":654.6535803693406,"y":343.0652595966612,"z":0},{"x":654.6535803693406,"y":342.8083841549894,"z":0}],"handle":"B590","ownerHandle":"4519","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.6535803693406,"y":341.9812595971302,"z":0},{"x":654.6535803693406,"y":342.6133841546019,"z":0}],"handle":"B591","ownerHandle":"4519","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B594","ownerHandle":"4519","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.6535803693404,"y":342.7108841547958,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.320"},{"type":"POINT","handle":"B595","ownerHandle":"4519","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.9390686763782,"y":343.1832595968958,"z":0}},{"type":"POINT","handle":"B596","ownerHandle":"4519","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.9390686763782,"y":341.8632595968957,"z":0}},{"type":"POINT","handle":"B597","ownerHandle":"4519","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.6535803693406,"y":341.8632595968957,"z":0}}]},"455D":{"handle":"455D","ownerHandle":"455C","layer":"0","name":"*D110","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D110","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.779068676135,"y":342.1982595968958,"z":0},{"x":649.1605582094794,"y":342.1982595968958,"z":0}],"handle":"B5C3","ownerHandle":"455C","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":649.1905582096254,"y":341.6122595971828,"z":0},{"x":649.1905582096254,"y":341.8270095966586,"z":0}],"handle":"B5C4","ownerHandle":"455C","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.1905582096254,"y":342.1392595966087,"z":0},{"x":649.1905582096254,"y":341.924509597133,"z":0}],"handle":"B5C5","ownerHandle":"455C","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B5C8","ownerHandle":"455C","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":649.1905582096252,"y":341.8757595968959,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.645"},{"type":"POINT","handle":"B5C9","ownerHandle":"455C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.6990686763781,"y":341.5532595968957,"z":0}},{"type":"POINT","handle":"B5CA","ownerHandle":"455C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.8290686763783,"y":342.1982595968958,"z":0}},{"type":"POINT","handle":"B5CB","ownerHandle":"455C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.1905582096254,"y":342.1982595968958,"z":0}}]},"456A":{"handle":"456A","ownerHandle":"4569","layer":"0","name":"*D111","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D111","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.6690686763782,"y":342.3582595971391,"z":0},{"x":649.6690686763782,"y":342.3400684516385,"z":0}],"handle":"B5CD","ownerHandle":"4569","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":649.8530686766653,"y":342.3100684514925,"z":0},{"x":649.9120686769523,"y":342.3100684514925,"z":0}],"handle":"B5CE","ownerHandle":"4569","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.6100686760911,"y":342.3100684514925,"z":0},{"x":649.551068675804,"y":342.3100684514925,"z":0}],"handle":"B5CF","ownerHandle":"4569","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B5D2","ownerHandle":"4569","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":649.4304436752172,"y":342.3100684514925,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.125"},{"type":"POINT","handle":"B5D3","ownerHandle":"4569","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.7940686763783,"y":342.3082595968958,"z":0}},{"type":"POINT","handle":"B5D4","ownerHandle":"4569","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.6690686763782,"y":342.3082595968958,"z":0}},{"type":"POINT","handle":"B5D5","ownerHandle":"4569","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.6690686763782,"y":342.3100684514925,"z":0}}]},"459F":{"handle":"459F","ownerHandle":"459E","layer":"0","name":"*D115","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D115","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.6690686763782,"y":342.7365844268496,"z":0},{"x":649.6690686763782,"y":343.0031436247207,"z":0}],"handle":"B5F6","ownerHandle":"459E","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":650.4500686760913,"y":342.9731436245748,"z":0},{"x":650.2425294292432,"y":342.9731436245748,"z":0}],"handle":"B5F7","ownerHandle":"459E","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.7280686766653,"y":342.9731436245748,"z":0},{"x":649.9916960946895,"y":342.9731436245748,"z":0}],"handle":"B5F8","ownerHandle":"459E","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B5FB","ownerHandle":"459E","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":650.1171127619663,"y":342.9731436245748,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.840"},{"type":"POINT","handle":"B5FC","ownerHandle":"459E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.5090686763783,"y":342.6865844266063,"z":0}},{"type":"POINT","handle":"B5FD","ownerHandle":"459E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.6690686763782,"y":342.6865844266063,"z":0}},{"type":"POINT","handle":"B5FE","ownerHandle":"459E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.6690686763782,"y":342.9731436245748,"z":0}}]},"45AC":{"handle":"45AC","ownerHandle":"45AB","layer":"0","name":"*D116","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D116","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.3853536108282,"y":342.2264523543784,"z":0},{"x":650.4443536111154,"y":342.2264523543784,"z":0}],"handle":"B600","ownerHandle":"45AB","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B602","ownerHandle":"45AB","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":650.6033119452222,"y":342.2264523543784,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;?0.224"},{"type":"LINE","vertices":[{"x":650.2490686761594,"y":342.5232595968958,"z":0},{"x":650.3390686765973,"y":342.5232595968957,"z":0}],"handle":"B603","ownerHandle":"45AB","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":650.2940686763783,"y":342.4782595966768,"z":0},{"x":650.2940686763784,"y":342.5682595971147,"z":0}],"handle":"B604","ownerHandle":"45AB","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B605","ownerHandle":"45AB","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.3269929896682,"y":342.4162082559681,"z":0}},{"type":"POINT","handle":"B606","ownerHandle":"45AB","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.2611443630883,"y":342.6303109378232,"z":0}}]},"45B7":{"handle":"45B7","ownerHandle":"45B6","layer":"0","name":"*D117","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D117","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.5009673714916,"y":342.0150138989004,"z":0},{"x":650.4419673712046,"y":342.0150138989005,"z":0}],"handle":"B608","ownerHandle":"45B6","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B60A","ownerHandle":"45B6","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":650.2878007037878,"y":342.0150138989004,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;?0.540"},{"type":"LINE","vertices":[{"x":650.2490686761587,"y":342.5232595968958,"z":0},{"x":650.3390686765966,"y":342.5232595968958,"z":0}],"handle":"B60B","ownerHandle":"45B6","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":650.2940686763778,"y":342.4782595966768,"z":0},{"x":650.2940686763777,"y":342.5682595971148,"z":0}],"handle":"B60C","ownerHandle":"45B6","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B60D","ownerHandle":"45B6","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.3958694708115,"y":342.273186411103,"z":0}},{"type":"POINT","handle":"B60E","ownerHandle":"45B6","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.1922678819441,"y":342.7733327826886,"z":0}}]},"45C0":{"handle":"45C0","ownerHandle":"45BF","layer":"0","name":"*D118","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D118","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.6382401048882,"y":343.5981813707519,"z":0},{"x":649.5792401046011,"y":343.5981813707519,"z":0}],"handle":"B610","ownerHandle":"45BF","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B612","ownerHandle":"45BF","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":649.4298651038742,"y":343.5981813707518,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.030"},{"type":"LINE","vertices":[{"x":649.6540686761595,"y":343.4632595968961,"z":0},{"x":649.7440686765973,"y":343.4632595968961,"z":0}],"handle":"B613","ownerHandle":"45BF","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":649.6990686763783,"y":343.4182595966771,"z":0},{"x":649.6990686763783,"y":343.5082595971151,"z":0}],"handle":"B614","ownerHandle":"45BF","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B615","ownerHandle":"45BF","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.6867385605835,"y":343.4906086050041,"z":0}},{"type":"POINT","handle":"B616","ownerHandle":"45BF","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.6990686763784,"y":343.4632595968961,"z":0}}]},"45C9":{"handle":"45C9","ownerHandle":"45C8","layer":"0","name":"*D119","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D119","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.7671970121011,"y":342.9203675202501,"z":0},{"x":649.708197011814,"y":342.9203675202501,"z":0}],"handle":"B618","ownerHandle":"45C8","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B61A","ownerHandle":"45C8","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":649.558822011087,"y":342.9203675202499,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.060"},{"type":"LINE","vertices":[{"x":649.9502376202099,"y":342.6632595968958,"z":0},{"x":650.0402376206476,"y":342.6632595968958,"z":0}],"handle":"B61B","ownerHandle":"45C8","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":649.9952376204288,"y":342.6182595966768,"z":0},{"x":649.9952376204288,"y":342.7082595971147,"z":0}],"handle":"B61C","ownerHandle":"45C8","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B61D","ownerHandle":"45C8","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.9554245551427,"y":342.7081474553046,"z":0}},{"type":"POINT","handle":"B61E","ownerHandle":"45C8","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.9952376204288,"y":342.6632595968958,"z":0}}]},"45D2":{"handle":"45D2","ownerHandle":"45D1","layer":"0","name":"*D120","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D120","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":649.7072349449953,"y":342.5626422249729,"z":0},{"x":649.6482349447083,"y":342.5626422249729,"z":0}],"handle":"B620","ownerHandle":"45D1","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B622","ownerHandle":"45D1","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":649.4988599439816,"y":342.5626422249728,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.060"},{"type":"LINE","vertices":[{"x":649.8090686761592,"y":342.6632595968957,"z":0},{"x":649.8990686765972,"y":342.6632595968958,"z":0}],"handle":"B623","ownerHandle":"45D1","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":649.8540686763782,"y":342.6182595966768,"z":0},{"x":649.8540686763782,"y":342.7082595971147,"z":0}],"handle":"B624","ownerHandle":"45D1","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B625","ownerHandle":"45D1","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.8045741603411,"y":342.6293436289412,"z":0}},{"type":"POINT","handle":"B626","ownerHandle":"45D1","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":649.8540686763781,"y":342.6632595968958,"z":0}}]},"45DB":{"handle":"45DB","ownerHandle":"45DA","layer":"0","name":"*D121","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D121","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.0540686766215,"y":341.3982595968958,"z":0},{"x":654.771953530929,"y":341.3982595968958,"z":0}],"handle":"B628","ownerHandle":"45DA","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.7419535307831,"y":343.5892595966087,"z":0},{"x":654.7419535307831,"y":342.7568717672798,"z":0}],"handle":"B629","ownerHandle":"45DA","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.7419535307831,"y":341.4572595971828,"z":0},{"x":654.7419535307831,"y":342.6593717668053,"z":0}],"handle":"B62A","ownerHandle":"45DA","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B62D","ownerHandle":"45DA","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.741953530783,"y":342.7081217670427,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2.250"},{"type":"POINT","handle":"B62E","ownerHandle":"45DA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0040686763782,"y":343.6482595968957,"z":0}},{"type":"POINT","handle":"B62F","ownerHandle":"45DA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0040686763782,"y":341.3982595968958,"z":0}},{"type":"POINT","handle":"B630","ownerHandle":"45DA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.7419535307831,"y":341.3982595968958,"z":0}}]},"45E8":{"handle":"45E8","ownerHandle":"45E7","layer":"0","name":"*D122","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D122","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.9890686766215,"y":343.1832595968958,"z":0},{"x":654.3017606334784,"y":343.1832595968958,"z":0}],"handle":"B632","ownerHandle":"45E7","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.2717606333325,"y":343.4342595966087,"z":0},{"x":654.2717606333325,"y":343.3779016669161,"z":0}],"handle":"B633","ownerHandle":"45E7","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.2717606333325,"y":343.2422595971829,"z":0},{"x":654.2717606333325,"y":343.2804016664416,"z":0}],"handle":"B634","ownerHandle":"45E7","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B637","ownerHandle":"45E7","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.2717606333324,"y":343.329151666679,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.310"},{"type":"POINT","handle":"B638","ownerHandle":"45E7","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.9390686763782,"y":343.4932595968958,"z":0}},{"type":"POINT","handle":"B639","ownerHandle":"45E7","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.9390686763782,"y":343.1832595968958,"z":0}},{"type":"POINT","handle":"B63A","ownerHandle":"45E7","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.2717606333325,"y":343.1832595968958,"z":0}}]},"45F5":{"handle":"45F5","ownerHandle":"45F4","layer":"0","name":"*D123","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D123","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.3232936222672,"y":343.1832595968958,"z":0},{"x":653.3970139504456,"y":343.1832595968958,"z":0}],"handle":"B63C","ownerHandle":"45F4","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.3670139502996,"y":343.2422595971829,"z":0},{"x":653.3670139502996,"y":343.3012595974699,"z":0}],"handle":"B63D","ownerHandle":"45F4","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.3670139502996,"y":342.9992595966087,"z":0},{"x":653.3670139502996,"y":342.9184650609524,"z":0}],"handle":"B63E","ownerHandle":"45F4","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.3670139502996,"y":342.9184650609524,"z":0},{"x":653.3080139500127,"y":342.9184650609524,"z":0}],"handle":"B63F","ownerHandle":"45F4","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B642","ownerHandle":"45F4","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.1873889494256,"y":342.9184650609526,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.125"},{"type":"POINT","handle":"B643","ownerHandle":"45F4","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.273293622024,"y":343.0582595968957,"z":0}},{"type":"POINT","handle":"B644","ownerHandle":"45F4","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.273293622024,"y":343.1832595968958,"z":0}},{"type":"POINT","handle":"B645","ownerHandle":"45F4","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.3670139502996,"y":343.1832595968958,"z":0}}]},"461E":{"handle":"461E","ownerHandle":"461D","layer":"0","name":"*D126","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D126","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.6690686763782,"y":343.698259597139,"z":0},{"x":653.6690686763782,"y":343.9621028193874,"z":0}],"handle":"B65C","ownerHandle":"461D","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.7280686766653,"y":343.9321028192414,"z":0},{"x":653.7870686769523,"y":343.9321028192414,"z":0}],"handle":"B65D","ownerHandle":"461D","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.3850686760912,"y":343.9321028192414,"z":0},{"x":653.326068675804,"y":343.9321028192414,"z":0}],"handle":"B65E","ownerHandle":"461D","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B661","ownerHandle":"461D","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.1958603418371,"y":343.9321028192414,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.225"},{"type":"POINT","handle":"B662","ownerHandle":"461D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.4440686763782,"y":343.6182595968958,"z":0}},{"type":"POINT","handle":"B663","ownerHandle":"461D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6690686763782,"y":343.6482595968957,"z":0}},{"type":"POINT","handle":"B664","ownerHandle":"461D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6690686763782,"y":343.9321028192414,"z":0}}]},"462A":{"handle":"462A","ownerHandle":"4629","layer":"0","name":"*D127","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D127","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.0640686763782,"y":343.6382595971391,"z":0},{"x":654.0640686763782,"y":343.9621028193874,"z":0}],"handle":"B666","ownerHandle":"4629","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.8600686760911,"y":343.9321028192414,"z":0},{"x":653.8010686758041,"y":343.9321028192414,"z":0}],"handle":"B667","ownerHandle":"4629","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.1230686766652,"y":343.9321028192414,"z":0},{"x":654.1820686769524,"y":343.9321028192414,"z":0}],"handle":"B668","ownerHandle":"4629","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B66B","ownerHandle":"4629","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.3026936775393,"y":343.9321028192414,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.145"},{"type":"POINT","handle":"B66C","ownerHandle":"4629","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.9190686763783,"y":343.6482595968957,"z":0}},{"type":"POINT","handle":"B66D","ownerHandle":"4629","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0640686763782,"y":343.5882595968958,"z":0}},{"type":"POINT","handle":"B66E","ownerHandle":"4629","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0640686763782,"y":343.9321028192414,"z":0}}]},"465E":{"handle":"465E","ownerHandle":"465D","layer":"0","name":"*D131","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D131","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.7250040899855,"y":342.1828038215399,"z":0},{"x":653.6660040896983,"y":342.1828038215399,"z":0}],"handle":"B68E","ownerHandle":"465D","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B690","ownerHandle":"465D","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.5070457555915,"y":342.18280382154,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;?0.224"},{"type":"LINE","vertices":[{"x":653.7490686761591,"y":342.5232595968957,"z":0},{"x":653.839068676597,"y":342.5232595968958,"z":0}],"handle":"B691","ownerHandle":"465D","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.794068676378,"y":342.4782595966767,"z":0},{"x":653.794068676378,"y":342.5682595971146,"z":0}],"handle":"B692","ownerHandle":"465D","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B693","ownerHandle":"465D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7718019848055,"y":342.4134953292745,"z":0}},{"type":"POINT","handle":"B694","ownerHandle":"465D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8163353679506,"y":342.6330238645168,"z":0}}]},"468C":{"handle":"468C","ownerHandle":"468B","layer":"0","name":"*D135","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D135","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.3956644604488,"y":341.7103777442481,"z":0},{"x":653.336664460162,"y":341.7103777442481,"z":0}],"handle":"B6B2","ownerHandle":"468B","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B6B4","ownerHandle":"468B","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.1872894594349,"y":341.7103777442481,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.060"},{"type":"LINE","vertices":[{"x":653.4590686761588,"y":341.4932595968955,"z":0},{"x":653.5490686765966,"y":341.4932595968955,"z":0}],"handle":"B6B5","ownerHandle":"468B","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.5040686763778,"y":341.4482595966766,"z":0},{"x":653.5040686763778,"y":341.5382595971145,"z":0}],"handle":"B6B6","ownerHandle":"468B","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B6B7","ownerHandle":"468B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.4772664950109,"y":341.5469405346109,"z":0}},{"type":"POINT","handle":"B6B8","ownerHandle":"468B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5040686763776,"y":341.4932595968955,"z":0}}]},"469E":{"handle":"469E","ownerHandle":"469D","layer":"0","name":"*D137","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D137","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.0640686763782,"y":342.4732595966525,"z":0},{"x":654.0640686763782,"y":342.1157595967498,"z":0}],"handle":"B6C2","ownerHandle":"469D","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.7350686760913,"y":342.1457595968957,"z":0},{"x":653.6760686758041,"y":342.1457595968957,"z":0}],"handle":"B6C3","ownerHandle":"469D","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.1230686766652,"y":342.1457595968957,"z":0},{"x":654.1820686769523,"y":342.1457595968957,"z":0}],"handle":"B6C4","ownerHandle":"469D","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B6C7","ownerHandle":"469D","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.3074853442292,"y":342.1457595968957,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.270"},{"type":"POINT","handle":"B6C8","ownerHandle":"469D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7940686763782,"y":342.5232595968958,"z":0}},{"type":"POINT","handle":"B6C9","ownerHandle":"469D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0640686763782,"y":342.5232595968958,"z":0}},{"type":"POINT","handle":"B6CA","ownerHandle":"469D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0640686763782,"y":342.1457595968957,"z":0}}]},"46AB":{"handle":"46AB","ownerHandle":"46AA","layer":"0","name":"*D138","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D138","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.552369946778,"y":342.6723899048931,"z":0},{"x":650.7886367002221,"y":342.8087985785946,"z":0}],"handle":"B6CC","ownerHandle":"46AA","layer":"FG-Dim","lineweight":-2},{"type":"ARC","handle":"B6CD","ownerHandle":"46AA","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2,"center":{"x":650.2940686763781,"y":342.5232595968956,"z":0},"radius":0.5410779632519187,"startAngle":5.868682213192202,"angleLength":0.5694009194320762,"endAngle":0.154897825444692},{"type":"ARC","handle":"B6CE","ownerHandle":"46AA","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2,"center":{"x":650.2940686763781,"y":342.5232595968956,"z":0},"radius":0.5410779632519187,"startAngle":0.3410480822706753,"angleLength":0.07345501171703678,"endAngle":0.41450309398771207},{"type":"MTEXT","handle":"B6D1","ownerHandle":"46AA","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":650.8187413077677,"y":342.6554866447631,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;60�"},{"type":"POINT","handle":"B6D2","ownerHandle":"46AA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.8269264495727,"y":342.4293023946014,"z":0}},{"type":"POINT","handle":"B6D3","ownerHandle":"46AA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.391063521602,"y":342.4672595968957,"z":0}},{"type":"POINT","handle":"B6D4","ownerHandle":"46AA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.391063521602,"y":342.5792595968957,"z":0}},{"type":"POINT","handle":"B6D5","ownerHandle":"46AA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.5090686763781,"y":342.6473899047715,"z":0}},{"type":"POINT","handle":"B6D6","ownerHandle":"46AA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":650.5090686763781,"y":342.3991292890199,"z":0}}]},"46BA":{"handle":"46BA","ownerHandle":"46B9","layer":"0","name":"*D139","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D139","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.5957674059784,"y":342.4087703050497,"z":0},{"x":653.4337613486939,"y":342.3152360642661,"z":0}],"handle":"B6D8","ownerHandle":"46B9","layer":"FG-Dim","lineweight":-2},{"type":"ARC","handle":"B6D9","ownerHandle":"46B9","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2,"center":{"x":653.794068676378,"y":342.5232595968958,"z":0},"radius":0.3860470651129506,"startAngle":2.7709741158395746,"angleLength":0.024081065874948848,"endAngle":2.7950551817145235},{"type":"ARC","handle":"B6DA","ownerHandle":"46B9","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2,"center":{"x":653.794068676378,"y":342.5232595968958,"z":0},"radius":0.3860470651129506,"startAngle":3.0543989364156965,"angleLength":0.45781225492314226,"endAngle":3.5122111913388387},{"type":"MTEXT","handle":"B6DD","ownerHandle":"46B9","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.4169111375411,"y":342.6056278394463,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;60�"},{"type":"POINT","handle":"B6DE","ownerHandle":"46B9","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.4138865336272,"y":342.4562232275453,"z":0}},{"type":"POINT","handle":"B6DF","ownerHandle":"46B9","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6970738311545,"y":342.4672595968958,"z":0}},{"type":"POINT","handle":"B6E0","ownerHandle":"46B9","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6970738311544,"y":342.5792595968957,"z":0}},{"type":"POINT","handle":"B6E1","ownerHandle":"46B9","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6390686763784,"y":342.6127488886202,"z":0}},{"type":"POINT","handle":"B6E2","ownerHandle":"46B9","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6390686763783,"y":342.4337703051714,"z":0}}]},"4DB4":{"handle":"4DB4","ownerHandle":"4DB3","layer":"0","name":"*D140","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D140","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":648.673888653496,"y":333.8500205935002,"z":0},{"x":648.204139303089,"y":333.8500205935002,"z":0}],"handle":"B6E4","ownerHandle":"4DB3","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":648.2641393032083,"y":333.9680205937347,"z":0},{"x":648.2641393032083,"y":334.0860205939692,"z":0}],"handle":"B6E5","ownerHandle":"4DB3","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":648.2641393032083,"y":333.4120205932657,"z":0},{"x":648.2641393032083,"y":333.2940205820472,"z":0}],"handle":"B6E6","ownerHandle":"4DB3","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":648.2641393032083,"y":333.2940205820472,"z":0},{"x":648.1461393029738,"y":333.2940205820472,"z":0}],"handle":"B6E7","ownerHandle":"4DB3","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B6EA","ownerHandle":"4DB3","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":647.8953059691416,"y":333.2940205820473,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.320"},{"type":"POINT","handle":"B6EB","ownerHandle":"4DB3","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.5538886536946,"y":333.5300205935002,"z":0}},{"type":"POINT","handle":"B6EC","ownerHandle":"4DB3","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7738886536947,"y":333.8500205935002,"z":0}},{"type":"POINT","handle":"B6ED","ownerHandle":"4DB3","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.2641393032083,"y":333.8500205935002,"z":0}}]},"4DC2":{"handle":"4DC2","ownerHandle":"4DC1","layer":"0","name":"*D141","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D141","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":648.673888653496,"y":334.1500205935002,"z":0},{"x":648.000972643729,"y":334.1500205935002,"z":0}],"handle":"B6EF","ownerHandle":"4DC1","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":648.0609726438482,"y":333.7320205932656,"z":0},{"x":648.0609726438482,"y":333.6140205930312,"z":0}],"handle":"B6F0","ownerHandle":"4DC1","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":648.0609726438482,"y":334.2680205937347,"z":0},{"x":648.0609726438482,"y":334.3860205939692,"z":0}],"handle":"B6F1","ownerHandle":"4DC1","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B6F4","ownerHandle":"4DC1","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.0609726438481,"y":334.0000205935003,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.300"},{"type":"POINT","handle":"B6F5","ownerHandle":"4DC1","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7738886536947,"y":333.8500205935002,"z":0}},{"type":"POINT","handle":"B6F6","ownerHandle":"4DC1","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7738886536947,"y":334.1500205935002,"z":0}},{"type":"POINT","handle":"B6F7","ownerHandle":"4DC1","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.0609726438482,"y":334.1500205935002,"z":0}}]},"4DD2":{"handle":"4DD2","ownerHandle":"4DD1","layer":"0","name":"*D142","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D142","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":648.673888653496,"y":335.4100205935002,"z":0},{"x":648.1619726515421,"y":335.4100205935002,"z":0}],"handle":"B6F9","ownerHandle":"4DD1","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":648.2219726516612,"y":334.2680205937347,"z":0},{"x":648.2219726516612,"y":334.868055919573,"z":0}],"handle":"B6FA","ownerHandle":"4DD1","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":648.2219726516612,"y":335.2920205932656,"z":0},{"x":648.2219726516612,"y":335.0630559199605,"z":0}],"handle":"B6FB","ownerHandle":"4DD1","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B6FE","ownerHandle":"4DD1","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.2219726516611,"y":334.9655559197668,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.260"},{"type":"POINT","handle":"B6FF","ownerHandle":"4DD1","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7738886536947,"y":334.1500205935002,"z":0}},{"type":"POINT","handle":"B700","ownerHandle":"4DD1","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7738886536947,"y":335.4100205935002,"z":0}},{"type":"POINT","handle":"B701","ownerHandle":"4DD1","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.2219726516612,"y":335.4100205935002,"z":0}}]},"4DDF":{"handle":"4DDF","ownerHandle":"4DDE","layer":"0","name":"*D143","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D143","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":648.4538886534959,"y":336.0300205935002,"z":0},{"x":647.5683877214008,"y":336.0300205935002,"z":0}],"handle":"B703","ownerHandle":"4DDE","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":647.6283877215199,"y":333.6480205937347,"z":0},{"x":647.6283877215199,"y":334.8463538024259,"z":0}],"handle":"B704","ownerHandle":"4DDE","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":647.6283877215199,"y":335.9120205932657,"z":0},{"x":647.6283877215199,"y":335.0413538028134,"z":0}],"handle":"B705","ownerHandle":"4DDE","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B708","ownerHandle":"4DDE","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":647.6283877215197,"y":334.9438538026197,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2.500"},{"type":"POINT","handle":"B709","ownerHandle":"4DDE","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.5538886536946,"y":333.5300205935002,"z":0}},{"type":"POINT","handle":"B70A","ownerHandle":"4DDE","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.5538886536946,"y":336.0300205935002,"z":0}},{"type":"POINT","handle":"B70B","ownerHandle":"4DDE","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":647.6283877215199,"y":336.0300205935002,"z":0}}]},"4DEC":{"handle":"4DEC","ownerHandle":"4DEB","layer":"0","name":"*D144","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D144","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":648.6538886536947,"y":336.0200205936989,"z":0},{"x":648.6538886536947,"y":336.6324054199609,"z":0}],"handle":"B70D","ownerHandle":"4DEB","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":648.7718886539291,"y":336.5724054198417,"z":0},{"x":648.8898886541638,"y":336.5724054198417,"z":0}],"handle":"B70E","ownerHandle":"4DEB","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":648.4358886534602,"y":336.5724054198417,"z":0},{"x":648.3178886317304,"y":336.5724054198417,"z":0}],"handle":"B70F","ownerHandle":"4DEB","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B712","ownerHandle":"4DEB","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.0958052979557,"y":336.5724054198417,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.100"},{"type":"POINT","handle":"B713","ownerHandle":"4DEB","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.5538886536946,"y":336.0300205935002,"z":0}},{"type":"POINT","handle":"B714","ownerHandle":"4DEB","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.6538886536947,"y":335.9200205935002,"z":0}},{"type":"POINT","handle":"B715","ownerHandle":"4DEB","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.6538886536947,"y":336.5724054198417,"z":0}}]},"4DF9":{"handle":"4DF9","ownerHandle":"4DF8","layer":"0","name":"*D145","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D145","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":648.6538886536947,"y":336.0200205936989,"z":0},{"x":648.6538886536947,"y":336.3404164556353,"z":0}],"handle":"B717","ownerHandle":"4DF8","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":648.5358886534602,"y":336.2804164555161,"z":0},{"x":648.4178886532256,"y":336.2804164555161,"z":0}],"handle":"B718","ownerHandle":"4DF8","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":648.8918886539291,"y":336.2804164555161,"z":0},{"x":649.0098886761086,"y":336.2804164555161,"z":0}],"handle":"B719","ownerHandle":"4DF8","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B71C","ownerHandle":"4DF8","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.2415553432357,"y":336.2804164555161,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.120"},{"type":"POINT","handle":"B71D","ownerHandle":"4DF8","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7738886536947,"y":335.7100205935002,"z":0}},{"type":"POINT","handle":"B71E","ownerHandle":"4DF8","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.6538886536947,"y":335.9200205935002,"z":0}},{"type":"POINT","handle":"B71F","ownerHandle":"4DF8","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.6538886536947,"y":336.2804164555161,"z":0}}]},"4E06":{"handle":"4E06","ownerHandle":"4E05","layer":"0","name":"*D146","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D146","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8038886536947,"y":336.110020593699,"z":0},{"x":653.8038886536947,"y":336.9032874906953,"z":0}],"handle":"B721","ownerHandle":"4E05","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":648.671888653929,"y":336.843287490576,"z":0},{"x":651.2733251880311,"y":336.843287490576,"z":0}],"handle":"B722","ownerHandle":"4E05","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.6858886534602,"y":336.843287490576,"z":0},{"x":651.7941585223995,"y":336.843287490576,"z":0}],"handle":"B723","ownerHandle":"4E05","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B726","ownerHandle":"4E05","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.5337418552153,"y":336.843287490576,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;5.250"},{"type":"POINT","handle":"B727","ownerHandle":"4E05","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.5538886536946,"y":336.0300205935002,"z":0}},{"type":"POINT","handle":"B728","ownerHandle":"4E05","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.8038886536947,"y":336.0100205935002,"z":0}},{"type":"POINT","handle":"B729","ownerHandle":"4E05","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.8038886536947,"y":336.843287490576,"z":0}}]},"4E13":{"handle":"4E13","ownerHandle":"4E12","layer":"0","name":"*D147","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D147","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":655.0538886536947,"y":335.1930205936989,"z":0},{"x":655.0538886536947,"y":337.4095789735351,"z":0}],"handle":"B72B","ownerHandle":"4E12","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":648.671888653929,"y":337.3495789734158,"z":0},{"x":651.273869960039,"y":337.3495789734158,"z":0}],"handle":"B72C","ownerHandle":"4E12","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.9358886534601,"y":337.3495789734158,"z":0},{"x":651.7755366277026,"y":337.3495789734158,"z":0}],"handle":"B72D","ownerHandle":"4E12","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B730","ownerHandle":"4E12","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.5247032938709,"y":337.3495789734158,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;6.500"},{"type":"POINT","handle":"B731","ownerHandle":"4E12","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.5538886536946,"y":336.0300205935002,"z":0}},{"type":"POINT","handle":"B732","ownerHandle":"4E12","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":655.0538886536947,"y":335.0930205935002,"z":0}},{"type":"POINT","handle":"B733","ownerHandle":"4E12","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":655.0538886536947,"y":337.3495789734158,"z":0}}]},"4E20":{"handle":"4E20","ownerHandle":"4E1F","layer":"0","name":"*D148","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D148","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":655.0538886536947,"y":335.1930205936989,"z":0},{"x":655.0538886536947,"y":336.9032874906953,"z":0}],"handle":"B735","ownerHandle":"4E1F","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":653.921888653929,"y":336.843287490576,"z":0},{"x":654.204622060929,"y":336.843287490576,"z":0}],"handle":"B736","ownerHandle":"4E1F","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.9358886534601,"y":336.843287490576,"z":0},{"x":654.6871220618879,"y":336.843287490576,"z":0}],"handle":"B737","ownerHandle":"4E1F","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B73A","ownerHandle":"4E1F","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.4458720614084,"y":336.843287490576,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.250"},{"type":"POINT","handle":"B73B","ownerHandle":"4E1F","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.8038886536947,"y":336.0100205935002,"z":0}},{"type":"POINT","handle":"B73C","ownerHandle":"4E1F","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":655.0538886536947,"y":335.0930205935002,"z":0}},{"type":"POINT","handle":"B73D","ownerHandle":"4E1F","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":655.0538886536947,"y":336.843287490576,"z":0}}]},"4E2D":{"handle":"4E2D","ownerHandle":"4E2C","layer":"0","name":"*D149","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D149","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":652.1677977542691,"y":333.6400205935002,"z":0},{"x":652.1618176275451,"y":333.6400205935002,"z":0}],"handle":"B73F","ownerHandle":"4E2C","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":652.2218176276643,"y":335.8020205932656,"z":0},{"x":652.2218176276643,"y":335.1198142367309,"z":0}],"handle":"B740","ownerHandle":"4E2C","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":652.2218176276643,"y":333.7580205937347,"z":0},{"x":652.2218176276643,"y":334.9248142363434,"z":0}],"handle":"B741","ownerHandle":"4E2C","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B744","ownerHandle":"4E2C","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.2218176276642,"y":335.0223142365373,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2.280"},{"type":"POINT","handle":"B745","ownerHandle":"4E2C","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.2677977544678,"y":335.9200205935002,"z":0}},{"type":"POINT","handle":"B746","ownerHandle":"4E2C","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.2677977544678,"y":333.6400205935002,"z":0}},{"type":"POINT","handle":"B747","ownerHandle":"4E2C","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.2218176276643,"y":333.6400205935002,"z":0}}]},"4E3A":{"handle":"4E3A","ownerHandle":"4E39","layer":"0","name":"*D150","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D150","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":650.9888886534959,"y":336.0300205935002,"z":0},{"x":650.8985777845111,"y":336.0300205935002,"z":0}],"handle":"B749","ownerHandle":"4E39","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":650.9585777846304,"y":335.8020205932656,"z":0},{"x":650.9585777846304,"y":335.6840205930311,"z":0}],"handle":"B74A","ownerHandle":"4E39","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":650.9585777846304,"y":336.1480205937347,"z":0},{"x":650.9585777846304,"y":336.2660206051712,"z":0}],"handle":"B74B","ownerHandle":"4E39","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":650.9585777846304,"y":336.2660206051712,"z":0},{"x":651.0765777848648,"y":336.2660206051712,"z":0}],"handle":"B74C","ownerHandle":"4E39","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B74F","ownerHandle":"4E39","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.289077785287,"y":336.2660206051713,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.110"},{"type":"POINT","handle":"B750","ownerHandle":"4E39","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.0888886536947,"y":335.9200205935002,"z":0}},{"type":"POINT","handle":"B751","ownerHandle":"4E39","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":651.0888886536947,"y":336.0300205935002,"z":0}},{"type":"POINT","handle":"B752","ownerHandle":"4E39","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":650.9585777846304,"y":336.0300205935002,"z":0}}]},"4E48":{"handle":"4E48","ownerHandle":"4E47","layer":"0","name":"*D151","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D151","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":648.8738886538933,"y":335.5100205935002,"z":0},{"x":649.2797431550416,"y":335.5100205935002,"z":0}],"handle":"B754","ownerHandle":"4E47","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":649.2197431549223,"y":335.6280205937347,"z":0},{"x":649.2197431549223,"y":335.7460205939692,"z":0}],"handle":"B755","ownerHandle":"4E47","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.2197431549223,"y":335.2920205932656,"z":0},{"x":649.2197431549223,"y":335.1727363451079,"z":0}],"handle":"B756","ownerHandle":"4E47","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.2197431549223,"y":335.1727363451079,"z":0},{"x":649.1017431546879,"y":335.1727363451079,"z":0}],"handle":"B757","ownerHandle":"4E47","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B75A","ownerHandle":"4E47","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.879659820913,"y":335.172736345108,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.100"},{"type":"POINT","handle":"B75B","ownerHandle":"4E47","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7738886536947,"y":335.4100205935002,"z":0}},{"type":"POINT","handle":"B75C","ownerHandle":"4E47","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7738886536947,"y":335.5100205935002,"z":0}},{"type":"POINT","handle":"B75D","ownerHandle":"4E47","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.2197431549223,"y":335.5100205935002,"z":0}}]},"4E56":{"handle":"4E56","ownerHandle":"4E55","layer":"0","name":"*D152","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D152","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":648.8738886538933,"y":335.7100205935002,"z":0},{"x":649.9002063961532,"y":335.7100205935002,"z":0}],"handle":"B75F","ownerHandle":"4E55","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":649.8402063960339,"y":335.8280205937347,"z":0},{"x":649.8402063960339,"y":335.9460205939692,"z":0}],"handle":"B760","ownerHandle":"4E55","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.8402063960339,"y":335.4920205932657,"z":0},{"x":649.8402063960339,"y":335.3740205818291,"z":0}],"handle":"B761","ownerHandle":"4E55","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.8402063960339,"y":335.3740205818291,"z":0},{"x":649.7222063957995,"y":335.3740205818291,"z":0}],"handle":"B762","ownerHandle":"4E55","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B765","ownerHandle":"4E55","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.5001230620246,"y":335.3740205818292,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.100"},{"type":"POINT","handle":"B766","ownerHandle":"4E55","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7738886536947,"y":335.6100205935002,"z":0}},{"type":"POINT","handle":"B767","ownerHandle":"4E55","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7738886536947,"y":335.7100205935002,"z":0}},{"type":"POINT","handle":"B768","ownerHandle":"4E55","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.8402063960339,"y":335.7100205935002,"z":0}}]},"4E64":{"handle":"4E64","ownerHandle":"4E63","layer":"0","name":"*D153","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D153","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.4738886534959,"y":334.2970205935002,"z":0},{"x":652.8819624499752,"y":334.2970205935002,"z":0}],"handle":"B76A","ownerHandle":"4E63","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":652.9419624500945,"y":335.1450205932656,"z":0},{"x":652.9419624500945,"y":335.1311120536963,"z":0}],"handle":"B76B","ownerHandle":"4E63","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":652.9419624500945,"y":334.4150205937347,"z":0},{"x":652.9419624500945,"y":334.9361120533087,"z":0}],"handle":"B76C","ownerHandle":"4E63","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B76F","ownerHandle":"4E63","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.9419624500944,"y":335.0336120535026,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.966"},{"type":"POINT","handle":"B770","ownerHandle":"4E63","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.5738886536947,"y":335.2630205935002,"z":0}},{"type":"POINT","handle":"B771","ownerHandle":"4E63","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.5738886536947,"y":334.2970205935002,"z":0}},{"type":"POINT","handle":"B772","ownerHandle":"4E63","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.9419624500945,"y":334.2970205935002,"z":0}}]},"4E71":{"handle":"4E71","ownerHandle":"4E70","layer":"0","name":"*D154","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D154","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.4738886534959,"y":334.2970205935002,"z":0},{"x":653.1572638232307,"y":334.2970205935002,"z":0}],"handle":"B774","ownerHandle":"4E70","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":653.2172638233499,"y":334.4150205937347,"z":0},{"x":653.2172638233499,"y":334.5330205939692,"z":0}],"handle":"B775","ownerHandle":"4E70","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.2172638233499,"y":334.0990205932657,"z":0},{"x":653.2172638233499,"y":333.9810205813648,"z":0}],"handle":"B776","ownerHandle":"4E70","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.2172638233499,"y":333.9810205813648,"z":0},{"x":653.0992638231155,"y":333.9810205813648,"z":0}],"handle":"B777","ownerHandle":"4E70","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B77A","ownerHandle":"4E70","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.8580138226359,"y":333.9810205813649,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.080"},{"type":"POINT","handle":"B77B","ownerHandle":"4E70","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.5738886536947,"y":334.2170205935002,"z":0}},{"type":"POINT","handle":"B77C","ownerHandle":"4E70","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.5738886536947,"y":334.2970205935002,"z":0}},{"type":"POINT","handle":"B77D","ownerHandle":"4E70","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.2172638233499,"y":334.2970205935002,"z":0}}]},"4E7F":{"handle":"4E7F","ownerHandle":"4E7E","layer":"0","name":"*D155","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D155","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.7788886538934,"y":334.2170205935002,"z":0},{"x":654.1511240592996,"y":334.2170205935002,"z":0}],"handle":"B77F","ownerHandle":"4E7E","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":654.0911240591803,"y":333.7670205932657,"z":0},{"x":654.0911240591803,"y":333.6490205930312,"z":0}],"handle":"B780","ownerHandle":"4E7E","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.0911240591803,"y":334.3350205937347,"z":0},{"x":654.0911240591803,"y":334.4530205939692,"z":0}],"handle":"B781","ownerHandle":"4E7E","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B784","ownerHandle":"4E7E","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.0911240591802,"y":334.0722306360186,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.332"},{"type":"POINT","handle":"B785","ownerHandle":"4E7E","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.6788886536946,"y":333.8850205935002,"z":0}},{"type":"POINT","handle":"B786","ownerHandle":"4E7E","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.6788886536946,"y":334.2170205935002,"z":0}},{"type":"POINT","handle":"B787","ownerHandle":"4E7E","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.0911240591803,"y":334.2170205935002,"z":0}}]},"4E8C":{"handle":"4E8C","ownerHandle":"4E8B","layer":"0","name":"*D156","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D156","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8788886590355,"y":333.5300205935002,"z":0},{"x":654.4887613766433,"y":333.5300205935002,"z":0}],"handle":"B789","ownerHandle":"4E8B","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":654.4287613765241,"y":334.0030205937347,"z":0},{"x":654.4287613765241,"y":334.1210205939692,"z":0}],"handle":"B78A","ownerHandle":"4E8B","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.4287613765241,"y":333.4120205932657,"z":0},{"x":654.4287613765241,"y":333.2940205930312,"z":0}],"handle":"B78B","ownerHandle":"4E8B","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B78E","ownerHandle":"4E8B","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.428761376524,"y":333.7155389471817,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.355"},{"type":"POINT","handle":"B78F","ownerHandle":"4E8B","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.6788886536946,"y":333.8850205935002,"z":0}},{"type":"POINT","handle":"B790","ownerHandle":"4E8B","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.7788886588366,"y":333.5300205935002,"z":0}},{"type":"POINT","handle":"B791","ownerHandle":"4E8B","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.4287613765241,"y":333.5300205935002,"z":0}}]},"4E99":{"handle":"4E99","ownerHandle":"4E98","layer":"0","name":"*D157","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D157","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":655.1038886539379,"y":334.6800205935001,"z":0},{"x":655.4387669402857,"y":334.6800205935001,"z":0}],"handle":"B793","ownerHandle":"4E98","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":655.4087669401399,"y":334.4080205932131,"z":0},{"x":655.4087669401399,"y":334.3490205929261,"z":0}],"handle":"B794","ownerHandle":"4E98","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.4087669401399,"y":334.7390205937872,"z":0},{"x":655.4087669401399,"y":334.7980205940743,"z":0}],"handle":"B795","ownerHandle":"4E98","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B798","ownerHandle":"4E98","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":655.4087669401398,"y":334.575360390295,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.213"},{"type":"POINT","handle":"B799","ownerHandle":"4E98","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.0538886536947,"y":334.4670205935002,"z":0}},{"type":"POINT","handle":"B79A","ownerHandle":"4E98","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.0538886536947,"y":334.6800205935001,"z":0}},{"type":"POINT","handle":"B79B","ownerHandle":"4E98","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.4087669401399,"y":334.6800205935001,"z":0}}]},"4EA6":{"handle":"4EA6","ownerHandle":"4EA5","layer":"0","name":"*D158","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D158","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":655.1038886539379,"y":335.0930205935002,"z":0},{"x":655.2721075220023,"y":335.0930205935002,"z":0}],"handle":"B79D","ownerHandle":"4EA5","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":655.2421075218563,"y":334.9790205932131,"z":0},{"x":655.2421075218563,"y":334.920020592926,"z":0}],"handle":"B79E","ownerHandle":"4EA5","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.2421075218563,"y":335.1520205937873,"z":0},{"x":655.2421075218563,"y":335.2366320825847,"z":0}],"handle":"B79F","ownerHandle":"4EA5","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.2421075218563,"y":335.2366320825847,"z":0},{"x":655.3011075221434,"y":335.2366320825847,"z":0}],"handle":"B7A0","ownerHandle":"4EA5","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B7A3","ownerHandle":"4EA5","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":655.4265241894202,"y":335.2366320825848,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.055"},{"type":"POINT","handle":"B7A4","ownerHandle":"4EA5","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.0688886536947,"y":335.0380205935002,"z":0}},{"type":"POINT","handle":"B7A5","ownerHandle":"4EA5","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.0538886536947,"y":335.0930205935002,"z":0}},{"type":"POINT","handle":"B7A6","ownerHandle":"4EA5","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.2421075218563,"y":335.0930205935002,"z":0}}]},"4EB4":{"handle":"4EB4","ownerHandle":"4EB3","layer":"0","name":"*D159","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D159","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":655.1188886539379,"y":335.0380205935002,"z":0},{"x":655.4709304569514,"y":335.0380205935002,"z":0}],"handle":"B7A8","ownerHandle":"4EB3","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":655.4409304568054,"y":334.876020593213,"z":0},{"x":655.4409304568054,"y":334.817020592926,"z":0}],"handle":"B7A9","ownerHandle":"4EB3","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.4409304568054,"y":335.0970205937873,"z":0},{"x":655.4409304568054,"y":335.1560205940743,"z":0}],"handle":"B7AA","ownerHandle":"4EB3","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B7AD","ownerHandle":"4EB3","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":655.4409304568053,"y":334.9865205935003,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.103"},{"type":"POINT","handle":"B7AE","ownerHandle":"4EB3","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.0688886536946,"y":334.9350205935001,"z":0}},{"type":"POINT","handle":"B7AF","ownerHandle":"4EB3","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.0688886536947,"y":335.0380205935002,"z":0}},{"type":"POINT","handle":"B7B0","ownerHandle":"4EB3","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.4409304568054,"y":335.0380205935002,"z":0}}]},"4EC1":{"handle":"4EC1","ownerHandle":"4EC0","layer":"0","name":"*D160","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D160","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":655.1038886539379,"y":334.8800205935002,"z":0},{"x":655.2931908557487,"y":334.8800205935002,"z":0}],"handle":"B7B2","ownerHandle":"4EC0","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":655.2631908556027,"y":334.6210205932131,"z":0},{"x":655.2631908556027,"y":334.5620205929261,"z":0}],"handle":"B7B3","ownerHandle":"4EC0","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.2631908556027,"y":334.9390205937873,"z":0},{"x":655.2631908556027,"y":334.9980205940743,"z":0}],"handle":"B7B4","ownerHandle":"4EC0","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B7B7","ownerHandle":"4EC0","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":655.2631908556025,"y":334.7800205935002,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.200"},{"type":"POINT","handle":"B7B8","ownerHandle":"4EC0","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.0538886536947,"y":334.6800205935001,"z":0}},{"type":"POINT","handle":"B7B9","ownerHandle":"4EC0","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.0538886536947,"y":334.8800205935002,"z":0}},{"type":"POINT","handle":"B7BA","ownerHandle":"4EC0","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.2631908556027,"y":334.8800205935002,"z":0}}]},"4ECE":{"handle":"4ECE","ownerHandle":"4ECD","layer":"0","name":"*D161","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D161","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.301429355905,"y":334.6401879857865,"z":0},{"x":654.242429355618,"y":334.6401879857865,"z":0}],"handle":"B7BC","ownerHandle":"4ECD","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B7BE","ownerHandle":"4ECD","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.1026376882712,"y":334.6401879857866,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.100"},{"type":"LINE","vertices":[{"x":654.4288886534764,"y":334.7800205935004,"z":0},{"x":654.5188886539142,"y":334.7800205935005,"z":0}],"handle":"B7BF","ownerHandle":"4ECD","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.4738886536953,"y":334.7350205932815,"z":0},{"x":654.4738886536953,"y":334.8250205937195,"z":0}],"handle":"B7C0","ownerHandle":"4ECD","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B7C1","ownerHandle":"4ECD","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.3962132428945,"y":334.7170401953039,"z":0}},{"type":"POINT","handle":"B7C2","ownerHandle":"4ECD","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.4738886536953,"y":334.7800205935005,"z":0}}]},"4ED7":{"handle":"4ED7","ownerHandle":"4ED6","layer":"0","name":"*D162","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D162","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.1971504778161,"y":334.9366730188771,"z":0},{"x":654.1381504775292,"y":334.9366730188771,"z":0}],"handle":"B7C4","ownerHandle":"4ED6","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B7C6","ownerHandle":"4ED6","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.9887754768024,"y":334.9366730188771,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.200"},{"type":"LINE","vertices":[{"x":654.4288886534758,"y":334.7800205935002,"z":0},{"x":654.5188886539136,"y":334.7800205935002,"z":0}],"handle":"B7C7","ownerHandle":"4ED6","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.4738886536946,"y":334.7350205932812,"z":0},{"x":654.4738886536946,"y":334.8250205937191,"z":0}],"handle":"B7C8","ownerHandle":"4ED6","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B7C9","ownerHandle":"4ED6","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.29983948679,"y":334.8785441312951,"z":0}},{"type":"POINT","handle":"B7CA","ownerHandle":"4ED6","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.4738886536946,"y":334.7800205935002,"z":0}}]},"4EE0":{"handle":"4EE0","ownerHandle":"4EDF","layer":"0","name":"*D163","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D163","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.4386857175195,"y":334.491840098648,"z":0},{"x":654.4976857178067,"y":334.491840098648,"z":0}],"handle":"B7CC","ownerHandle":"4EDF","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B7CE","ownerHandle":"4EDF","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.6470607185336,"y":334.491840098648,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.030"},{"type":"LINE","vertices":[{"x":654.2895652886008,"y":334.5970205935001,"z":0},{"x":654.3795652890386,"y":334.5970205935001,"z":0}],"handle":"B7CF","ownerHandle":"4EDF","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.3345652888197,"y":334.5520205932812,"z":0},{"x":654.3345652888197,"y":334.6420205937191,"z":0}],"handle":"B7D0","ownerHandle":"4EDF","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B7D1","ownerHandle":"4EDF","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.3556707810418,"y":334.5757002230047,"z":0}},{"type":"POINT","handle":"B7D2","ownerHandle":"4EDF","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.3345652888197,"y":334.5970205935001,"z":0}}]},"4EE9":{"handle":"4EE9","ownerHandle":"4EE8","layer":"0","name":"*D164","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D164","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.6804215114187,"y":334.8785006780626,"z":0},{"x":653.7394215117058,"y":334.8785006780627,"z":0}],"handle":"B7D4","ownerHandle":"4EE8","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B7D6","ownerHandle":"4EE8","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.8744215123625,"y":334.8785006780626,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.110"},{"type":"LINE","vertices":[{"x":653.8248886534765,"y":334.5170205935009,"z":0},{"x":653.9148886539145,"y":334.5170205935008,"z":0}],"handle":"B7D7","ownerHandle":"4EE8","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.8698886536957,"y":334.4720205932818,"z":0},{"x":653.8698886536957,"y":334.5620205937198,"z":0}],"handle":"B7D8","ownerHandle":"4EE8","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B7D9","ownerHandle":"4EE8","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8188224152794,"y":334.6144487172328,"z":0}},{"type":"POINT","handle":"B7DA","ownerHandle":"4EE8","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8698886536955,"y":334.5170205935008,"z":0}}]},"4EF2":{"handle":"4EF2","ownerHandle":"4EF1","layer":"0","name":"*D165","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D165","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8798886536946,"y":335.1330205937435,"z":0},{"x":653.8798886536946,"y":335.3510162966892,"z":0}],"handle":"B7DC","ownerHandle":"4EF1","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.9948886534077,"y":335.3210162965433,"z":0},{"x":654.5869608207325,"y":335.3210162965433,"z":0}],"handle":"B7DD","ownerHandle":"4EF1","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.9388886539817,"y":335.3210162965433,"z":0},{"x":654.3552941529387,"y":335.3210162965433,"z":0}],"handle":"B7DE","ownerHandle":"4EF1","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B7E1","ownerHandle":"4EF1","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.4711274868356,"y":335.3210162965433,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.174"},{"type":"POINT","handle":"B7E2","ownerHandle":"4EF1","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.0538886536947,"y":335.0930205935002,"z":0}},{"type":"POINT","handle":"B7E3","ownerHandle":"4EF1","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8798886536946,"y":335.0830205935002,"z":0}},{"type":"POINT","handle":"B7E4","ownerHandle":"4EF1","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8798886536946,"y":335.3210162965433,"z":0}}]},"4EFF":{"handle":"4EFF","ownerHandle":"4EFE","layer":"0","name":"*D166","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D166","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8038886536947,"y":335.1330205937435,"z":0},{"x":653.8038886536947,"y":335.2484119474005,"z":0}],"handle":"B7E6","ownerHandle":"4EFE","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.7448886534077,"y":335.2184119472546,"z":0},{"x":653.6858886531205,"y":335.2184119472546,"z":0}],"handle":"B7E7","ownerHandle":"4EFE","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.9388886539817,"y":335.2184119472546,"z":0},{"x":653.9978886542686,"y":335.2184119472546,"z":0}],"handle":"B7E8","ownerHandle":"4EFE","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B7EB","ownerHandle":"4EFE","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.1233053215457,"y":335.2184119472546,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.076"},{"type":"POINT","handle":"B7EC","ownerHandle":"4EFE","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8798886536946,"y":335.0830205935002,"z":0}},{"type":"POINT","handle":"B7ED","ownerHandle":"4EFE","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8038886536947,"y":335.0830205935002,"z":0}},{"type":"POINT","handle":"B7EE","ownerHandle":"4EFE","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8038886536947,"y":335.2184119472546,"z":0}}]},"4F0C":{"handle":"4F0C","ownerHandle":"4F0B","layer":"0","name":"*D167","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D167","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.2738886536946,"y":334.7300205932567,"z":0},{"x":654.2738886536946,"y":334.3041576477866,"z":0}],"handle":"B7F0","ownerHandle":"4F0B","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.8628886539817,"y":334.3341576479325,"z":0},{"x":653.9075246055374,"y":334.3341576479325,"z":0}],"handle":"B7F1","ownerHandle":"4F0B","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.2148886534077,"y":334.3341576479325,"z":0},{"x":654.1583579400914,"y":334.3341576479325,"z":0}],"handle":"B7F2","ownerHandle":"4F0B","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B7F5","ownerHandle":"4F0B","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.0329412728144,"y":334.3341576479325,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.470"},{"type":"POINT","handle":"B7F6","ownerHandle":"4F0B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8038886536947,"y":334.5170205935001,"z":0}},{"type":"POINT","handle":"B7F7","ownerHandle":"4F0B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.2738886536946,"y":334.7800205935,"z":0}},{"type":"POINT","handle":"B7F8","ownerHandle":"4F0B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.2738886536946,"y":334.3341576479325,"z":0}}]},"4F19":{"handle":"4F19","ownerHandle":"4F18","layer":"0","name":"*D168","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D168","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.7538886534514,"y":335.0930205935002,"z":0},{"x":653.4529656664442,"y":335.0930205935002,"z":0}],"handle":"B7FA","ownerHandle":"4F18","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.4829656665902,"y":334.9740205932131,"z":0},{"x":653.4829656665902,"y":334.9150205929261,"z":0}],"handle":"B7FB","ownerHandle":"4F18","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.4829656665902,"y":335.1520205937873,"z":0},{"x":653.4829656665902,"y":335.2110205940743,"z":0}],"handle":"B7FC","ownerHandle":"4F18","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B7FF","ownerHandle":"4F18","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.48296566659,"y":335.0630205935003,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.060"},{"type":"POINT","handle":"B800","ownerHandle":"4F18","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8198886535464,"y":335.0330205935002,"z":0}},{"type":"POINT","handle":"B801","ownerHandle":"4F18","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8038886536947,"y":335.0930205935002,"z":0}},{"type":"POINT","handle":"B802","ownerHandle":"4F18","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.4829656665902,"y":335.0930205935002,"z":0}}]},"4F26":{"handle":"4F26","ownerHandle":"4F25","layer":"0","name":"*D169","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D169","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.7538886534514,"y":334.6270205935001,"z":0},{"x":653.3468911455114,"y":334.6270205935001,"z":0}],"handle":"B804","ownerHandle":"4F25","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.3768911456575,"y":334.9920205937872,"z":0},{"x":653.3768911456575,"y":335.0510205940742,"z":0}],"handle":"B805","ownerHandle":"4F25","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.3768911456575,"y":334.568020593213,"z":0},{"x":653.3768911456575,"y":334.5090205929259,"z":0}],"handle":"B806","ownerHandle":"4F25","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B809","ownerHandle":"4F25","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.3768911456574,"y":334.7267070653761,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.306"},{"type":"POINT","handle":"B80A","ownerHandle":"4F25","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8038886536947,"y":334.9330205935001,"z":0}},{"type":"POINT","handle":"B80B","ownerHandle":"4F25","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8038886536947,"y":334.6270205935001,"z":0}},{"type":"POINT","handle":"B80C","ownerHandle":"4F25","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.3768911456575,"y":334.6270205935001,"z":0}}]},"4F33":{"handle":"4F33","ownerHandle":"4F32","layer":"0","name":"*D170","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D170","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8388886539379,"y":333.6470205935002,"z":0},{"x":654.1492878863518,"y":333.6470205935002,"z":0}],"handle":"B80E","ownerHandle":"4F32","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.1192878862059,"y":333.7060205937873,"z":0},{"x":654.1192878862059,"y":333.7650205940743,"z":0}],"handle":"B80F","ownerHandle":"4F32","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.1192878862059,"y":333.4710205932131,"z":0},{"x":654.1192878862059,"y":333.410404433705,"z":0}],"handle":"B810","ownerHandle":"4F32","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.1192878862059,"y":333.410404433705,"z":0},{"x":654.0602878859189,"y":333.410404433705,"z":0}],"handle":"B811","ownerHandle":"4F32","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B814","ownerHandle":"4F32","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.9492462187117,"y":333.4104044337051,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.117"},{"type":"POINT","handle":"B815","ownerHandle":"4F32","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7838886536946,"y":333.5300205935002,"z":0}},{"type":"POINT","handle":"B816","ownerHandle":"4F32","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7888886536947,"y":333.6470205935002,"z":0}},{"type":"POINT","handle":"B817","ownerHandle":"4F32","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.1192878862059,"y":333.6470205935002,"z":0}}]},"4F41":{"handle":"4F41","ownerHandle":"4F40","layer":"0","name":"*D171","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D171","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8388886539379,"y":333.7730205935002,"z":0},{"x":654.3140353942188,"y":333.7730205935002,"z":0}],"handle":"B819","ownerHandle":"4F40","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.2840353940729,"y":333.5880205932131,"z":0},{"x":654.2840353940729,"y":333.5290205929261,"z":0}],"handle":"B81A","ownerHandle":"4F40","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.2840353940729,"y":333.8320205937872,"z":0},{"x":654.2840353940729,"y":333.8910205940743,"z":0}],"handle":"B81B","ownerHandle":"4F40","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B81E","ownerHandle":"4F40","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.2840353940728,"y":333.7100205935003,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.126"},{"type":"POINT","handle":"B81F","ownerHandle":"4F40","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7888886536947,"y":333.6470205935002,"z":0}},{"type":"POINT","handle":"B820","ownerHandle":"4F40","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7888886536947,"y":333.7730205935002,"z":0}},{"type":"POINT","handle":"B821","ownerHandle":"4F40","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.2840353940729,"y":333.7730205935002,"z":0}}]},"4F4E":{"handle":"4F4E","ownerHandle":"4F4D","layer":"0","name":"*D172","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D172","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.764397043672,"y":333.8040205935002,"z":0},{"x":654.5207421800598,"y":333.8040205935002,"z":0}],"handle":"B823","ownerHandle":"4F4D","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.4907421799138,"y":333.5570205932131,"z":0},{"x":654.4907421799138,"y":333.4980205929261,"z":0}],"handle":"B824","ownerHandle":"4F4D","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.4907421799138,"y":333.8630205937873,"z":0},{"x":654.4907421799138,"y":333.9220205940743,"z":0}],"handle":"B825","ownerHandle":"4F4D","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B828","ownerHandle":"4F4D","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.4907421799137,"y":333.7137119240642,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.188"},{"type":"POINT","handle":"B829","ownerHandle":"4F4D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7143970434287,"y":333.6160205935002,"z":0}},{"type":"POINT","handle":"B82A","ownerHandle":"4F4D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7143970434287,"y":333.8040205935002,"z":0}},{"type":"POINT","handle":"B82B","ownerHandle":"4F4D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.4907421799138,"y":333.8040205935002,"z":0}}]},"4F5B":{"handle":"4F5B","ownerHandle":"4F5A","layer":"0","name":"*D173","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D173","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.635806698271,"y":334.1510064190219,"z":0},{"x":653.5768066979841,"y":334.1510064190219,"z":0}],"handle":"B82D","ownerHandle":"4F5A","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B82F","ownerHandle":"4F5A","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.4274316972568,"y":334.1510064190218,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.050"},{"type":"LINE","vertices":[{"x":653.6588886534769,"y":333.7540205935008,"z":0},{"x":653.7488886539147,"y":333.7540205935008,"z":0}],"handle":"B830","ownerHandle":"4F5A","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.7038886536959,"y":333.7090205932818,"z":0},{"x":653.7038886536958,"y":333.7990205937198,"z":0}],"handle":"B831","ownerHandle":"4F5A","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B832","ownerHandle":"4F5A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.695437177711,"y":333.8033011429467,"z":0}},{"type":"POINT","handle":"B833","ownerHandle":"4F5A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7038886536958,"y":333.7540205935008,"z":0}}]},"4F64":{"handle":"4F64","ownerHandle":"4F63","layer":"0","name":"*D174","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D174","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.5407255515369,"y":334.0048524762519,"z":0},{"x":653.4817255512497,"y":334.0048524762519,"z":0}],"handle":"B835","ownerHandle":"4F63","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B837","ownerHandle":"4F63","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.3323505505233,"y":334.004852476252,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.020"},{"type":"LINE","vertices":[{"x":653.5288886534757,"y":333.8650205935003,"z":0},{"x":653.6188886539134,"y":333.8650205935003,"z":0}],"handle":"B838","ownerHandle":"4F63","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.5738886536947,"y":333.8200205932813,"z":0},{"x":653.5738886536947,"y":333.9100205937192,"z":0}],"handle":"B839","ownerHandle":"4F63","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B83A","ownerHandle":"4F63","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5692733930322,"y":333.8844807931142,"z":0}},{"type":"POINT","handle":"B83B","ownerHandle":"4F63","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5738886536947,"y":333.8650205935002,"z":0}}]},"4F6D":{"handle":"4F6D","ownerHandle":"4F6C","layer":"0","name":"*D175","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D175","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.7121754038219,"y":333.9812261633576,"z":0},{"x":653.6531754035348,"y":333.9812261633575,"z":0}],"handle":"B83D","ownerHandle":"4F6C","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B83F","ownerHandle":"4F6C","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.5038004028077,"y":333.9812261633578,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.030"},{"type":"LINE","vertices":[{"x":653.4788886534755,"y":333.6700205935,"z":0},{"x":653.5688886539133,"y":333.6700205934999,"z":0}],"handle":"B840","ownerHandle":"4F6C","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.5238886536943,"y":333.6250205932811,"z":0},{"x":653.5238886536943,"y":333.715020593719,"z":0}],"handle":"B841","ownerHandle":"4F6C","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B842","ownerHandle":"4F6C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5394182357421,"y":333.6956883180082,"z":0}},{"type":"POINT","handle":"B843","ownerHandle":"4F6C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5238886536943,"y":333.6700205934999,"z":0}}]},"4F76":{"handle":"4F76","ownerHandle":"4F75","layer":"0","name":"*D176","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D176","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8037948529261,"y":334.0170301092344,"z":0},{"x":653.862794853213,"y":334.0170301092344,"z":0}],"handle":"B845","ownerHandle":"4F75","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B847","ownerHandle":"4F75","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.01216985394,"y":334.0170301092344,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.090"},{"type":"LINE","vertices":[{"x":653.6693970432098,"y":333.7140205935002,"z":0},{"x":653.7593970436478,"y":333.7140205935002,"z":0}],"handle":"B848","ownerHandle":"4F75","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.7143970434287,"y":333.6690205932812,"z":0},{"x":653.7143970434287,"y":333.7590205937191,"z":0}],"handle":"B849","ownerHandle":"4F75","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B84A","ownerHandle":"4F75","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7398647280211,"y":333.8003420684728,"z":0}},{"type":"POINT","handle":"B84B","ownerHandle":"4F75","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7143970434288,"y":333.7140205935002,"z":0}}]},"4F7F":{"handle":"4F7F","ownerHandle":"4F7E","layer":"0","name":"*D177","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D177","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.5238886534514,"y":335.6750205935002,"z":0},{"x":653.335095236266,"y":335.6750205935002,"z":0}],"handle":"B84D","ownerHandle":"4F7E","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.3650952364119,"y":335.8610205932131,"z":0},{"x":653.3650952364119,"y":335.8468316112872,"z":0}],"handle":"B84E","ownerHandle":"4F7E","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.3650952364119,"y":335.7340205937873,"z":0},{"x":653.3650952364119,"y":335.7493316108128,"z":0}],"handle":"B84F","ownerHandle":"4F7E","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B852","ownerHandle":"4F7E","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.3650952364118,"y":335.7980816110501,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.245"},{"type":"POINT","handle":"B853","ownerHandle":"4F7E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5238886536947,"y":335.9200205935002,"z":0}},{"type":"POINT","handle":"B854","ownerHandle":"4F7E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5738886536947,"y":335.6750205935002,"z":0}},{"type":"POINT","handle":"B855","ownerHandle":"4F7E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.3650952364119,"y":335.6750205935002,"z":0}}]},"4F8C":{"handle":"4F8C","ownerHandle":"4F8B","layer":"0","name":"*D178","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D178","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.5538886536946,"y":335.9400205937435,"z":0},{"x":653.5538886536946,"y":336.2852449300752,"z":0}],"handle":"B857","ownerHandle":"4F8B","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.8628886539817,"y":336.2552449299293,"z":0},{"x":653.9218886542689,"y":336.2552449299293,"z":0}],"handle":"B858","ownerHandle":"4F8B","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.4948886534077,"y":336.2552449299293,"z":0},{"x":653.4358886531205,"y":336.2552449299293,"z":0}],"handle":"B859","ownerHandle":"4F8B","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B85C","ownerHandle":"4F8B","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.6731790657533,"y":336.2552449299293,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.250"},{"type":"POINT","handle":"B85D","ownerHandle":"4F8B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.8038886536947,"y":336.0100205935002,"z":0}},{"type":"POINT","handle":"B85E","ownerHandle":"4F8B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5538886536946,"y":335.8900205935002,"z":0}},{"type":"POINT","handle":"B85F","ownerHandle":"4F8B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.5538886536946,"y":336.2552449299293,"z":0}}]},"4F99":{"handle":"4F99","ownerHandle":"4F98","layer":"0","name":"*D179","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D179","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8038886536947,"y":335.5092380830462,"z":0},{"x":653.8038886536947,"y":335.5020118235375,"z":0}],"handle":"B861","ownerHandle":"4F98","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":653.5608886534602,"y":335.5620118236568,"z":0},{"x":653.4428886532256,"y":335.5620118236568,"z":0}],"handle":"B862","ownerHandle":"4F98","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.921888653929,"y":335.5620118236568,"z":0},{"x":654.0398886541637,"y":335.5620118236568,"z":0}],"handle":"B863","ownerHandle":"4F98","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B866","ownerHandle":"4F98","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.2811386546432,"y":335.5620118236568,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.125"},{"type":"POINT","handle":"B867","ownerHandle":"4F98","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.6788886536946,"y":335.4801529770321,"z":0}},{"type":"POINT","handle":"B868","ownerHandle":"4F98","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.8038886536947,"y":335.6092380832449,"z":0}},{"type":"POINT","handle":"B869","ownerHandle":"4F98","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.8038886536947,"y":335.5620118236568,"z":0}}]},"4FA6":{"handle":"4FA6","ownerHandle":"4FA5","layer":"0","name":"*D180","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D180","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":655.1038886539379,"y":334.4670205935002,"z":0},{"x":655.6542724828926,"y":334.4670205935002,"z":0}],"handle":"B86B","ownerHandle":"4FA5","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":655.6242724827466,"y":335.0340205932131,"z":0},{"x":655.6242724827466,"y":334.8450818509817,"z":0}],"handle":"B86C","ownerHandle":"4FA5","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.6242724827466,"y":334.5260205937873,"z":0},{"x":655.6242724827466,"y":334.7475818505074,"z":0}],"handle":"B86D","ownerHandle":"4FA5","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B870","ownerHandle":"4FA5","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":655.6242724827464,"y":334.7963318507447,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.626"},{"type":"POINT","handle":"B871","ownerHandle":"4FA5","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.0538886536947,"y":335.0930205935002,"z":0}},{"type":"POINT","handle":"B872","ownerHandle":"4FA5","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.0538886536947,"y":334.4670205935002,"z":0}},{"type":"POINT","handle":"B873","ownerHandle":"4FA5","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.6242724827466,"y":334.4670205935002,"z":0}}]},"4FB3":{"handle":"4FB3","ownerHandle":"4FB2","layer":"0","name":"*D181","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D181","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.833888653938,"y":336.0300205935002,"z":0},{"x":655.6542724828926,"y":336.0300205935002,"z":0}],"handle":"B875","ownerHandle":"4FB2","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":655.6242724827466,"y":335.1520205937873,"z":0},{"x":655.6242724827466,"y":335.5392673237598,"z":0}],"handle":"B876","ownerHandle":"4FB2","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.6242724827466,"y":335.9710205932131,"z":0},{"x":655.6242724827466,"y":335.6367673242341,"z":0}],"handle":"B877","ownerHandle":"4FB2","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B87A","ownerHandle":"4FB2","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":655.6242724827464,"y":335.5880173239971,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.937"},{"type":"POINT","handle":"B87B","ownerHandle":"4FB2","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.0538886536947,"y":335.0930205935002,"z":0}},{"type":"POINT","handle":"B87C","ownerHandle":"4FB2","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7838886536946,"y":336.0300205935002,"z":0}},{"type":"POINT","handle":"B87D","ownerHandle":"4FB2","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.6242724827466,"y":336.0300205935002,"z":0}}]},"4FC0":{"handle":"4FC0","ownerHandle":"4FBF","layer":"0","name":"*D182","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D182","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":648.9360339984264,"y":334.8388346317961,"z":0},{"x":648.8180339981918,"y":334.8388346317961,"z":0}],"handle":"B87F","ownerHandle":"4FBF","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B881","ownerHandle":"4FBF","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.5192839975978,"y":334.8388346317961,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.060"},{"type":"LINE","vertices":[{"x":648.6238886535158,"y":334.2100205935,"z":0},{"x":648.8038886538735,"y":334.2100205935001,"z":0}],"handle":"B882","ownerHandle":"4FBF","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":648.7138886536947,"y":334.1200205933211,"z":0},{"x":648.7138886536947,"y":334.3000205936789,"z":0}],"handle":"B883","ownerHandle":"4FBF","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"POINT","handle":"B884","ownerHandle":"4FBF","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7338747387155,"y":334.266594053758,"z":0}},{"type":"POINT","handle":"B885","ownerHandle":"4FBF","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7138886536947,"y":334.2100205935,"z":0}}]},"554E":{"handle":"554E","ownerHandle":"554D","layer":"0","name":"*D186","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D186","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":655.2669768805557,"y":329.1320979833993,"z":0},{"x":655.2669768805557,"y":330.8423648803957,"z":0}],"handle":"B8A5","ownerHandle":"554D","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":654.1349768807902,"y":330.7823648802764,"z":0},{"x":654.4177102877901,"y":330.7823648802764,"z":0}],"handle":"B8A6","ownerHandle":"554D","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.1489768803212,"y":330.7823648802764,"z":0},{"x":654.900210288749,"y":330.7823648802764,"z":0}],"handle":"B8A7","ownerHandle":"554D","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B8AA","ownerHandle":"554D","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.6589602882696,"y":330.7823648802764,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.250"},{"type":"POINT","handle":"B8AB","ownerHandle":"554D","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.0169768805557,"y":329.9490979832006,"z":0}},{"type":"POINT","handle":"B8AC","ownerHandle":"554D","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":655.2669768805557,"y":329.0320979832006,"z":0}},{"type":"POINT","handle":"B8AD","ownerHandle":"554D","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":655.2669768805557,"y":330.7823648802764,"z":0}}]},"555B":{"handle":"555B","ownerHandle":"555A","layer":"0","name":"*D187","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D187","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":652.3808859811301,"y":327.5790979832006,"z":0},{"x":652.374905854406,"y":327.5790979832006,"z":0}],"handle":"B8AF","ownerHandle":"555A","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":652.4349058545253,"y":329.741097982966,"z":0},{"x":652.4349058545253,"y":329.0588916264313,"z":0}],"handle":"B8B0","ownerHandle":"555A","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":652.4349058545253,"y":327.6970979834351,"z":0},{"x":652.4349058545253,"y":328.8638916260438,"z":0}],"handle":"B8B1","ownerHandle":"555A","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B8B4","ownerHandle":"555A","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.4349058545253,"y":328.9613916262377,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2.280"},{"type":"POINT","handle":"B8B5","ownerHandle":"555A","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.4808859813289,"y":329.8590979832006,"z":0}},{"type":"POINT","handle":"B8B6","ownerHandle":"555A","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.4808859813289,"y":327.5790979832006,"z":0}},{"type":"POINT","handle":"B8B7","ownerHandle":"555A","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":652.4349058545253,"y":327.5790979832006,"z":0}}]},"559E":{"handle":"559E","ownerHandle":"559D","layer":"0","name":"*D192","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D192","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.0919768858965,"y":327.4690979832006,"z":0},{"x":654.7018496035043,"y":327.4690979832006,"z":0}],"handle":"B8E3","ownerHandle":"559D","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":654.6418496033851,"y":327.9420979834351,"z":0},{"x":654.6418496033851,"y":328.0600979836696,"z":0}],"handle":"B8E4","ownerHandle":"559D","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.6418496033851,"y":327.351097982966,"z":0},{"x":654.6418496033851,"y":327.2330979827316,"z":0}],"handle":"B8E5","ownerHandle":"559D","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B8E8","ownerHandle":"559D","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.641849603385,"y":327.654616336882,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.355"},{"type":"POINT","handle":"B8E9","ownerHandle":"559D","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.8919768805556,"y":327.8240979832006,"z":0}},{"type":"POINT","handle":"B8EA","ownerHandle":"559D","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.9919768856978,"y":327.4690979832006,"z":0}},{"type":"POINT","handle":"B8EB","ownerHandle":"559D","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.6418496033851,"y":327.4690979832006,"z":0}}]},"55AB":{"handle":"55AB","ownerHandle":"55AA","layer":"0","name":"*D193","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D193","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":655.316976880799,"y":328.6190979832006,"z":0},{"x":655.6518551671469,"y":328.6190979832006,"z":0}],"handle":"B8ED","ownerHandle":"55AA","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":655.621855167001,"y":328.3470979829135,"z":0},{"x":655.621855167001,"y":328.2880979826265,"z":0}],"handle":"B8EE","ownerHandle":"55AA","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.621855167001,"y":328.6780979834877,"z":0},{"x":655.621855167001,"y":328.7370979837747,"z":0}],"handle":"B8EF","ownerHandle":"55AA","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B8F2","ownerHandle":"55AA","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":655.6218551670008,"y":328.5144377799954,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.213"},{"type":"POINT","handle":"B8F3","ownerHandle":"55AA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.2669768805557,"y":328.4060979832006,"z":0}},{"type":"POINT","handle":"B8F4","ownerHandle":"55AA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.2669768805557,"y":328.6190979832006,"z":0}},{"type":"POINT","handle":"B8F5","ownerHandle":"55AA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.621855167001,"y":328.6190979832006,"z":0}}]},"55B8":{"handle":"55B8","ownerHandle":"55B7","layer":"0","name":"*D194","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D194","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":655.316976880799,"y":329.0320979832006,"z":0},{"x":655.4851957488632,"y":329.0320979832006,"z":0}],"handle":"B8F7","ownerHandle":"55B7","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":655.4551957487174,"y":328.9180979829135,"z":0},{"x":655.4551957487174,"y":328.8590979826265,"z":0}],"handle":"B8F8","ownerHandle":"55B7","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.4551957487174,"y":329.0910979834877,"z":0},{"x":655.4551957487174,"y":329.175709472285,"z":0}],"handle":"B8F9","ownerHandle":"55B7","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.4551957487174,"y":329.175709472285,"z":0},{"x":655.5141957490044,"y":329.175709472285,"z":0}],"handle":"B8FA","ownerHandle":"55B7","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B8FD","ownerHandle":"55B7","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":655.6396124162812,"y":329.1757094722852,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.055"},{"type":"POINT","handle":"B8FE","ownerHandle":"55B7","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.2819768805557,"y":328.9770979832006,"z":0}},{"type":"POINT","handle":"B8FF","ownerHandle":"55B7","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.2669768805557,"y":329.0320979832006,"z":0}},{"type":"POINT","handle":"B900","ownerHandle":"55B7","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.4551957487174,"y":329.0320979832006,"z":0}}]},"55C6":{"handle":"55C6","ownerHandle":"55C5","layer":"0","name":"*D195","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D195","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":655.331976880799,"y":328.9770979832006,"z":0},{"x":655.6840186838124,"y":328.9770979832006,"z":0}],"handle":"B902","ownerHandle":"55C5","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":655.6540186836665,"y":328.8150979829134,"z":0},{"x":655.6540186836665,"y":328.7560979826264,"z":0}],"handle":"B903","ownerHandle":"55C5","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.6540186836665,"y":329.0360979834876,"z":0},{"x":655.6540186836665,"y":329.0950979837747,"z":0}],"handle":"B904","ownerHandle":"55C5","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B907","ownerHandle":"55C5","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":655.6540186836664,"y":328.9255979832006,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.103"},{"type":"POINT","handle":"B908","ownerHandle":"55C5","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.2819768805555,"y":328.8740979832005,"z":0}},{"type":"POINT","handle":"B909","ownerHandle":"55C5","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.2819768805557,"y":328.9770979832006,"z":0}},{"type":"POINT","handle":"B90A","ownerHandle":"55C5","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.6540186836665,"y":328.9770979832006,"z":0}}]},"55D3":{"handle":"55D3","ownerHandle":"55D2","layer":"0","name":"*D196","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D196","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":655.316976880799,"y":328.8190979832006,"z":0},{"x":655.5062790826097,"y":328.8190979832006,"z":0}],"handle":"B90C","ownerHandle":"55D2","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":655.4762790824637,"y":328.5600979829135,"z":0},{"x":655.4762790824637,"y":328.5010979826264,"z":0}],"handle":"B90D","ownerHandle":"55D2","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.4762790824637,"y":328.8780979834877,"z":0},{"x":655.4762790824637,"y":328.9370979837747,"z":0}],"handle":"B90E","ownerHandle":"55D2","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B911","ownerHandle":"55D2","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":655.4762790824636,"y":328.7190979832006,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.200"},{"type":"POINT","handle":"B912","ownerHandle":"55D2","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.2669768805557,"y":328.6190979832006,"z":0}},{"type":"POINT","handle":"B913","ownerHandle":"55D2","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.2669768805557,"y":328.8190979832006,"z":0}},{"type":"POINT","handle":"B914","ownerHandle":"55D2","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.4762790824637,"y":328.8190979832006,"z":0}}]},"55E0":{"handle":"55E0","ownerHandle":"55DF","layer":"0","name":"*D197","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D197","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.5145175827663,"y":328.5792653754872,"z":0},{"x":654.4555175824792,"y":328.5792653754871,"z":0}],"handle":"B916","ownerHandle":"55DF","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B918","ownerHandle":"55DF","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.3157259151322,"y":328.5792653754872,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.100"},{"type":"LINE","vertices":[{"x":654.6419768803366,"y":328.7190979832002,"z":0},{"x":654.7319768807745,"y":328.7190979832002,"z":0}],"handle":"B919","ownerHandle":"55DF","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.6869768805556,"y":328.6740979829812,"z":0},{"x":654.6869768805556,"y":328.7640979834192,"z":0}],"handle":"B91A","ownerHandle":"55DF","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B91B","ownerHandle":"55DF","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.6093014697549,"y":328.6561175850039,"z":0}},{"type":"POINT","handle":"B91C","ownerHandle":"55DF","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.6869768805556,"y":328.7190979832002,"z":0}}]},"55E9":{"handle":"55E9","ownerHandle":"55E8","layer":"0","name":"*D198","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D198","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.4102387046771,"y":328.8757504085776,"z":0},{"x":654.3512387043899,"y":328.8757504085776,"z":0}],"handle":"B91E","ownerHandle":"55E8","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B920","ownerHandle":"55E8","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.2018637036633,"y":328.8757504085776,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.200"},{"type":"LINE","vertices":[{"x":654.6419768803368,"y":328.7190979832005,"z":0},{"x":654.7319768807748,"y":328.7190979832005,"z":0}],"handle":"B921","ownerHandle":"55E8","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.6869768805558,"y":328.6740979829815,"z":0},{"x":654.6869768805558,"y":328.7640979834194,"z":0}],"handle":"B922","ownerHandle":"55E8","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B923","ownerHandle":"55E8","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.512927713651,"y":328.8176215209955,"z":0}},{"type":"POINT","handle":"B924","ownerHandle":"55E8","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.6869768805558,"y":328.7190979832005,"z":0}}]},"55F2":{"handle":"55F2","ownerHandle":"55F1","layer":"0","name":"*D199","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D199","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.651773944381,"y":328.4309174883485,"z":0},{"x":654.710773944668,"y":328.4309174883485,"z":0}],"handle":"B926","ownerHandle":"55F1","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B928","ownerHandle":"55F1","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.860148945395,"y":328.4309174883487,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.030"},{"type":"LINE","vertices":[{"x":654.5026535154619,"y":328.536097983201,"z":0},{"x":654.5926535158997,"y":328.5360979832009,"z":0}],"handle":"B929","ownerHandle":"55F1","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.5476535156808,"y":328.4910979829819,"z":0},{"x":654.5476535156808,"y":328.5810979834199,"z":0}],"handle":"B92A","ownerHandle":"55F1","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B92B","ownerHandle":"55F1","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.5687590079032,"y":328.5147776127051,"z":0}},{"type":"POINT","handle":"B92C","ownerHandle":"55F1","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.5476535156808,"y":328.5360979832009,"z":0}}]},"55FB":{"handle":"55FB","ownerHandle":"55FA","layer":"0","name":"*D200","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D200","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8935097382798,"y":328.8175780677625,"z":0},{"x":653.9525097385668,"y":328.8175780677625,"z":0}],"handle":"B92E","ownerHandle":"55FA","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B930","ownerHandle":"55FA","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.0875097392238,"y":328.8175780677625,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.110"},{"type":"LINE","vertices":[{"x":654.0379768803374,"y":328.4560979832007,"z":0},{"x":654.1279768807751,"y":328.4560979832008,"z":0}],"handle":"B931","ownerHandle":"55FA","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.0829768805563,"y":328.4110979829817,"z":0},{"x":654.0829768805563,"y":328.5010979834197,"z":0}],"handle":"B932","ownerHandle":"55FA","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B933","ownerHandle":"55FA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0319106421402,"y":328.5535261069329,"z":0}},{"type":"POINT","handle":"B934","ownerHandle":"55FA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0829768805563,"y":328.4560979832007,"z":0}}]},"561E":{"handle":"561E","ownerHandle":"561D","layer":"0","name":"*D203","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D203","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.4869768805557,"y":328.6690979829571,"z":0},{"x":654.4869768805557,"y":328.243235037487,"z":0}],"handle":"B94A","ownerHandle":"561D","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.0759768808427,"y":328.2732350376329,"z":0},{"x":654.1206128323986,"y":328.2732350376329,"z":0}],"handle":"B94B","ownerHandle":"561D","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.4279768802687,"y":328.2732350376329,"z":0},{"x":654.3714461669525,"y":328.2732350376329,"z":0}],"handle":"B94C","ownerHandle":"561D","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B94F","ownerHandle":"561D","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":654.2460294996756,"y":328.2732350376329,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.470"},{"type":"POINT","handle":"B950","ownerHandle":"561D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0169768805557,"y":328.4560979832006,"z":0}},{"type":"POINT","handle":"B951","ownerHandle":"561D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.4869768805557,"y":328.7190979832004,"z":0}},{"type":"POINT","handle":"B952","ownerHandle":"561D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.4869768805557,"y":328.2732350376329,"z":0}}]},"562B":{"handle":"562B","ownerHandle":"562A","layer":"0","name":"*D204","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D204","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.9669768803125,"y":329.0320979832006,"z":0},{"x":653.6660538933053,"y":329.0320979832006,"z":0}],"handle":"B954","ownerHandle":"562A","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.6960538934512,"y":328.9130979829135,"z":0},{"x":653.6960538934512,"y":328.8540979826265,"z":0}],"handle":"B955","ownerHandle":"562A","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.6960538934512,"y":329.0910979834877,"z":0},{"x":653.6960538934512,"y":329.1500979837747,"z":0}],"handle":"B956","ownerHandle":"562A","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B959","ownerHandle":"562A","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.696053893451,"y":329.0020979832007,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.060"},{"type":"POINT","handle":"B95A","ownerHandle":"562A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0329768804074,"y":328.9720979832006,"z":0}},{"type":"POINT","handle":"B95B","ownerHandle":"562A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0169768805557,"y":329.0320979832006,"z":0}},{"type":"POINT","handle":"B95C","ownerHandle":"562A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.6960538934512,"y":329.0320979832006,"z":0}}]},"566D":{"handle":"566D","ownerHandle":"566C","layer":"0","name":"*D209","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D209","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.8488949251301,"y":328.090083808722,"z":0},{"x":653.789894924843,"y":328.090083808722,"z":0}],"handle":"B987","ownerHandle":"566C","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B989","ownerHandle":"566C","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.6405199241163,"y":328.090083808722,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.050"},{"type":"LINE","vertices":[{"x":653.8719768803372,"y":327.6930979832008,"z":0},{"x":653.961976880775,"y":327.6930979832008,"z":0}],"handle":"B98A","ownerHandle":"566C","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.9169768805561,"y":327.6480979829818,"z":0},{"x":653.9169768805561,"y":327.7380979834198,"z":0}],"handle":"B98B","ownerHandle":"566C","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B98C","ownerHandle":"566C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.9085254045712,"y":327.7423785326465,"z":0}},{"type":"POINT","handle":"B98D","ownerHandle":"566C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.9169768805561,"y":327.6930979832008,"z":0}}]},"567F":{"handle":"567F","ownerHandle":"567E","layer":"0","name":"*D211","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D211","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.9252636306819,"y":327.9203035530583,"z":0},{"x":653.866263630395,"y":327.9203035530582,"z":0}],"handle":"B997","ownerHandle":"567E","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B999","ownerHandle":"567E","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.7168886296682,"y":327.9203035530583,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.030"},{"type":"LINE","vertices":[{"x":653.6919768803363,"y":327.6090979832006,"z":0},{"x":653.7819768807742,"y":327.6090979832006,"z":0}],"handle":"B99A","ownerHandle":"567E","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":653.7369768805553,"y":327.5640979829816,"z":0},{"x":653.7369768805553,"y":327.6540979834195,"z":0}],"handle":"B99B","ownerHandle":"567E","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"B99C","ownerHandle":"567E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7525064626029,"y":327.6347657077086,"z":0}},{"type":"POINT","handle":"B99D","ownerHandle":"567E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7369768805553,"y":327.6090979832006,"z":0}}]},"569E":{"handle":"569E","ownerHandle":"569D","layer":"0","name":"*D214","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D214","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":653.7669768805557,"y":329.8790979834439,"z":0},{"x":653.7669768805557,"y":330.2243223197756,"z":0}],"handle":"B9B1","ownerHandle":"569D","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":654.0759768808427,"y":330.1943223196297,"z":0},{"x":654.1349768811299,"y":330.1943223196297,"z":0}],"handle":"B9B2","ownerHandle":"569D","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":653.7079768802686,"y":330.1943223196297,"z":0},{"x":653.6489768799815,"y":330.1943223196297,"z":0}],"handle":"B9B3","ownerHandle":"569D","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B9B6","ownerHandle":"569D","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":653.8862672926144,"y":330.1943223196297,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.250"},{"type":"POINT","handle":"B9B7","ownerHandle":"569D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":654.0169768805557,"y":329.9490979832006,"z":0}},{"type":"POINT","handle":"B9B8","ownerHandle":"569D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7669768805557,"y":329.8290979832006,"z":0}},{"type":"POINT","handle":"B9B9","ownerHandle":"569D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.7669768805557,"y":330.1943223196297,"z":0}}]},"56AB":{"handle":"56AB","ownerHandle":"56AA","layer":"0","name":"*D215","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D215","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.0169768805557,"y":329.4483154727466,"z":0},{"x":654.0169768805557,"y":329.441089213238,"z":0}],"handle":"B9BB","ownerHandle":"56AA","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":653.7739768803212,"y":329.5010892133572,"z":0},{"x":653.6559768800867,"y":329.5010892133572,"z":0}],"handle":"B9BC","ownerHandle":"56AA","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":654.1349768807902,"y":329.5010892133572,"z":0},{"x":654.2529768810247,"y":329.5010892133572,"z":0}],"handle":"B9BD","ownerHandle":"56AA","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B9C0","ownerHandle":"56AA","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.4942268815042,"y":329.5010892133572,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.125"},{"type":"POINT","handle":"B9C1","ownerHandle":"56AA","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":653.8919768805556,"y":329.4192303667324,"z":0}},{"type":"POINT","handle":"B9C2","ownerHandle":"56AA","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.0169768805557,"y":329.5483154729453,"z":0}},{"type":"POINT","handle":"B9C3","ownerHandle":"56AA","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":654.0169768805557,"y":329.5010892133572,"z":0}}]},"56B8":{"handle":"56B8","ownerHandle":"56B7","layer":"0","name":"*D216","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D216","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":655.316976880799,"y":328.4060979832006,"z":0},{"x":655.8673607097536,"y":328.4060979832006,"z":0}],"handle":"B9C5","ownerHandle":"56B7","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":655.8373607096077,"y":328.9730979829135,"z":0},{"x":655.8373607096077,"y":328.7841592406821,"z":0}],"handle":"B9C6","ownerHandle":"56B7","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.8373607096077,"y":328.4650979834877,"z":0},{"x":655.8373607096077,"y":328.6866592402077,"z":0}],"handle":"B9C7","ownerHandle":"56B7","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B9CA","ownerHandle":"56B7","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":655.8373607096075,"y":328.735409240445,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.626"},{"type":"POINT","handle":"B9CB","ownerHandle":"56B7","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.2669768805557,"y":329.0320979832006,"z":0}},{"type":"POINT","handle":"B9CC","ownerHandle":"56B7","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.2669768805557,"y":328.4060979832006,"z":0}},{"type":"POINT","handle":"B9CD","ownerHandle":"56B7","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.8373607096077,"y":328.4060979832006,"z":0}}]},"56C5":{"handle":"56C5","ownerHandle":"56C4","layer":"0","name":"*D217","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D217","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":654.0469768807989,"y":329.9690979832006,"z":0},{"x":655.8673607097536,"y":329.9690979832006,"z":0}],"handle":"B9CF","ownerHandle":"56C4","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":655.8373607096077,"y":329.0910979834877,"z":0},{"x":655.8373607096077,"y":329.4783447134602,"z":0}],"handle":"B9D0","ownerHandle":"56C4","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":655.8373607096077,"y":329.9100979829135,"z":0},{"x":655.8373607096077,"y":329.5758447139345,"z":0}],"handle":"B9D1","ownerHandle":"56C4","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B9D4","ownerHandle":"56C4","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":655.8373607096075,"y":329.5270947136974,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.937"},{"type":"POINT","handle":"B9D5","ownerHandle":"56C4","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.2669768805557,"y":329.0320979832006,"z":0}},{"type":"POINT","handle":"B9D6","ownerHandle":"56C4","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":653.9969768805557,"y":329.9690979832006,"z":0}},{"type":"POINT","handle":"B9D7","ownerHandle":"56C4","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":655.8373607096077,"y":329.9690979832006,"z":0}}]},"56D2":{"handle":"56D2","ownerHandle":"56D1","layer":"0","name":"*D218","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D218","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":648.7669768805557,"y":330.0690979833993,"z":0},{"x":648.7669768805557,"y":330.3648922905831,"z":0}],"handle":"B9D9","ownerHandle":"56D1","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":648.6489768803212,"y":330.3048922904638,"z":0},{"x":648.5309768800867,"y":330.3048922904638,"z":0}],"handle":"B9DA","ownerHandle":"56D1","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":649.1049768807902,"y":330.3048922904638,"z":0},{"x":649.2229768810248,"y":330.3048922904638,"z":0}],"handle":"B9DB","ownerHandle":"56D1","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B9DE","ownerHandle":"56D1","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":649.4738102148565,"y":330.3048922904638,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.220"},{"type":"POINT","handle":"B9DF","ownerHandle":"56D1","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.9869768805557,"y":329.8590979832006,"z":0}},{"type":"POINT","handle":"B9E0","ownerHandle":"56D1","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7669768805557,"y":329.9690979832006,"z":0}},{"type":"POINT","handle":"B9E1","ownerHandle":"56D1","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":648.7669768805557,"y":330.3048922904638,"z":0}}]},"5AE6":{"handle":"5AE6","ownerHandle":"5AE5","layer":"0","name":"HI90","type":2,"position":{"x":0,"y":0,"z":0},"name2":"HI90","xrefPath":"","entities":[{"type":"TEXT","handle":"5AE8","ownerHandle":"5AE5","layer":"0","startPoint":{"x":0.1503333609130045,"y":0.1127299127446677,"z":0},"textHeight":0.1,"text":"HI","xScale":0.8,"halign":1,"endPoint":{"x":0.2036666942463379,"y":0.1127299127446677,"z":0}},{"type":"TEXT","handle":"5AE9","ownerHandle":"5AE5","layer":"0","startPoint":{"x":-0.1746038825958765,"y":-0.2251115414209917,"z":0},"textHeight":0.1,"text":"( )","xScale":0.8,"halign":1,"endPoint":{"x":0.0253961174041235,"y":-0.2251115414209917,"z":0}}]},"5AEE":{"handle":"5AEE","ownerHandle":"5AED","layer":"0","name":"V90","type":2,"position":{"x":0,"y":0,"z":0},"name2":"V90","xrefPath":"","entities":[{"type":"TEXT","handle":"5AF0","ownerHandle":"5AED","layer":"0","startPoint":{"x":-0.1151797034249841,"y":-0.0528095841021186,"z":0},"textHeight":0.1,"text":"X 90%%D","xScale":0.8,"halign":1,"endPoint":{"x":0.0514869632416826,"y":-0.0528095841021186,"z":0}},{"type":"TEXT","handle":"5AF1","ownerHandle":"5AED","layer":"0","startPoint":{"x":-0.1915127253342951,"y":-0.219476250768786,"z":0},"textHeight":0.1,"text":"( )","xScale":0.8,"halign":1,"endPoint":{"x":0.008487274665705,"y":-0.219476250768786,"z":0}}]},"5B80":{"handle":"5B80","ownerHandle":"5B7F","layer":"0","name":"*D221","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D221","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.8931232622539,"y":349.4730568887046,"z":0},{"x":661.8931232622539,"y":349.7371677124956,"z":0}],"handle":"B9E3","ownerHandle":"5B7F","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.952123262541,"y":349.7071677123496,"z":0},{"x":662.011123262828,"y":349.7071677123496,"z":0}],"handle":"B9E4","ownerHandle":"5B7F","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.5981232619661,"y":349.7071677123496,"z":0},{"x":661.539123261679,"y":349.7071677123496,"z":0}],"handle":"B9E5","ownerHandle":"5B7F","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B9E8","ownerHandle":"5B7F","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.4089149277122,"y":349.7071677123496,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.236"},{"type":"POINT","handle":"B9E9","ownerHandle":"5B7F","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6571232622532,"y":349.4530568884606,"z":0}},{"type":"POINT","handle":"B9EA","ownerHandle":"5B7F","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8931232622539,"y":349.4230568884613,"z":0}},{"type":"POINT","handle":"B9EB","ownerHandle":"5B7F","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8931232622539,"y":349.7071677123496,"z":0}}]},"5B8C":{"handle":"5B8C","ownerHandle":"5B8B","layer":"0","name":"*D222","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D222","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.7071232620085,"y":349.0990568884612,"z":0},{"x":661.1265663989345,"y":349.0990568884612,"z":0}],"handle":"B9ED","ownerHandle":"5B8B","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.1565663990805,"y":349.414056888174,"z":0},{"x":661.1565663990805,"y":349.3216592793647,"z":0}],"handle":"B9EE","ownerHandle":"5B8B","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.1565663990805,"y":349.1580568887483,"z":0},{"x":661.1565663990805,"y":349.2241592788903,"z":0}],"handle":"B9EF","ownerHandle":"5B8B","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B9F2","ownerHandle":"5B8B","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.1565663990802,"y":349.2729092791276,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.374"},{"type":"POINT","handle":"B9F3","ownerHandle":"5B8B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6771232622536,"y":349.473056888461,"z":0}},{"type":"POINT","handle":"B9F4","ownerHandle":"5B8B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7571232622518,"y":349.0990568884612,"z":0}},{"type":"POINT","handle":"B9F5","ownerHandle":"5B8B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.1565663990805,"y":349.0990568884612,"z":0}}]},"5B99":{"handle":"5B99","ownerHandle":"5B98","layer":"0","name":"*D223","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D223","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.7071232620085,"y":347.3470568884608,"z":0},{"x":661.1265663989345,"y":347.3470568884608,"z":0}],"handle":"B9F7","ownerHandle":"5B98","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.1565663990805,"y":349.0400568881741,"z":0},{"x":661.1565663990805,"y":348.1691576905842,"z":0}],"handle":"B9F8","ownerHandle":"5B98","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.1565663990805,"y":347.4060568887479,"z":0},{"x":661.1565663990805,"y":348.0716576901098,"z":0}],"handle":"B9F9","ownerHandle":"5B98","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"B9FC","ownerHandle":"5B98","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.1565663990802,"y":348.1204076903471,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.752"},{"type":"POINT","handle":"B9FD","ownerHandle":"5B98","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7571232622518,"y":349.0990568884612,"z":0}},{"type":"POINT","handle":"B9FE","ownerHandle":"5B98","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7571232622518,"y":347.3470568884608,"z":0}},{"type":"POINT","handle":"B9FF","ownerHandle":"5B98","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.1565663990805,"y":347.3470568884608,"z":0}}]},"5BA6":{"handle":"5BA6","ownerHandle":"5BA5","layer":"0","name":"*D224","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D224","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.6271232620103,"y":346.973056888461,"z":0},{"x":661.1265663989343,"y":346.973056888461,"z":0}],"handle":"BA01","ownerHandle":"5BA5","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.1565663990802,"y":347.2880568881738,"z":0},{"x":661.1565663990802,"y":347.2088068886981,"z":0}],"handle":"BA02","ownerHandle":"5BA5","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.1565663990802,"y":347.0320568887481,"z":0},{"x":661.1565663990802,"y":347.1113068882238,"z":0}],"handle":"BA03","ownerHandle":"5BA5","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BA06","ownerHandle":"5BA5","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.1565663990802,"y":347.160056888461,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.374"},{"type":"POINT","handle":"BA07","ownerHandle":"5BA5","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7571232622518,"y":347.3470568884608,"z":0}},{"type":"POINT","handle":"BA08","ownerHandle":"5BA5","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6771232622536,"y":346.973056888461,"z":0}},{"type":"POINT","handle":"BA09","ownerHandle":"5BA5","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.1565663990802,"y":346.973056888461,"z":0}}]},"5BB3":{"handle":"5BB3","ownerHandle":"5BB2","layer":"0","name":"*D225","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D225","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.6271232620103,"y":349.473056888461,"z":0},{"x":660.8359552634312,"y":349.473056888461,"z":0}],"handle":"BA0B","ownerHandle":"5BB2","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":660.8659552635772,"y":347.0320568887481,"z":0},{"x":660.8659552635772,"y":348.0678016225157,"z":0}],"handle":"BA0C","ownerHandle":"5BB2","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":660.8659552635772,"y":349.414056888174,"z":0},{"x":660.8659552635772,"y":348.1653016229901,"z":0}],"handle":"BA0D","ownerHandle":"5BB2","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BA10","ownerHandle":"5BB2","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":660.8659552635771,"y":348.116551622753,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2.500"},{"type":"POINT","handle":"BA11","ownerHandle":"5BB2","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6771232622536,"y":346.973056888461,"z":0}},{"type":"POINT","handle":"BA12","ownerHandle":"5BB2","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6771232622536,"y":349.473056888461,"z":0}},{"type":"POINT","handle":"BA13","ownerHandle":"5BB2","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":660.8659552635772,"y":349.473056888461,"z":0}}]},"5BC0":{"handle":"5BC0","ownerHandle":"5BBF","layer":"0","name":"*D226","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D226","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.5921232620105,"y":348.005556888461,"z":0},{"x":661.4206960578449,"y":348.005556888461,"z":0}],"handle":"BA15","ownerHandle":"5BBF","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.4506960579909,"y":347.0320568887481,"z":0},{"x":661.4506960579909,"y":347.5300180850116,"z":0}],"handle":"BA16","ownerHandle":"5BBF","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.4506960579909,"y":347.9465568881739,"z":0},{"x":661.4506960579909,"y":347.627518085486,"z":0}],"handle":"BA17","ownerHandle":"5BBF","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BA1A","ownerHandle":"5BBF","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.4506960579909,"y":347.5787680852489,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.033"},{"type":"POINT","handle":"BA1B","ownerHandle":"5BBF","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6771232622536,"y":346.973056888461,"z":0}},{"type":"POINT","handle":"BA1C","ownerHandle":"5BBF","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6421232622538,"y":348.005556888461,"z":0}},{"type":"POINT","handle":"BA1D","ownerHandle":"5BBF","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.4506960579909,"y":348.005556888461,"z":0}}]},"5BCD":{"handle":"5BCD","ownerHandle":"5BCC","layer":"0","name":"*D227","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D227","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.5921232620105,"y":348.4405568884611,"z":0},{"x":661.4206960578449,"y":348.4405568884611,"z":0}],"handle":"BA1F","ownerHandle":"5BCC","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.4506960579909,"y":348.0645568887481,"z":0},{"x":661.4506960579909,"y":348.1027815485373,"z":0}],"handle":"BA20","ownerHandle":"5BCC","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.4506960579909,"y":348.381556888174,"z":0},{"x":661.4506960579909,"y":348.2002815490117,"z":0}],"handle":"BA21","ownerHandle":"5BCC","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BA24","ownerHandle":"5BCC","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.4506960579909,"y":348.1515315487746,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.435"},{"type":"POINT","handle":"BA25","ownerHandle":"5BCC","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6421232622538,"y":348.005556888461,"z":0}},{"type":"POINT","handle":"BA26","ownerHandle":"5BCC","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6421232622538,"y":348.4405568884611,"z":0}},{"type":"POINT","handle":"BA27","ownerHandle":"5BCC","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.4506960579909,"y":348.4405568884611,"z":0}}]},"5BDA":{"handle":"5BDA","ownerHandle":"5BD9","layer":"0","name":"*D228","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D228","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.6271232620103,"y":349.473056888461,"z":0},{"x":661.4206960578449,"y":349.473056888461,"z":0}],"handle":"BA29","ownerHandle":"5BD9","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.4506960579909,"y":348.4995568887482,"z":0},{"x":661.4506960579909,"y":348.9080568882239,"z":0}],"handle":"BA2A","ownerHandle":"5BD9","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.4506960579909,"y":349.414056888174,"z":0},{"x":661.4506960579909,"y":349.0055568886983,"z":0}],"handle":"BA2B","ownerHandle":"5BD9","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BA2E","ownerHandle":"5BD9","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.4506960579907,"y":348.9568068884612,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.033"},{"type":"POINT","handle":"BA2F","ownerHandle":"5BD9","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6421232622538,"y":348.4405568884611,"z":0}},{"type":"POINT","handle":"BA30","ownerHandle":"5BD9","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6771232622536,"y":349.473056888461,"z":0}},{"type":"POINT","handle":"BA31","ownerHandle":"5BD9","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.4506960579909,"y":349.473056888461,"z":0}}]},"5BE7":{"handle":"5BE7","ownerHandle":"5BE6","layer":"0","name":"*D229","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D229","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.8321232624965,"y":347.9230568884609,"z":0},{"x":662.5305205757415,"y":347.9230568884609,"z":0}],"handle":"BA33","ownerHandle":"5BE6","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":662.5005205755956,"y":347.0320568887481,"z":0},{"x":662.5005205755956,"y":347.4357260998252,"z":0}],"handle":"BA34","ownerHandle":"5BE6","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.5005205755956,"y":347.8640568881738,"z":0},{"x":662.5005205755956,"y":347.5332261002995,"z":0}],"handle":"BA35","ownerHandle":"5BE6","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BA38","ownerHandle":"5BE6","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":662.5005205755955,"y":347.4844761000625,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.950"},{"type":"POINT","handle":"BA39","ownerHandle":"5BE6","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8631232622528,"y":346.973056888461,"z":0}},{"type":"POINT","handle":"BA3A","ownerHandle":"5BE6","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7821232622532,"y":347.9230568884609,"z":0}},{"type":"POINT","handle":"BA3B","ownerHandle":"5BE6","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.5005205755956,"y":347.9230568884609,"z":0}}]},"5BF4":{"handle":"5BF4","ownerHandle":"5BF3","layer":"0","name":"*D230","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D230","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.8321232624965,"y":348.5230568884612,"z":0},{"x":662.5305205757415,"y":348.5230568884612,"z":0}],"handle":"BA3D","ownerHandle":"5BF3","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":662.5005205755956,"y":347.9820568887479,"z":0},{"x":662.5005205755956,"y":348.0940153430527,"z":0}],"handle":"BA3E","ownerHandle":"5BF3","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.5005205755956,"y":348.4640568881741,"z":0},{"x":662.5005205755956,"y":348.1915153435271,"z":0}],"handle":"BA3F","ownerHandle":"5BF3","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BA42","ownerHandle":"5BF3","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":662.5005205755955,"y":348.14276534329,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.600"},{"type":"POINT","handle":"BA43","ownerHandle":"5BF3","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7821232622532,"y":347.9230568884609,"z":0}},{"type":"POINT","handle":"BA44","ownerHandle":"5BF3","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7821232622532,"y":348.5230568884612,"z":0}},{"type":"POINT","handle":"BA45","ownerHandle":"5BF3","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.5005205755956,"y":348.5230568884612,"z":0}}]},"5C01":{"handle":"5C01","ownerHandle":"5C00","layer":"0","name":"*D231","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D231","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.9131232624961,"y":349.473056888461,"z":0},{"x":662.5305205757414,"y":349.473056888461,"z":0}],"handle":"BA47","ownerHandle":"5C00","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":662.5005205755955,"y":348.5820568887483,"z":0},{"x":662.5005205755955,"y":348.9493068882239,"z":0}],"handle":"BA48","ownerHandle":"5C00","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.5005205755955,"y":349.414056888174,"z":0},{"x":662.5005205755955,"y":349.0468068886983,"z":0}],"handle":"BA49","ownerHandle":"5C00","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BA4C","ownerHandle":"5C00","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":662.5005205755954,"y":348.9980568884612,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.950"},{"type":"POINT","handle":"BA4D","ownerHandle":"5C00","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7821232622532,"y":348.5230568884612,"z":0}},{"type":"POINT","handle":"BA4E","ownerHandle":"5C00","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8631232622528,"y":349.473056888461,"z":0}},{"type":"POINT","handle":"BA4F","ownerHandle":"5C00","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.5005205755955,"y":349.473056888461,"z":0}}]},"5C0E":{"handle":"5C0E","ownerHandle":"5C0D","layer":"0","name":"*D232","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D232","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.9131232624961,"y":349.473056888461,"z":0},{"x":662.303276176492,"y":349.473056888461,"z":0}],"handle":"BA51","ownerHandle":"5C0D","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":662.2732761763461,"y":348.2820568887481,"z":0},{"x":662.2732761763461,"y":348.7821650109568,"z":0}],"handle":"BA52","ownerHandle":"5C0D","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.2732761763461,"y":349.414056888174,"z":0},{"x":662.2732761763461,"y":348.8796650114312,"z":0}],"handle":"BA53","ownerHandle":"5C0D","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BA56","ownerHandle":"5C0D","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":662.273276176346,"y":348.8309150111941,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.250"},{"type":"POINT","handle":"BA57","ownerHandle":"5C0D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7671232622537,"y":348.223056888461,"z":0}},{"type":"POINT","handle":"BA58","ownerHandle":"5C0D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8631232622528,"y":349.473056888461,"z":0}},{"type":"POINT","handle":"BA59","ownerHandle":"5C0D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.2732761763461,"y":349.473056888461,"z":0}}]},"5C1B":{"handle":"5C1B","ownerHandle":"5C1A","layer":"0","name":"*D233","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D233","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.8931232622539,"y":349.4680568883089,"z":0},{"x":661.8931232622539,"y":349.6845837120856,"z":0}],"handle":"BA5B","ownerHandle":"5C1A","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.6866232620749,"y":349.6695837121762,"z":0},{"x":661.7012129887036,"y":349.6695837121762,"z":0}],"handle":"BA5C","ownerHandle":"5C1A","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.8636232624322,"y":349.6695837121762,"z":0},{"x":661.8314213212503,"y":349.6695837121762,"z":0}],"handle":"BA5D","ownerHandle":"5C1A","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BA60","ownerHandle":"5C1A","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":661.766317154977,"y":349.6695837121762,"z":0},"height":0.0287499998263076,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.236"},{"type":"POINT","handle":"BA61","ownerHandle":"5C1A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6571232622532,"y":349.4530568884606,"z":0}},{"type":"POINT","handle":"BA62","ownerHandle":"5C1A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8931232622539,"y":349.4430568884599,"z":0}},{"type":"POINT","handle":"BA63","ownerHandle":"5C1A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8931232622539,"y":349.6695837121762,"z":0}}]},"5C28":{"handle":"5C28","ownerHandle":"5C27","layer":"0","name":"*D234","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D234","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.647123262404,"y":349.356056888461,"z":0},{"x":661.5616543766066,"y":349.356056888461,"z":0}],"handle":"BA65","ownerHandle":"5C27","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.5766543765159,"y":349.4435568886392,"z":0},{"x":661.5766543765159,"y":349.437089255655,"z":0}],"handle":"BA66","ownerHandle":"5C27","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.5766543765159,"y":349.3855568882828,"z":0},{"x":661.5766543765159,"y":349.3883392559495,"z":0}],"handle":"BA67","ownerHandle":"5C27","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BA6A","ownerHandle":"5C27","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":661.5766543765158,"y":349.4127142558024,"z":0},"height":0.0287499998263076,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.117"},{"type":"POINT","handle":"BA6B","ownerHandle":"5C27","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6771232622536,"y":349.473056888461,"z":0}},{"type":"POINT","handle":"BA6C","ownerHandle":"5C27","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6721232622531,"y":349.356056888461,"z":0}},{"type":"POINT","handle":"BA6D","ownerHandle":"5C27","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.5766543765159,"y":349.356056888461,"z":0}}]},"5C35":{"handle":"5C35","ownerHandle":"5C34","layer":"0","name":"*D235","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D235","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.6471232624039,"y":349.2300568884608,"z":0},{"x":661.5616543766065,"y":349.2300568884608,"z":0}],"handle":"BA6F","ownerHandle":"5C34","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.5766543765158,"y":349.3265568886392,"z":0},{"x":661.5766543765158,"y":349.3174318883135,"z":0}],"handle":"BA70","ownerHandle":"5C34","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.5766543765158,"y":349.2595568882826,"z":0},{"x":661.5766543765158,"y":349.2686818886081,"z":0}],"handle":"BA71","ownerHandle":"5C34","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BA72","ownerHandle":"5C34","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":661.5766543765158,"y":349.2930568884609,"z":0},"height":0.0287499998263076,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.126"},{"type":"POINT","handle":"BA75","ownerHandle":"5C34","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6721232622531,"y":349.356056888461,"z":0}},{"type":"POINT","handle":"BA76","ownerHandle":"5C34","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6721232622529,"y":349.2300568884608,"z":0}},{"type":"POINT","handle":"BA77","ownerHandle":"5C34","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.5766543765158,"y":349.2300568884608,"z":0}}]},"5C42":{"handle":"5C42","ownerHandle":"5C41","layer":"0","name":"*D236","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D236","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.7216148711445,"y":349.1990568884607,"z":0},{"x":661.4469301737357,"y":349.1990568884607,"z":0}],"handle":"BA79","ownerHandle":"5C41","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.4619301745603,"y":349.3575568868389,"z":0},{"x":661.4619301745603,"y":349.3156427426327,"z":0}],"handle":"BA7A","ownerHandle":"5C41","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.4619301745603,"y":349.2285568900826,"z":0},{"x":661.4619301745603,"y":349.2668927399525,"z":0}],"handle":"BA7B","ownerHandle":"5C41","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BA7E","ownerHandle":"5C41","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":661.4619301745602,"y":349.2912677412927,"z":0},"height":0.02875000158064,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.188"},{"type":"POINT","handle":"BA7F","ownerHandle":"5C41","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7466148725189,"y":349.3870568884608,"z":0}},{"type":"POINT","handle":"BA80","ownerHandle":"5C41","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7466148725189,"y":349.1990568884607,"z":0}},{"type":"POINT","handle":"BA81","ownerHandle":"5C41","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.4619301745603,"y":349.1990568884607,"z":0}}]},"5C4F":{"handle":"5C4F","ownerHandle":"5C4E","layer":"0","name":"*D237","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D237","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.6571232622532,"y":349.1900568870867,"z":0},{"x":661.6571232622532,"y":348.9968651532144,"z":0}],"handle":"BA83","ownerHandle":"5C4E","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.8366232638765,"y":349.0118651540391,"z":0},{"x":661.8661232654983,"y":349.0118651540391,"z":0}],"handle":"BA84","ownerHandle":"5C4E","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.6276232606313,"y":349.0118651540391,"z":0},{"x":661.5981232590095,"y":349.0118651540391,"z":0}],"handle":"BA85","ownerHandle":"5C4E","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BA88","ownerHandle":"5C4E","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":661.5402065891586,"y":349.0118651540391,"z":0},"height":0.02875000158064,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.150"},{"type":"POINT","handle":"BA89","ownerHandle":"5C4E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8071232622545,"y":349.2490568884623,"z":0}},{"type":"POINT","handle":"BA8A","ownerHandle":"5C4E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6571232622532,"y":349.2150568884611,"z":0}},{"type":"POINT","handle":"BA8B","ownerHandle":"5C4E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6571232622532,"y":349.0118651540391,"z":0}}]},"5C5C":{"handle":"5C5C","ownerHandle":"5C5B","layer":"0","name":"*D238","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D238","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.6571232622532,"y":349.4780568898351,"z":0},{"x":661.6571232622532,"y":349.7663984401252,"z":0}],"handle":"BA8D","ownerHandle":"5C5B","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":662.1636232606304,"y":349.7513984393005,"z":0},{"x":661.9615425507161,"y":349.7513984393005,"z":0}],"handle":"BA8E","ownerHandle":"5C5B","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.686623263875,"y":349.7513984393005,"z":0},{"x":661.831334210224,"y":349.7513984393005,"z":0}],"handle":"BA8F","ownerHandle":"5C5B","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BA92","ownerHandle":"5C5B","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":661.89643838047,"y":349.7513984393005,"z":0},"height":0.02875000158064,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.536"},{"type":"POINT","handle":"BA93","ownerHandle":"5C5B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.1931232622522,"y":349.2469748990583,"z":0}},{"type":"POINT","handle":"BA94","ownerHandle":"5C5B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6571232622532,"y":349.4530568884606,"z":0}},{"type":"POINT","handle":"BA95","ownerHandle":"5C5B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6571232622532,"y":349.7513984393005,"z":0}}]},"5C69":{"handle":"5C69","ownerHandle":"5C68","layer":"0","name":"*D239","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D239","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":662.1947738984157,"y":349.2691159145921,"z":0},{"x":662.2939631208623,"y":349.2118489903105,"z":0}],"handle":"BA97","ownerHandle":"5C68","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":662.2262227384354,"y":349.1245192077063,"z":0},{"x":662.2114727377071,"y":349.0989714570337,"z":0}],"handle":"BA98","ownerHandle":"5C68","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.2957227398928,"y":349.2448967413534,"z":0},{"x":662.3104727406212,"y":349.2704444920258,"z":0}],"handle":"BA99","ownerHandle":"5C68","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BA9C","ownerHandle":"5C68","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":662.261563842466,"y":349.1857317954812,"z":0},"height":0.0287500014190411,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.080"},{"type":"POINT","handle":"BA9D","ownerHandle":"5C68","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.1331232622521,"y":349.2123338829072,"z":0}},{"type":"POINT","handle":"BA9E","ownerHandle":"5C68","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.1731232622528,"y":349.2816159152093,"z":0}},{"type":"POINT","handle":"BA9F","ownerHandle":"5C68","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.2809727391646,"y":349.2193489906808,"z":0}}]},"5C76":{"handle":"5C76","ownerHandle":"5C75","layer":"0","name":"*D240","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D240","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":662.0279479314462,"y":349.2480568872273,"z":0},{"x":662.0279479314462,"y":349.0448032510388,"z":0}],"handle":"BAA1","ownerHandle":"5C75","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.8636232607979,"y":349.0598032517792,"z":0},{"x":661.8341232593418,"y":349.0598032517792,"z":0}],"handle":"BAA2","ownerHandle":"5C75","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.0574479329023,"y":349.0598032517792,"z":0},{"x":662.0869479343585,"y":349.0598032517792,"z":0}],"handle":"BAA3","ownerHandle":"5C75","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BAA6","ownerHandle":"5C75","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":662.1472604373353,"y":349.0598032517792,"z":0},"height":0.0287500014190411,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.135"},{"type":"POINT","handle":"BAA7","ownerHandle":"5C75","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8931232622539,"y":349.1590568884616,"z":0}},{"type":"POINT","handle":"BAA8","ownerHandle":"5C75","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.0279479314462,"y":349.2730568884612,"z":0}},{"type":"POINT","handle":"BAA9","ownerHandle":"5C75","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.0279479314462,"y":349.0598032517792,"z":0}}]},"5C83":{"handle":"5C83","ownerHandle":"5C82","layer":"0","name":"*D241","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D241","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.9954138494774,"y":349.4911403652703,"z":0},{"x":661.9326585468527,"y":349.3854290788454,"z":0}],"handle":"BAAB","ownerHandle":"5C82","layer":"FG-Dim","lineweight":-2},{"type":"MTEXT","handle":"BAAC","ownerHandle":"5C82","layer":"FG-Dim","position":{"x":662.087622187362,"y":349.4911403652703,"z":0},"height":0.0287500014190411,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R.050"},{"type":"POINT","handle":"BAAE","ownerHandle":"5C82","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.9175995643408,"y":349.3600622278067,"z":0}},{"type":"POINT","handle":"BAAF","ownerHandle":"5C82","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.943123262253,"y":349.4030568884609,"z":0}}]},"5C8C":{"handle":"5C8C","ownerHandle":"5C8B","layer":"0","name":"*D242","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D242","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.5796877427144,"y":349.1232314007118,"z":0},{"x":661.6618363245641,"y":349.2048378398156,"z":0}],"handle":"BAB1","ownerHandle":"5C8B","layer":"FG-Dim","lineweight":-2},{"type":"MTEXT","handle":"BAB2","ownerHandle":"5C8B","layer":"FG-Dim","position":{"x":661.4874794048299,"y":349.1232314007118,"z":0},"height":0.0287500014190411,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R.090"},{"type":"POINT","handle":"BAB4","ownerHandle":"5C8B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6827649208622,"y":349.2256283170322,"z":0}},{"type":"POINT","handle":"BAB5","ownerHandle":"5C8B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7466148725192,"y":349.2890568884617,"z":0}}]},"5C95":{"handle":"5C95","ownerHandle":"5C94","layer":"0","name":"*D243","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D243","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.8873731768789,"y":349.0007352238496,"z":0},{"x":661.9168731783349,"y":349.0007352238496,"z":0}],"handle":"BAB7","ownerHandle":"5C94","layer":"FG-Dim","lineweight":-2},{"type":"MTEXT","handle":"BAB9","ownerHandle":"5C94","layer":"FG-Dim","position":{"x":661.9795815147633,"y":349.0007352238496,"z":0},"height":0.0287500014190411,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R.060"},{"type":"POINT","handle":"BABA","ownerHandle":"5C94","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8525725202406,"y":349.1022966350815,"z":0}},{"type":"POINT","handle":"BABB","ownerHandle":"5C94","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8331232622534,"y":349.1590568884617,"z":0}}]},"5C9E":{"handle":"5C9E","ownerHandle":"5C9D","layer":"0","name":"*D244","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D244","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.611944593964,"y":349.5483848373776,"z":0},{"x":661.582444592508,"y":349.5483848373776,"z":0}],"handle":"BABD","ownerHandle":"5C9D","layer":"FG-Dim","lineweight":-2},{"type":"MTEXT","handle":"BABF","ownerHandle":"5C9D","layer":"FG-Dim","position":{"x":661.5197362560795,"y":349.5483848373778,"z":0},"height":0.0287500014190411,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R.020"},{"type":"POINT","handle":"BAC0","ownerHandle":"5C9D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6658349776538,"y":349.4695667228271,"z":0}},{"type":"POINT","handle":"BAC1","ownerHandle":"5C9D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6771232622538,"y":349.4530568884604,"z":0}}]},"5CA7":{"handle":"5CA7","ownerHandle":"5CA6","layer":"0","name":"*D245","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D245","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.9356350735889,"y":349.545837602726,"z":0},{"x":661.965135075045,"y":349.545837602726,"z":0}],"handle":"BAC3","ownerHandle":"5CA6","layer":"FG-Dim","lineweight":-2},{"type":"MTEXT","handle":"BAC5","ownerHandle":"5CA6","layer":"FG-Dim","position":{"x":662.0278434114736,"y":349.5458376027259,"z":0},"height":0.0287500014190411,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R.030"},{"type":"POINT","handle":"BAC6","ownerHandle":"5CA6","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8804175046494,"y":349.467570337421,"z":0}},{"type":"POINT","handle":"BAC7","ownerHandle":"5CA6","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8631232622524,"y":349.4430568884602,"z":0}}]},"5CB0":{"handle":"5CB0","ownerHandle":"5CAF","layer":"0","name":"*D246","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D246","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.7821232622532,"y":348.3957826830421,"z":0},{"x":661.7821232622532,"y":348.3757826829448,"z":0}],"handle":"BAC9","ownerHandle":"5CAF","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.5981232619661,"y":348.3457826827988,"z":0},{"x":661.539123261679,"y":348.3457826827988,"z":0}],"handle":"BACA","ownerHandle":"5CAF","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.8411232625402,"y":348.3457826827988,"z":0},{"x":661.9001233017414,"y":348.3457826827988,"z":0}],"handle":"BACB","ownerHandle":"5CAF","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BACE","ownerHandle":"5CAF","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":662.0207483023282,"y":348.3457826827988,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.125"},{"type":"POINT","handle":"BACF","ownerHandle":"5CAF","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6571232622532,"y":348.3457826827988,"z":0}},{"type":"POINT","handle":"BAD0","ownerHandle":"5CAF","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7821232622532,"y":348.3457826827988,"z":0}},{"type":"POINT","handle":"BAD1","ownerHandle":"5CAF","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7821232622532,"y":348.3457826827988,"z":0}}]},"5CBD":{"handle":"5CBD","ownerHandle":"5CBC","layer":"0","name":"*D247","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D247","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.6571232622532,"y":348.7275034575606,"z":0},{"x":661.6571232622532,"y":348.8007189654361,"z":0}],"handle":"BAD3","ownerHandle":"5CBC","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.5981232619661,"y":348.7707189652902,"z":0},{"x":661.539123261679,"y":348.7707189652902,"z":0}],"handle":"BAD4","ownerHandle":"5CBC","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.8161232625388,"y":348.7707189652902,"z":0},{"x":661.875123300177,"y":348.7707189652902,"z":0}],"handle":"BAD5","ownerHandle":"5CBC","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BAD8","ownerHandle":"5CBC","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.986164967384,"y":348.7707189652902,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.100"},{"type":"POINT","handle":"BAD9","ownerHandle":"5CBC","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7571232622518,"y":348.7707189652902,"z":0}},{"type":"POINT","handle":"BADA","ownerHandle":"5CBC","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6571232622532,"y":348.6775034573173,"z":0}},{"type":"POINT","handle":"BADB","ownerHandle":"5CBC","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6571232622532,"y":348.7707189652902,"z":0}}]},"5CCA":{"handle":"5CCA","ownerHandle":"5CC9","layer":"0","name":"*D248","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D248","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.7061127944107,"y":349.5098884223552,"z":0},{"x":661.735612796337,"y":349.5098884223553,"z":0}],"handle":"BADD","ownerHandle":"5CC9","layer":"FG-Dim","lineweight":-2},{"type":"MTEXT","handle":"BADF","ownerHandle":"5CC9","layer":"FG-Dim","position":{"x":661.798321133765,"y":349.5098884223552,"z":0},"height":0.0287500018773559,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R.050"},{"type":"POINT","handle":"BAE0","ownerHandle":"5CC9","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7429695814924,"y":349.3850117977082,"z":0}},{"type":"POINT","handle":"BAE1","ownerHandle":"5CC9","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7571232622529,"y":349.3370568884592,"z":0}}]},"5CD3":{"handle":"5CD3","ownerHandle":"5CD2","layer":"0","name":"*D249","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D249","xrefPath":"","entities":[{"type":"ARC","handle":"BAE3","ownerHandle":"5CD2","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2,"center":{"x":661.7571232622518,"y":348.5480568884609,"z":0},"radius":0.1696929361292218,"startAngle":5.847249507001274,"angleLength":0.45488450346082754,"endAngle":0.018948703282515966},{"type":"ARC","handle":"BAE4","ownerHandle":"5CD2","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2,"center":{"x":661.7571232622518,"y":348.5480568884609,"z":0},"radius":0.1696929361292218,"startAngle":0.6354190165285984,"angleLength":0.5859149470818272,"endAngle":1.2213339636104257},{"type":"MTEXT","handle":"BAE7","ownerHandle":"5CD2","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.9186636701955,"y":348.6000221573771,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;135�"},{"type":"POINT","handle":"BAE8","ownerHandle":"5CD2","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8771142881067,"y":348.6680479143187,"z":0}},{"type":"POINT","handle":"BAE9","ownerHandle":"5CD2","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7821232622532,"y":348.5230568884612,"z":0}},{"type":"POINT","handle":"BAEA","ownerHandle":"5CD2","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7571232622518,"y":348.5480568884609,"z":0}},{"type":"POINT","handle":"BAEB","ownerHandle":"5CD2","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7571232622518,"y":348.895556888461,"z":0}},{"type":"POINT","handle":"BAEC","ownerHandle":"5CD2","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7571232622518,"y":348.5480568884609,"z":0}}]},"66E8":{"handle":"66E8","ownerHandle":"66E7","layer":"0","name":"*D250","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D250","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":660.4155287424131,"y":341.2142301024681,"z":0},{"x":660.1802923009285,"y":341.2142301024681,"z":0}],"handle":"BAEE","ownerHandle":"66E7","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":660.2102923010744,"y":341.5552301021815,"z":0},{"x":660.2102923010744,"y":341.4526993832058,"z":0}],"handle":"BAEF","ownerHandle":"66E7","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":660.2102923010744,"y":341.2732301027552,"z":0},{"x":660.2102923010744,"y":341.3551993827314,"z":0}],"handle":"BAF0","ownerHandle":"66E7","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BAF3","ownerHandle":"66E7","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":660.2102923010743,"y":341.4039493829687,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.400"},{"type":"POINT","handle":"BAF4","ownerHandle":"66E7","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":660.4955287426561,"y":341.6142301024686,"z":0}},{"type":"POINT","handle":"BAF5","ownerHandle":"66E7","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":660.4655287426563,"y":341.2142301024681,"z":0}},{"type":"POINT","handle":"BAF6","ownerHandle":"66E7","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":660.2102923010744,"y":341.2142301024681,"z":0}}]},"66F5":{"handle":"66F5","ownerHandle":"66F4","layer":"0","name":"*D251","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D251","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.0905287424124,"y":341.2142301024681,"z":0},{"x":660.6000034760368,"y":341.2142301024681,"z":0}],"handle":"BAF8","ownerHandle":"66F4","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":660.6300034761828,"y":341.155230102181,"z":0},{"x":660.6300034761828,"y":341.096230101894,"z":0}],"handle":"BAF9","ownerHandle":"66F4","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":660.6300034761828,"y":341.3732301027546,"z":0},{"x":660.6300034761828,"y":341.4493308211019,"z":0}],"handle":"BAFA","ownerHandle":"66F4","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":660.6300034761828,"y":341.4493308211019,"z":0},{"x":660.6890034764697,"y":341.4493308211019,"z":0}],"handle":"BAFB","ownerHandle":"66F4","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BAFE","ownerHandle":"66F4","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":660.8000451436766,"y":341.449330821102,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.100"},{"type":"POINT","handle":"BAFF","ownerHandle":"66F4","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.1405287426556,"y":341.3142301024675,"z":0}},{"type":"POINT","handle":"BB00","ownerHandle":"66F4","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.1405287426556,"y":341.2142301024681,"z":0}},{"type":"POINT","handle":"BB01","ownerHandle":"66F4","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":660.6300034761828,"y":341.2142301024681,"z":0}}]},"671D":{"handle":"671D","ownerHandle":"671C","layer":"0","name":"*D254","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D254","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.6505287424137,"y":342.2467301024681,"z":0},{"x":661.2400361198061,"y":342.2467301024681,"z":0}],"handle":"BB17","ownerHandle":"671C","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.2700361199521,"y":341.2732301027552,"z":0},{"x":661.2700361199521,"y":341.7273456750131,"z":0}],"handle":"BB18","ownerHandle":"671C","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.2700361199521,"y":342.187730102181,"z":0},{"x":661.2700361199521,"y":341.8248456754874,"z":0}],"handle":"BB19","ownerHandle":"671C","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BB1C","ownerHandle":"671C","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.270036119952,"y":341.7760956752504,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.033"},{"type":"POINT","handle":"BB1D","ownerHandle":"671C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.3506834781558,"y":341.2142301024681,"z":0}},{"type":"POINT","handle":"BB1E","ownerHandle":"671C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.700528742657,"y":342.2467301024681,"z":0}},{"type":"POINT","handle":"BB1F","ownerHandle":"671C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.2700361199521,"y":342.2467301024681,"z":0}}]},"672A":{"handle":"672A","ownerHandle":"6729","layer":"0","name":"*D255","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D255","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.6505287424137,"y":342.6817301024681,"z":0},{"x":661.240036119806,"y":342.6817301024681,"z":0}],"handle":"BB21","ownerHandle":"6729","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.270036119952,"y":342.3057301027551,"z":0},{"x":661.270036119952,"y":342.4154801022309,"z":0}],"handle":"BB22","ownerHandle":"6729","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.270036119952,"y":342.622730102181,"z":0},{"x":661.270036119952,"y":342.5129801027053,"z":0}],"handle":"BB23","ownerHandle":"6729","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BB26","ownerHandle":"6729","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.2700361199519,"y":342.4642301024682,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.435"},{"type":"POINT","handle":"BB27","ownerHandle":"6729","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.700528742657,"y":342.2467301024681,"z":0}},{"type":"POINT","handle":"BB28","ownerHandle":"6729","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.700528742657,"y":342.6817301024681,"z":0}},{"type":"POINT","handle":"BB29","ownerHandle":"6729","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.270036119952,"y":342.6817301024681,"z":0}}]},"675E":{"handle":"675E","ownerHandle":"675D","layer":"0","name":"*D259","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D259","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.8755287429002,"y":342.4642301024681,"z":0},{"x":662.4463185390051,"y":342.4642301024681,"z":0}],"handle":"BB49","ownerHandle":"675D","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":662.4163185388591,"y":341.2732301027552,"z":0},{"x":662.4163185388591,"y":341.764144491828,"z":0}],"handle":"BB4A","ownerHandle":"675D","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.4163185388591,"y":342.405230102181,"z":0},{"x":662.4163185388591,"y":341.8616444923024,"z":0}],"handle":"BB4B","ownerHandle":"675D","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BB4E","ownerHandle":"675D","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":662.416318538859,"y":341.8128944920653,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.250"},{"type":"POINT","handle":"BB4F","ownerHandle":"675D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.9215287426547,"y":341.2142301024681,"z":0}},{"type":"POINT","handle":"BB50","ownerHandle":"675D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.825528742657,"y":342.4642301024681,"z":0}},{"type":"POINT","handle":"BB51","ownerHandle":"675D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.4163185388591,"y":342.4642301024681,"z":0}}]},"676B":{"handle":"676B","ownerHandle":"676A","layer":"0","name":"*D260","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D260","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.8905287428995,"y":342.1642301024679,"z":0},{"x":662.6740428496641,"y":342.1642301024679,"z":0}],"handle":"BB53","ownerHandle":"676A","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":662.6440428495182,"y":341.2732301027552,"z":0},{"x":662.6440428495182,"y":341.8026233493664,"z":0}],"handle":"BB54","ownerHandle":"676A","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.6440428495182,"y":342.1052301021808,"z":0},{"x":662.6440428495182,"y":341.9001233498408,"z":0}],"handle":"BB55","ownerHandle":"676A","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BB58","ownerHandle":"676A","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":662.6440428495182,"y":341.8513733496037,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.950"},{"type":"POINT","handle":"BB59","ownerHandle":"676A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.921528742656,"y":341.2142301024681,"z":0}},{"type":"POINT","handle":"BB5A","ownerHandle":"676A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8405287426563,"y":342.1642301024679,"z":0}},{"type":"POINT","handle":"BB5B","ownerHandle":"676A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.6440428495182,"y":342.1642301024679,"z":0}}]},"679F":{"handle":"679F","ownerHandle":"679E","layer":"0","name":"*D264","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D264","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":662.0863534118495,"y":343.4892301010943,"z":0},{"x":662.0863534118495,"y":343.2859764649621,"z":0}],"handle":"BB7B","ownerHandle":"679E","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.9220287410353,"y":343.3009764657867,"z":0},{"x":661.8925287394134,"y":343.3009764657867,"z":0}],"handle":"BB7C","ownerHandle":"679E","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.1158534134713,"y":343.3009764657867,"z":0},{"x":662.1453534150933,"y":343.3009764657867,"z":0}],"handle":"BB7D","ownerHandle":"679E","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BB80","ownerHandle":"679E","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":662.2056659184091,"y":343.3009764657867,"z":0},"height":0.02875000158064,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.135"},{"type":"POINT","handle":"BB81","ownerHandle":"679E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.9515287426572,"y":343.4002301024691,"z":0}},{"type":"POINT","handle":"BB82","ownerHandle":"679E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.0863534118495,"y":343.5142301024687,"z":0}},{"type":"POINT","handle":"BB83","ownerHandle":"679E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.0863534118495,"y":343.3009764657867,"z":0}}]},"67AC":{"handle":"67AC","ownerHandle":"67AB","layer":"0","name":"*D265","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D265","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":662.2531793789407,"y":343.5102891285294,"z":0},{"x":662.3523686013388,"y":343.4530222042757,"z":0}],"handle":"BB85","ownerHandle":"67AB","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":662.2846282187561,"y":343.3656924215701,"z":0},{"x":662.2698782179448,"y":343.3401446707539,"z":0}],"handle":"BB86","ownerHandle":"67AB","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.3541282203792,"y":343.4860699555043,"z":0},{"x":662.3688782211902,"y":343.5116177063203,"z":0}],"handle":"BB87","ownerHandle":"67AB","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BB8A","ownerHandle":"67AB","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":662.3199693228696,"y":343.4269050094886,"z":0},"height":0.02875000158064,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.080"},{"type":"POINT","handle":"BB8B","ownerHandle":"67AB","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.1915287426554,"y":343.4535070969147,"z":0}},{"type":"POINT","handle":"BB8C","ownerHandle":"67AB","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.231528742656,"y":343.5227891292168,"z":0}},{"type":"POINT","handle":"BB8D","ownerHandle":"67AB","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.3393782195678,"y":343.4605222046883,"z":0}}]},"67B9":{"handle":"67B9","ownerHandle":"67B8","layer":"0","name":"*D266","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D266","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.7155287426563,"y":343.4312301010942,"z":0},{"x":661.7155287426563,"y":343.2380383672219,"z":0}],"handle":"BB8F","ownerHandle":"67B8","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.8950287442796,"y":343.2530383680466,"z":0},{"x":661.9245287459015,"y":343.2530383680466,"z":0}],"handle":"BB90","ownerHandle":"67B8","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.6860287410345,"y":343.2530383680466,"z":0},{"x":661.6565287394126,"y":343.2530383680466,"z":0}],"handle":"BB91","ownerHandle":"67B8","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BB94","ownerHandle":"67B8","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":661.5986120695618,"y":343.2530383680466,"z":0},"height":0.02875000158064,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.150"},{"type":"POINT","handle":"BB95","ownerHandle":"67B8","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8655287426578,"y":343.4902301024698,"z":0}},{"type":"POINT","handle":"BB96","ownerHandle":"67B8","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7155287426563,"y":343.4562301024686,"z":0}},{"type":"POINT","handle":"BB97","ownerHandle":"67B8","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7155287426563,"y":343.2530383680466,"z":0}}]},"67C6":{"handle":"67C6","ownerHandle":"67C5","layer":"0","name":"*D267","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D267","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.742280728846,"y":343.3644046147193,"z":0},{"x":661.7127807272241,"y":343.3644046147194,"z":0}],"handle":"BB99","ownerHandle":"67C5","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BB9B","ownerHandle":"67C5","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":661.6380932231178,"y":343.3644046147193,"z":0},"height":0.02875000158064,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.090"},{"type":"LINE","vertices":[{"x":661.7825203516863,"y":343.5302301024695,"z":0},{"x":661.8275203541604,"y":343.5302301024695,"z":0}],"handle":"BB9C","ownerHandle":"67C5","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.8050203529232,"y":343.5077301012326,"z":0},{"x":661.8050203529232,"y":343.5527301037065,"z":0}],"handle":"BB9D","ownerHandle":"67C5","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"BB9E","ownerHandle":"67C5","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7731723532634,"y":343.4460534731841,"z":0}},{"type":"POINT","handle":"BB9F","ownerHandle":"67C5","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8050203529232,"y":343.5302301024695,"z":0}}]},"67CF":{"handle":"67CF","ownerHandle":"67CE","layer":"0","name":"*D268","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D268","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.9337994894383,"y":343.2419084378573,"z":0},{"x":661.9632994910603,"y":343.2419084378573,"z":0}],"handle":"BBA1","ownerHandle":"67CE","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BBA3","ownerHandle":"67CE","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":662.0379869951666,"y":343.2419084378573,"z":0},"height":0.02875000158064,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.060"},{"type":"LINE","vertices":[{"x":661.8690287414194,"y":343.4002301024692,"z":0},{"x":661.9140287438936,"y":343.4002301024692,"z":0}],"handle":"BBA4","ownerHandle":"67CE","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.8915287426564,"y":343.3777301012321,"z":0},{"x":661.8915287426564,"y":343.4227301037062,"z":0}],"handle":"BBA5","ownerHandle":"67CE","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"BBA6","ownerHandle":"67CE","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.9070061523375,"y":343.3422607158103,"z":0}},{"type":"POINT","handle":"BBA7","ownerHandle":"67CE","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8915287426565,"y":343.4002301024692,"z":0}}]},"67D8":{"handle":"67D8","ownerHandle":"67D7","layer":"0","name":"*D269","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D269","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.7800203515478,"y":343.4402301024682,"z":0},{"x":661.5053356541388,"y":343.4402301024682,"z":0}],"handle":"BBA9","ownerHandle":"67D7","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.5203356549634,"y":343.5987301008464,"z":0},{"x":661.5203356549634,"y":343.5568159566402,"z":0}],"handle":"BBAA","ownerHandle":"67D7","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.5203356549634,"y":343.4697301040901,"z":0},{"x":661.5203356549634,"y":343.50806595396,"z":0}],"handle":"BBAB","ownerHandle":"67D7","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BBAE","ownerHandle":"67D7","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":661.5203356549634,"y":343.5324409553002,"z":0},"height":0.02875000158064,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.188"},{"type":"POINT","handle":"BBAF","ownerHandle":"67D7","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8050203529223,"y":343.6282301024683,"z":0}},{"type":"POINT","handle":"BBB0","ownerHandle":"67D7","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8050203529223,"y":343.4402301024682,"z":0}},{"type":"POINT","handle":"BBB1","ownerHandle":"67D7","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.5203356549634,"y":343.4402301024682,"z":0}}]},"67E5":{"handle":"67E5","ownerHandle":"67E4","layer":"0","name":"*D270","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D270","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":662.1008782387418,"y":343.8292766665345,"z":0},{"x":662.0713782371199,"y":343.8292766665345,"z":0}],"handle":"BBB3","ownerHandle":"67E4","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BBB5","ownerHandle":"67E4","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":661.9966907330137,"y":343.8292766665345,"z":0},"height":0.02875000158064,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.050"},{"type":"LINE","vertices":[{"x":661.9790287414186,"y":343.6442301024679,"z":0},{"x":662.0240287438928,"y":343.6442301024679,"z":0}],"handle":"BBB6","ownerHandle":"67E4","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":662.0015287426556,"y":343.6217301012308,"z":0},{"x":662.0015287426558,"y":343.6667301037048,"z":0}],"handle":"BBB7","ownerHandle":"67E4","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"BBB8","ownerHandle":"67E4","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.0251800186037,"y":343.6882825387904,"z":0}},{"type":"POINT","handle":"BBB9","ownerHandle":"67E4","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.0015287426556,"y":343.6442301024678,"z":0}}]},"67EE":{"handle":"67EE","ownerHandle":"67ED","layer":"0","name":"*D271","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D271","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.7155287426563,"y":343.7192301038426,"z":0},{"x":661.7155287426563,"y":344.0075716541327,"z":0}],"handle":"BBBB","ownerHandle":"67ED","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":662.2220287410335,"y":343.992571653308,"z":0},{"x":662.0199480311192,"y":343.992571653308,"z":0}],"handle":"BBBC","ownerHandle":"67ED","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.7450287442782,"y":343.992571653308,"z":0},{"x":661.8897396906272,"y":343.992571653308,"z":0}],"handle":"BBBD","ownerHandle":"67ED","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BBC0","ownerHandle":"67ED","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":661.9548438608732,"y":343.992571653308,"z":0},"height":0.02875000158064,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.536"},{"type":"POINT","handle":"BBC1","ownerHandle":"67ED","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.2515287426554,"y":343.4881481130659,"z":0}},{"type":"POINT","handle":"BBC2","ownerHandle":"67ED","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7155287426563,"y":343.6942301024681,"z":0}},{"type":"POINT","handle":"BBC3","ownerHandle":"67ED","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7155287426563,"y":343.992571653308,"z":0}}]},"67FB":{"handle":"67FB","ownerHandle":"67FA","layer":"0","name":"*D272","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D272","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.9515287426572,"y":343.7092301038419,"z":0},{"x":661.9515287426572,"y":343.9257569270084,"z":0}],"handle":"BBC5","ownerHandle":"67FA","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.7450287442782,"y":343.9107569261838,"z":0},{"x":661.759618465134,"y":343.9107569261838,"z":0}],"handle":"BBC6","ownerHandle":"67FA","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.9220287410353,"y":343.9107569261838,"z":0},{"x":661.8898268056262,"y":343.9107569261838,"z":0}],"handle":"BBC7","ownerHandle":"67FA","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BBCA","ownerHandle":"67FA","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":661.8247226353801,"y":343.9107569261838,"z":0},"height":0.02875000158064,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.236"},{"type":"POINT","handle":"BBCB","ownerHandle":"67FA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7155287426563,"y":343.6942301024681,"z":0}},{"type":"POINT","handle":"BBCC","ownerHandle":"67FA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.9515287426572,"y":343.6842301024674,"z":0}},{"type":"POINT","handle":"BBCD","ownerHandle":"67FA","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.9515287426572,"y":343.9107569261838,"z":0}}]},"681E":{"handle":"681E","ownerHandle":"681D","layer":"0","name":"*D275","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D275","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.7055287412815,"y":343.4712301024683,"z":0},{"x":661.6200598560944,"y":343.4712301024683,"z":0}],"handle":"BBE1","ownerHandle":"681D","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.6350598569192,"y":343.5677301008466,"z":0},{"x":661.6350598569192,"y":343.5586051038084,"z":0}],"handle":"BBE2","ownerHandle":"681D","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.6350598569192,"y":343.5007301040902,"z":0},{"x":661.6350598569192,"y":343.5098551011282,"z":0}],"handle":"BBE3","ownerHandle":"681D","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BBE6","ownerHandle":"681D","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":661.635059856919,"y":343.5342301024684,"z":0},"height":0.02875000158064,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.126"},{"type":"POINT","handle":"BBE7","ownerHandle":"681D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7305287426562,"y":343.5972301024685,"z":0}},{"type":"POINT","handle":"BBE8","ownerHandle":"681D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.730528742656,"y":343.4712301024683,"z":0}},{"type":"POINT","handle":"BBE9","ownerHandle":"681D","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.6350598569192,"y":343.4712301024683,"z":0}}]},"682B":{"handle":"682B","ownerHandle":"682A","layer":"0","name":"*D276","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D276","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.6823292422106,"y":343.7895580513853,"z":0},{"x":661.6528292405887,"y":343.7895580513853,"z":0}],"handle":"BBEB","ownerHandle":"682A","layer":"FG-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BBED","ownerHandle":"682A","layer":"FG-Dim","colorIndex":0,"color":0,"position":{"x":661.5781417364825,"y":343.7895580513854,"z":0},"height":0.02875000158064,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.020"},{"type":"LINE","vertices":[{"x":661.7130287414199,"y":343.694230102468,"z":0},{"x":661.7580287438941,"y":343.694230102468,"z":0}],"handle":"BBEE","ownerHandle":"682A","layer":"FG-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.735528742657,"y":343.6717301012309,"z":0},{"x":661.735528742657,"y":343.716730103705,"z":0}],"handle":"BBEF","ownerHandle":"682A","layer":"FG-Dim","lineweight":-2},{"type":"POINT","handle":"BBF0","ownerHandle":"682A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7257823688959,"y":343.7116945863862,"z":0}},{"type":"POINT","handle":"BBF1","ownerHandle":"682A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.735528742657,"y":343.694230102468,"z":0}}]},"683D":{"handle":"683D","ownerHandle":"683C","layer":"0","name":"*D278","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D278","xrefPath":"","entities":[{"type":"ARC","handle":"BBFB","ownerHandle":"683C","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2,"center":{"x":661.8155287426548,"y":342.1392301024683,"z":0},"radius":0.1915054975213262,"startAngle":5.0217057609157445,"angleLength":0.33864026725035856,"endAngle":5.360346028166103},{"type":"ARC","handle":"BBFC","ownerHandle":"683C","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2,"center":{"x":661.8155287426548,"y":342.1392301024683,"z":0},"radius":0.1915054975213262,"startAngle":5.990844258121326,"angleLength":0.7684224318852344,"endAngle":0.4760813828269747},{"type":"MTEXT","handle":"BBFF","ownerHandle":"683C","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.9763722995338,"y":342.035289226046,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;135�"},{"type":"POINT","handle":"BC00","ownerHandle":"683C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.0070342401762,"y":342.1392301024633,"z":0}},{"type":"POINT","handle":"BC01","ownerHandle":"683C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8405287426561,"y":342.1642301024677,"z":0}},{"type":"POINT","handle":"BC02","ownerHandle":"683C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8155287426548,"y":342.1392301024682,"z":0}},{"type":"POINT","handle":"BC03","ownerHandle":"683C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8155287426548,"y":341.7917301024681,"z":0}},{"type":"POINT","handle":"BC04","ownerHandle":"683C","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8155287426548,"y":342.1392301024682,"z":0}}]},"6B05":{"handle":"6B05","ownerHandle":"6B04","layer":"0","name":"*D279","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D279","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.8087930724303,"y":336.3727109478237,"z":0},{"x":661.8087930724303,"y":336.1727413708815,"z":0}],"handle":"BC06","ownerHandle":"6B04","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.8677930727173,"y":336.2027413710275,"z":0},{"x":661.9267930730044,"y":336.2027413710275,"z":0}],"handle":"BC07","ownerHandle":"6B04","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.6697930721414,"y":336.2027413710275,"z":0},{"x":661.6107930718543,"y":336.2027413710275,"z":0}],"handle":"BC08","ownerHandle":"6B04","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BC0B","ownerHandle":"6B04","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.4901680712675,"y":336.2027413710275,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.080"},{"type":"POINT","handle":"BC0C","ownerHandle":"6B04","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7287930724285,"y":336.422710948067,"z":0}},{"type":"POINT","handle":"BC0D","ownerHandle":"6B04","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8087930724303,"y":336.422710948067,"z":0}},{"type":"POINT","handle":"BC0E","ownerHandle":"6B04","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.8087930724303,"y":336.2027413710275,"z":0}}]},"6B12":{"handle":"6B12","ownerHandle":"6B11","layer":"0","name":"*D280","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D280","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":662.2327930724293,"y":336.5527109483103,"z":0},{"x":662.2327930724293,"y":336.7380662739333,"z":0}],"handle":"BC10","ownerHandle":"6B11","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.7877930727155,"y":336.7080662737874,"z":0},{"x":661.859488881153,"y":336.7080662737874,"z":0}],"handle":"BC11","ownerHandle":"6B11","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.1737930721423,"y":336.7080662737874,"z":0},{"x":662.1103222157069,"y":336.7080662737874,"z":0}],"handle":"BC12","ownerHandle":"6B11","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BC15","ownerHandle":"6B11","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.98490554843,"y":336.7080662737874,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.504"},{"type":"POINT","handle":"BC16","ownerHandle":"6B11","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7287930724285,"y":336.4327109480668,"z":0}},{"type":"POINT","handle":"BC17","ownerHandle":"6B11","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.2327930724293,"y":336.502710948067,"z":0}},{"type":"POINT","handle":"BC18","ownerHandle":"6B11","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.2327930724293,"y":336.7080662737874,"z":0}}]},"6B1F":{"handle":"6B1F","ownerHandle":"6B1E","layer":"0","name":"*D281","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D281","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":662.2827930726725,"y":334.002710948067,"z":0},{"x":662.4825455515215,"y":334.002710948067,"z":0}],"handle":"BC1A","ownerHandle":"6B1E","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":662.4525455513755,"y":336.4437109477799,"z":0},{"x":662.4525455513755,"y":335.1574097423621,"z":0}],"handle":"BC1B","ownerHandle":"6B1E","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.4525455513755,"y":334.0617109483541,"z":0},{"x":662.4525455513755,"y":335.0599097418877,"z":0}],"handle":"BC1C","ownerHandle":"6B1E","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BC1F","ownerHandle":"6B1E","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":662.4525455513754,"y":335.1086597421251,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2.500"},{"type":"POINT","handle":"BC20","ownerHandle":"6B1E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.2327930724293,"y":336.502710948067,"z":0}},{"type":"POINT","handle":"BC21","ownerHandle":"6B1E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.2327930724293,"y":334.002710948067,"z":0}},{"type":"POINT","handle":"BC22","ownerHandle":"6B1E","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.4525455513755,"y":334.002710948067,"z":0}}]},"6B2C":{"handle":"6B2C","ownerHandle":"6B2B","layer":"0","name":"*D282","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D282","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":662.2327930724293,"y":336.0713897696168,"z":0},{"x":662.2327930724293,"y":335.9641343485352,"z":0}],"handle":"BC24","ownerHandle":"6B2B","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":662.2917930727162,"y":335.9941343486811,"z":0},{"x":662.3507930730035,"y":335.9941343486811,"z":0}],"handle":"BC25","ownerHandle":"6B2B","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.113793072141,"y":335.9941343486811,"z":0},{"x":662.0547930718539,"y":335.9941343486811,"z":0}],"handle":"BC26","ownerHandle":"6B2B","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BC29","ownerHandle":"6B2B","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.9341680712669,"y":335.9941343486811,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.060"},{"type":"POINT","handle":"BC2A","ownerHandle":"6B2B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.172793072428,"y":336.1213897698601,"z":0}},{"type":"POINT","handle":"BC2B","ownerHandle":"6B2B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.2327930724293,"y":336.1213897698601,"z":0}},{"type":"POINT","handle":"BC2C","ownerHandle":"6B2B","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.2327930724293,"y":335.9941343486811,"z":0}}]},"6B39":{"handle":"6B39","ownerHandle":"6B38","layer":"0","name":"*D283","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D283","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.7387930721865,"y":334.002710948067,"z":0},{"x":661.4980967850961,"y":334.002710948067,"z":0}],"handle":"BC2E","ownerHandle":"6B38","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.528096785242,"y":333.9437109477799,"z":0},{"x":661.528096785242,"y":333.8847109474929,"z":0}],"handle":"BC2F","ownerHandle":"6B38","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.528096785242,"y":334.1817109483549,"z":0},{"x":661.528096785242,"y":334.2454896660028,"z":0}],"handle":"BC30","ownerHandle":"6B38","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.528096785242,"y":334.2454896660028,"z":0},{"x":661.5870967855291,"y":334.2454896660028,"z":0}],"handle":"BC31","ownerHandle":"6B38","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BC34","ownerHandle":"6B38","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.7029301194259,"y":334.2454896660029,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.120"},{"type":"POINT","handle":"BC35","ownerHandle":"6B38","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7687930724294,"y":334.1227109480678,"z":0}},{"type":"POINT","handle":"BC36","ownerHandle":"6B38","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7887930724298,"y":334.002710948067,"z":0}},{"type":"POINT","handle":"BC37","ownerHandle":"6B38","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.528096785242,"y":334.002710948067,"z":0}}]},"6B47":{"handle":"6B47","ownerHandle":"6B46","layer":"0","name":"*D284","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D284","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":662.0607930726728,"y":334.0527109480671,"z":0},{"x":662.09275135529,"y":334.0527109480671,"z":0}],"handle":"BC39","ownerHandle":"6B46","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":662.0627513551441,"y":334.1117109483542,"z":0},{"x":662.0627513551441,"y":334.1707109486413,"z":0}],"handle":"BC3A","ownerHandle":"6B46","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.0627513551441,"y":333.9437109477799,"z":0},{"x":662.0627513551441,"y":333.8847109474929,"z":0}],"handle":"BC3B","ownerHandle":"6B46","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":662.0627513551441,"y":333.8847109474929,"z":0},{"x":662.003751354857,"y":333.8847109474929,"z":0}],"handle":"BC3C","ownerHandle":"6B46","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BC3F","ownerHandle":"6B46","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.8831263542698,"y":333.884710947493,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.050"},{"type":"POINT","handle":"BC40","ownerHandle":"6B46","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.0107930724295,"y":334.002710948067,"z":0}},{"type":"POINT","handle":"BC41","ownerHandle":"6B46","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.0107930724295,"y":334.0527109480671,"z":0}},{"type":"POINT","handle":"BC42","ownerHandle":"6B46","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":662.0627513551441,"y":334.0527109480671,"z":0}}]},"6B55":{"handle":"6B55","ownerHandle":"6B54","layer":"0","name":"*D285","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D285","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.7187930721861,"y":336.3827109480662,"z":0},{"x":661.3295878914182,"y":336.3827109480662,"z":0}],"handle":"BC44","ownerHandle":"6B54","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.359587891564,"y":334.1817109483549,"z":0},{"x":661.359587891564,"y":335.0547429928917,"z":0}],"handle":"BC45","ownerHandle":"6B54","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":661.359587891564,"y":336.3237109477791,"z":0},{"x":661.359587891564,"y":335.152242993366,"z":0}],"handle":"BC46","ownerHandle":"6B54","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BC49","ownerHandle":"6B54","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.359587891564,"y":335.103492993129,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2.260"},{"type":"POINT","handle":"BC4A","ownerHandle":"6B54","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7687930724294,"y":334.1227109480678,"z":0}},{"type":"POINT","handle":"BC4B","ownerHandle":"6B54","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7687930724294,"y":336.3827109480662,"z":0}},{"type":"POINT","handle":"BC4C","ownerHandle":"6B54","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.359587891564,"y":336.3827109480662,"z":0}}]},"6B62":{"handle":"6B62","ownerHandle":"6B61","layer":"0","name":"*D286","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D286","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.6929706264731,"y":336.6042193602542,"z":0},{"x":661.633970626186,"y":336.6042193602542,"z":0}],"handle":"BC4E","ownerHandle":"6B61","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BC50","ownerHandle":"6B61","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":661.484595625459,"y":336.6042193602541,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.060"},{"type":"LINE","vertices":[{"x":661.7437930722112,"y":336.4427109480667,"z":0},{"x":661.833793072649,"y":336.4427109480666,"z":0}],"handle":"BC51","ownerHandle":"6B61","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.78879307243,"y":336.3977109478477,"z":0},{"x":661.78879307243,"y":336.4877109482856,"z":0}],"handle":"BC52","ownerHandle":"6B61","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"POINT","handle":"BC53","ownerHandle":"6B61","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7581780340524,"y":336.4943124928619,"z":0}},{"type":"POINT","handle":"BC54","ownerHandle":"6B61","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.78879307243,"y":336.4427109480666,"z":0}}]},"6B6B":{"handle":"6B6B","ownerHandle":"6B6A","layer":"0","name":"*D287","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D287","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":661.8323973990477,"y":336.2780786908865,"z":0},{"x":661.891397399335,"y":336.2780786908865,"z":0}],"handle":"BC56","ownerHandle":"6B6A","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BC58","ownerHandle":"6B6A","layer":"FG-Dtl-Dim","colorIndex":0,"color":0,"position":{"x":662.0407724000617,"y":336.2780786908865,"z":0},"height":0.0575000002797682,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.040"},{"type":"LINE","vertices":[{"x":661.7237930722104,"y":336.4227109480673,"z":0},{"x":661.8137930726483,"y":336.4227109480673,"z":0}],"handle":"BC59","ownerHandle":"6B6A","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"LINE","vertices":[{"x":661.7687930724293,"y":336.3777109478483,"z":0},{"x":661.7687930724294,"y":336.4677109482863,"z":0}],"handle":"BC5A","ownerHandle":"6B6A","layer":"FG-Dtl-Dim","lineweight":-2},{"type":"POINT","handle":"BC5B","ownerHandle":"6B6A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7848954335404,"y":336.3860951868882,"z":0}},{"type":"POINT","handle":"BC5C","ownerHandle":"6B6A","layer":"Defpoints","colorIndex":0,"color":0,"position":{"x":661.7687930724294,"y":336.4227109480673,"z":0}}]},"6CF5":{"handle":"6CF5","ownerHandle":"6CF4","layer":"0","name":"*D288","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D288","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":677.5144505713101,"y":348.7555935773477,"z":0},{"x":677.5144505713101,"y":349.3602087281192,"z":0}],"handle":"BC5E","ownerHandle":"6CF4","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":669.8824505715446,"y":349.3002087279999,"z":0},{"x":673.1047036030243,"y":349.3002087279999,"z":0}],"handle":"BC5F","ownerHandle":"6CF4","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":677.3964505710757,"y":349.3002087279999,"z":0},{"x":673.6255369373927,"y":349.3002087279999,"z":0}],"handle":"BC60","ownerHandle":"6CF4","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BC63","ownerHandle":"6CF4","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.3651202702085,"y":349.3002087279999,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;7.750"},{"type":"POINT","handle":"BC64","ownerHandle":"6CF4","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":669.7644505713101,"y":348.6555935771489,"z":0}},{"type":"POINT","handle":"BC65","ownerHandle":"6CF4","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":677.5144505713101,"y":348.6555935771489,"z":0}},{"type":"POINT","handle":"BC66","ownerHandle":"6CF4","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":677.5144505713101,"y":349.3002087279999,"z":0}}]},"6D02":{"handle":"6D02","ownerHandle":"6D01","layer":"0","name":"*D289","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D289","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":669.7080158742931,"y":348.2534558149613,"z":0},{"x":669.5900158740585,"y":348.2534558149613,"z":0}],"handle":"BC68","ownerHandle":"6D01","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BC6A","ownerHandle":"6D01","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":669.2912658734651,"y":348.2534558149613,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.060"},{"type":"LINE","vertices":[{"x":669.7344505711313,"y":348.5255935771489,"z":0},{"x":669.914450571489,"y":348.5255935771489,"z":0}],"handle":"BC6B","ownerHandle":"6D01","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":669.82445057131,"y":348.43559357697,"z":0},{"x":669.82445057131,"y":348.6155935773278,"z":0}],"handle":"BC6C","ownerHandle":"6D01","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"POINT","handle":"BC6D","ownerHandle":"6D01","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":669.8008489435737,"y":348.4704305173331,"z":0}},{"type":"POINT","handle":"BC6E","ownerHandle":"6D01","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":669.82445057131,"y":348.5255935771489,"z":0}}]},"6D0B":{"handle":"6D0B","ownerHandle":"6D0A","layer":"0","name":"*D290","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D290","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":673.0290507214235,"y":345.2425767911154,"z":0},{"x":673.147050721658,"y":345.2425767911154,"z":0}],"handle":"BC70","ownerHandle":"6D0A","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BC72","ownerHandle":"6D0A","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.5320507224229,"y":345.2425767911154,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;FULL R."},{"type":"LINE","vertices":[{"x":672.851973581544,"y":345.5280935771489,"z":0},{"x":673.0319735819018,"y":345.5280935771489,"z":0}],"handle":"BC73","ownerHandle":"6D0A","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":672.9419735817227,"y":345.43809357697,"z":0},{"x":672.9419735817229,"y":345.6180935773277,"z":0}],"handle":"BC74","ownerHandle":"6D0A","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"POINT","handle":"BC75","ownerHandle":"6D0A","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.9602058122861,"y":345.4683120100175,"z":0}},{"type":"POINT","handle":"BC76","ownerHandle":"6D0A","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.9419735817229,"y":345.5280935771489,"z":0}}]},"6D14":{"handle":"6D14","ownerHandle":"6D13","layer":"0","name":"*D291","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D291","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":672.7644505713101,"y":347.4556936829152,"z":0},{"x":672.7644505713101,"y":347.4332636417064,"z":0}],"handle":"BC78","ownerHandle":"6D13","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":672.6464505710755,"y":347.4932636418257,"z":0},{"x":672.528450570841,"y":347.4932636418257,"z":0}],"handle":"BC79","ownerHandle":"6D13","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":673.0074505715446,"y":347.4932636418257,"z":0},{"x":673.1639587336063,"y":347.4932636418257,"z":0}],"handle":"BC7A","ownerHandle":"6D13","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BC7D","ownerHandle":"6D13","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.4052087340858,"y":347.4932636418257,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.125"},{"type":"POINT","handle":"BC7E","ownerHandle":"6D13","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.8894505713101,"y":347.5556936831139,"z":0}},{"type":"POINT","handle":"BC7F","ownerHandle":"6D13","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.7644505713101,"y":347.5556936831139,"z":0}},{"type":"POINT","handle":"BC80","ownerHandle":"6D13","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.7644505713101,"y":347.4932636418257,"z":0}}]},"6D21":{"handle":"6D21","ownerHandle":"6D20","layer":"0","name":"*D292","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D292","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":671.3644505715088,"y":348.7155935771489,"z":0},{"x":671.446808513089,"y":348.7155935771489,"z":0}],"handle":"BC82","ownerHandle":"6D20","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":671.3868085129698,"y":348.8335935773835,"z":0},{"x":671.3868085129698,"y":348.9515935776179,"z":0}],"handle":"BC83","ownerHandle":"6D20","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":671.3868085129698,"y":348.3475935769144,"z":0},{"x":671.3868085129698,"y":348.1799941681828,"z":0}],"handle":"BC84","ownerHandle":"6D20","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":671.3868085129698,"y":348.1799941681828,"z":0},{"x":671.2688085127354,"y":348.1799941681828,"z":0}],"handle":"BC85","ownerHandle":"6D20","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BC88","ownerHandle":"6D20","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":671.0179751789033,"y":348.1799941681829,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.250"},{"type":"POINT","handle":"BC89","ownerHandle":"6D20","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":671.2644505713101,"y":348.4655935771489,"z":0}},{"type":"POINT","handle":"BC8A","ownerHandle":"6D20","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":671.2644505713101,"y":348.7155935771489,"z":0}},{"type":"POINT","handle":"BC8B","ownerHandle":"6D20","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":671.3868085129698,"y":348.7155935771489,"z":0}}]},"6D2F":{"handle":"6D2F","ownerHandle":"6D2E","layer":"0","name":"*D293","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D293","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":672.7644505713101,"y":348.5055935773477,"z":0},{"x":672.7644505713101,"y":349.0391059817661,"z":0}],"handle":"BC8D","ownerHandle":"6D2E","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":669.8824505715446,"y":348.9791059816468,"z":0},{"x":671.1120734632487,"y":348.9791059816468,"z":0}],"handle":"BC8E","ownerHandle":"6D2E","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":672.6464505710755,"y":348.9791059816468,"z":0},{"x":671.5945734642077,"y":348.9791059816468,"z":0}],"handle":"BC8F","ownerHandle":"6D2E","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BC92","ownerHandle":"6D2E","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":671.3533234637282,"y":348.9791059816468,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;3.000"},{"type":"POINT","handle":"BC93","ownerHandle":"6D2E","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":669.7644505713101,"y":348.6555935771489,"z":0}},{"type":"POINT","handle":"BC94","ownerHandle":"6D2E","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.7644505713101,"y":348.4055935771489,"z":0}},{"type":"POINT","handle":"BC95","ownerHandle":"6D2E","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.7644505713101,"y":348.9791059816468,"z":0}}]},"6D3C":{"handle":"6D3C","ownerHandle":"6D3B","layer":"0","name":"*D294","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D294","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":673.6394505713101,"y":348.5805935773477,"z":0},{"x":673.6394505713101,"y":349.0391059817661,"z":0}],"handle":"BC97","ownerHandle":"6D3B","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":672.6464505710755,"y":348.9791059816468,"z":0},{"x":672.528450570841,"y":348.9791059816468,"z":0}],"handle":"BC98","ownerHandle":"6D3B","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":673.7574505715445,"y":348.9791059816468,"z":0},{"x":673.8754505717792,"y":348.9791059816468,"z":0}],"handle":"BC99","ownerHandle":"6D3B","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BC9C","ownerHandle":"6D3B","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.2713902136985,"y":348.9791059816468,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.875"},{"type":"POINT","handle":"BC9D","ownerHandle":"6D3B","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.7644505713101,"y":348.4055935771489,"z":0}},{"type":"POINT","handle":"BC9E","ownerHandle":"6D3B","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.6394505713101,"y":348.480593577149,"z":0}},{"type":"POINT","handle":"BC9F","ownerHandle":"6D3B","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.6394505713101,"y":348.9791059816468,"z":0}}]},"6D49":{"handle":"6D49","ownerHandle":"6D48","layer":"0","name":"*D295","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D295","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":672.6644505711114,"y":345.9491370149505,"z":0},{"x":672.1792330170958,"y":345.9491370149505,"z":0}],"handle":"BCA1","ownerHandle":"6D48","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":672.239233017215,"y":348.3475935769144,"z":0},{"x":672.239233017215,"y":347.2277309594065,"z":0}],"handle":"BCA2","ownerHandle":"6D48","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":672.239233017215,"y":346.0671370151851,"z":0},{"x":672.239233017215,"y":347.032730959019,"z":0}],"handle":"BCA3","ownerHandle":"6D48","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BCA6","ownerHandle":"6D48","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.2392330172149,"y":347.1302309592129,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2.516"},{"type":"POINT","handle":"BCA7","ownerHandle":"6D48","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.5463088804318,"y":348.4655935771489,"z":0}},{"type":"POINT","handle":"BCA8","ownerHandle":"6D48","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.7644505713101,"y":345.9491370149505,"z":0}},{"type":"POINT","handle":"BCA9","ownerHandle":"6D48","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.239233017215,"y":345.9491370149505,"z":0}}]},"6D56":{"handle":"6D56","ownerHandle":"6D55","layer":"0","name":"*D296","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D296","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":674.5144505713101,"y":345.8491370147517,"z":0},{"x":674.5144505713101,"y":344.8552479471598,"z":0}],"handle":"BCAB","ownerHandle":"6D55","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":672.8824505715445,"y":344.9152479472791,"z":0},{"x":673.0795530524204,"y":344.9152479472791,"z":0}],"handle":"BCAC","ownerHandle":"6D55","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":674.3964505710755,"y":344.9152479472791,"z":0},{"x":673.5620530533793,"y":344.9152479472791,"z":0}],"handle":"BCAD","ownerHandle":"6D55","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BCB0","ownerHandle":"6D55","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.3208030528999,"y":344.9152479472791,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.750"},{"type":"POINT","handle":"BCB1","ownerHandle":"6D55","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.7644505713101,"y":345.9491370149505,"z":0}},{"type":"POINT","handle":"BCB2","ownerHandle":"6D55","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.5144505713101,"y":345.9491370149505,"z":0}},{"type":"POINT","handle":"BCB3","ownerHandle":"6D55","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.5144505713101,"y":344.9152479472791,"z":0}}]},"6D63":{"handle":"6D63","ownerHandle":"6D62","layer":"0","name":"*D297","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D297","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":674.5144505713101,"y":345.6512260678903,"z":0},{"x":674.5144505713102,"y":345.1202180425819,"z":0}],"handle":"BCB5","ownerHandle":"6D62","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"ARC","handle":"BCB6","ownerHandle":"6D62","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2,"center":{"x":674.5144505713101,"y":345.9491370149505,"z":0},"radius":0.7689189722493341,"startAngle":4.143363205814224,"angleLength":0.15361319338558754,"endAngle":4.296976399199812},{"type":"ARC","handle":"BCB7","ownerHandle":"6D62","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2,"center":{"x":674.5144505713101,"y":345.9491370149505,"z":0},"radius":0.7689189722493341,"startAngle":4.866002173770454,"angleLength":0.15361319338558488,"endAngle":5.019615367156039},{"type":"MTEXT","handle":"BCBA","ownerHandle":"6D62","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.8782753400608,"y":345.2717391085995,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;15�"},{"type":"POINT","handle":"BCBB","ownerHandle":"6D62","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.3809291930054,"y":345.1918996496411,"z":0}},{"type":"POINT","handle":"BCBC","ownerHandle":"6D62","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.5144505713101,"y":345.9491370149505,"z":0}},{"type":"POINT","handle":"BCBD","ownerHandle":"6D62","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.3972979250401,"y":345.51191738683,"z":0}},{"type":"POINT","handle":"BCBE","ownerHandle":"6D62","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.5144505713101,"y":345.9491370149505,"z":0}},{"type":"POINT","handle":"BCBF","ownerHandle":"6D62","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.5144505713101,"y":345.751226068089,"z":0}}]},"6D72":{"handle":"6D72","ownerHandle":"6D71","layer":"0","name":"*D298","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D298","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":674.4369275610958,"y":345.4655935771489,"z":0},{"x":678.000318277193,"y":345.4655935771489,"z":0}],"handle":"BCC1","ownerHandle":"6D71","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":677.9403182770739,"y":348.5975935769144,"z":0},{"x":677.9403182770739,"y":347.0354223173712,"z":0}],"handle":"BCC2","ownerHandle":"6D71","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":677.9403182770739,"y":345.5835935773834,"z":0},{"x":677.9403182770739,"y":346.8404223169837,"z":0}],"handle":"BCC3","ownerHandle":"6D71","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BCC6","ownerHandle":"6D71","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":677.9403182770737,"y":346.9379223171776,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;3.250"},{"type":"POINT","handle":"BCC7","ownerHandle":"6D71","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":677.4544505713101,"y":348.7155935771489,"z":0}},{"type":"POINT","handle":"BCC8","ownerHandle":"6D71","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.3369275608972,"y":345.4655935771489,"z":0}},{"type":"POINT","handle":"BCC9","ownerHandle":"6D71","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":677.9403182770739,"y":345.4655935771489,"z":0}}]},"6D7F":{"handle":"6D7F","ownerHandle":"6D7E","layer":"0","name":"*D299","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D299","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":672.8480999974914,"y":345.4311298248398,"z":0},{"x":672.3806188544793,"y":345.2595037550164,"z":0}],"handle":"BCCB","ownerHandle":"6D7E","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":672.3000872223301,"y":345.6529546148099,"z":0},{"x":672.3080080835657,"y":345.6313794935718,"z":0}],"handle":"BCCC","ownerHandle":"6D7E","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":672.3962757772937,"y":345.3909528357954,"z":0},{"x":672.3795983159897,"y":345.4363794931843,"z":0}],"handle":"BCCD","ownerHandle":"6D7E","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BCD0","ownerHandle":"6D7E","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.3438031997777,"y":345.5338794933782,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.515"},{"type":"POINT","handle":"BCD1","ownerHandle":"6D7E","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.7644505713102,"y":345.9491370149506,"z":0}},{"type":"POINT","handle":"BCD2","ownerHandle":"6D7E","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.9419735817232,"y":345.465593577149,"z":0}},{"type":"POINT","handle":"BCD3","ownerHandle":"6D7E","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.4369430050184,"y":345.2801820064018,"z":0}}]},"6F41":{"handle":"6F41","ownerHandle":"6F40","layer":"0","name":"*D300","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D300","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":671.6410973648699,"y":341.6602720566489,"z":0},{"x":671.5230973646354,"y":341.660272056649,"z":0}],"handle":"BCD5","ownerHandle":"6F40","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BCD7","ownerHandle":"6F40","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":671.2243473640419,"y":341.6602720566489,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;R0.060"},{"type":"LINE","vertices":[{"x":671.6675320617079,"y":341.9324098188364,"z":0},{"x":671.8475320620655,"y":341.9324098188363,"z":0}],"handle":"BCD8","ownerHandle":"6F40","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":671.7575320618866,"y":341.8424098186575,"z":0},{"x":671.7575320618866,"y":342.0224098190154,"z":0}],"handle":"BCD9","ownerHandle":"6F40","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"POINT","handle":"BCDA","ownerHandle":"6F40","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":671.7339304341505,"y":341.8772467590212,"z":0}},{"type":"POINT","handle":"BCDB","ownerHandle":"6F40","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":671.7575320618866,"y":341.9324098188365,"z":0}}]},"6F4A":{"handle":"6F4A","ownerHandle":"6F49","layer":"0","name":"*D301","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D301","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":672.337132212,"y":338.6493930328025,"z":0},{"x":672.4551322122344,"y":338.6493930328025,"z":0}],"handle":"BCDD","ownerHandle":"6F49","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BCDF","ownerHandle":"6F49","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.8401322129997,"y":338.6493930328025,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;FULL R."},{"type":"LINE","vertices":[{"x":672.1600550721206,"y":338.9349098188365,"z":0},{"x":672.3400550724782,"y":338.9349098188365,"z":0}],"handle":"BCE0","ownerHandle":"6F49","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":672.2500550722996,"y":338.8449098186577,"z":0},{"x":672.2500550722996,"y":339.0249098190154,"z":0}],"handle":"BCE1","ownerHandle":"6F49","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"POINT","handle":"BCE2","ownerHandle":"6F49","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.2682873028627,"y":338.8751282517049,"z":0}},{"type":"POINT","handle":"BCE3","ownerHandle":"6F49","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.2500550722996,"y":338.9349098188366,"z":0}}]},"6F53":{"handle":"6F53","ownerHandle":"6F52","layer":"0","name":"*D302","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D302","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":672.0725320618869,"y":341.0935974374077,"z":0},{"x":672.0725320618869,"y":341.0711673961989,"z":0}],"handle":"BCE5","ownerHandle":"6F52","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":671.9545320616523,"y":341.1311673963182,"z":0},{"x":671.8365320614179,"y":341.1311673963182,"z":0}],"handle":"BCE6","ownerHandle":"6F52","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":672.3155320621214,"y":341.1311673963182,"z":0},{"x":672.472040224183,"y":341.1311673963182,"z":0}],"handle":"BCE7","ownerHandle":"6F52","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BCEA","ownerHandle":"6F52","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.7132902246625,"y":341.1311673963182,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.125"},{"type":"POINT","handle":"BCEB","ownerHandle":"6F52","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.1975320618869,"y":341.1935974376064,"z":0}},{"type":"POINT","handle":"BCEC","ownerHandle":"6F52","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.0725320618869,"y":341.1935974376064,"z":0}},{"type":"POINT","handle":"BCED","ownerHandle":"6F52","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.0725320618869,"y":341.1311673963182,"z":0}}]},"6F60":{"handle":"6F60","ownerHandle":"6F5F","layer":"0","name":"*D303","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D303","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":672.6364596416925,"y":342.1224098188365,"z":0},{"x":672.6342929948692,"y":342.1224098188365,"z":0}],"handle":"BCEF","ownerHandle":"6F5F","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":672.6942929949885,"y":341.7544098186019,"z":0},{"x":672.6942929949885,"y":341.6364098183674,"z":0}],"handle":"BCF0","ownerHandle":"6F5F","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":672.6942929949885,"y":342.240409819071,"z":0},{"x":672.6942929949885,"y":342.3584098336444,"z":0}],"handle":"BCF1","ownerHandle":"6F5F","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":672.6942929949885,"y":342.3584098336444,"z":0},{"x":672.812292995223,"y":342.3584098336444,"z":0}],"handle":"BCF2","ownerHandle":"6F5F","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BCF5","ownerHandle":"6F5F","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.0631263290547,"y":342.3584098336445,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.250"},{"type":"POINT","handle":"BCF6","ownerHandle":"6F5F","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.7364596418913,"y":341.8724098188365,"z":0}},{"type":"POINT","handle":"BCF7","ownerHandle":"6F5F","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.7364596418913,"y":342.1224098188365,"z":0}},{"type":"POINT","handle":"BCF8","ownerHandle":"6F5F","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.6942929949885,"y":342.1224098188365,"z":0}}]},"6F6E":{"handle":"6F6E","ownerHandle":"6F6D","layer":"0","name":"*D304","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D304","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":676.8225320618869,"y":342.0311250559483,"z":0},{"x":676.8225320618869,"y":342.9138125392031,"z":0}],"handle":"BCFA","ownerHandle":"6F6D","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":671.8155320621214,"y":342.8538125390838,"z":0},{"x":673.9009809730597,"y":342.8538125390838,"z":0}],"handle":"BCFB","ownerHandle":"6F6D","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":676.7045320616523,"y":342.8538125390838,"z":0},{"x":674.4026476407234,"y":342.8538125390838,"z":0}],"handle":"BCFC","ownerHandle":"6F6D","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BCFF","ownerHandle":"6F6D","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.1518143068917,"y":342.8538125390838,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;5.125"},{"type":"POINT","handle":"BD00","ownerHandle":"6F6D","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":671.6975320618869,"y":341.9311250557495,"z":0}},{"type":"POINT","handle":"BD01","ownerHandle":"6F6D","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":676.8225320618869,"y":341.9311250557495,"z":0}},{"type":"POINT","handle":"BD02","ownerHandle":"6F6D","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":676.8225320618869,"y":342.8538125390838,"z":0}}]},"6F7B":{"handle":"6F7B","ownerHandle":"6F7A","layer":"0","name":"*D305","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D305","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":671.6575320616881,"y":342.1224098188365,"z":0},{"x":670.826110991576,"y":342.1224098188365,"z":0}],"handle":"BD04","ownerHandle":"6F7A","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":670.8861109916952,"y":338.990409819071,"z":0},{"x":670.8861109916952,"y":340.1282118959496,"z":0}],"handle":"BD05","ownerHandle":"6F7A","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":670.8861109916952,"y":342.0044098186019,"z":0},{"x":670.8861109916952,"y":340.3232118963371,"z":0}],"handle":"BD06","ownerHandle":"6F7A","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BD09","ownerHandle":"6F7A","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":670.886110991695,"y":340.2257118961434,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;3.250"},{"type":"POINT","handle":"BD0A","ownerHandle":"6F7A","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.2500550722998,"y":338.8724098188364,"z":0}},{"type":"POINT","handle":"BD0B","ownerHandle":"6F7A","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":671.7575320618869,"y":342.1224098188365,"z":0}},{"type":"POINT","handle":"BD0C","ownerHandle":"6F7A","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":670.8861109916952,"y":342.1224098188365,"z":0}}]},"6F88":{"handle":"6F88","ownerHandle":"6F87","layer":"0","name":"*D306","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D306","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":673.8225320618869,"y":341.9124098190352,"z":0},{"x":673.8225320618869,"y":342.6479609543138,"z":0}],"handle":"BD0E","ownerHandle":"6F87","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":672.1905320621214,"y":342.5879609541945,"z":0},{"x":672.7075288643618,"y":342.5879609541945,"z":0}],"handle":"BD0F","ownerHandle":"6F87","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":673.7045320616523,"y":342.5879609541945,"z":0},{"x":673.1900288653208,"y":342.5879609541945,"z":0}],"handle":"BD10","ownerHandle":"6F87","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BD13","ownerHandle":"6F87","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.9487788648413,"y":342.5879609541945,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.750"},{"type":"POINT","handle":"BD14","ownerHandle":"6F87","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.0725320618869,"y":341.8124098188365,"z":0}},{"type":"POINT","handle":"BD15","ownerHandle":"6F87","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.8225320618869,"y":341.8124098188365,"z":0}},{"type":"POINT","handle":"BD16","ownerHandle":"6F87","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.8225320618869,"y":342.5879609541945,"z":0}}]},"6F95":{"handle":"6F95","ownerHandle":"6F94","layer":"0","name":"*D307","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D307","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":672.2155666127185,"y":338.8221410456966,"z":0},{"x":672.3456920528085,"y":338.3365062919227,"z":0}],"handle":"BD18","ownerHandle":"6F94","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"ARC","handle":"BD19","ownerHandle":"6F94","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2,"center":{"x":672.0725320618869,"y":339.3559532566379,"z":0},"radius":0.995409159641862,"startAngle":4.475161502321718,"angleLength":0.11861373903143058,"endAngle":4.593775241353149},{"type":"ARC","handle":"BD1A","ownerHandle":"6F94","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2,"center":{"x":672.0725320618869,"y":339.3559532566379,"z":0},"radius":0.995409159641862,"startAngle":5.0928021072151175,"angleLength":0.11861373903143324,"endAngle":5.211415846246551},{"type":"MTEXT","handle":"BD1D","ownerHandle":"6F94","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.2120614661349,"y":338.3703717326385,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;15�"},{"type":"POINT","handle":"BD1E","ownerHandle":"6F94","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.159287686533,"y":338.3643319293707,"z":0}},{"type":"POINT","handle":"BD1F","ownerHandle":"6F94","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.0725320618869,"y":339.355953256638,"z":0}},{"type":"POINT","handle":"BD20","ownerHandle":"6F94","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.0725320618869,"y":339.355953256638,"z":0}},{"type":"POINT","handle":"BD21","ownerHandle":"6F94","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.0725320618868,"y":339.1292502339624,"z":0}},{"type":"POINT","handle":"BD22","ownerHandle":"6F94","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.1896847081567,"y":338.9187336285175,"z":0}}]},"6FA4":{"handle":"6FA4","ownerHandle":"6FA3","layer":"0","name":"*D308","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D308","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":673.9825320620856,"y":341.8724098188365,"z":0},{"x":674.5513419314476,"y":341.8724098188365,"z":0}],"handle":"BD24","ownerHandle":"6FA3","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":674.4913419313284,"y":339.4739532568725,"z":0},{"x":674.4913419313284,"y":340.781090586259,"z":0}],"handle":"BD25","ownerHandle":"6FA3","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":674.4913419313284,"y":341.7544098186019,"z":0},{"x":674.4913419313284,"y":340.9760905866465,"z":0}],"handle":"BD26","ownerHandle":"6FA3","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BD29","ownerHandle":"6FA3","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.4913419313283,"y":340.8785905864529,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;2.516"},{"type":"POINT","handle":"BD2A","ownerHandle":"6FA3","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.8225320618869,"y":339.355953256638,"z":0}},{"type":"POINT","handle":"BD2B","ownerHandle":"6FA3","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.8825320618868,"y":341.8724098188365,"z":0}},{"type":"POINT","handle":"BD2C","ownerHandle":"6FA3","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.4913419313284,"y":341.8724098188365,"z":0}}]},"6FB1":{"handle":"6FB1","ownerHandle":"6FB0","layer":"0","name":"*D309","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D309","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":673.738882635706,"y":338.8379460665275,"z":0},{"x":674.1231774870084,"y":338.6968601297612,"z":0}],"handle":"BD2E","ownerHandle":"6FB0","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":674.2037091191576,"y":339.0903109895546,"z":0},{"x":674.1854316373923,"y":339.0405261399927,"z":0}],"handle":"BD2F","ownerHandle":"6FB0","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":674.1075205641941,"y":338.8283092105401,"z":0},{"x":674.1138414049682,"y":338.8455261396052,"z":0}],"handle":"BD30","ownerHandle":"6FB0","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BD33","ownerHandle":"6FB0","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.1496365211804,"y":338.9430261397988,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.515"},{"type":"POINT","handle":"BD34","ownerHandle":"6FB0","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.822532061887,"y":339.3559532566381,"z":0}},{"type":"POINT","handle":"BD35","ownerHandle":"6FB0","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.6450090514741,"y":338.8724098188366,"z":0}},{"type":"POINT","handle":"BD36","ownerHandle":"6FB0","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.0668533364694,"y":338.7175383811466,"z":0}}]},"6FBE":{"handle":"6FBE","ownerHandle":"6FBD","layer":"0","name":"*D310","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D310","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":671.6975320618869,"y":342.1624098190352,"z":0},{"x":671.6975320618869,"y":342.6479609543138,"z":0}],"handle":"BD38","ownerHandle":"6FBD","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":672.1905320621214,"y":342.5879609541945,"z":0},{"x":672.3085320623559,"y":342.5879609541945,"z":0}],"handle":"BD39","ownerHandle":"6FBD","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":671.5795320616523,"y":342.5879609541945,"z":0},{"x":671.4615320614179,"y":342.5879609541945,"z":0}],"handle":"BD3A","ownerHandle":"6FBD","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BD3D","ownerHandle":"6FBD","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":671.2011153942337,"y":342.5879609541945,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.375"},{"type":"POINT","handle":"BD3E","ownerHandle":"6FBD","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.0725320618869,"y":341.8124098188365,"z":0}},{"type":"POINT","handle":"BD3F","ownerHandle":"6FBD","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":671.6975320618869,"y":342.0624098188365,"z":0}},{"type":"POINT","handle":"BD40","ownerHandle":"6FBD","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":671.6975320618869,"y":342.5879609541945,"z":0}}]},"6FCB":{"handle":"6FCB","ownerHandle":"6FCA","layer":"0","name":"*D311","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D311","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":676.8225320618869,"y":342.1624098190352,"z":0},{"x":676.8225320618869,"y":342.6479609543138,"z":0}],"handle":"BD42","ownerHandle":"6FCA","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":673.9405320621214,"y":342.5879609541945,"z":0},{"x":674.8885469162171,"y":342.5879609541945,"z":0}],"handle":"BD43","ownerHandle":"6FCA","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":676.7045320616523,"y":342.5879609541945,"z":0},{"x":675.371046917176,"y":342.5879609541945,"z":0}],"handle":"BD44","ownerHandle":"6FCA","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BD47","ownerHandle":"6FCA","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":675.1297969166966,"y":342.5879609541945,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;3.000"},{"type":"POINT","handle":"BD48","ownerHandle":"6FCA","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.8225320618869,"y":341.8124098188365,"z":0}},{"type":"POINT","handle":"BD49","ownerHandle":"6FCA","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":676.8225320618869,"y":342.0624098188365,"z":0}},{"type":"POINT","handle":"BD4A","ownerHandle":"6FCA","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":676.8225320618869,"y":342.5879609541945,"z":0}}]},"1FE0":{"handle":"1FE0","ownerHandle":"1FDD","paperSpace":true,"layer":"0","name":"*Paper_Space312","position":{"x":0,"y":0,"z":0},"name2":"*Paper_Space312","xrefPath":"","entities":[]},"74E2":{"handle":"74E2","ownerHandle":"74E1","layer":"0","name":"*D313","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D313","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":674.3418266369808,"y":333.7524464408561,"z":0},{"x":674.3418266369808,"y":333.3216952503488,"z":0}],"handle":"BD4C","ownerHandle":"74E1","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":670.4598266372153,"y":333.3816952504681,"z":0},{"x":672.1005766365014,"y":333.3816952504681,"z":0}],"handle":"BD4D","ownerHandle":"74E1","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":674.2238266367463,"y":333.3816952504681,"z":0},{"x":672.5830766374603,"y":333.3816952504681,"z":0}],"handle":"BD4E","ownerHandle":"74E1","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BD51","ownerHandle":"74E1","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.3418266369808,"y":333.3816952504681,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;4.000"},{"type":"POINT","handle":"BD52","ownerHandle":"74E1","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":670.3418266369808,"y":333.8524464410549,"z":0}},{"type":"POINT","handle":"BD53","ownerHandle":"74E1","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.3418266369808,"y":333.8524464410549,"z":0}},{"type":"POINT","handle":"BD54","ownerHandle":"74E1","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.3418266369808,"y":333.3816952504681,"z":0}}]},"74FE":{"handle":"74FE","ownerHandle":"74FD","layer":"0","name":"*D314","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D314","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":674.4418266371796,"y":334.9774464410549,"z":0},{"x":675.234109772738,"y":334.9774464410549,"z":0}],"handle":"BD56","ownerHandle":"74FD","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":675.1741097726187,"y":333.9704464412894,"z":0},{"x":675.1741097726187,"y":334.3174464408611,"z":0}],"handle":"BD57","ownerHandle":"74FD","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":675.1741097726187,"y":334.8594464408204,"z":0},{"x":675.1741097726187,"y":334.5124464412486,"z":0}],"handle":"BD58","ownerHandle":"74FD","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BD5B","ownerHandle":"74FD","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":675.1741097726186,"y":334.414946441055,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.125"},{"type":"POINT","handle":"BD5C","ownerHandle":"74FD","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.3418266369808,"y":333.8524464410549,"z":0}},{"type":"POINT","handle":"BD5D","ownerHandle":"74FD","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.3418266369808,"y":334.9774464410549,"z":0}},{"type":"POINT","handle":"BD5E","ownerHandle":"74FD","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":675.1741097726187,"y":334.9774464410549,"z":0}}]},"751A":{"handle":"751A","ownerHandle":"7519","layer":"0","name":"*D315","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D315","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":673.0918266369808,"y":335.0774464412536,"z":0},{"x":673.0918266369808,"y":335.6702707818073,"z":0}],"handle":"BD60","ownerHandle":"7519","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":674.2238266367463,"y":335.6102707816881,"z":0},{"x":673.9580766374603,"y":335.6102707816881,"z":0}],"handle":"BD61","ownerHandle":"7519","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":673.2098266372153,"y":335.6102707816881,"z":0},{"x":673.4755766365013,"y":335.6102707816881,"z":0}],"handle":"BD62","ownerHandle":"7519","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BD65","ownerHandle":"7519","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.7168266369808,"y":335.6102707816881,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;1.250"},{"type":"POINT","handle":"BD66","ownerHandle":"7519","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":674.3418266369808,"y":334.9774464410549,"z":0}},{"type":"POINT","handle":"BD67","ownerHandle":"7519","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.0918266369808,"y":334.9774464410549,"z":0}},{"type":"POINT","handle":"BD68","ownerHandle":"7519","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.0918266369808,"y":335.6102707816881,"z":0}}]},"755E":{"handle":"755E","ownerHandle":"755D","layer":"0","name":"*D316","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D316","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":673.0918266369808,"y":335.0774464412536,"z":0},{"x":673.0918266369808,"y":335.4376189896399,"z":0}],"handle":"BD6A","ownerHandle":"755D","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":673.3098266372152,"y":335.3776189895207,"z":0},{"x":673.4278266374498,"y":335.3776189895207,"z":0}],"handle":"BD6B","ownerHandle":"755D","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":672.9738266367463,"y":335.3776189895207,"z":0},{"x":672.8558266365118,"y":335.3776189895207,"z":0}],"handle":"BD6C","ownerHandle":"755D","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BD6F","ownerHandle":"755D","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":672.6337433027371,"y":335.3776189895207,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.100"},{"type":"POINT","handle":"BD70","ownerHandle":"755D","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.1918266369807,"y":334.9774464410549,"z":0}},{"type":"POINT","handle":"BD71","ownerHandle":"755D","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.0918266369808,"y":334.9774464410549,"z":0}},{"type":"POINT","handle":"BD72","ownerHandle":"755D","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":673.0918266369808,"y":335.3776189895207,"z":0}}]},"759E":{"handle":"759E","ownerHandle":"759D","layer":"0","name":"*D318","type":1,"position":{"x":0,"y":0,"z":0},"name2":"*D318","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":670.241826636782,"y":333.9774464410549,"z":0},{"x":669.8435562164087,"y":333.9774464410549,"z":0}],"handle":"BD7E","ownerHandle":"759D","layer":"FG-Dtl-Dim","lineType":"ByBlock","lineweight":-2},{"type":"LINE","vertices":[{"x":669.9035562165279,"y":333.7344464408204,"z":0},{"x":669.9035562165279,"y":333.6164464405859,"z":0}],"handle":"BD7F","ownerHandle":"759D","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":669.9035562165279,"y":334.0954464412894,"z":0},{"x":669.9035562165279,"y":334.2134464415239,"z":0}],"handle":"BD80","ownerHandle":"759D","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"LINE","vertices":[{"x":669.9035562165279,"y":334.2134464415239,"z":0},{"x":670.0215562167624,"y":334.2134464415239,"z":0}],"handle":"BD81","ownerHandle":"759D","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"lineweight":-2},{"type":"MTEXT","handle":"BD84","ownerHandle":"759D","layer":"FG-Dtl-Dim","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":670.2628062172417,"y":334.213446441524,"z":0},"height":0.1150000002285514,"width":0,"attachmentPoint":5,"drawingDirection":1,"text":"\\A1;0.125"},{"type":"POINT","handle":"BD85","ownerHandle":"759D","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":670.3418266369808,"y":333.8524464410549,"z":0}},{"type":"POINT","handle":"BD86","ownerHandle":"759D","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":670.3418266369808,"y":333.9774464410549,"z":0}},{"type":"POINT","handle":"BD87","ownerHandle":"759D","layer":"Defpoints","lineType":"ByBlock","colorIndex":0,"color":0,"position":{"x":669.9035562165279,"y":333.9774464410549,"z":0}}]},"95A4":{"handle":"95A4","ownerHandle":"959C","layer":"0","name":"A$C117B7FB2","position":{"x":0,"y":0,"z":0},"name2":"A$C117B7FB2","xrefPath":"","entities":[{"type":"LWPOLYLINE","vertices":[{"x":557.3059319074121,"y":331.3643676899464},{"x":556.7549319074121,"y":331.3643676899464},{"x":556.7299319074122,"y":331.3393676899464},{"x":556.444931907412,"y":331.3393676899464},{"x":556.4299319074121,"y":331.3543676899465},{"x":556.4149319074121,"y":331.3393676899464},{"x":556.1299319074121,"y":331.3393676899464},{"x":556.1049319074122,"y":331.3643676899464},{"x":555.3799319074122,"y":331.3643676899464},{"x":555.3799319074122,"y":331.0935430207542},{"x":555.4406549129661,"y":330.9883676899465,"bulge":-1.000000000000005},{"x":555.3713728806634,"y":330.9483676899464},{"x":555.2659319074122,"y":331.1309968128171,"bulge":0.8490904586570023},{"x":555.2499319074121,"y":331.2283676899465},{"x":555.209931907412,"y":331.2283676899465,"bulge":-0.4142135623731124},{"x":555.1799319074121,"y":331.2583676899464},{"x":555.1799319074121,"y":332.7143676899463},{"x":555.5499319074121,"y":332.7143676899463,"bulge":-0.4142135623730994},{"x":555.5799319074122,"y":332.6843676899464},{"x":555.5799319074122,"y":332.6443676899464,"bulge":-0.4142135623730871},{"x":555.5499319074121,"y":332.6143676899463},{"x":555.339931907412,"y":332.6143676899463,"bulge":0.4142135623730894},{"x":555.2799319074121,"y":332.5543676899463},{"x":555.2799319074121,"y":331.5243676899463,"bulge":0.4142135623731006},{"x":555.339931907412,"y":331.4643676899464},{"x":556.204931907412,"y":331.4643676899464},{"x":556.219931907412,"y":331.4793676899465},{"x":556.2349319074121,"y":331.4643676899464},{"x":556.6249319074121,"y":331.4643676899464},{"x":556.6399319074121,"y":331.4793676899465},{"x":556.6549319074121,"y":331.4643676899464},{"x":557.4219319074122,"y":331.4643676899464,"bulge":-0.66937649506875},{"x":557.4325033359835,"y":331.4387260313369,"bulge":0.1997729274168698},{"x":557.405931907412,"y":331.3748760796805},{"x":557.405931907412,"y":331.3643676899464,"bulge":0.4142135623730951},{"x":557.4559319074122,"y":331.3143676899465},{"x":557.5439319074121,"y":331.3143676899465,"bulge":0.4142135623731054},{"x":557.5939319074121,"y":331.3643676899464},{"x":557.5939319074121,"y":331.3748760796805,"bulge":0.1997729274168814},{"x":557.5673604788407,"y":331.4387260313369,"bulge":-0.6693764950686888},{"x":557.5779319074121,"y":331.4643676899464},{"x":557.6599319074122,"y":331.4643676899464,"bulge":-0.4142135623730951},{"x":557.6799319074122,"y":331.4443676899464},{"x":557.6799319074122,"y":331.2583676899464,"bulge":-0.4142135623731082},{"x":557.649931907412,"y":331.2283676899465},{"x":557.609931907412,"y":331.2283676899465,"bulge":0.8490904586569916},{"x":557.5939319074121,"y":331.1309968128171},{"x":557.4884909341608,"y":330.9483676899464,"bulge":-1.000000000000009},{"x":557.419208901858,"y":330.9883676899465},{"x":557.4799319074122,"y":331.0935430207542},{"x":557.4799319074122,"y":331.2283676899465},{"x":557.3659319074121,"y":331.2283676899465,"bulge":-0.4142135623730517},{"x":557.3059319074121,"y":331.2883676899464}],"handle":"959E","ownerHandle":"959C","layer":"SHAPE","shape":true},{"type":"LINE","vertices":[{"x":555.5403248546525,"y":332.954367689948,"z":0},{"x":555.5403248546525,"y":332.7146043939133,"z":0}],"handle":"959F","ownerHandle":"959C","layer":"R-SWTS-DET2"},{"type":"LINE","vertices":[{"x":555.1803248546524,"y":332.7146043939133,"z":0},{"x":555.1803248546524,"y":332.9704226320179,"z":0}],"handle":"95A0","ownerHandle":"959C","layer":"R-SWTS-DET2"}]},"99C5":{"handle":"99C5","ownerHandle":"99C2","layer":"0","name":"11x17","type":2,"position":{"x":0,"y":0,"z":0},"name2":"11x17","xrefPath":"","entities":[{"type":"LINE","vertices":[{"x":39.38944543086797,"y":10.4887954285865,"z":0},{"x":39.38944543086797,"y":-0.2612045714135007,"z":0}],"handle":"99C7","ownerHandle":"99C2","layer":"0"},{"type":"LINE","vertices":[{"x":39.38944543086797,"y":-0.2612045714135007,"z":0},{"x":22.63944543086797,"y":-0.2612045714135007,"z":0}],"handle":"99C8","ownerHandle":"99C2","layer":"0"},{"type":"LINE","vertices":[{"x":22.63944543086797,"y":-0.2612045714135007,"z":0},{"x":22.63944543086797,"y":10.4887954285865,"z":0}],"handle":"99C9","ownerHandle":"99C2","layer":"0"},{"type":"LINE","vertices":[{"x":38.13942512627146,"y":10.48877604801781,"z":0},{"x":38.13942512627146,"y":-0.2612045714135007,"z":0}],"handle":"99CA","ownerHandle":"99C2","layer":"01-detail"},{"type":"LINE","vertices":[{"x":38.38942512627146,"y":7.020032507035708,"z":0},{"x":38.38942512627146,"y":3.080871099978523,"z":0}],"handle":"99CB","ownerHandle":"99C2","layer":"01-detail"},{"type":"LINE","vertices":[{"x":38.63942512627146,"y":7.020032507035708,"z":0},{"x":38.63942512627146,"y":3.080871099978523,"z":0}],"handle":"99CC","ownerHandle":"99C2","layer":"01-detail"},{"type":"LINE","vertices":[{"x":38.88942512627146,"y":7.020032507035708,"z":0},{"x":38.88942512627146,"y":3.080871099978523,"z":0}],"handle":"99CD","ownerHandle":"99C2","layer":"01-detail"},{"type":"LINE","vertices":[{"x":39.13942512627146,"y":7.020032507035708,"z":0},{"x":39.13942512627146,"y":3.080871099978523,"z":0}],"handle":"99CE","ownerHandle":"99C2","layer":"01-detail"},{"type":"LINE","vertices":[{"x":39.38942512627146,"y":7.020032507035708,"z":0},{"x":38.13942512627146,"y":7.020032507035708,"z":0}],"handle":"99CF","ownerHandle":"99C2","layer":"01-detail"},{"type":"TEXT","handle":"99D0","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":39.17711841468666,"y":7.216676285843561,"z":0},"textHeight":0.0646223872815218,"text":"PRODUCTS, INC.","xScale":0.85},{"type":"TEXT","handle":"99D1","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":39.05363910535764,"y":7.332057987966528,"z":0},"textHeight":0.0646223872815218,"text":"AMERICAN","xScale":0.85},{"type":"TEXT","handle":"99D5","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":38.87953490849039,"y":8.138739952738867,"z":0},"textHeight":0.0939961996822135,"text":"CONTACT: KERRI BEALS","xScale":0.85},{"type":"TEXT","handle":"99D6","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":38.57754166121671,"y":8.138739952738867,"z":0},"textHeight":0.0939961996822135,"text":"12157 W. LINEBAUGH AVENUE #335","xScale":0.85},{"type":"TEXT","handle":"99D7","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":38.42654503757986,"y":8.138739952738867,"z":0},"textHeight":0.0939961996822135,"text":"AMERICAN PRODUCTS, INC. (API)","xScale":0.85},{"type":"TEXT","handle":"99D8","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":39.03053153212724,"y":8.138739952738867,"z":0},"textHeight":0.0939961996822135,"text":"PH (813)925-0144","xScale":0.85},{"type":"TEXT","handle":"99D9","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":38.72853828485354,"y":8.138739952738867,"z":0},"textHeight":0.0939961996822135,"text":"TAMPA, FL 33626","xScale":0.85},{"type":"TEXT","handle":"99DA","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":39.19922906982887,"y":8.137342206154543,"z":0},"textHeight":0.0939961996822135,"text":"WWW.AMERICANPROD.COM","xScale":0.85},{"type":"LWPOLYLINE","vertices":[{"x":38.58981430971486,"y":7.304217382495806},{"x":38.68034469154432,"y":7.325396368320177},{"x":38.67969204293503,"y":7.283361595257133}],"handle":"99DB","ownerHandle":"99C2","layer":"A-ANNO-NOTES","shape":true},{"type":"TEXT","handle":"99DD","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":38.47753920328777,"y":-0.0701596741782495,"z":0},"textHeight":0.0939961996822135,"text":"with storefront elevations and section","xScale":0.85},{"type":"TEXT","handle":"99DE","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":38.32654257965092,"y":-0.0701596741782495,"z":0},"textHeight":0.0939961996822135,"text":"API Recommends that this note appear","xScale":0.85},{"type":"TEXT","handle":"99DF","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":38.62853582692461,"y":-0.0701596741782495,"z":0},"textHeight":0.0939961996822135,"text":"view details in your blueprints.","xScale":0.85},{"type":"LINE","vertices":[{"x":38.6951454628211,"y":-0.172707443013735,"z":0},{"x":38.6951454628211,"y":2.931217694602565,"z":0}],"handle":"99E0","ownerHandle":"99C2","layer":"01-detail"},{"type":"TEXT","handle":"99E1","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":38.98845856469479,"y":-0.0701596741782495,"z":0},"textHeight":0.0939961996822135,"text":"American Products, Inc. (API). No substitutions","xScale":0.85},{"type":"TEXT","handle":"99E2","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":38.83746194105794,"y":-0.0701596741782495,"z":0},"textHeight":0.0939961996822135,"text":"Storefront and related materials provided by","xScale":0.85},{"type":"TEXT","handle":"99E3","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":39.13945518833163,"y":-0.0701596741782495,"z":0},"textHeight":0.0939961996822135,"text":"without written consent from store owner/","xScale":0.85},{"type":"TEXT","handle":"99E4","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":39.27671518219543,"y":-0.0701596741782495,"z":0},"textHeight":0.0939961996822135,"text":"Architect. API (813)925-0144","xScale":0.85},{"type":"LINE","vertices":[{"x":39.38944543086797,"y":3.080871099978523,"z":0},{"x":38.13942512627146,"y":3.080871099978523,"z":0}],"handle":"99E5","ownerHandle":"99C2","layer":"01-detail"},{"type":"TEXT","handle":"99E6","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":38.32190713744173,"y":3.107873942521081,"z":0},"textHeight":0.0939961996822135,"text":"Customer:","xScale":0.85},{"type":"TEXT","handle":"99E7","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":38.57190713744173,"y":3.107873942521081,"z":0},"textHeight":0.0939961996822135,"text":"Assembly:","xScale":0.85},{"type":"TEXT","handle":"99E8","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":38.82190713744173,"y":3.107873942521081,"z":0},"textHeight":0.0939961996822135,"text":"Scale:","xScale":0.85},{"type":"TEXT","handle":"99E9","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":39.07190713744173,"y":3.107873942521081,"z":0},"textHeight":0.0939961996822135,"text":"Drawn By:","xScale":0.85},{"type":"TEXT","handle":"99EA","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":39.32190713744173,"y":3.107873942521081,"z":0},"textHeight":0.0939961996822135,"text":"Date:","xScale":0.85},{"type":"LINE","vertices":[{"x":39.38944543086797,"y":5.099382798353914,"z":0},{"x":39.13942512627146,"y":5.099382798353907,"z":0}],"handle":"99EB","ownerHandle":"99C2","layer":"01-detail"},{"type":"TEXT","handle":"99EC","ownerHandle":"99C2","layer":"A-ANNO-NOTES","lineType":"Continuous","startPoint":{"x":39.3219071374417,"y":5.126385640896472,"z":0},"textHeight":0.0939961996822135,"text":"Sheet:","xScale":0.85}]},"A54A":{"handle":"A54A","ownerHandle":"A546","layer":"0","name":"A$C2EE2731E","position":{"x":0,"y":0,"z":0},"name2":"A$C2EE2731E","xrefPath":"","entities":[]}}} \ No newline at end of file diff --git a/test/data/blocks.json b/test/data/blocks.json deleted file mode 100644 index 0e0dcd2..0000000 --- a/test/data/blocks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - -} \ No newline at end of file diff --git a/test/data/layer-table.expected.json b/test/data/layer-table.expected.json new file mode 100644 index 0000000..c4868bd --- /dev/null +++ b/test/data/layer-table.expected.json @@ -0,0 +1,16 @@ +{ + "handle": "2", + "ownerHandle": "0", + "layers": { + "0": { + "name": "0", + "visible": false, + "color": 16777215 + }, + "Layer 1": { + "name": "Layer 1", + "visible": false, + "color": 16777215 + } + } +} \ No newline at end of file diff --git a/test/data/ltype-table.expected.json b/test/data/ltype-table.expected.json new file mode 100644 index 0000000..2366ea1 --- /dev/null +++ b/test/data/ltype-table.expected.json @@ -0,0 +1,114 @@ +{ + "handle": "5", + "ownerHandle": "0", + "lineTypes": { + "ByBlock": { + "name": "ByBlock", + "description": "", + "patternLength": 0 + }, + "ByLayer": { + "name": "ByLayer", + "description": "", + "patternLength": 0 + }, + "Continuous": { + "name": "Continuous", + "description": "Solid line", + "patternLength": 0 + }, + "PHANTOM2": { + "name": "PHANTOM2", + "description": "Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _", + "pattern": [ + 0.625, + -0.125, + 0.125, + -0.125, + 0.125, + -0.125 + ], + "patternLength": 1.25 + }, + "CENTER1": { + "name": "CENTER1", + "description": "Center (.5x) ___ _ ___ _ ___ _ ___ _ ___ _ ___", + "pattern": [ + 0.75, + -0.125, + 0.125, + -0.125 + ], + "patternLength": 1.125 + }, + "CENTER2": { + "name": "CENTER2", + "description": "Center (2x) ________ __ ________ __ _____", + "pattern": [ + 2.5, + -0.5, + 0.5, + -0.5 + ], + "patternLength": 4 + }, + "DASHDOT1": { + "name": "DASHDOT1", + "description": "Dash dot (.5x) _._._._._._._._._._._._._._._.", + "pattern": [ + 0.25, + -0.125, + 0, + -0.125 + ], + "patternLength": 0.5 + }, + "DASHDOT2": { + "name": "DASHDOT2", + "description": "Dash dot (2x) ____ . ____ . ____ . ___", + "pattern": [ + 1, + -0.5, + 0, + -0.5 + ], + "patternLength": 2 + }, + "DASHED1": { + "name": "DASHED1", + "description": "Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _", + "pattern": [ + 0.25, + -0.125 + ], + "patternLength": 0.375 + }, + "DASHED2": { + "name": "DASHED2", + "description": "Dashed (2x) ____ ____ ____ ____ ____ ___", + "pattern": [ + 1, + -0.5 + ], + "patternLength": 1.5 + }, + "DOT1": { + "name": "DOT1", + "description": "Dot (.5x) .....................................", + "pattern": [ + 0, + -0.125 + ], + "patternLength": 0.125 + }, + "DOT2": { + "name": "DOT2", + "description": "Dot (2x) . . . . . . . . . . . . .", + "pattern": [ + 0, + -0.5 + ], + "patternLength": 0.5 + } + } +} \ No newline at end of file diff --git a/test/data/tables.parser.out b/test/data/tables.parser.out deleted file mode 100644 index 645cf17..0000000 --- a/test/data/tables.parser.out +++ /dev/null @@ -1,110 +0,0 @@ -{ - "ByBlock": { - "name": "ByBlock", - "description": "", - "patternLength": 0 - }, - "ByLayer": { - "name": "ByLayer", - "description": "", - "patternLength": 0 - }, - "Continuous": { - "name": "Continuous", - "description": "Solid line", - "patternLength": 0 - }, - "PHANTOM2": { - "name": "PHANTOM2", - "description": "Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _", - "pattern": [ - 0.625, - -0.125, - 0.125, - -0.125, - 0.125, - -0.125 - ], - "patternLength": 1.25 - }, - "CENTER1": { - "name": "CENTER1", - "description": "Center (.5x) ___ _ ___ _ ___ _ ___ _ ___ _ ___", - "pattern": [ - 0.75, - -0.125, - 0.125, - -0.125 - ], - "patternLength": 1.125 - }, - "CENTER2": { - "name": "CENTER2", - "description": "Center (2x) ________ __ ________ __ _____", - "pattern": [ - 2.5, - -0.5, - 0.5, - -0.5 - ], - "patternLength": 4 - }, - "DASHDOT1": { - "name": "DASHDOT1", - "description": "Dash dot (.5x) _._._._._._._._._._._._._._._.", - "pattern": [ - 0.25, - -0.125, - 0, - -0.125 - ], - "patternLength": 0.5 - }, - "DASHDOT2": { - "name": "DASHDOT2", - "description": "Dash dot (2x) ____ . ____ . ____ . ___", - "pattern": [ - 1, - -0.5, - 0, - -0.5 - ], - "patternLength": 2 - }, - "DASHED1": { - "name": "DASHED1", - "description": "Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _", - "pattern": [ - 0.25, - -0.125 - ], - "patternLength": 0.375 - }, - "DASHED2": { - "name": "DASHED2", - "description": "Dashed (2x) ____ ____ ____ ____ ____ ___", - "pattern": [ - 1, - -0.5 - ], - "patternLength": 1.5 - }, - "DOT1": { - "name": "DOT1", - "description": "Dot (.5x) .....................................", - "pattern": [ - 0, - -0.125 - ], - "patternLength": 0.125 - }, - "DOT2": { - "name": "DOT2", - "description": "Dot (2x) . . . . . . . . . . . . .", - "pattern": [ - 0, - -0.5 - ], - "patternLength": 0.5 - } -} \ No newline at end of file