diff --git a/src/qelmt/arc.rs b/src/qelmt/arc.rs index db42e46..4cdcba5 100644 --- a/src/qelmt/arc.rs +++ b/src/qelmt/arc.rs @@ -179,141 +179,94 @@ impl TryFrom<&LwPolyline> for Arc { impl Arc { /// 从DXF LwPolyline实体创建Arc,支持自定义颜色 pub fn try_from_lwpolyline_with_color(lwpolyline: &LwPolyline, color: HexColor) -> Result { + // 检查顶点数量,必须是2个顶点才能形成圆弧 if lwpolyline.vertices.len() != 2 { - return Err(format!( - "Arc conversion requires exactly 2 vertices, got {}", - lwpolyline.vertices.len() - )); + return Err(format!("Arc conversion requires exactly 2 vertices, got {}", lwpolyline.vertices.len())); } let v1 = &lwpolyline.vertices[0]; let v2 = &lwpolyline.vertices[1]; - - if v1.bulge.abs() <= f64::EPSILON { + + // 检查第一个顶点是否有bulge值 + if v1.bulge == 0.0 { return Err("No bulge value found for arc conversion".to_string()); } - let style = if lwpolyline.thickness > 0.1 { - format!( - "line-style:normal;line-weight:normal;filling:none;color:{}", - color.display_rgb() - ) - } else if lwpolyline.constant_width > 1.0 { - format!( - "line-style:normal;line-weight:hight;filling:none;color:{}", - color.display_rgb() - ) - } else { - format!( - "line-style:normal;line-weight:thin;filling:none;color:{}", - color.display_rgb() - ) - }; - - Arc::from_bulge_segment((v1.x, v1.y), (v2.x, v2.y), v1.bulge, style) - } -} - -impl Arc { - /// 通过两个端点与 bulge 值生成圆弧 - pub fn from_bulge_segment( - start: (f64, f64), - end: (f64, f64), - bulge: f64, - style: String, - ) -> Result { - if bulge.abs() <= f64::EPSILON { - return Err("Bulge value too small to construct an arc".into()); - } - - let chord_dx = end.0 - start.0; - let chord_dy = end.1 - start.1; - let chord_length = (chord_dx * chord_dx + chord_dy * chord_dy).sqrt(); - if chord_length <= f64::EPSILON { - return Err("Arc chord length too small".into()); - } - - let half_angle = 2.0 * bulge.atan(); - let sin_half = (half_angle).sin(); - if sin_half.abs() <= f64::EPSILON { - return Err("Arc sweep too small".into()); - } - let radius = (chord_length / (2.0 * sin_half)).abs(); - - let mid_x = (start.0 + end.0) / 2.0; - let mid_y = (start.1 + end.1) / 2.0; - + // 计算弦长和中点 + let chord_length = ((v2.x - v1.x).powi(2) + (v2.y - v1.y).powi(2)).sqrt(); + let mid_x = (v1.x + v2.x) / 2.0; + let mid_y = (v1.y + v2.y) / 2.0; + + // 根据bulge值计算圆弧参数 + // bulge = tan(angle/4),其中angle是圆弧的包含角 + let bulge = v1.bulge; + let included_angle = 4.0 * bulge.atan(); // 圆弧包含角(弧度) + + // 计算半径 + let radius = chord_length / (2.0 * (included_angle / 2.0).sin()); + + // 计算圆心位置 + // 弦的方向向量 + let chord_dx = v2.x - v1.x; + let chord_dy = v2.y - v1.y; + + // 弦的垂直方向(向左旋转90度) let perp_dx = -chord_dy; let perp_dy = chord_dx; let perp_length = (perp_dx * perp_dx + perp_dy * perp_dy).sqrt(); - if perp_length <= f64::EPSILON { - return Err("Cannot determine arc normal".into()); - } - + + // 标准化垂直向量 let unit_perp_x = perp_dx / perp_length; let unit_perp_y = perp_dy / perp_length; - let center_offset = radius * half_angle.cos(); - - let (center_x, center_y) = if bulge > 0.0 { - ( - mid_x + center_offset * unit_perp_x, - mid_y + center_offset * unit_perp_y, - ) + + // 计算圆心到弦中点的距离 + let center_distance = radius * (included_angle / 2.0).cos(); + + // 根据bulge的符号确定圆心位置 + let center_x = if bulge > 0.0 { + mid_x + center_distance * unit_perp_x } else { - ( - mid_x - center_offset * unit_perp_x, - mid_y - center_offset * unit_perp_y, - ) - }; - - // QET 使用 y 轴向下的坐标系 - let center_y_qet = -center_y; - let start_y_qet = -start.1; - let end_y_qet = -end.1; - - let mut start_angle = - (start_y_qet - center_y_qet).atan2(start.0 - center_x).to_degrees(); - let mut end_angle = (end_y_qet - center_y_qet).atan2(end.0 - center_x).to_degrees(); - - let normalize = |mut angle: f64| { - while angle < 0.0 { - angle += 360.0; - } - while angle >= 360.0 { - angle -= 360.0; - } - angle + mid_x - center_distance * unit_perp_x }; - - start_angle = normalize(start_angle); - end_angle = normalize(end_angle); - - let ccw_sweep = (end_angle - start_angle).rem_euclid(360.0); - let cw_sweep = (start_angle - end_angle).rem_euclid(360.0); - - let (start_angle, sweep) = if bulge < 0.0 - && ccw_sweep > 180.0 - && cw_sweep > f64::EPSILON - && cw_sweep < ccw_sweep - { - (end_angle, cw_sweep) + let center_y = if bulge > 0.0 { + mid_y + center_distance * unit_perp_y } else { - (start_angle, ccw_sweep) + mid_y - center_distance * unit_perp_y }; - - if sweep <= f64::EPSILON { - return Err("Arc sweep too small".into()); + + // 计算起始角度和结束角度 + let start_angle = (v1.y - center_y).atan2(v1.x - center_x); + let end_angle = (v2.y - center_y).atan2(v2.x - center_x); + + // 将弧度转换为度数 + let mut start_angle_deg = start_angle.to_degrees(); + let mut end_angle_deg = end_angle.to_degrees(); + + // 标准化角度到0-360度范围 + if start_angle_deg < 0.0 { + start_angle_deg += 360.0; } - + if end_angle_deg < 0.0 { + end_angle_deg += 360.0; + } + + // 计算角度跨度 + let arc_angle = included_angle.to_degrees().abs(); + + // 创建Arc对象 Ok(Arc { - x: center_x - radius, - y: center_y_qet - radius, - width: radius * 2.0, - height: radius * 2.0, - start: start_angle, - angle: sweep, - style, + x: center_x - radius, // 边界框左上角x坐标 + y: -center_y - radius, // 边界框左上角y坐标(y轴翻转) + width: radius * 2.0, // 边界框宽度 + height: radius * 2.0, // 边界框高度 + start: start_angle_deg, // 起始角度(度) + angle: arc_angle, // 圆弧角度跨度(度) + style: if lwpolyline.thickness > 0.1 { + format!("line-style:normal;line-weight:normal;filling:none;color:{}", color.display_rgb()) + } else { + format!("line-style:normal;line-weight:thin;filling:none;color:{}", color.display_rgb()) + }, antialias: false, }) } -} +} \ No newline at end of file diff --git a/src/qelmt/mod.rs b/src/qelmt/mod.rs index 662ded6..a2da2ea 100644 --- a/src/qelmt/mod.rs +++ b/src/qelmt/mod.rs @@ -955,18 +955,10 @@ impl<'a> ObjectsBuilder<'a> { } Ok(Objects::Group(decomposed_objects)) - } else if lwpolyline - .vertices - .iter() - .any(|vertex| vertex.bulge.abs() > 1e-10) - { - let mut decomposed_objects = - polygon::decompose_lwpolyline_segments_with_color(lwpolyline, color); - - if decomposed_objects.is_empty() { - let mut poly: Polygon = - Polygon::from_lwpolyline_with_color(lwpolyline, color); + } else { + let mut poly: Polygon = Polygon::from_lwpolyline_with_color(lwpolyline, color); + // 根据line_type_name更新线型样式 poly.update_line_style(&update_line_style); poly.scale(self.scale_fact.x, self.scale_fact.y); @@ -976,46 +968,6 @@ impl<'a> ObjectsBuilder<'a> { } Ok(Objects::Polygon(poly)) - } else { - for obj in &mut decomposed_objects { - match obj { - Objects::Arc(ref mut arc) => { - arc.update_line_style(&update_line_style); - if let Some(w) = lw { - arc.update_line_weight(w); - } - arc.scale(self.scale_fact.x, self.scale_fact.y); - arc.x += self.offset.x; - arc.y -= self.offset.y; - } - Objects::Line(ref mut line) => { - line.update_line_style(&update_line_style); - line.scale(self.scale_fact.x, self.scale_fact.y); - line.x1 += self.offset.x; - line.y1 -= self.offset.y; - line.x2 += self.offset.x; - line.y2 -= self.offset.y; - } - _ => {} - } - } - - Ok(Objects::Group(decomposed_objects)) - } - } else { - let mut poly: Polygon = - Polygon::from_lwpolyline_with_color(lwpolyline, color); - - // 根据line_type_name更新线型样式 - poly.update_line_style(&update_line_style); - poly.scale(self.scale_fact.x, self.scale_fact.y); - - for cord in &mut poly.coordinates { - cord.x += self.offset.x; - cord.y -= self.offset.y; - } - - Ok(Objects::Polygon(poly)) } } } @@ -1851,11 +1803,6 @@ enum TextEntity<'a> { // ACI 转换为 HexColor fn aci_to_hex_color(aci: u8) -> HexColor { - if aci == 7 { - // ACI 7 在 CAD 中根据背景切换黑/白,在 QET 中固定为黑色避免不可见 - return HexColor::rgb(0, 0, 0); - } - let (r, g, b) = aci_to_rgb(aci); HexColor::rgb(r, g, b) } diff --git a/src/qelmt/polygon.rs b/src/qelmt/polygon.rs index 859fd92..2ececcc 100644 --- a/src/qelmt/polygon.rs +++ b/src/qelmt/polygon.rs @@ -324,7 +324,6 @@ pub fn decompose_rounded_rectangle(lwpolyline: &LwPolyline) -> Vec Vec { let mut objects = Vec::new(); let vertices = &lwpolyline.vertices; - let arc_style = format!("line-style:normal;line-weight:thin;filling:none;color:{}", color.display_rgb()); for i in 0..vertices.len() { let current = &vertices[i]; @@ -332,28 +331,15 @@ pub fn decompose_rounded_rectangle_with_color(lwpolyline: &LwPolyline, color: He if current.bulge.abs() > 1e-10 { // 创建圆弧段 - if let Some(arc) = create_arc_from_bulge_with_style( - current.x, - current.y, - next.x, - next.y, - current.bulge, - &arc_style, - ) { + if let Some(arc) = create_arc_from_bulge_with_color(current.x, current.y, next.x, next.y, current.bulge, color) { objects.push(super::Objects::Arc(arc)); } } else { // 创建直线段 let style = if lwpolyline.thickness > 0.5 { - format!( - "line-style:normal;line-weight:normal;filling:none;color:{}", - color.display_rgb() - ) + format!("line-style:normal;line-weight:normal;filling:none;color:color:{}", color.display_rgb()) } else { - format!( - "line-style:normal;line-weight:thin;filling:none;color:{}", - color.display_rgb() - ) + format!("line-style:normal;line-weight:thin;filling:none;color:color:{}", color.display_rgb()) }; let line = super::Line::new( @@ -369,103 +355,117 @@ pub fn decompose_rounded_rectangle_with_color(lwpolyline: &LwPolyline, color: He objects } -/// 将包含 bulge 的 LwPolyline 拆分为圆弧与直线段 -pub fn decompose_lwpolyline_segments_with_color(lwpolyline: &LwPolyline, color: HexColor) -> Vec { - let mut objects = Vec::new(); - let vertex_count = lwpolyline.vertices.len(); - if vertex_count < 2 { - return objects; +/// 根据bulge值创建圆弧 +fn create_arc_from_bulge(start_x: f64, start_y: f64, end_x: f64, end_y: f64, bulge: f64) -> Option { + create_arc_from_bulge_with_color(start_x, start_y, end_x, end_y, bulge, HexColor::BLACK) +} + +fn create_arc_from_bulge_with_color(start_x: f64, start_y: f64, end_x: f64, end_y: f64, bulge: f64, color: HexColor) -> Option { + if bulge.abs() <= 1e-10 { + return None; } - let base_style = if lwpolyline.thickness > 0.1 { - format!("line-style:normal;line-weight:normal;filling:none;color:{}", color.display_rgb()) - } else if lwpolyline.constant_width > 1.0 { - format!("line-style:normal;line-weight:hight;filling:none;color:{}", color.display_rgb()) + // 计算弦长和中点 + let chord_length = ((end_x - start_x).powi(2) + (end_y - start_y).powi(2)).sqrt(); + let mid_x = (start_x + end_x) / 2.0; + let mid_y = (start_y + end_y) / 2.0; + + // 根据bulge值计算圆弧参数 + // bulge = tan(angle/4),其中angle是圆弧的包含角 + let included_angle = 4.0 * bulge.atan(); // 圆弧包含角(弧度) + + // 计算半径 + let radius: f64 = chord_length / (2.0 * (included_angle / 2.0).sin()); + + // 计算圆心位置 + // 弦的方向向量 + let chord_dx = end_x - start_x; + let chord_dy = end_y - start_y; + + // 弦的垂直方向(向左旋转90度) + let perp_dx = -chord_dy; + let perp_dy = chord_dx; + let perp_length: f64 = (perp_dx * perp_dx + perp_dy * perp_dy).sqrt(); + + // 标准化垂直向量 + let unit_perp_x = perp_dx / perp_length; + let unit_perp_y = perp_dy / perp_length; + + // 计算圆心到中点的距离 + let center_distance: f64 = radius * (included_angle / 2.0).cos(); + + // 根据bulge的符号确定圆心位置 + let center_x = if bulge > 0.0 { + mid_x + center_distance * unit_perp_x } else { - format!("line-style:normal;line-weight:thin;filling:none;color:{}", color.display_rgb()) + mid_x - center_distance * unit_perp_x }; - - let is_closed = (lwpolyline.flags & 1) != 0; - let segment_count = if is_closed { - vertex_count + let center_y = if bulge > 0.0 { + mid_y + center_distance * unit_perp_y } else { - vertex_count - 1 + mid_y - center_distance * unit_perp_y }; - for i in 0..segment_count { - let current = &lwpolyline.vertices[i % vertex_count]; - let next = &lwpolyline.vertices[(i + 1) % vertex_count]; + // 计算起始角度和结束角度 + let start_angle = (start_y - center_y).atan2(start_x - center_x); + let end_angle = (end_y - center_y).atan2(end_x - center_x); - if (current.x - next.x).abs() < f64::EPSILON && (current.y - next.y).abs() < f64::EPSILON { - continue; - } - - if current.bulge.abs() > 1e-10 { - match super::Arc::from_bulge_segment( - (current.x, current.y), - (next.x, next.y), - current.bulge, - base_style.clone(), - ) { - Ok(arc) => objects.push(super::Objects::Arc(arc)), - Err(_) => { - let line = super::Line::new( - current.x, - -current.y, - next.x, - -next.y, - base_style.clone(), - ); - objects.push(super::Objects::Line(line)); - } - } - } else { - let line = super::Line::new( - current.x, - -current.y, - next.x, - -next.y, - base_style.clone(), - ); - objects.push(super::Objects::Line(line)); - } + // 将弧度转换为度数 + let mut start_angle_deg: f64 = start_angle.to_degrees(); + let mut end_angle_deg: f64 = end_angle.to_degrees(); + + // 标准化角度到0-360度范围 + if start_angle_deg < 0.0 { + start_angle_deg += 360.0; } + if end_angle_deg < 0.0 { + end_angle_deg += 360.0; + } + + // 计算角度跨度 + let arc_angle: f64 = included_angle.to_degrees().abs(); + + // // 计算圆弧参数 + // let start_x = start_vertex.x; + // let start_y = -start_vertex.y; // Y轴翻转 + // let end_x = end_vertex.x; + // let end_y = -end_vertex.y; // Y轴翻转 + + // // 弦长 + // let chord_length = ((end_x - start_x).powi(2) + (end_y - start_y).powi(2)).sqrt(); + // if chord_length < 1e-10 { + // return None; + // } + + // // 根据bulge计算圆弧的角度 + // let angle = 4.0 * bulge.atan(); + // // 计算圆弧的半径 + // let radius = chord_length / (2.0 * (angle / 2.0).sin()); + + // // 计算中点 + // let mid_x = (start_x + end_x) / 2.0; + // let mid_y = (start_y + end_y) / 2.0; + + // // 计算弦角 + // let chord_angle = (end_y - start_y).atan2(end_x - start_x); + // let center_offset = radius * (angle / 2.0).cos(); + + // let center_x = mid_x - center_offset * (chord_angle + std::f64::consts::PI / 2.0).sin(); + // let center_y = mid_y + center_offset * (chord_angle + std::f64::consts::PI / 2.0).cos(); + + // // 计算起始角度和角度跨度 + // let start_angle = (start_y - center_y).atan2(start_x - center_x).to_degrees(); + // let angle_span = angle.to_degrees().abs(); - objects -} - -/// 根据bulge值创建圆弧 -fn create_arc_from_bulge(start_x: f64, start_y: f64, end_x: f64, end_y: f64, bulge: f64) -> Option { - super::Arc::from_bulge_segment( - (start_x, start_y), - (end_x, end_y), - bulge, - "line-style:normal;line-weight:thin;filling:none;color:black".to_string(), - ) - .ok() -} - -fn create_arc_from_bulge_with_color(start_x: f64, start_y: f64, end_x: f64, end_y: f64, bulge: f64, color: HexColor) -> Option { - let style = format!( - "line-style:normal;line-weight:thin;filling:none;color:{}", - color.display_rgb() - ); - create_arc_from_bulge_with_style(start_x, start_y, end_x, end_y, bulge, &style) -} - -fn create_arc_from_bulge_with_style( - start_x: f64, - start_y: f64, - end_x: f64, - end_y: f64, - bulge: f64, - style: &str, -) -> Option { - super::Arc::from_bulge_segment( - (start_x, start_y), - (end_x, end_y), - bulge, - style.to_string(), - ) - .ok() -} + let style = format!("line-style:normal;line-weight:thin;filling:none;color:{}", color.display_rgb()); + + Some(super::Arc::new( + center_x-radius, + -center_y-radius, + radius.abs() * 2.0, + radius.abs() * 2.0, + start_angle_deg, + arc_angle, + style, + )) +} \ No newline at end of file diff --git a/src/util/CT0.dxf.json b/src/util/CT0.dxf.json deleted file mode 100644 index 0f675f4..0000000 --- a/src/util/CT0.dxf.json +++ /dev/null @@ -1,42750 +0,0 @@ -{ - "header": { - "version": "R2010", - "maintenance_version": 6, - "drawing_code_page": "ANSI_1252", - "last_saved_by": "Administrator", - "required_versions": 0, - "insertion_base": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "minimum_drawing_extents": { - "x": 1e20, - "y": 1e20, - "z": 1e20 - }, - "maximum_drawing_extents": { - "x": -1e20, - "y": -1e20, - "z": -1e20 - }, - "minimum_drawing_limits": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "maximum_drawing_limits": { - "x": 420.0, - "y": 297.0, - "z": 0.0 - }, - "draw_orthogonal_lines": false, - "use_regen_mode": true, - "fill_mode_on": true, - "use_quick_text_mode": false, - "mirror_text": true, - "drag_mode": "Auto", - "line_type_scale": 1.0, - "object_snap_flags": 37, - "attribute_visibility": "Normal", - "default_text_height": 2.5, - "trace_width": 1.0, - "text_style": "宋体", - "current_layer": "0", - "current_entity_line_type": "ByLayer", - "current_entity_color": { - "raw_value": 256 - }, - "current_entity_line_type_scale": 1.0, - "retain_deleted_objects": true, - "display_silhouette_curves_in_wireframe_mode": false, - "solid_visual_style_pointer": 0, - "dimensioning_scale_factor": 1.0, - "dimensioning_arrow_size": 2.5, - "dimension_extension_line_offset": 0.625, - "dimension_line_increment": 3.75, - "dimension_distance_rounding_value": 0.0, - "dimension_line_extension": 0.0, - "dimension_extension_line_extension": 1.25, - "dimension_plus_tolerance": 0.0, - "dimension_minus_tolerance": 0.0, - "dimensioning_text_height": 2.5, - "center_mark_size": 2.5, - "dimensioning_tick_size": 0.0, - "generate_dimension_tolerances": false, - "generate_dimension_limits": false, - "dimension_text_inside_horizontal": false, - "dimension_text_outside_horizontal": false, - "suppress_first_dimension_extension_line": false, - "suppress_second_dimension_extension_line": false, - "text_above_dimension_line": true, - "dimension_unit_zero_suppression": "SuppressZeroFeetAndZeroInches", - "arrow_block_name": "", - "create_associative_dimensioning": true, - "recompute_dimensions_while_dragging": true, - "dimensioning_suffix": "", - "alternate_dimensioning_suffix": "", - "use_alternate_dimensioning": false, - "alternate_dimensioning_decimal_places": 3, - "alternate_dimensioning_scale_factor": 0.03937007874016, - "dimension_linear_measurements_scale_factor": 1.0, - "force_dimension_line_extensions_outside_if_text_is": true, - "dimension_vertical_text_position": 0.0, - "force_dimension_text_inside_extensions": false, - "suppress_outside_extension_dimension_lines": false, - "use_separate_arrow_blocks_for_dimensions": false, - "first_arrow_block_name": "", - "second_arrow_block_name": "", - "dimension_style_name": "ISO-25", - "dimension_line_color": { - "raw_value": 0 - }, - "dimension_extension_line_color": { - "raw_value": 0 - }, - "dimension_text_color": { - "raw_value": 0 - }, - "dimension_tolerance_display_scale_factor": 1.0, - "dimension_line_gap": 0.625, - "dimension_text_justification": "AboveLineCenter", - "dimension_tolerance_vertical_justification": "Top", - "dimension_tolerance_zero_suppression": "SuppressZeroFeetAndZeroInches", - "alternate_dimensioning_zero_supression": "SuppressZeroFeetAndZeroInches", - "alternate_dimensioning_tolerance_zero_supression": "SuppressZeroFeetAndZeroInches", - "dimension_text_and_arrow_placement": "TextAndArrowsOutsideLines", - "dimension_cursor_controls_text_position": false, - "dimension_unit_format": "Decimal", - "dimension_unit_tolerance_decimal_places": 2, - "dimension_tolerance_decimal_places": 2, - "alternate_dimensioning_units": "Decimal", - "alternate_dimensioning_tolerance_decimal_places": 3, - "dimension_text_style": "Standard", - "dimensioning_angle_format": "DecimalDegrees", - "angular_dimension_precision": 0, - "alternate_dimensioning_unit_rounding": 0.0, - "dimension_angle_zero_suppression": "SuppressZeroFeetAndZeroInches", - "dimension_decimal_separator_char": ",", - "dimension_text_height_scale_factor": "HorizontalStacking", - "dimension_leader_block_name": "", - "dimension_non_angular_units": "Decimal", - "dimension_line_weight": { - "raw_value": -2 - }, - "dimension_extension_line_weight": { - "raw_value": -2 - }, - "dimension_text_movement_rule": "MoveLineWithText", - "dimension_line_fixed_length": 1.0, - "dimension_line_fixed_length_on": false, - "dimension_transverse_segment_angle_in_jogged_radius": 0.7853981633974483, - "dimension_text_background_color_mode": "None", - "dxf_dimension_text_background_custom_color": { - "raw_value": 0 - }, - "dimension_arc_symbol_display_mode": "SymbolBeforeText", - "dimension_line_type": "", - "dimension_first_extension_line_type": "", - "dimension_second_extension_line_type": "", - "dimension_text_direction": "LeftToRight", - "unit_format": "Decimal", - "unit_precision": 4, - "sketch_record_increment": 1.0, - "fillet_radius": 0.0, - "angle_unit_format": "DecimalDegrees", - "angle_unit_precision": 0, - "file_name": ".", - "elevation": 0.0, - "paperspace_elevation": 0.0, - "thickness": 0.0, - "use_limits_checking": false, - "blip_mode": false, - "first_chamfer_distance": 0.0, - "second_chamfer_distance": 0.0, - "chamfer_length": 0.0, - "chamfer_angle": 0.0, - "polyline_sketch_mode": "SketchLines", - "creation_date": "2024-04-23T10:59:44+08:00", - "creation_date_universal": "2024-04-23T02:59:44Z", - "update_date": "2025-09-22T17:26:56+08:00", - "update_date_universal": "2025-09-22T09:26:56Z", - "time_in_drawing": { - "secs": 0, - "nanos": 0 - }, - "user_elapsed_timer": { - "secs": 0, - "nanos": 0 - }, - "user_timer_on": true, - "angle_zero_direction": 0.0, - "angle_direction": "CounterClockwise", - "point_display_mode": 0, - "point_display_size": 0.0, - "default_polyline_width": 0.0, - "coordinate_display": "ContinuousUpdate", - "display_spline_polygon_control": false, - "pedit_spline_curve_type": "CubicBSpline", - "line_segments_per_spline_patch": 8, - "show_attribute_entry_dialogs": true, - "prompt_for_attribute_on_insert": true, - "handles_enabled": true, - "next_available_handle": 693, - "mesh_tabulations_in_first_direction": 6, - "mesh_tabulations_in_second_direction": 6, - "pedit_smooth_surface_type": "CubicBSpline", - "pedit_smooth_m_densith": 6, - "pedit_smooth_n_densith": 6, - "ucs_definition_name": "", - "ucs_name": "", - "ucs_origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "ucs_x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "ucs_y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "ortho_ucs_reference": "", - "orthgraphic_view_type": "None", - "ucs_origin_top": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "ucs_origin_bottom": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "ucs_origin_left": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "ucs_origin_right": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "ucs_origin_front": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "ucs_origin_back": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "paperspace_ucs_definition_name": "", - "paperspace_ucs_name": "", - "paperspace_ucs_origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "paperspace_x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "paperspace_y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "paperspace_ortho_ucs_reference": "", - "paperspace_orthographic_view_type": "None", - "paperspace_ucs_origin_top": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "paperspace_ucs_origin_bottom": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "paperspace_ucs_origin_left": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "paperspace_ucs_origin_right": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "paperspace_ucs_origin_front": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "paperspace_ucs_origin_back": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "user_int1": 0, - "user_int2": 0, - "user_int3": 0, - "user_int4": 0, - "user_int5": 0, - "user_real1": 0.0, - "user_real2": 0.0, - "user_real3": 0.0, - "user_real4": 0.0, - "user_real5": 0.0, - "set_ucs_to_wcs_in_d_view_or_v_point": true, - "edge_shading": "FacesInEntityColorEdgesInBlack", - "percent_ambient_to_diffuse": 70, - "previous_release_tile_compatability": true, - "maximum_active_viewports": 64, - "paperspace_insertion_base": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "limit_checking_in_paperspace": false, - "paperspace_minimum_drawing_extents": { - "x": 1e20, - "y": 1e20, - "z": 1e20 - }, - "paperspace_maximum_drawing_extents": { - "x": -1e20, - "y": -1e20, - "z": -1e20 - }, - "paperspace_minimum_drawing_limits": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "paperspace_maximum_drawing_limits": { - "x": 420.0, - "y": 297.0, - "z": 0.0 - }, - "display_fractions_in_input": false, - "retain_x_ref_dependent_visibility_settings": true, - "is_polyline_continuous_around_verticies": false, - "scale_line_types_in_paperspace": true, - "spacial_index_max_depth": 3020, - "pick_style": "Group", - "current_multiline_style": "Standard", - "current_multiline_justification": "Top", - "current_multiline_scale": 20.0, - "save_proxy_graphics": true, - "drawing_units": "Metric", - "new_object_line_weight": { - "raw_value": -1 - }, - "end_cap_setting": "None", - "lineweight_joint_setting": "None", - "display_linewieght_in_model_and_layout_tab": false, - "default_drawing_units": "Millimeters", - "hyperlink_base": "", - "stylesheet": "", - "can_use_in_place_reference_editing": true, - "new_object_plot_style_handle": 0, - "new_object_plot_style": "ByLayer", - "uses_color_dependent_plot_style_tables": true, - "fingerprint_guid": "44721acc-e1da-4939-b265-a4de1de9a579", - "version_guid": "faeb1c32-e019-11d5-929b-00c0df256ec4", - "use_acad2000_symbol_table_naming": true, - "viewport_view_scale_factor": 0.0, - "ole_startup": false, - "object_sorting_methods_flags": 127, - "layer_and_spatial_index_save_mode": "None", - "hide_text_objects_when_producint_hidden_view": true, - "is_x_ref_clipping_boundary_visible": "DisplayedNotPlotted", - "halo_gap_percent": 0.0, - "obscured_line_color": { - "raw_value": 257 - }, - "obscured_line_type_style": "Off", - "display_intersection_polylines": false, - "intersection_polyline_color": { - "raw_value": 257 - }, - "dimension_object_associativity": "AssociativeObjects", - "project_name": "", - "use_camera_display": false, - "lens_length": 50.0, - "camera_height": 0.0, - "steps_per_second_in_walk_or_fly_mode": 2.0, - "step_size_in_walk_or_fly_mode": 6.0, - "dwf_3d_precision": "Deviation_0_5", - "last_poly_solid_width": 5.0, - "last_poly_solid_height": 80.0, - "loft_operation_first_draft_angle": 1.570796326794897, - "loft_operation_second_draft_angle": 1.570796326794897, - "loft_operation_first_magnitude": 0.0, - "loft_operation_second_magnitude": 0.0, - "loft_flags": 7, - "lofted_object_normal_mode": "SmoothFit", - "latitude": 37.795, - "longitude": -122.394, - "angle_between_y_axis_and_north": 0.0, - "time_zone": "PacificTime_US_Canada_SanFrancisco_Vancouver", - "use_light_glyph_display": true, - "use_tile_mode_light_sync": true, - "current_material_handle": 68, - "new_solids_contain_history": false, - "solid_history_mode": "DoesNotOverride", - "dwf_underlay_frame_mode": "DisplayNoPlot", - "dgn_underlay_frame_mode": "DisplayNoPlot", - "use_real_world_scale": true, - "interference_object_color": { - "raw_value": 256 - }, - "interference_object_visual_style_pointer": 0, - "interference_view_port_visual_style_pointer": 0, - "shadow_mode": "CastsAndReceivesShadows", - "shadow_plane_z_offset": 0.0, - "axis_on": false, - "axis_tick_spacing": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "fast_zoom": true, - "grid_on": false, - "grid_spacing": { - "x": 1.0, - "y": 1.0, - "z": 0.0 - }, - "snap_rotation_angle": 0.0, - "snap_base_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "snap_isometric_plane": "Left", - "snap_on": false, - "snap_style": "Standard", - "snap_spacing": { - "x": 1.0, - "y": 1.0, - "z": 0.0 - }, - "view_center": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "view_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "view_height": 1.0 - }, - "classes": [ - { - "record_name": "ACDBDICTIONARYWDFLT", - "class_name": "AcDbDictionaryWithDefault", - "application_name": "ObjectDBX Classes", - "version_number": 0, - "proxy_capability_flags": 0, - "instance_count": 3, - "was_class_loaded_with_file": true, - "is_entity": false - }, - { - "record_name": "VISUALSTYLE", - "class_name": "AcDbVisualStyle", - "application_name": "ObjectDBX Classes", - "version_number": 0, - "proxy_capability_flags": 4095, - "instance_count": 3, - "was_class_loaded_with_file": true, - "is_entity": false - }, - { - "record_name": "MATERIAL", - "class_name": "AcDbMaterial", - "application_name": "ObjectDBX Classes", - "version_number": 0, - "proxy_capability_flags": 1153, - "instance_count": 3, - "was_class_loaded_with_file": true, - "is_entity": false - }, - { - "record_name": "SCALE", - "class_name": "AcDbScale", - "application_name": "ObjectDBX Classes", - "version_number": 0, - "proxy_capability_flags": 1153, - "instance_count": 3, - "was_class_loaded_with_file": true, - "is_entity": false - }, - { - "record_name": "TABLESTYLE", - "class_name": "AcDbTableStyle", - "application_name": "ObjectDBX Classes", - "version_number": 0, - "proxy_capability_flags": 4095, - "instance_count": 3, - "was_class_loaded_with_file": true, - "is_entity": false - }, - { - "record_name": "MLEADERSTYLE", - "class_name": "AcDbMLeaderStyle", - "application_name": "ACDB_MLEADERSTYLE_CLASS", - "version_number": 0, - "proxy_capability_flags": 4095, - "instance_count": 3, - "was_class_loaded_with_file": true, - "is_entity": false - }, - { - "record_name": "SUN", - "class_name": "AcDbSun", - "application_name": "SCENEOE", - "version_number": 0, - "proxy_capability_flags": 1153, - "instance_count": 3, - "was_class_loaded_with_file": true, - "is_entity": false - }, - { - "record_name": "SORTENTSTABLE", - "class_name": "AcDbSortentsTable", - "application_name": "ObjectDBX Classes", - "version_number": 0, - "proxy_capability_flags": 0, - "instance_count": 3, - "was_class_loaded_with_file": true, - "is_entity": false - }, - { - "record_name": "DICTIONARYVAR", - "class_name": "AcDbDictionaryVar", - "application_name": "ObjectDBX Classes", - "version_number": 0, - "proxy_capability_flags": 0, - "instance_count": 3, - "was_class_loaded_with_file": true, - "is_entity": false - }, - { - "record_name": "CELLSTYLEMAP", - "class_name": "AcDbCellStyleMap", - "application_name": "ObjectDBX Classes", - "version_number": 0, - "proxy_capability_flags": 1152, - "instance_count": 3, - "was_class_loaded_with_file": true, - "is_entity": false - } - ], - "__app_ids": [ - { - "name": "ACAD", - "handle": 18, - "__owner_handle": 9, - "extension_data_groups": [], - "x_data": [] - }, - { - "name": "EW_APP_NAME", - "handle": 390, - "__owner_handle": 9, - "extension_data_groups": [], - "x_data": [] - }, - { - "name": "LD_SYMB2_SPECIAL", - "handle": 353, - "__owner_handle": 9, - "extension_data_groups": [], - "x_data": [] - }, - { - "name": "LD_SYMB2_MAIN", - "handle": 354, - "__owner_handle": 9, - "extension_data_groups": [], - "x_data": [] - }, - { - "name": "LD_SYMB2_LABEL", - "handle": 355, - "__owner_handle": 9, - "extension_data_groups": [], - "x_data": [] - }, - { - "name": "LD_SYMB2_TERM_TEXT_1", - "handle": 356, - "__owner_handle": 9, - "extension_data_groups": [], - "x_data": [] - }, - { - "name": "LD_SYMB2_TERM_TEXT_2", - "handle": 357, - "__owner_handle": 9, - "extension_data_groups": [], - "x_data": [] - }, - { - "name": "LD_BORDER", - "handle": 358, - "__owner_handle": 9, - "extension_data_groups": [], - "x_data": [] - }, - { - "name": "LD_SYMB1LIB_TERMPOINT", - "handle": 347, - "__owner_handle": 9, - "extension_data_groups": [], - "x_data": [] - }, - { - "name": "LD_DIRECTION_SYMBLIB", - "handle": 348, - "__owner_handle": 9, - "extension_data_groups": [], - "x_data": [] - }, - { - "name": "LD_SYMB_TERMAUTODIM", - "handle": 349, - "__owner_handle": 9, - "extension_data_groups": [], - "x_data": [] - }, - { - "name": "LD_SYMB_TERMHIDE", - "handle": 350, - "__owner_handle": 9, - "extension_data_groups": [], - "x_data": [] - }, - { - "name": "AttributeDefinitionOverruleAppName", - "handle": 622, - "__owner_handle": 9, - "extension_data_groups": [], - "x_data": [] - }, - { - "name": "elecworks", - "handle": 623, - "__owner_handle": 9, - "extension_data_groups": [], - "x_data": [] - } - ], - "__block_records": [ - { - "name": "*Model_Space", - "handle": 31, - "__owner_handle": 1, - "extension_data_groups": [], - "x_data": [], - "__layout_handle": 34, - "insertion_units": "Unitless", - "explodability": true, - "scalability": false, - "__bitmap_preview_data": [] - }, - { - "name": "*Paper_Space", - "handle": 27, - "__owner_handle": 1, - "extension_data_groups": [], - "x_data": [], - "__layout_handle": 30, - "insertion_units": "Unitless", - "explodability": true, - "scalability": false, - "__bitmap_preview_data": [] - }, - { - "name": "*Paper_Space0", - "handle": 35, - "__owner_handle": 1, - "extension_data_groups": [], - "x_data": [], - "__layout_handle": 38, - "insertion_units": "Unitless", - "explodability": true, - "scalability": false, - "__bitmap_preview_data": [] - }, - { - "name": "ARROWUNKNOWN", - "handle": 151, - "__owner_handle": 1, - "extension_data_groups": [ - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "98" - }, - "offset": 6239 - } - } - ] - }, - { - "application_name": "BLKREFS", - "items": [ - { - "CodePair": { - "code": 331, - "value": { - "Str": "18E" - }, - "offset": 6255 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "190" - }, - "offset": 6257 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "192" - }, - "offset": 6259 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "194" - }, - "offset": 6261 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "196" - }, - "offset": 6263 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "198" - }, - "offset": 6265 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "19A" - }, - "offset": 6267 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "19C" - }, - "offset": 6269 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "19E" - }, - "offset": 6271 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1A0" - }, - "offset": 6273 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1A2" - }, - "offset": 6275 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1A4" - }, - "offset": 6277 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1A7" - }, - "offset": 6279 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1A9" - }, - "offset": 6281 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1AB" - }, - "offset": 6283 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1AD" - }, - "offset": 6285 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1AF" - }, - "offset": 6287 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1B1" - }, - "offset": 6289 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1B3" - }, - "offset": 6291 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1B5" - }, - "offset": 6293 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1B7" - }, - "offset": 6295 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1B9" - }, - "offset": 6297 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1BB" - }, - "offset": 6299 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1BD" - }, - "offset": 6301 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1BF" - }, - "offset": 6303 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1C1" - }, - "offset": 6305 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1C3" - }, - "offset": 6307 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1C5" - }, - "offset": 6309 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1C7" - }, - "offset": 6311 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1C9" - }, - "offset": 6313 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1CB" - }, - "offset": 6315 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1CD" - }, - "offset": 6317 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1D0" - }, - "offset": 6319 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1D2" - }, - "offset": 6321 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1D4" - }, - "offset": 6323 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1D6" - }, - "offset": 6325 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1D8" - }, - "offset": 6327 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1DA" - }, - "offset": 6329 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1DC" - }, - "offset": 6331 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1DE" - }, - "offset": 6333 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1E0" - }, - "offset": 6335 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1E2" - }, - "offset": 6337 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1E4" - }, - "offset": 6339 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1E6" - }, - "offset": 6341 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1E8" - }, - "offset": 6343 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1EA" - }, - "offset": 6345 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1ED" - }, - "offset": 6347 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1EF" - }, - "offset": 6349 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1F1" - }, - "offset": 6351 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1F3" - }, - "offset": 6353 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1F5" - }, - "offset": 6355 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1F7" - }, - "offset": 6357 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1F9" - }, - "offset": 6359 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1FB" - }, - "offset": 6361 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1FD" - }, - "offset": 6363 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "1FF" - }, - "offset": 6365 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "201" - }, - "offset": 6367 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "203" - }, - "offset": 6369 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "206" - }, - "offset": 6371 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "208" - }, - "offset": 6373 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "20A" - }, - "offset": 6375 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "20C" - }, - "offset": 6377 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "20E" - }, - "offset": 6379 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "210" - }, - "offset": 6381 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "212" - }, - "offset": 6383 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "214" - }, - "offset": 6385 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "216" - }, - "offset": 6387 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "218" - }, - "offset": 6389 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "268" - }, - "offset": 6391 - } - }, - { - "CodePair": { - "code": 331, - "value": { - "Str": "26B" - }, - "offset": 6393 - } - } - ] - } - ], - "x_data": [], - "__layout_handle": 0, - "insertion_units": "Unitless", - "explodability": true, - "scalability": false, - "__bitmap_preview_data": [] - }, - { - "name": "SYMB2_M_PWF26", - "handle": 337, - "__owner_handle": 1, - "extension_data_groups": [ - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "152" - }, - "offset": 6409 - } - } - ] - }, - { - "application_name": "BLKREFS", - "items": [ - { - "CodePair": { - "code": 331, - "value": { - "Str": "205" - }, - "offset": 6425 - } - } - ] - } - ], - "x_data": [], - "__layout_handle": 0, - "insertion_units": "Unitless", - "explodability": true, - "scalability": false, - "__bitmap_preview_data": [] - }, - { - "name": "*Model_Space", - "handle": 678, - "__owner_handle": 0, - "extension_data_groups": [], - "x_data": [], - "__layout_handle": 0, - "insertion_units": "Unitless", - "explodability": true, - "scalability": true, - "__bitmap_preview_data": [] - }, - { - "name": "*Paper_Space", - "handle": 679, - "__owner_handle": 0, - "extension_data_groups": [], - "x_data": [], - "__layout_handle": 0, - "insertion_units": "Unitless", - "explodability": true, - "scalability": true, - "__bitmap_preview_data": [] - }, - { - "name": "*Paper_Space0", - "handle": 680, - "__owner_handle": 0, - "extension_data_groups": [], - "x_data": [], - "__layout_handle": 0, - "insertion_units": "Unitless", - "explodability": true, - "scalability": true, - "__bitmap_preview_data": [] - }, - { - "name": "ARROWUNKNOWN", - "handle": 682, - "__owner_handle": 0, - "extension_data_groups": [], - "x_data": [], - "__layout_handle": 0, - "insertion_units": "Unitless", - "explodability": true, - "scalability": true, - "__bitmap_preview_data": [] - }, - { - "name": "SYMB2_M_PWF26", - "handle": 686, - "__owner_handle": 0, - "extension_data_groups": [], - "x_data": [], - "__layout_handle": 0, - "insertion_units": "Unitless", - "explodability": true, - "scalability": true, - "__bitmap_preview_data": [] - } - ], - "__dim_styles": [ - { - "name": "ISO-25", - "handle": 677, - "__owner_handle": 10, - "extension_data_groups": [], - "x_data": [], - "dimensioning_suffix": "", - "alternate_dimensioning_suffix": "", - "first_arrow_block_name": "", - "second_arrow_block_name": "", - "dimensioning_scale_factor": 1.0, - "dimensioning_arrow_size": 2.5, - "dimension_extension_line_offset": 0.625, - "dimension_line_increment": 3.75, - "dimension_extension_line_extension": 1.25, - "dimension_distance_rounding_value": 0.0, - "dimension_line_extension": 0.0, - "dimension_plus_tolerance": 0.0, - "dimension_minus_tolerance": 0.0, - "generate_dimension_tolerances": false, - "generate_dimension_limits": false, - "dimension_text_inside_horizontal": false, - "dimension_text_outside_horizontal": false, - "suppress_first_dimension_extension_line": false, - "suppress_second_dimension_extension_line": false, - "text_above_dimension_line": true, - "dimension_unit_zero_suppression": "SuppressZeroFeetAndZeroInches", - "dimension_angle_zero_suppression": "SuppressZeroFeetAndZeroInches", - "dimensioning_text_height": 2.5, - "center_mark_size": 2.5, - "dimensioning_tick_size": 0.0, - "alternate_dimensioning_scale_factor": 0.03937007874016, - "dimension_linear_measurement_scale_factor": 1.0, - "dimension_vertical_text_position": 0.0, - "dimension_tolerance_displace_scale_factor": 1.0, - "dimension_line_gap": 0.625, - "alternate_dimensioning_unit_rounding": 0.0, - "use_alternate_dimensioning": false, - "alternate_dimensioning_decimal_places": 3, - "force_dimension_line_extensions_outside_if_text_exists": true, - "use_separate_arrow_blocks_for_dimensions": false, - "force_dimension_text_inside_extensions": false, - "suppress_outside_extension_dimension_lines": false, - "dimension_line_color": { - "raw_value": 0 - }, - "dimension_extension_line_color": { - "raw_value": 0 - }, - "dimension_text_color": { - "raw_value": 0 - }, - "angular_dimension_precision": 12, - "dimension_unit_format": "Scientific", - "dimension_unit_tolerance_decimal_places": 2, - "dimension_tolerace_decimal_places": 2, - "alternate_dimensioning_units": "Scientific", - "alternate_dimensioning_tolerance_decimal_places": 3, - "dimensioning_angle_format": "DecimalDegrees", - "dimension_precision": 12, - "dimension_non_angular_units": "Scientific", - "dimension_decilam_separator_char": ",", - "dimension_text_movement_rule": "MoveLineWithText", - "dimension_text_justification": "AboveLineCenter", - "dimension_tolerance_vertical_justification": "Top", - "dimension_tolerance_zero_suppression": "SuppressZeroFeetAndZeroInches", - "alternate_dimensioning_zero_suppression": "SuppressZeroFeetAndZeroInches", - "alternate_dimensioning_tolerance_zero_suppression": "SuppressZeroFeetAndZeroInches", - "dimension_text_and_arrow_placement": "TextAndArrowsOutsideLines", - "dimension_cursor_controls_text_position": true, - "dimension_text_style": "11", - "dimension_leader_block_name": "", - "arrow_block_name": "", - "dimension_line_weight": { - "raw_value": 0 - }, - "dimension_extension_line_weight": { - "raw_value": 0 - } - } - ], - "__layers": [ - { - "name": "0", - "handle": 16, - "__owner_handle": 2, - "extension_data_groups": [], - "x_data": [], - "color": { - "raw_value": 7 - }, - "line_type_name": "Continuous", - "is_layer_plotted": true, - "line_weight": { - "raw_value": -3 - }, - "__plot_style_handle": 15, - "__material_handle": 70, - "is_layer_on": true - }, - { - "name": "Defpoints", - "handle": 140, - "__owner_handle": 2, - "extension_data_groups": [], - "x_data": [], - "color": { - "raw_value": 7 - }, - "line_type_name": "Continuous", - "is_layer_plotted": false, - "line_weight": { - "raw_value": -3 - }, - "__plot_style_handle": 15, - "__material_handle": 70, - "is_layer_on": true - }, - { - "name": "ORIENT", - "handle": 624, - "__owner_handle": 2, - "extension_data_groups": [], - "x_data": [], - "color": { - "raw_value": 1 - }, - "line_type_name": "Continuous", - "is_layer_plotted": true, - "line_weight": { - "raw_value": -3 - }, - "__plot_style_handle": 15, - "__material_handle": 70, - "is_layer_on": false - } - ], - "__line_types": [ - { - "name": "ByBlock", - "handle": 20, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "", - "alignment_code": 65, - "element_count": 0, - "total_pattern_length": 0.0, - "dash_dot_space_lengths": [], - "complex_line_type_element_types": [], - "shape_numbers": [], - "__styles_handle": [], - "scale_values": [], - "rotation_angles": [], - "x_offsets": [], - "y_offsets": [], - "text_strings": [] - }, - { - "name": "ByLayer", - "handle": 21, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "", - "alignment_code": 65, - "element_count": 0, - "total_pattern_length": 0.0, - "dash_dot_space_lengths": [], - "complex_line_type_element_types": [], - "shape_numbers": [], - "__styles_handle": [], - "scale_values": [], - "rotation_angles": [], - "x_offsets": [], - "y_offsets": [], - "text_strings": [] - }, - { - "name": "Continuous", - "handle": 22, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "Solid line", - "alignment_code": 65, - "element_count": 0, - "total_pattern_length": 0.0, - "dash_dot_space_lengths": [], - "complex_line_type_element_types": [], - "shape_numbers": [], - "__styles_handle": [], - "scale_values": [], - "rotation_angles": [], - "x_offsets": [], - "y_offsets": [], - "text_strings": [] - }, - { - "name": "BORDURE", - "handle": 94, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "边框 __ __ . __ __ . __ __ . __ __ . __ __ .", - "alignment_code": 65, - "element_count": 6, - "total_pattern_length": 1.75, - "dash_dot_space_lengths": [ - 0.5, - -0.25, - 0.5, - -0.25, - 0.0, - -0.25 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "BORDURE2", - "handle": 95, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "边框 (x.5) __.__.__.__.__.__.__.__.__.__.__.", - "alignment_code": 65, - "element_count": 6, - "total_pattern_length": 0.875, - "dash_dot_space_lengths": [ - 0.25, - -0.125, - 0.25, - -0.125, - 0.0, - -0.125 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "BORDUREx2", - "handle": 96, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "边框 (x2) ____ ____ . ____ ____ . ___", - "alignment_code": 65, - "element_count": 6, - "total_pattern_length": 3.5, - "dash_dot_space_lengths": [ - 1.0, - -0.5, - 1.0, - -0.5, - 0.0, - -0.5 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "AXES", - "handle": 97, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "中心线 ____ _ ____ _ ____ _ ____ _ ____ _ ____", - "alignment_code": 65, - "element_count": 4, - "total_pattern_length": 2.0, - "dash_dot_space_lengths": [ - 1.25, - -0.25, - 0.25, - -0.25 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "AXES2", - "handle": 98, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "中心线 (x.5) ___ _ ___ _ ___ _ ___ _ ___ _ ___", - "alignment_code": 65, - "element_count": 4, - "total_pattern_length": 1.125, - "dash_dot_space_lengths": [ - 0.75, - -0.125, - 0.125, - -0.125 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "AXESx2", - "handle": 99, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "中心线 (x2) ________ __ ________ __ _____", - "alignment_code": 65, - "element_count": 4, - "total_pattern_length": 4.0, - "dash_dot_space_lengths": [ - 2.5, - -0.5, - 0.5, - -0.5 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "TIRETPT", - "handle": 100, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "点划线 __ . __ . __ . __ . __ . __ . __ . __", - "alignment_code": 65, - "element_count": 4, - "total_pattern_length": 1.0, - "dash_dot_space_lengths": [ - 0.5, - -0.25, - 0.0, - -0.25 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "TIRETPT2", - "handle": 101, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "点划线 (x.5) _._._._._._._._._._._._._._._.", - "alignment_code": 65, - "element_count": 4, - "total_pattern_length": 0.5, - "dash_dot_space_lengths": [ - 0.25, - -0.125, - 0.0, - -0.125 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "TIRETPTx2", - "handle": 102, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "点划线 (x2) ____ . ____ . ____ . ___", - "alignment_code": 65, - "element_count": 4, - "total_pattern_length": 2.0, - "dash_dot_space_lengths": [ - 1.0, - -0.5, - 0.0, - -0.5 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "INTERROMPU", - "handle": 103, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "划线 __ __ __ __ __ __ __ __ __ __ __ __ __ _", - "alignment_code": 65, - "element_count": 2, - "total_pattern_length": 0.75, - "dash_dot_space_lengths": [ - 0.5, - -0.25 - ], - "complex_line_type_element_types": [ - 4, - 4 - ], - "shape_numbers": [ - 0, - 0 - ], - "__styles_handle": [ - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "INTERROMPU2", - "handle": 104, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "划线 (x.5) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _", - "alignment_code": 65, - "element_count": 2, - "total_pattern_length": 0.375, - "dash_dot_space_lengths": [ - 0.25, - -0.125 - ], - "complex_line_type_element_types": [ - 4, - 4 - ], - "shape_numbers": [ - 0, - 0 - ], - "__styles_handle": [ - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "INTERROMPUx2", - "handle": 105, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "划线 (x2) ____ ____ ____ ____ ____ ___", - "alignment_code": 65, - "element_count": 2, - "total_pattern_length": 1.5, - "dash_dot_space_lengths": [ - 1.0, - -0.5 - ], - "complex_line_type_element_types": [ - 4, - 4 - ], - "shape_numbers": [ - 0, - 0 - ], - "__styles_handle": [ - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "DIVISE", - "handle": 106, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "分割线 ____ . . ____ . . ____ . . ____ . . ____", - "alignment_code": 65, - "element_count": 6, - "total_pattern_length": 1.25, - "dash_dot_space_lengths": [ - 0.5, - -0.25, - 0.0, - -0.25, - 0.0, - -0.25 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "DIVISE2", - "handle": 107, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "分割线 (x.5) __..__..__..__..__..__..__..__.._", - "alignment_code": 65, - "element_count": 6, - "total_pattern_length": 0.625, - "dash_dot_space_lengths": [ - 0.25, - -0.125, - 0.0, - -0.125, - 0.0, - -0.125 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "DIVISEx2", - "handle": 108, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "分割线 (x2) ________ . . ________ . . _", - "alignment_code": 65, - "element_count": 6, - "total_pattern_length": 2.5, - "dash_dot_space_lengths": [ - 1.0, - -0.5, - 0.0, - -0.5, - 0.0, - -0.5 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "POINTILLE", - "handle": 109, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "点线 . . . . . . . . . . . . . . . . . . . . . . . .", - "alignment_code": 65, - "element_count": 2, - "total_pattern_length": 0.25, - "dash_dot_space_lengths": [ - 0.0, - -0.25 - ], - "complex_line_type_element_types": [ - 4, - 4 - ], - "shape_numbers": [ - 0, - 0 - ], - "__styles_handle": [ - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "POINTILLE2", - "handle": 110, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "点线 (x.5) ........................................", - "alignment_code": 65, - "element_count": 2, - "total_pattern_length": 0.125, - "dash_dot_space_lengths": [ - 0.0, - -0.125 - ], - "complex_line_type_element_types": [ - 4, - 4 - ], - "shape_numbers": [ - 0, - 0 - ], - "__styles_handle": [ - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "POINTILLEx2", - "handle": 111, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "点线 (x2) . . . . . . . . . . . . . .", - "alignment_code": 65, - "element_count": 2, - "total_pattern_length": 0.5, - "dash_dot_space_lengths": [ - 0.0, - -0.5 - ], - "complex_line_type_element_types": [ - 4, - 4 - ], - "shape_numbers": [ - 0, - 0 - ], - "__styles_handle": [ - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "CACHE", - "handle": 112, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "隐藏线 __ __ __ __ __ __ __ __ __ __ __ __ __ __", - "alignment_code": 65, - "element_count": 2, - "total_pattern_length": 0.375, - "dash_dot_space_lengths": [ - 0.25, - -0.125 - ], - "complex_line_type_element_types": [ - 4, - 4 - ], - "shape_numbers": [ - 0, - 0 - ], - "__styles_handle": [ - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "CACHE2", - "handle": 113, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "隐藏线 (x.5) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _", - "alignment_code": 65, - "element_count": 2, - "total_pattern_length": 0.1875, - "dash_dot_space_lengths": [ - 0.125, - -0.0625 - ], - "complex_line_type_element_types": [ - 4, - 4 - ], - "shape_numbers": [ - 0, - 0 - ], - "__styles_handle": [ - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "CACHEx2", - "handle": 114, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "隐藏线 (x2) ____ ____ ____ ____ ____ ____ ____ ", - "alignment_code": 65, - "element_count": 2, - "total_pattern_length": 0.75, - "dash_dot_space_lengths": [ - 0.5, - -0.25 - ], - "complex_line_type_element_types": [ - 4, - 4 - ], - "shape_numbers": [ - 0, - 0 - ], - "__styles_handle": [ - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "FANTOME", - "handle": 115, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "幻影线 ______ __ __ ______ __ __ ______ ", - "alignment_code": 65, - "element_count": 6, - "total_pattern_length": 2.5, - "dash_dot_space_lengths": [ - 1.25, - -0.25, - 0.25, - -0.25, - 0.25, - -0.25 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "FANTOME2", - "handle": 116, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "幻影线 (x.5) ___ _ _ ___ _ _ ___ _ _ ___ _ _", - "alignment_code": 65, - "element_count": 6, - "total_pattern_length": 1.25, - "dash_dot_space_lengths": [ - 0.625, - -0.125, - 0.125, - -0.125, - 0.125, - -0.125 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "FANTOMEx2", - "handle": 117, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "幻影线 (x2) ____________ ____ ____ _", - "alignment_code": 65, - "element_count": 6, - "total_pattern_length": 5.0, - "dash_dot_space_lengths": [ - 2.5, - -0.5, - 0.5, - -0.5, - 0.5, - -0.5 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "TRACECAD_ISO02W100", - "handle": 118, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "ISO 划线 __ __ __ __ __ __ __ __ __ __ __ __ __", - "alignment_code": 65, - "element_count": 2, - "total_pattern_length": 15.0, - "dash_dot_space_lengths": [ - 12.0, - -3.0 - ], - "complex_line_type_element_types": [ - 4, - 4 - ], - "shape_numbers": [ - 0, - 0 - ], - "__styles_handle": [ - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "TRACECAD_ISO03W100", - "handle": 119, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "ISO 划线空格 __ __ __ __ __ __", - "alignment_code": 65, - "element_count": 2, - "total_pattern_length": 30.0, - "dash_dot_space_lengths": [ - 12.0, - -18.0 - ], - "complex_line_type_element_types": [ - 4, - 4 - ], - "shape_numbers": [ - 0, - 0 - ], - "__styles_handle": [ - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "TRACECAD_ISO04W100", - "handle": 120, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "ISO 长点划线 ____ . ____ . ____ . ____ . _", - "alignment_code": 65, - "element_count": 4, - "total_pattern_length": 30.0, - "dash_dot_space_lengths": [ - 24.0, - -3.0, - 0.0, - -3.0 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "TRACECAD_ISO05W100", - "handle": 121, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "ISO 长双点划线 ____ .. ____ .. ____ . ", - "alignment_code": 65, - "element_count": 6, - "total_pattern_length": 33.0, - "dash_dot_space_lengths": [ - 24.0, - -3.0, - 0.0, - -3.0, - 0.0, - -3.0 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "TRACECAD_ISO06W100", - "handle": 122, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "ISO 长三点划线 ____ ... ____ ... ____", - "alignment_code": 65, - "element_count": 8, - "total_pattern_length": 36.0, - "dash_dot_space_lengths": [ - 24.0, - -3.0, - 0.0, - -3.0, - 0.0, - -3.0, - 0.0, - -3.0 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "TRACECAD_ISO07W100", - "handle": 123, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "ISO 点线 . . . . . . . . . . . . . . . . . . . . ", - "alignment_code": 65, - "element_count": 2, - "total_pattern_length": 3.0, - "dash_dot_space_lengths": [ - 0.0, - -3.0 - ], - "complex_line_type_element_types": [ - 4, - 4 - ], - "shape_numbers": [ - 0, - 0 - ], - "__styles_handle": [ - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "TRACECAD_ISO08W100", - "handle": 124, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "ISO 长划线短划线 ____ __ ____ __ ____ _", - "alignment_code": 65, - "element_count": 4, - "total_pattern_length": 36.0, - "dash_dot_space_lengths": [ - 24.0, - -3.0, - 6.0, - -3.0 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "TRACECAD_ISO09W100", - "handle": 125, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "ISO 长划线双短划线 ____ __ __ ____", - "alignment_code": 65, - "element_count": 6, - "total_pattern_length": 45.0, - "dash_dot_space_lengths": [ - 24.0, - -3.0, - 6.0, - -3.0, - 6.0, - -3.0 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "TRACECAD_ISO10W100", - "handle": 126, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "ISO 点划线 __ . __ . __ . __ . __ . __ . __ . ", - "alignment_code": 65, - "element_count": 4, - "total_pattern_length": 18.0, - "dash_dot_space_lengths": [ - 12.0, - -3.0, - 0.0, - -3.0 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "TRACECAD_ISO11W100", - "handle": 127, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "ISO 点双划线 __ __ . __ __ . __ __ . __ _", - "alignment_code": 65, - "element_count": 6, - "total_pattern_length": 33.0, - "dash_dot_space_lengths": [ - 12.0, - -3.0, - 12.0, - -3.0, - 0.0, - -3.0 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "TRACECAD_ISO12W100", - "handle": 128, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "ISO 双点划线 __ . . __ . . __ . . __ . . ", - "alignment_code": 65, - "element_count": 6, - "total_pattern_length": 21.0, - "dash_dot_space_lengths": [ - 12.0, - -3.0, - 0.0, - -3.0, - 0.0, - -3.0 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "TRACECAD_ISO13W100", - "handle": 129, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "ISO 双点双划线 __ __ . . __ __ . . _", - "alignment_code": 65, - "element_count": 8, - "total_pattern_length": 36.0, - "dash_dot_space_lengths": [ - 12.0, - -3.0, - 12.0, - -3.0, - 0.0, - -3.0, - 0.0, - -3.0 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "TRACECAD_ISO14W100", - "handle": 130, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "ISO 三点划线 __ . . . __ . . . __ . . . _", - "alignment_code": 65, - "element_count": 8, - "total_pattern_length": 24.0, - "dash_dot_space_lengths": [ - 12.0, - -3.0, - 0.0, - -3.0, - 0.0, - -3.0, - 0.0, - -3.0 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "TRACECAD_ISO15W100", - "handle": 131, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "ISO 三点双划线 __ __ . . . __ __ . .", - "alignment_code": 65, - "element_count": 10, - "total_pattern_length": 39.0, - "dash_dot_space_lengths": [ - 12.0, - -3.0, - 12.0, - -3.0, - 0.0, - -3.0, - 0.0, - -3.0, - 0.0, - -3.0 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "LIMITE1", - "handle": 133, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "圆形围栏线 ----0-----0----0-----0----0-----0--", - "alignment_code": 65, - "element_count": 4, - "total_pattern_length": 1.45, - "dash_dot_space_lengths": [ - 0.25, - -0.1, - -0.1, - 1.0 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 133, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.1, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - -0.1, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "LIMITE2", - "handle": 134, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "方形围栏线 ----[]-----[]----[]-----[]----[]---", - "alignment_code": 65, - "element_count": 4, - "total_pattern_length": 1.45, - "dash_dot_space_lengths": [ - 0.25, - -0.1, - -0.1, - 1.0 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 132, - 0, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.1, - 0.0, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - -0.1, - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "RAILS", - "handle": 135, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "轨迹 -|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-", - "alignment_code": 65, - "element_count": 2, - "total_pattern_length": 0.3, - "dash_dot_space_lengths": [ - 0.15, - 0.15 - ], - "complex_line_type_element_types": [ - 4, - 4 - ], - "shape_numbers": [ - 130, - 0 - ], - "__styles_handle": [ - 0, - 0 - ], - "scale_values": [ - 0.25, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "ISOLATION", - "handle": 136, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "分隔线 SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS", - "alignment_code": 65, - "element_count": 4, - "total_pattern_length": 0.4001, - "dash_dot_space_lengths": [ - 0.0001, - -0.1, - -0.2, - -0.1 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 134, - 134, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.1, - 0.1, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 180.0, - 0.0 - ], - "x_offsets": [ - 0.0, - -0.1, - 0.1, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "EAU_CHAUDE", - "handle": 137, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "热水供应管道 ---- HW ---- HW ---- HW ----", - "alignment_code": 65, - "element_count": 3, - "total_pattern_length": 0.8999999999999999, - "dash_dot_space_lengths": [ - 0.5, - -0.2, - -0.2 - ], - "complex_line_type_element_types": [ - 4, - 2, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 17, - 0 - ], - "scale_values": [ - 0.0, - 0.1, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - -0.1, - 0.0 - ], - "y_offsets": [ - 0.0, - -0.05, - 0.0 - ], - "text_strings": [ - "HW" - ] - }, - { - "name": "GAZ", - "handle": 138, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "输气管道 ----GAS----GAS----GAS----GAS----GAS----GAS--", - "alignment_code": 65, - "element_count": 3, - "total_pattern_length": 0.95, - "dash_dot_space_lengths": [ - 0.5, - -0.2, - -0.25 - ], - "complex_line_type_element_types": [ - 4, - 2, - 4 - ], - "shape_numbers": [ - 0, - 0, - 0 - ], - "__styles_handle": [ - 0, - 17, - 0 - ], - "scale_values": [ - 0.0, - 0.1, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 0.0 - ], - "x_offsets": [ - 0.0, - -0.1, - 0.0 - ], - "y_offsets": [ - 0.0, - -0.05, - 0.0 - ], - "text_strings": [ - "GAS" - ] - }, - { - "name": "ZIGZAG", - "handle": 139, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "锯齿线 /\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/", - "alignment_code": 65, - "element_count": 4, - "total_pattern_length": 0.8001, - "dash_dot_space_lengths": [ - 0.0001, - -0.2, - -0.4, - -0.2 - ], - "complex_line_type_element_types": [ - 4, - 4, - 4, - 4 - ], - "shape_numbers": [ - 0, - 131, - 131, - 0 - ], - "__styles_handle": [ - 0, - 0, - 0, - 0 - ], - "scale_values": [ - 0.0, - 0.2, - 0.2, - 0.0 - ], - "rotation_angles": [ - 0.0, - 0.0, - 180.0, - 0.0 - ], - "x_offsets": [ - 0.0, - -0.2, - 0.2, - 0.0 - ], - "y_offsets": [ - 0.0, - 0.0, - 0.0, - 0.0 - ], - "text_strings": [] - }, - { - "name": "CONTINU", - "handle": 148, - "__owner_handle": 5, - "extension_data_groups": [], - "x_data": [], - "description": "Solid line", - "alignment_code": 65, - "element_count": 0, - "total_pattern_length": 0.0, - "dash_dot_space_lengths": [], - "complex_line_type_element_types": [], - "shape_numbers": [], - "__styles_handle": [], - "scale_values": [], - "rotation_angles": [], - "x_offsets": [], - "y_offsets": [], - "text_strings": [] - }, - { - "name": "BYLAYER", - "handle": 681, - "__owner_handle": 0, - "extension_data_groups": [], - "x_data": [], - "description": "", - "alignment_code": 65, - "element_count": 0, - "total_pattern_length": 0.0, - "dash_dot_space_lengths": [], - "complex_line_type_element_types": [], - "shape_numbers": [], - "__styles_handle": [], - "scale_values": [], - "rotation_angles": [], - "x_offsets": [], - "y_offsets": [], - "text_strings": [] - }, - { - "name": "Standard", - "handle": 692, - "__owner_handle": 0, - "extension_data_groups": [], - "x_data": [], - "description": "", - "alignment_code": 65, - "element_count": 0, - "total_pattern_length": 0.0, - "dash_dot_space_lengths": [], - "complex_line_type_element_types": [], - "shape_numbers": [], - "__styles_handle": [], - "scale_values": [], - "rotation_angles": [], - "x_offsets": [], - "y_offsets": [], - "text_strings": [] - } - ], - "__styles": [ - { - "name": "Standard", - "handle": 17, - "__owner_handle": 3, - "extension_data_groups": [], - "x_data": [], - "text_height": 0.0, - "width_factor": 1.0, - "oblique_angle": 0.0, - "text_generation_flags": 0, - "last_height_used": 2.5, - "primary_font_file_name": "txt", - "big_font_file_name": "" - }, - { - "name": "TAHOMA_STANDARD", - "handle": 149, - "__owner_handle": 3, - "extension_data_groups": [], - "x_data": [ - { - "application_name": "ACAD", - "items": [ - { - "Str": "Tahoma" - }, - { - "Long": 256 - } - ] - } - ], - "text_height": 0.0, - "width_factor": 1.0, - "oblique_angle": 0.0, - "text_generation_flags": 0, - "last_height_used": 2.5, - "primary_font_file_name": "tahoma.ttf", - "big_font_file_name": "" - }, - { - "name": "宋体", - "handle": 625, - "__owner_handle": 3, - "extension_data_groups": [], - "x_data": [ - { - "application_name": "ACAD", - "items": [ - { - "Str": "宋体" - }, - { - "Long": 34306 - } - ] - } - ], - "text_height": 0.0, - "width_factor": 1.0, - "oblique_angle": 0.0, - "text_generation_flags": 0, - "last_height_used": 2.5, - "primary_font_file_name": "", - "big_font_file_name": "" - } - ], - "__ucss": [], - "__views": [], - "__view_ports": [ - { - "name": "*Active", - "handle": 41, - "__owner_handle": 8, - "extension_data_groups": [], - "x_data": [], - "lower_left": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "upper_right": { - "x": 1.0, - "y": 1.0, - "z": 0.0 - }, - "view_center": { - "x": 4.750138126931176, - "y": -1.66871198906529, - "z": 0.0 - }, - "snap_base_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "snap_spacing": { - "x": 10.0, - "y": 10.0, - "z": 0.0 - }, - "grid_spacing": { - "x": 10.0, - "y": 10.0, - "z": 0.0 - }, - "view_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "target_view_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "view_height": 39.01887209086272, - "view_port_aspect_ratio": 1.503521126760563, - "lens_length": 50.0, - "front_clipping_plane": 0.0, - "back_clipping_plane": 0.0, - "snap_rotation_angle": 0.0, - "view_twist_angle": 0.0, - "view_mode": { - "flags": 0 - }, - "circle_sides": 100, - "fast_zoom": true, - "ucs_icon": 3, - "snap_on": false, - "grid_on": false, - "snap_style": "Standard", - "snap_isometric_plane": "Left", - "plot_style_sheet": "", - "render_mode": "Classic2D", - "has_own_ucs": true, - "ucs_origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "ucs_x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "ucs_y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "orthographic_view_type": "None", - "ucs_elevation": 0.0, - "__ucs_handle": 0, - "__base_ucs_handle": 0, - "shade_plot_setting": "FacesShadedEdgeNotHighlighted", - "major_grid_lines": false, - "__background_object_handle": 0, - "__shade_plot_object_handle": 0, - "__visual_style_object_handle": 47, - "is_default_lighting_on": true, - "default_lighting_type": "TwoDistantLights", - "brightness": 0.0, - "contrast": 0.0, - "ambient_color": { - "raw_value": 7 - }, - "ambient_color_i32": 0, - "ambient_color_name": "BLACK" - } - ], - "__blocks": [ - { - "handle": 32, - "__owner_handle": 31, - "layer": "0", - "name": "*Model_Space", - "flags": 2, - "base_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xref_path_name": "", - "description": "", - "is_in_paperspace": false, - "entities": [], - "extension_data_groups": [], - "x_data": [] - }, - { - "handle": 28, - "__owner_handle": 27, - "layer": "0", - "name": "*Paper_Space", - "flags": 0, - "base_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xref_path_name": "", - "description": "", - "is_in_paperspace": true, - "entities": [], - "extension_data_groups": [], - "x_data": [] - }, - { - "handle": 36, - "__owner_handle": 35, - "layer": "0", - "name": "*Paper_Space0", - "flags": 0, - "base_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xref_path_name": "", - "description": "", - "is_in_paperspace": false, - "entities": [], - "extension_data_groups": [], - "x_data": [] - }, - { - "handle": 154, - "__owner_handle": 151, - "layer": "0", - "name": "ARROWUNKNOWN", - "flags": 0, - "base_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xref_path_name": "", - "description": "", - "is_in_paperspace": false, - "entities": [ - { - "common": { - "handle": 683, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 151, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 8 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": true, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 8421504, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Circle": { - "thickness": 0.0, - "center": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "radius": 0.2, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - } - }, - { - "common": { - "handle": 684, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 151, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 8 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": true, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 8421504, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Line": { - "thickness": 0.0, - "p1": { - "x": 0.2, - "y": 0.0, - "z": 0.0 - }, - "p2": { - "x": 2.2, - "y": 0.0, - "z": 0.0 - }, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - } - }, - { - "common": { - "handle": 685, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 151, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 8 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": true, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 8421504, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Circle": { - "thickness": 0.0, - "center": { - "x": 2.7, - "y": 0.0, - "z": 0.0 - }, - "radius": 0.5, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - } - } - ], - "extension_data_groups": [], - "x_data": [] - }, - { - "handle": 340, - "__owner_handle": 337, - "layer": "0", - "name": "SYMB2_M_PWF26", - "flags": 0, - "base_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xref_path_name": "", - "description": "", - "is_in_paperspace": false, - "entities": [ - { - "common": { - "handle": 687, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 337, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 7 - }, - "lineweight_enum_value": -1, - "line_type_scale": 1.0, - "is_visible": true, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "LwPolyline": { - "flags": 0, - "constant_width": 0.7, - "thickness": 0.0, - "vertices": [ - { - "x": -1.666666666666666, - "y": 1.666666666666666, - "id": 0, - "starting_width": 0.0, - "ending_width": 0.0, - "bulge": 0.0 - }, - { - "x": 11.66666666666666, - "y": 1.666666666666666, - "id": 0, - "starting_width": 0.0, - "ending_width": 0.0, - "bulge": 0.0 - } - ], - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - } - }, - { - "common": { - "handle": 688, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 337, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 7 - }, - "lineweight_enum_value": -1, - "line_type_scale": 1.0, - "is_visible": true, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "LwPolyline": { - "flags": 0, - "constant_width": 0.35, - "thickness": 0.0, - "vertices": [ - { - "x": 5.0, - "y": 1.666666666666666, - "id": 0, - "starting_width": 0.0, - "ending_width": 0.0, - "bulge": -1.0 - }, - { - "x": 10.0, - "y": 1.666666666666666, - "id": 13, - "starting_width": 0.0, - "ending_width": 0.0, - "bulge": 0.0 - }, - { - "x": 10.0, - "y": 0.0, - "id": 14, - "starting_width": 0.0, - "ending_width": 0.0, - "bulge": 0.0 - } - ], - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - } - }, - { - "common": { - "handle": 689, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 337, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 7 - }, - "lineweight_enum_value": -1, - "line_type_scale": 1.0, - "is_visible": true, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "LwPolyline": { - "flags": 0, - "constant_width": 0.35, - "thickness": 0.0, - "vertices": [ - { - "x": 0.0, - "y": 0.0, - "id": 11, - "starting_width": 0.0, - "ending_width": 0.0, - "bulge": 0.0 - }, - { - "x": 0.0, - "y": 1.666666666666666, - "id": 12, - "starting_width": 0.0, - "ending_width": 0.0, - "bulge": -1.0 - }, - { - "x": 5.0, - "y": 1.666666666666666, - "id": 0, - "starting_width": 0.0, - "ending_width": 0.0, - "bulge": -2.414213562373095 - } - ], - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - } - }, - { - "common": { - "handle": 690, - "extension_data_groups": [ - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "159" - }, - "offset": 6883 - } - } - ] - } - ], - "x_data": [ - { - "application_name": "LD_SYMB1LIB_TERMPOINT", - "items": [ - { - "Str": "1" - } - ] - }, - { - "application_name": "LD_DIRECTION_SYMBLIB", - "items": [ - { - "Str": "水平" - } - ] - }, - { - "application_name": "LD_SYMB_TERMAUTODIM", - "items": [ - { - "Str": "NO" - } - ] - }, - { - "application_name": "LD_SYMB_TERMHIDE", - "items": [ - { - "Str": "NO" - } - ] - } - ], - "__owner_handle": 337, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 1 - }, - "lineweight_enum_value": -1, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "LwPolyline": { - "flags": 1, - "constant_width": 2.0, - "thickness": 0.0, - "vertices": [ - { - "x": 9.5, - "y": 0.0, - "id": 0, - "starting_width": 0.0, - "ending_width": 0.0, - "bulge": 1.0 - }, - { - "x": 10.5, - "y": 0.0, - "id": 0, - "starting_width": 0.0, - "ending_width": 0.0, - "bulge": 1.0 - } - ], - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - } - }, - { - "common": { - "handle": 691, - "extension_data_groups": [], - "x_data": [ - { - "application_name": "LD_SYMB1LIB_TERMPOINT", - "items": [ - { - "Str": "2" - } - ] - } - ], - "__owner_handle": 337, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 1 - }, - "lineweight_enum_value": -1, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "LwPolyline": { - "flags": 1, - "constant_width": 2.0, - "thickness": 0.0, - "vertices": [ - { - "x": -0.5, - "y": 0.0, - "id": 0, - "starting_width": 0.0, - "ending_width": 0.0, - "bulge": 1.0 - }, - { - "x": 0.5, - "y": 0.0, - "id": 0, - "starting_width": 0.0, - "ending_width": 0.0, - "bulge": 1.0 - } - ], - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - } - } - ], - "extension_data_groups": [], - "x_data": [] - } - ], - "__entities": [ - { - "common": { - "handle": 397, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "CONTINU", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 256 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": true, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "AttributeDefinition": { - "thickness": 0.0, - "location": { - "x": 1.334068356515839, - "y": 4.47086852594706, - "z": 0.0 - }, - "text_height": 2.5, - "value": "", - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "宋体", - "text_generation_flags": 0, - "horizontal_text_justification": "Center", - "second_alignment_point": { - "x": 4.90906835651584, - "y": 5.72086852594706, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "version": "R2010", - "prompt": "Repere ", - "text_tag": "#TAG", - "flags": 0, - "field_length": 0, - "vertical_text_justification": "Middle", - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - } - } - }, - { - "common": { - "handle": 398, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 400, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": -2.9e-15, - "y": -10.0, - "z": -1.2e-15 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000005, - "y": -10.50000000000001, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000006, - "y": -10.0, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 402, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": -2.7, - "y": -2.699999999999992, - "z": -3e-16 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 89.99999999999999, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -3.199999999999998, - "y": 5.217999999999998, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 269.9999999999999, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -2.700000000000003, - "y": 0.4999999999999969, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 404, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": -2.9e-15, - "y": -10.0, - "z": -1.2e-15 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000005, - "y": -10.50000000000001, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000006, - "y": -10.0, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 406, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 90.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 0.4999999999999964, - "y": 3.199999999999989, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 90.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.6e-15, - "y": 3.199999999999989, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 408, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": -2.9e-15, - "y": -10.0, - "z": -1.2e-15 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000005, - "y": -10.50000000000001, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000006, - "y": -10.0, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 410, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 256 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 412, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 256 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": -2.9e-15, - "y": -10.0, - "z": -1.2e-15 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000005, - "y": -10.50000000000001, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000006, - "y": -10.0, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 414, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 416, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": -2.9e-15, - "y": -10.0, - "z": -1.2e-15 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000005, - "y": -10.50000000000001, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000006, - "y": -10.0, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 418, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 420, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 256 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 422, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 256 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": true, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "AttributeDefinition": { - "thickness": 0.0, - "location": { - "x": 9.584481542203735, - "y": -2.549786132890194, - "z": 0.0 - }, - "text_height": 1.5, - "value": "#P_TAG_1", - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "宋体", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "second_alignment_point": { - "x": 9.584481542203735, - "y": -1.799786132890194, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "version": "R2010", - "prompt": "", - "text_tag": "#P_TAG_0", - "flags": 0, - "field_length": 0, - "vertical_text_justification": "Middle", - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - } - } - }, - { - "common": { - "handle": 423, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 425, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 427, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 429, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 431, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 433, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 435, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 437, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 439, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 441, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 443, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 445, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 447, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 449, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 451, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 453, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 455, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 457, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 459, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 461, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 463, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 256 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": true, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "ModelPoint": { - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "thickness": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "angle": 6.49e-14 - } - } - }, - { - "common": { - "handle": 464, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 466, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 468, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 470, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 472, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 474, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 476, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 478, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 480, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 482, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 484, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 486, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 488, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 490, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 256 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 492, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 256 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": true, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "AttributeDefinition": { - "thickness": 0.0, - "location": { - "x": -8.311713816119905, - "y": -2.549786132890176, - "z": 0.0 - }, - "text_height": 1.5, - "value": "#P_TAG_1", - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "宋体", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "second_alignment_point": { - "x": 0.2682861838800952, - "y": -1.799786132890176, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "version": "R2010", - "prompt": "", - "text_tag": "#P_TAG_1", - "flags": 0, - "field_length": 0, - "vertical_text_justification": "Middle", - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - } - } - }, - { - "common": { - "handle": 493, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 495, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 497, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 499, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 501, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 503, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 505, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 507, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 509, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 511, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 513, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 515, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 517, - "extension_data_groups": [], - "x_data": [ - { - "application_name": "LD_SYMB2_SPECIAL", - "items": [ - { - "Str": "" - } - ] - }, - { - "application_name": "LD_SYMB2_MAIN", - "items": [ - { - "Str": "" - } - ] - }, - { - "application_name": "LD_SYMB2_LABEL", - "items": [ - { - "Str": "" - }, - { - "Handle": 0 - } - ] - }, - { - "application_name": "LD_SYMB2_TERM_TEXT_1", - "items": [ - { - "Str": "1" - }, - { - "Handle": 0 - } - ] - }, - { - "application_name": "LD_SYMB2_TERM_TEXT_2", - "items": [ - { - "Str": "2" - }, - { - "Handle": 0 - } - ] - }, - { - "application_name": "LD_BORDER", - "items": [ - { - "Str": "自动分割1" - } - ] - } - ], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 256 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": true, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": false, - "name": "SYMB2_M_PWF26", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [] - } - } - }, - { - "common": { - "handle": 518, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 520, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 522, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 524, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 526, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 528, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 530, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 532, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 534, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.5000000000000134, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1.35e-14, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 536, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918000000000002, - "y": -0.500000000000009, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.200000000000003, - "y": -3.6e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 538, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 256 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": true, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "ModelPoint": { - "location": { - "x": 10.0, - "y": 1.13e-14, - "z": 0.0 - }, - "thickness": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "angle": 6.49e-14 - } - } - }, - { - "common": { - "handle": 539, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 256 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": true, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "ModelPoint": { - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "thickness": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "angle": 6.49e-14 - } - } - }, - { - "common": { - "handle": 616, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 10.0, - "y": -1e-15, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 0.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": 13.2, - "y": -0.500000000000001, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:0-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Left", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": 13.2, - "y": -1e-15, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - }, - { - "common": { - "handle": 619, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 31, - "is_in_paper_space": false, - "layer": "0", - "line_type_name": "BYLAYER", - "elevation": 0.0, - "__material_handle": 0, - "color": { - "raw_value": 3 - }, - "lineweight_enum_value": 0, - "line_type_scale": 1.0, - "is_visible": false, - "image_byte_count": 0, - "preview_image_data": [], - "color_24_bit": 0, - "color_name": "", - "transparency": 0, - "__plot_style_handle": 0, - "shadow_mode": "CastsAndReceivesShadows" - }, - "specific": { - "Insert": { - "__seqend_handle": 0, - "__has_attributes": true, - "name": "ARROWUNKNOWN", - "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_scale_factor": 1.0, - "y_scale_factor": 1.0, - "z_scale_factor": 1.0, - "rotation": 180.0, - "column_count": 1, - "row_count": 1, - "column_spacing": 0.0, - "row_spacing": 0.0, - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "__attributes_and_handles": [ - [ - { - "thickness": 0.0, - "location": { - "x": -7.918, - "y": -0.5, - "z": 0.0 - }, - "text_height": 1.0, - "value": "N:1-C:0", - "version": "R2010", - "attribute_tag": "connector", - "flags": 0, - "field_length": 0, - "rotation": 0.0, - "relative_x_scale_factor": 1.0, - "oblique_angle": 0.0, - "text_style_name": "TAHOMA_STANDARD", - "text_generation_flags": 0, - "horizontal_text_justification": "Right", - "vertical_text_justification": "Middle", - "second_alignment_point": { - "x": -3.2, - "y": 0.0, - "z": 0.0 - }, - "normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "is_locked_in_block": false, - "keep_duplicate_records": false, - "m_text_flag": "MultilineAttribute", - "is_really_locked": false, - "__secondary_attribute_count": 0, - "__secondary_attributes_handle": [], - "alignment_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "annotation_scale": 1.0, - "x_record_tag": "", - "m_text": { - "insertion_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "initial_text_height": 1.0, - "reference_rectangle_width": 1.0, - "attachment_point": "TopLeft", - "drawing_direction": "LeftToRight", - "extended_text": [], - "text": "", - "text_style_name": "STANDARD", - "extrusion_direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "x_axis_direction": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "horizontal_width": 1.0, - "vertical_height": 1.0, - "rotation_angle": 0.0, - "line_spacing_style": "AtLeast", - "line_spacing_factor": 1.0, - "background_fill_setting": "Off", - "background_color_rgb": 0, - "background_color_name": "", - "fill_box_scale": 1.0, - "background_fill_color": { - "raw_value": 256 - }, - "background_fill_color_transparency": 0, - "column_type": 0, - "column_count": 0, - "is_column_flow_reversed": false, - "is_column_auto_height": true, - "column_width": 0.0, - "column_gutter": 0.0, - "column_heights": [] - } - }, - 18446744073709551615 - ] - ] - } - } - } - ], - "__objects": [ - { - "common": { - "handle": 12, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 0 - }, - "specific": { - "Dictionary": { - "is_hard_owner": false, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_PLOTSETTINGS": 25, - "ACAD_MLEADERSTYLE": 91, - "ACAD_PLOTSTYLENAME": 14, - "ACAD_SCALELIST": 71, - "ACAD_VISUALSTYLE": 42, - "ACAD_DETAILVIEWSTYLE": 612, - "ACAD_MLINESTYLE": 23, - "AcDbVariableDictionary": 608, - "ACAD_MATERIAL": 67, - "ACDB_RECOMPOSE_DATA": 676, - "ACAD_GROUP": 13, - "ACAD_LAYOUT": 26, - "ACAD_SECTIONVIEWSTYLE": 613, - "ACAD_TABLESTYLE": 89 - } - } - } - }, - { - "common": { - "handle": 152, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 151 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_SORTENTS": 153 - } - } - } - }, - { - "common": { - "handle": 338, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 337 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_SORTENTS": 339 - } - } - } - }, - { - "common": { - "handle": 345, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 344 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "LD_SYMB_BOMANDLABEL": 346 - } - } - } - }, - { - "common": { - "handle": 612, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "C" - }, - "offset": 13417 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 12 - }, - "specific": { - "Dictionary": { - "is_hard_owner": false, - "duplicate_record_handling": "KeepExisting", - "value_handles": {} - } - } - }, - { - "common": { - "handle": 13, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "C" - }, - "offset": 13433 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 12 - }, - "specific": { - "Dictionary": { - "is_hard_owner": false, - "duplicate_record_handling": "KeepExisting", - "value_handles": {} - } - } - }, - { - "common": { - "handle": 26, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "C" - }, - "offset": 13449 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 12 - }, - "specific": { - "Dictionary": { - "is_hard_owner": false, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "Layout2": 38, - "Layout1": 30, - "Model": 34 - } - } - } - }, - { - "common": { - "handle": 67, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "C" - }, - "offset": 13477 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 12 - }, - "specific": { - "Dictionary": { - "is_hard_owner": false, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "Global": 70, - "ByLayer": 68, - "ByBlock": 69 - } - } - } - }, - { - "common": { - "handle": 91, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "C" - }, - "offset": 13505 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 12 - }, - "specific": { - "Dictionary": { - "is_hard_owner": false, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "Standard": 92 - } - } - } - }, - { - "common": { - "handle": 23, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "C" - }, - "offset": 13525 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 12 - }, - "specific": { - "Dictionary": { - "is_hard_owner": false, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "Standard": 24 - } - } - } - }, - { - "common": { - "handle": 25, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "C" - }, - "offset": 13545 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 12 - }, - "specific": { - "Dictionary": { - "is_hard_owner": false, - "duplicate_record_handling": "KeepExisting", - "value_handles": {} - } - } - }, - { - "common": { - "handle": 14, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "C" - }, - "offset": 13561 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 12 - }, - "specific": { - "DictionaryWithDefault": { - "duplicate_record_handling": "KeepExisting", - "default_handle": 15, - "value_handles": { - "Normal": 15 - } - } - } - }, - { - "common": { - "handle": 71, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "C" - }, - "offset": 13585 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 12 - }, - "specific": { - "Dictionary": { - "is_hard_owner": false, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "A0": 72, - "A8": 80, - "A5": 77, - "A4": 76, - "A1": 73, - "B0": 82, - "B1": 83, - "A6": 78, - "A9": 81, - "B5": 87, - "B3": 85, - "A7": 79, - "A3": 75, - "B4": 86, - "A2": 74, - "B6": 88, - "B2": 84 - } - } - } - }, - { - "common": { - "handle": 613, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "C" - }, - "offset": 13669 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 12 - }, - "specific": { - "Dictionary": { - "is_hard_owner": false, - "duplicate_record_handling": "KeepExisting", - "value_handles": {} - } - } - }, - { - "common": { - "handle": 89, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "C" - }, - "offset": 13685 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 12 - }, - "specific": { - "Dictionary": { - "is_hard_owner": false, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "Standard": 90 - } - } - } - }, - { - "common": { - "handle": 42, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "C" - }, - "offset": 13705 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 12 - }, - "specific": { - "Dictionary": { - "is_hard_owner": false, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "Dim": 53, - "Conceptual": 52, - "Realistic": 51, - "Shades of Gray": 62, - "Basic": 50, - "X-Ray": 64, - "Shaded with edges": 65, - "GouraudWithEdges": 46, - "Thicken": 55, - "Gouraud": 45, - "OverhangOff": 60, - "EdgeColorOff": 61, - "Hidden": 49, - "ColorChange": 58, - "JitterOff": 59, - "Sketchy": 63, - "2dWireframe": 47, - "Wireframe": 48, - "Shaded": 66, - "Brighten": 54, - "Flat": 43, - "Facepattern": 57, - "FlatWithEdges": 44, - "Linepattern": 56 - } - } - } - }, - { - "common": { - "handle": 676, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "C" - }, - "offset": 13817 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 12 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 13825 - }, - { - "code": 90, - "value": { - "Integer": 1 - }, - "offset": 13827 - }, - { - "code": 330, - "value": { - "Str": "5A" - }, - "offset": 13829 - } - ] - } - } - }, - { - "common": { - "handle": 608, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "C" - }, - "offset": 13837 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 12 - }, - "specific": { - "Dictionary": { - "is_hard_owner": false, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "CENTEREXE": 614, - "CMLEADERSTYLE": 611, - "CENTERLTYPEFILE": 615, - "CTABLESTYLE": 610, - "CANNOSCALE": 609 - } - } - } - }, - { - "common": { - "handle": 153, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "98" - }, - "offset": 13873 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 151 - }, - "specific": { - "SortentsTable": { - "__entities_handle": [], - "__sort_items_handle": [] - } - } - }, - { - "common": { - "handle": 339, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "152" - }, - "offset": 13889 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 337 - }, - "specific": { - "SortentsTable": { - "__entities_handle": [], - "__sort_items_handle": [] - } - } - }, - { - "common": { - "handle": 346, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "159" - }, - "offset": 13905 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 345 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 13913 - }, - { - "code": 1, - "value": { - "Str": "推荐名称" - }, - "offset": 13915 - }, - { - "code": 1, - "value": { - "Str": "电流互感器二次线圈" - }, - "offset": 13917 - }, - { - "code": 1, - "value": { - "Str": "推荐型号" - }, - "offset": 13919 - }, - { - "code": 1, - "value": { - "Str": "" - }, - "offset": 13921 - }, - { - "code": 1, - "value": { - "Str": "推荐编码" - }, - "offset": 13923 - }, - { - "code": 1, - "value": { - "Str": "" - }, - "offset": 13925 - }, - { - "code": 1, - "value": { - "Str": "推荐标号" - }, - "offset": 13927 - }, - { - "code": 1, - "value": { - "Str": "" - }, - "offset": 13929 - }, - { - "code": 1, - "value": { - "Str": "方向" - }, - "offset": 13931 - }, - { - "code": 1, - "value": { - "Str": "水平" - }, - "offset": 13933 - }, - { - "code": 1, - "value": { - "Str": "端号自动标注" - }, - "offset": 13935 - }, - { - "code": 1, - "value": { - "Str": "NO" - }, - "offset": 13937 - }, - { - "code": 1, - "value": { - "Str": "端号隐藏" - }, - "offset": 13939 - }, - { - "code": 1, - "value": { - "Str": "NO" - }, - "offset": 13941 - } - ] - } - } - }, - { - "common": { - "handle": 30, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "1A" - }, - "offset": 13949 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 26 - }, - "specific": { - "Layout": { - "layout_name": "Layout1", - "layout_flags": 1, - "tab_order": 1, - "minimum_limits": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "maximum_limits": { - "x": 420.0, - "y": 297.0, - "z": 0.0 - }, - "insertion_base_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "minimum_extents": { - "x": 1e20, - "y": 1e20, - "z": 1e20 - }, - "maximum_extents": { - "x": -1e20, - "y": -1e20, - "z": -1e20 - }, - "elevation": 0.0, - "ucs_origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "ucs_x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "ucs_y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "ucs_orthographic_type": "NotOrthographic", - "__viewport_handle": 27, - "__table_record_handle": 0, - "__table_record_base_handle": 0 - } - } - }, - { - "common": { - "handle": 38, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "1A" - }, - "offset": 14081 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 26 - }, - "specific": { - "Layout": { - "layout_name": "Layout2", - "layout_flags": 1, - "tab_order": 2, - "minimum_limits": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "maximum_limits": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "insertion_base_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "minimum_extents": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "maximum_extents": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "elevation": 0.0, - "ucs_origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "ucs_x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "ucs_y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "ucs_orthographic_type": "NotOrthographic", - "__viewport_handle": 35, - "__table_record_handle": 0, - "__table_record_base_handle": 0 - } - } - }, - { - "common": { - "handle": 34, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "1A" - }, - "offset": 14213 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 26 - }, - "specific": { - "Layout": { - "layout_name": "Model", - "layout_flags": 1, - "tab_order": 0, - "minimum_limits": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "maximum_limits": { - "x": 420.0, - "y": 297.0, - "z": 0.0 - }, - "insertion_base_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "minimum_extents": { - "x": 1e20, - "y": 1e20, - "z": 1e20 - }, - "maximum_extents": { - "x": -1e20, - "y": -1e20, - "z": -1e20 - }, - "elevation": 0.0, - "ucs_origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "ucs_x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "ucs_y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "ucs_orthographic_type": "NotOrthographic", - "__viewport_handle": 31, - "__table_record_handle": 0, - "__table_record_base_handle": 0 - } - } - }, - { - "common": { - "handle": 69, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "43" - }, - "offset": 14347 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 67 - }, - "specific": { - "Material": { - "name": "ByBlock", - "description": "", - "override_ambient_color": false, - "ambient_color_factor": 1.0, - "ambient_color_value": 0, - "override_diffuse_color": false, - "diffuse_color_factor": 1.0, - "diffuse_color_value": 0, - "diffuse_map_blend_factor": 1.0, - "use_image_file_for_diffuse_map": true, - "diffuse_map_file_name": "", - "diffuse_map_projection_method": "Planar", - "diffuse_map_tiling_method": "Tile", - "diffuse_map_auto_transform_method": "NoAutoTransform", - "diffuse_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__diffuse_map_transformation_matrix_values": [], - "specular_gloss_factor": 0.5, - "override_specular_color": false, - "specular_color_factor": 1.0, - "specular_color_value": 0, - "specular_map_blend_factor": 1.0, - "use_image_file_for_specular_map": false, - "specular_map_file_name": "", - "specular_map_projection_method": "Planar", - "specular_map_tiling_method": "Tile", - "specular_map_auto_transform_method": "NoAutoTransform", - "specular_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__specular_map_transformation_matrix_values": [], - "reflection_map_blend_factor": 1.0, - "use_image_file_for_reflection_map": false, - "reflection_map_file_name": "", - "reflection_map_projection_method": "Planar", - "reflection_map_tiling_method": "Tile", - "reflection_map_auto_transform_method": "NoAutoTransform", - "reflection_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__reflection_map_transformation_matrix_values": [], - "opacity_factor": 1.0, - "opacity_map_blend_factor": 1.0, - "use_image_file_for_opacity_map": false, - "opacity_map_file_name": "", - "opacity_map_projection_method": "Planar", - "opacity_map_tiling_method": "Tile", - "opacity_map_auto_transform_method": "NoAutoTransform", - "opacity_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__opacity_map_transformation_matrix_values": [], - "bump_map_blend_factor": 1.0, - "use_image_file_for_bump_map": false, - "bump_map_file_name": "", - "bump_map_projection_method": "Planar", - "bump_map_tiling_method": "Tile", - "bump_map_auto_transform_method": "NoAutoTransform", - "bump_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__bump_map_transformation_matrix_values": [], - "refraction_index": 1.0, - "refraction_map_blend_factor": 1.0, - "use_image_file_for_refraction_map": false, - "refraction_map_file_name": "", - "refraction_map_projection_method": "Planar", - "refraction_map_tiling_method": "Tile", - "refraction_map_auto_transform_method": "NoAutoTransform", - "refraction_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__refraction_map_transformation_matrix_values": [], - "color_bleed_scale": 0.0, - "indirect_dump_scale": 0.0, - "reflectance_scale": 0.0, - "transmittance_scale": 0.0, - "is_two_sided": false, - "luminance": 0.0, - "luminance_mode": 0, - "normal_map_method": 0, - "normal_map_strength": 1.0, - "normal_map_blend_factor": 1.0, - "use_image_file_for_normal_map": false, - "normal_map_file_name": "", - "normal_map_projection_method": "Planar", - "normal_map_tiling_method": "Tile", - "normal_map_auto_transform_method": "NoAutoTransform", - "normal_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__normal_map_transformation_matrix_values": [], - "is_anonymous": false, - "global_illumination_mode": 0, - "final_gather_mode": 0, - "gen_proc_name": "", - "gen_proc_boolean_value": false, - "gen_proc_integer_value": 0, - "gen_proc_real_value": 0.0, - "gen_proc_text_value": "", - "gen_proc_table_end": false, - "gen_proc_color_index_value": { - "raw_value": 256 - }, - "gen_proc_color_rgb_value": 0, - "gen_proc_color_name": "", - "map_u_tile": 0, - "map_v_tile": 0, - "translucence": 0.0, - "self_illumination": 0, - "reflectivity": 0.0, - "illumination_model": 0, - "channel_flags": 127 - } - } - }, - { - "common": { - "handle": 68, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "43" - }, - "offset": 14367 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 67 - }, - "specific": { - "Material": { - "name": "ByLayer", - "description": "", - "override_ambient_color": false, - "ambient_color_factor": 1.0, - "ambient_color_value": 0, - "override_diffuse_color": false, - "diffuse_color_factor": 1.0, - "diffuse_color_value": 0, - "diffuse_map_blend_factor": 1.0, - "use_image_file_for_diffuse_map": true, - "diffuse_map_file_name": "", - "diffuse_map_projection_method": "Planar", - "diffuse_map_tiling_method": "Tile", - "diffuse_map_auto_transform_method": "NoAutoTransform", - "diffuse_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__diffuse_map_transformation_matrix_values": [], - "specular_gloss_factor": 0.5, - "override_specular_color": false, - "specular_color_factor": 1.0, - "specular_color_value": 0, - "specular_map_blend_factor": 1.0, - "use_image_file_for_specular_map": false, - "specular_map_file_name": "", - "specular_map_projection_method": "Planar", - "specular_map_tiling_method": "Tile", - "specular_map_auto_transform_method": "NoAutoTransform", - "specular_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__specular_map_transformation_matrix_values": [], - "reflection_map_blend_factor": 1.0, - "use_image_file_for_reflection_map": false, - "reflection_map_file_name": "", - "reflection_map_projection_method": "Planar", - "reflection_map_tiling_method": "Tile", - "reflection_map_auto_transform_method": "NoAutoTransform", - "reflection_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__reflection_map_transformation_matrix_values": [], - "opacity_factor": 1.0, - "opacity_map_blend_factor": 1.0, - "use_image_file_for_opacity_map": false, - "opacity_map_file_name": "", - "opacity_map_projection_method": "Planar", - "opacity_map_tiling_method": "Tile", - "opacity_map_auto_transform_method": "NoAutoTransform", - "opacity_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__opacity_map_transformation_matrix_values": [], - "bump_map_blend_factor": 1.0, - "use_image_file_for_bump_map": false, - "bump_map_file_name": "", - "bump_map_projection_method": "Planar", - "bump_map_tiling_method": "Tile", - "bump_map_auto_transform_method": "NoAutoTransform", - "bump_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__bump_map_transformation_matrix_values": [], - "refraction_index": 1.0, - "refraction_map_blend_factor": 1.0, - "use_image_file_for_refraction_map": false, - "refraction_map_file_name": "", - "refraction_map_projection_method": "Planar", - "refraction_map_tiling_method": "Tile", - "refraction_map_auto_transform_method": "NoAutoTransform", - "refraction_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__refraction_map_transformation_matrix_values": [], - "color_bleed_scale": 0.0, - "indirect_dump_scale": 0.0, - "reflectance_scale": 0.0, - "transmittance_scale": 0.0, - "is_two_sided": false, - "luminance": 0.0, - "luminance_mode": 0, - "normal_map_method": 0, - "normal_map_strength": 1.0, - "normal_map_blend_factor": 1.0, - "use_image_file_for_normal_map": false, - "normal_map_file_name": "", - "normal_map_projection_method": "Planar", - "normal_map_tiling_method": "Tile", - "normal_map_auto_transform_method": "NoAutoTransform", - "normal_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__normal_map_transformation_matrix_values": [], - "is_anonymous": false, - "global_illumination_mode": 0, - "final_gather_mode": 0, - "gen_proc_name": "", - "gen_proc_boolean_value": false, - "gen_proc_integer_value": 0, - "gen_proc_real_value": 0.0, - "gen_proc_text_value": "", - "gen_proc_table_end": false, - "gen_proc_color_index_value": { - "raw_value": 256 - }, - "gen_proc_color_rgb_value": 0, - "gen_proc_color_name": "", - "map_u_tile": 0, - "map_v_tile": 0, - "translucence": 0.0, - "self_illumination": 0, - "reflectivity": 0.0, - "illumination_model": 0, - "channel_flags": 127 - } - } - }, - { - "common": { - "handle": 70, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "43" - }, - "offset": 14387 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 67 - }, - "specific": { - "Material": { - "name": "Global", - "description": "", - "override_ambient_color": false, - "ambient_color_factor": 1.0, - "ambient_color_value": 0, - "override_diffuse_color": false, - "diffuse_color_factor": 1.0, - "diffuse_color_value": 0, - "diffuse_map_blend_factor": 1.0, - "use_image_file_for_diffuse_map": true, - "diffuse_map_file_name": "", - "diffuse_map_projection_method": "Planar", - "diffuse_map_tiling_method": "Tile", - "diffuse_map_auto_transform_method": "NoAutoTransform", - "diffuse_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__diffuse_map_transformation_matrix_values": [], - "specular_gloss_factor": 0.5, - "override_specular_color": false, - "specular_color_factor": 1.0, - "specular_color_value": 0, - "specular_map_blend_factor": 1.0, - "use_image_file_for_specular_map": false, - "specular_map_file_name": "", - "specular_map_projection_method": "Planar", - "specular_map_tiling_method": "Tile", - "specular_map_auto_transform_method": "NoAutoTransform", - "specular_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__specular_map_transformation_matrix_values": [], - "reflection_map_blend_factor": 1.0, - "use_image_file_for_reflection_map": false, - "reflection_map_file_name": "", - "reflection_map_projection_method": "Planar", - "reflection_map_tiling_method": "Tile", - "reflection_map_auto_transform_method": "NoAutoTransform", - "reflection_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__reflection_map_transformation_matrix_values": [], - "opacity_factor": 1.0, - "opacity_map_blend_factor": 1.0, - "use_image_file_for_opacity_map": false, - "opacity_map_file_name": "", - "opacity_map_projection_method": "Planar", - "opacity_map_tiling_method": "Tile", - "opacity_map_auto_transform_method": "NoAutoTransform", - "opacity_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__opacity_map_transformation_matrix_values": [], - "bump_map_blend_factor": 1.0, - "use_image_file_for_bump_map": false, - "bump_map_file_name": "", - "bump_map_projection_method": "Planar", - "bump_map_tiling_method": "Tile", - "bump_map_auto_transform_method": "NoAutoTransform", - "bump_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__bump_map_transformation_matrix_values": [], - "refraction_index": 1.0, - "refraction_map_blend_factor": 1.0, - "use_image_file_for_refraction_map": false, - "refraction_map_file_name": "", - "refraction_map_projection_method": "Planar", - "refraction_map_tiling_method": "Tile", - "refraction_map_auto_transform_method": "NoAutoTransform", - "refraction_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__refraction_map_transformation_matrix_values": [], - "color_bleed_scale": 0.0, - "indirect_dump_scale": 0.0, - "reflectance_scale": 0.0, - "transmittance_scale": 0.0, - "is_two_sided": false, - "luminance": 0.0, - "luminance_mode": 0, - "normal_map_method": 0, - "normal_map_strength": 1.0, - "normal_map_blend_factor": 1.0, - "use_image_file_for_normal_map": false, - "normal_map_file_name": "", - "normal_map_projection_method": "Planar", - "normal_map_tiling_method": "Tile", - "normal_map_auto_transform_method": "NoAutoTransform", - "normal_map_transformation_matrix": { - "m11": 1.0, - "m12": 0.0, - "m13": 0.0, - "m14": 0.0, - "m21": 0.0, - "m22": 1.0, - "m23": 0.0, - "m24": 0.0, - "m31": 0.0, - "m32": 0.0, - "m33": 1.0, - "m34": 0.0, - "m41": 0.0, - "m42": 0.0, - "m43": 0.0, - "m44": 1.0 - }, - "__normal_map_transformation_matrix_values": [], - "is_anonymous": false, - "global_illumination_mode": 0, - "final_gather_mode": 0, - "gen_proc_name": "", - "gen_proc_boolean_value": false, - "gen_proc_integer_value": 0, - "gen_proc_real_value": 0.0, - "gen_proc_text_value": "", - "gen_proc_table_end": false, - "gen_proc_color_index_value": { - "raw_value": 256 - }, - "gen_proc_color_rgb_value": 0, - "gen_proc_color_name": "", - "map_u_tile": 0, - "map_v_tile": 0, - "translucence": 0.0, - "self_illumination": 0, - "reflectivity": 0.0, - "illumination_model": 0, - "channel_flags": 127 - } - } - }, - { - "common": { - "handle": 92, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "5B" - }, - "offset": 14407 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 91 - }, - "specific": { - "MLeaderStyle": { - "content_type": 2, - "draw_m_leader_order_type": 1, - "draw_leader_order_type": 0, - "max_leader_segment_count": 2, - "first_segment_angle_constraint": 0.0, - "second_segment_angle_constraint": 0.0, - "leader_line_type": 1, - "leader_line_color": -1056964608, - "__line_leader_type_handle": 20, - "leader_line_weight": -2, - "enable_landing": true, - "landing_gap": 2.0, - "enable_dogleg": true, - "dogleg_length": 8.0, - "m_leader_style_description": "Standard", - "__arrowhead_handle": 0, - "arrowhead_size": 4.0, - "default_m_text_contents": "", - "__m_text_style_handle": 17, - "text_left_attachment_type": 1, - "text_angle_type": 1, - "text_alignment_type": 0, - "text_right_attachment_type": 6, - "text_color": -1056964608, - "text_height": 4.0, - "enable_frame_text": false, - "always_align_text_left": false, - "align_gap": 4.0, - "__block_content_handle": 0, - "block_content_color": -1056964608, - "block_content_x_scale": 1.0, - "block_content_y_scale": 1.0, - "block_content_z_scale": 1.0, - "enable_block_content_scale": true, - "block_content_rotation": 0.0, - "enable_block_content_rotation": true, - "block_content_connection_type": 0, - "scale": 1.0, - "overwrite_field_value": false, - "is_annotative": false, - "break_gap_size": 3.75, - "text_attachment_direction": "Horizontal", - "bottom_text_attachment_direction": "Center", - "top_text_attachment_direction": "Center" - } - } - }, - { - "common": { - "handle": 24, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "17" - }, - "offset": 14511 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 23 - }, - "specific": { - "MLineStyle": { - "style_name": "Standard", - "__flags": 0, - "description": "", - "fill_color": { - "raw_value": 256 - }, - "start_angle": 90.0, - "end_angle": 90.0, - "elements": [], - "__element_count": 2, - "__element_offsets": [ - 0.5, - -0.5 - ], - "__element_colors": [ - { - "raw_value": 256 - }, - { - "raw_value": 256 - } - ], - "__element_line_types": [ - "BYLAYER", - "BYLAYER" - ] - } - } - }, - { - "common": { - "handle": 15, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "E" - }, - "offset": 14551 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 14 - }, - "specific": { - "PlaceHolder": {} - } - }, - { - "common": { - "handle": 90, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "59" - }, - "offset": 14971 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "2A2" - }, - "offset": 14977 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 89 - }, - "specific": { - "TableStyle": { - "version": "R2010", - "description": "Standard", - "flow_direction": "Down", - "flags": 0, - "horizontal_cell_margin": 1.5, - "vertical_cell_margin": 1.5, - "is_title_suppressed": false, - "is_column_heading_suppressed": false, - "cell_styles": [ - { - "name": "Standard", - "text_height": 4.5, - "cell_alignment": 2, - "text_color": { - "raw_value": 0 - }, - "cell_fill_color": { - "raw_value": 257 - }, - "is_background_color_enabled": false, - "cell_data_type": 4, - "cell_unit_type": 0, - "border_lineweight_1": 0, - "border_lineweight_2": 0, - "border_lineweight_3": 0, - "border_lineweight_4": 0, - "border_lineweight_5": 0, - "border_lineweight_6": 0, - "is_border_1_visible": false, - "is_border_2_visible": false, - "is_border_3_visible": false, - "is_border_4_visible": false, - "is_border_5_visible": false, - "is_border_6_visible": false, - "border_1_color": { - "raw_value": 0 - }, - "border_2_color": { - "raw_value": 0 - }, - "border_3_color": { - "raw_value": 0 - }, - "border_4_color": { - "raw_value": 0 - }, - "border_5_color": { - "raw_value": 0 - }, - "border_6_color": { - "raw_value": 0 - } - }, - { - "name": "Standard", - "text_height": 6.0, - "cell_alignment": 5, - "text_color": { - "raw_value": 0 - }, - "cell_fill_color": { - "raw_value": 257 - }, - "is_background_color_enabled": false, - "cell_data_type": 4, - "cell_unit_type": 0, - "border_lineweight_1": 0, - "border_lineweight_2": 0, - "border_lineweight_3": 0, - "border_lineweight_4": 0, - "border_lineweight_5": 0, - "border_lineweight_6": 0, - "is_border_1_visible": false, - "is_border_2_visible": false, - "is_border_3_visible": false, - "is_border_4_visible": false, - "is_border_5_visible": false, - "is_border_6_visible": false, - "border_1_color": { - "raw_value": 0 - }, - "border_2_color": { - "raw_value": 0 - }, - "border_3_color": { - "raw_value": 0 - }, - "border_4_color": { - "raw_value": 0 - }, - "border_5_color": { - "raw_value": 0 - }, - "border_6_color": { - "raw_value": 0 - } - }, - { - "name": "Standard", - "text_height": 4.5, - "cell_alignment": 5, - "text_color": { - "raw_value": 0 - }, - "cell_fill_color": { - "raw_value": 257 - }, - "is_background_color_enabled": false, - "cell_data_type": 4, - "cell_unit_type": 0, - "border_lineweight_1": 0, - "border_lineweight_2": 0, - "border_lineweight_3": 0, - "border_lineweight_4": 0, - "border_lineweight_5": 0, - "border_lineweight_6": 0, - "is_border_1_visible": false, - "is_border_2_visible": false, - "is_border_3_visible": false, - "is_border_4_visible": false, - "is_border_5_visible": false, - "is_border_6_visible": false, - "border_1_color": { - "raw_value": 0 - }, - "border_2_color": { - "raw_value": 0 - }, - "border_3_color": { - "raw_value": 0 - }, - "border_4_color": { - "raw_value": 0 - }, - "border_5_color": { - "raw_value": 0 - }, - "border_6_color": { - "raw_value": 0 - } - } - ] - } - } - }, - { - "common": { - "handle": 47, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 15167 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "27A" - }, - "offset": 15173 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "2dWireframe", - "type_code": 4, - "face_lighting_model": "Invisible", - "face_lighting_quality": "PerVertex", - "face_color_mode": "NoColor", - "face_modifier": "None", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "IsoLines", - "edge_style": 4, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 0, - "edge_color": { - "raw_value": 257 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 5, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 1, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": false - } - } - }, - { - "common": { - "handle": 50, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 15311 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "280" - }, - "offset": 15317 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "Basic", - "type_code": 7, - "face_lighting_model": "Visible", - "face_lighting_quality": "None", - "face_color_mode": "ObjectColor", - "face_modifier": "None", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "NoEdges", - "edge_style": 4, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 8, - "edge_color": { - "raw_value": 7 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 5, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 1, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": true - } - } - }, - { - "common": { - "handle": 54, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 15455 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "288" - }, - "offset": 15461 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "Brighten", - "type_code": 12, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerVertex", - "face_color_mode": "NoColor", - "face_modifier": "None", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "IsoLines", - "edge_style": 4, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 8, - "edge_color": { - "raw_value": 7 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 5, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 1, - "brightness": 50.0, - "shadow_type": 0, - "internal_flag": true - } - } - }, - { - "common": { - "handle": 58, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 15599 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "290" - }, - "offset": 15605 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "ColorChange", - "type_code": 16, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerVertex", - "face_color_mode": "CustomColor", - "face_modifier": "None", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 8 - }, - "face_style_mono_color": 8421504, - "edge_style_model": "IsoLines", - "edge_style": 4, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 8, - "edge_color": { - "raw_value": 8 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 5, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 1, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": true - } - } - }, - { - "common": { - "handle": 52, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 15745 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "284" - }, - "offset": 15751 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "Conceptual", - "type_code": 9, - "face_lighting_model": "Gooch", - "face_lighting_quality": "PerVertex", - "face_color_mode": "NoColor", - "face_modifier": "None", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "FacetEdges", - "edge_style": 2, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 179.0, - "edge_modifiers": 8, - "edge_color": { - "raw_value": 7 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 3, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 1, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": false - } - } - }, - { - "common": { - "handle": 53, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 15889 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "286" - }, - "offset": 15895 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "Dim", - "type_code": 11, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerVertex", - "face_color_mode": "NoColor", - "face_modifier": "None", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "IsoLines", - "edge_style": 4, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 8, - "edge_color": { - "raw_value": 7 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 5, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 1, - "brightness": -50.0, - "shadow_type": 0, - "internal_flag": true - } - } - }, - { - "common": { - "handle": 61, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 16033 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "296" - }, - "offset": 16039 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "EdgeColorOff", - "type_code": 22, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerVertex", - "face_color_mode": "NoColor", - "face_modifier": "None", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "IsoLines", - "edge_style": 4, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 8, - "edge_color": { - "raw_value": 7 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 5, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 1, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": true - } - } - }, - { - "common": { - "handle": 57, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 16177 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "28E" - }, - "offset": 16183 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "Facepattern", - "type_code": 15, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerVertex", - "face_color_mode": "NoColor", - "face_modifier": "None", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "IsoLines", - "edge_style": 4, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 8, - "edge_color": { - "raw_value": 7 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 5, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 1, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": true - } - } - }, - { - "common": { - "handle": 43, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 16321 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "272" - }, - "offset": 16327 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "Flat", - "type_code": 0, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerFace", - "face_color_mode": "ObjectColor", - "face_modifier": "Specular", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "NoEdges", - "edge_style": 0, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 8, - "edge_color": { - "raw_value": 7 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 5, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 13, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": true - } - } - }, - { - "common": { - "handle": 44, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 16465 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "274" - }, - "offset": 16471 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "FlatWithEdges", - "type_code": 1, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerFace", - "face_color_mode": "ObjectColor", - "face_modifier": "Specular", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "IsoLines", - "edge_style": 0, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 0, - "edge_color": { - "raw_value": 257 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 5, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 13, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": true - } - } - }, - { - "common": { - "handle": 45, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 16609 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "276" - }, - "offset": 16615 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "Gouraud", - "type_code": 2, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerVertex", - "face_color_mode": "ObjectColor", - "face_modifier": "Specular", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "NoEdges", - "edge_style": 0, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 0, - "edge_color": { - "raw_value": 7 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 5, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 13, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": true - } - } - }, - { - "common": { - "handle": 46, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 16753 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "278" - }, - "offset": 16759 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "GouraudWithEdges", - "type_code": 3, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerVertex", - "face_color_mode": "ObjectColor", - "face_modifier": "Specular", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "IsoLines", - "edge_style": 0, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 0, - "edge_color": { - "raw_value": 257 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 5, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 13, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": true - } - } - }, - { - "common": { - "handle": 49, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 16897 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "27E" - }, - "offset": 16903 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "Hidden", - "type_code": 6, - "face_lighting_model": "Visible", - "face_lighting_quality": "PerVertex", - "face_color_mode": "BackgroundColor", - "face_modifier": "None", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "FacetEdges", - "edge_style": 2, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 2, - "edge_intersection_line_type": 1, - "edge_crease_angle": 40.0, - "edge_modifiers": 0, - "edge_color": { - "raw_value": 257 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 3, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 1, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": false - } - } - }, - { - "common": { - "handle": 59, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 17041 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "292" - }, - "offset": 17047 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "JitterOff", - "type_code": 20, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerVertex", - "face_color_mode": "NoColor", - "face_modifier": "None", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "IsoLines", - "edge_style": 4, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 10, - "edge_color": { - "raw_value": 7 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 5, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 1, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": true - } - } - }, - { - "common": { - "handle": 56, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 17185 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "28C" - }, - "offset": 17191 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "Linepattern", - "type_code": 14, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerVertex", - "face_color_mode": "NoColor", - "face_modifier": "None", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "IsoLines", - "edge_style": 4, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 7, - "edge_intersection_line_type": 7, - "edge_crease_angle": 1.0, - "edge_modifiers": 8, - "edge_color": { - "raw_value": 7 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 5, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 1, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": true - } - } - }, - { - "common": { - "handle": 60, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 17329 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "294" - }, - "offset": 17335 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "OverhangOff", - "type_code": 21, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerVertex", - "face_color_mode": "NoColor", - "face_modifier": "None", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "IsoLines", - "edge_style": 4, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 9, - "edge_color": { - "raw_value": 7 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 5, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 1, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": true - } - } - }, - { - "common": { - "handle": 51, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 17473 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "282" - }, - "offset": 17479 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "Realistic", - "type_code": 8, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerFace", - "face_color_mode": "NoColor", - "face_modifier": "Specular", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "NoEdges", - "edge_style": 0, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 8, - "edge_color": { - "raw_value": 257 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 3, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 13, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": false - } - } - }, - { - "common": { - "handle": 66, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 17617 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "2A0" - }, - "offset": 17623 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "Shaded", - "type_code": 27, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerVertex", - "face_color_mode": "ObjectColor", - "face_modifier": "Specular", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "NoEdges", - "edge_style": 4, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 8, - "edge_color": { - "raw_value": 257 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 8 - }, - "edge_silhouette_width": 3, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 5, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": false - } - } - }, - { - "common": { - "handle": 65, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 17763 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "29E" - }, - "offset": 17769 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "Shaded with edges", - "type_code": 26, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerVertex", - "face_color_mode": "ObjectColor", - "face_modifier": "Specular", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "IsoLines", - "edge_style": 10, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 2, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 8, - "edge_color": { - "raw_value": 257 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 3, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 5, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": false - } - } - }, - { - "common": { - "handle": 62, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 17907 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "298" - }, - "offset": 17913 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "Shades of Gray", - "type_code": 23, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerVertex", - "face_color_mode": "CustomColor", - "face_modifier": "None", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "FacetEdges", - "edge_style": 2, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 7 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 40.0, - "edge_modifiers": 8, - "edge_color": { - "raw_value": 7 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 3, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 1, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": false - } - } - }, - { - "common": { - "handle": 63, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 18051 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "29A" - }, - "offset": 18057 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "Sketchy", - "type_code": 24, - "face_lighting_model": "Visible", - "face_lighting_quality": "PerVertex", - "face_color_mode": "BackgroundColor", - "face_modifier": "None", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "FacetEdges", - "edge_style": 2, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 7 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 40.0, - "edge_modifiers": 11, - "edge_color": { - "raw_value": 7 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 6, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 1, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": false - } - } - }, - { - "common": { - "handle": 55, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 18195 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "28A" - }, - "offset": 18201 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "Thicken", - "type_code": 13, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerVertex", - "face_color_mode": "NoColor", - "face_modifier": "None", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "IsoLines", - "edge_style": 4, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 12, - "edge_color": { - "raw_value": 7 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 5, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 1, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": true - } - } - }, - { - "common": { - "handle": 48, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 18339 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "27C" - }, - "offset": 18345 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "Wireframe", - "type_code": 5, - "face_lighting_model": "Invisible", - "face_lighting_quality": "PerVertex", - "face_color_mode": "NoColor", - "face_modifier": "None", - "face_opacity_level": 0.6, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "IsoLines", - "edge_style": 4, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 0, - "edge_color": { - "raw_value": 257 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 3, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 1, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": false - } - } - }, - { - "common": { - "handle": 64, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A" - }, - "offset": 18483 - } - } - ] - }, - { - "application_name": "ACAD_XDICTIONARY", - "items": [ - { - "CodePair": { - "code": 360, - "value": { - "Str": "29C" - }, - "offset": 18489 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 42 - }, - "specific": { - "VisualStyle": { - "description": "X-Ray", - "type_code": 25, - "face_lighting_model": "Phong", - "face_lighting_quality": "PerVertex", - "face_color_mode": "ObjectColor", - "face_modifier": "Opacity", - "face_opacity_level": 0.5, - "face_specular_level": 30.0, - "color1": { - "raw_value": 5 - }, - "color2": { - "raw_value": 7 - }, - "face_style_mono_color": 16777215, - "edge_style_model": "IsoLines", - "edge_style": 0, - "edge_intersection_color": { - "raw_value": 7 - }, - "edge_obscured_color": { - "raw_value": 257 - }, - "edge_obscured_line_type": 1, - "edge_intersection_line_type": 1, - "edge_crease_angle": 1.0, - "edge_modifiers": 8, - "edge_color": { - "raw_value": 7 - }, - "edge_opacity_level": 1.0, - "edge_width": 1, - "edge_overhang": 6, - "edge_jitter": 2, - "edge_silhouette_color": { - "raw_value": 7 - }, - "edge_silhouette_width": 3, - "edge_halo_gap": 0, - "edge_iso_line_count": 0, - "hide_edge_line_precision": false, - "edge_style_apply_flags": 0, - "display_style_settings": 13, - "brightness": 0.0, - "shadow_type": 0, - "internal_flag": false - } - } - }, - { - "common": { - "handle": 609, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "260" - }, - "offset": 18627 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 608 - }, - "specific": { - "DictionaryVariable": { - "object_schema_number": 0, - "value": "1:1" - } - } - }, - { - "common": { - "handle": 614, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "260" - }, - "offset": 18645 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 608 - }, - "specific": { - "DictionaryVariable": { - "object_schema_number": 0, - "value": "3.500000" - } - } - }, - { - "common": { - "handle": 615, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "260" - }, - "offset": 18663 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 608 - }, - "specific": { - "DictionaryVariable": { - "object_schema_number": 0, - "value": "acadiso.lin" - } - } - }, - { - "common": { - "handle": 611, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "260" - }, - "offset": 18681 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 608 - }, - "specific": { - "DictionaryVariable": { - "object_schema_number": 0, - "value": "Standard" - } - } - }, - { - "common": { - "handle": 610, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "260" - }, - "offset": 18699 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 608 - }, - "specific": { - "DictionaryVariable": { - "object_schema_number": 0, - "value": "Standard" - } - } - }, - { - "common": { - "handle": 674, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 90 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_ROUNDTRIP_2008_TABLESTYLE_CELLSTYLEMAP": 675 - } - } - } - }, - { - "common": { - "handle": 634, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 47 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 635 - } - } - } - }, - { - "common": { - "handle": 640, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 50 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 641 - } - } - } - }, - { - "common": { - "handle": 648, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 54 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 649 - } - } - } - }, - { - "common": { - "handle": 656, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 58 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 657 - } - } - } - }, - { - "common": { - "handle": 644, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 52 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 645 - } - } - } - }, - { - "common": { - "handle": 646, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 53 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 647 - } - } - } - }, - { - "common": { - "handle": 662, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 61 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 663 - } - } - } - }, - { - "common": { - "handle": 654, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 57 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 655 - } - } - } - }, - { - "common": { - "handle": 626, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 43 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 627 - } - } - } - }, - { - "common": { - "handle": 628, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 44 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 629 - } - } - } - }, - { - "common": { - "handle": 630, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 45 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 631 - } - } - } - }, - { - "common": { - "handle": 632, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 46 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 633 - } - } - } - }, - { - "common": { - "handle": 638, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 49 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 639 - } - } - } - }, - { - "common": { - "handle": 658, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 59 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 659 - } - } - } - }, - { - "common": { - "handle": 652, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 56 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 653 - } - } - } - }, - { - "common": { - "handle": 660, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 60 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 661 - } - } - } - }, - { - "common": { - "handle": 642, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 51 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 643 - } - } - } - }, - { - "common": { - "handle": 672, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 66 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 673 - } - } - } - }, - { - "common": { - "handle": 670, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 65 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 671 - } - } - } - }, - { - "common": { - "handle": 664, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 62 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 665 - } - } - } - }, - { - "common": { - "handle": 666, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 63 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 667 - } - } - } - }, - { - "common": { - "handle": 650, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 55 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 651 - } - } - } - }, - { - "common": { - "handle": 636, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 48 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 637 - } - } - } - }, - { - "common": { - "handle": 668, - "extension_data_groups": [], - "x_data": [], - "__owner_handle": 64 - }, - "specific": { - "Dictionary": { - "is_hard_owner": true, - "duplicate_record_handling": "KeepExisting", - "value_handles": { - "ACAD_XREC_ROUNDTRIP": 669 - } - } - } - }, - { - "common": { - "handle": 635, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "27A" - }, - "offset": 19763 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 634 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 19771 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 19773 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 19775 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 19777 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19779 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 19781 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 19783 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 19785 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19787 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 19789 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 19791 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 19793 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19795 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 19797 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 19799 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 19801 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19803 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 19805 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 19807 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 19809 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19811 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 19813 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 19815 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 19817 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19819 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 19821 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 19823 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 19825 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19827 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 19829 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 19831 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 19833 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19835 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 19837 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 19839 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 19841 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19843 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 19845 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 19847 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 19849 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19851 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 19853 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 19855 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 19857 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19859 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 19861 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 19863 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 19865 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19867 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 19869 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 19871 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 19873 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19875 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 19877 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 19879 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 19881 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 19883 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 19885 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19887 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 19889 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 19891 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 19893 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19895 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 19897 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 19899 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 19901 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19903 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 19905 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 19907 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 19909 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 19911 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 19913 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19915 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 19917 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 19919 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 19921 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19923 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 19925 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 19927 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 19929 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19931 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 19933 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 19935 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 19937 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19939 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 19941 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 19943 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 19945 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19947 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 19949 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 19951 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 19953 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19955 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 19957 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 19959 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 19961 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19963 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 19965 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 19967 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 19969 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 19971 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 19973 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 19975 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 19977 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 19979 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 19981 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 19983 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 19985 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 19987 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 19989 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19991 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 19993 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 19995 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 19997 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 19999 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 20001 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20003 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 20005 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20007 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 20009 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 20011 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 20013 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20015 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 20017 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 20019 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 20021 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20023 - } - ] - } - } - }, - { - "common": { - "handle": 641, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "280" - }, - "offset": 20031 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 640 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 20039 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 20041 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20043 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 20045 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20047 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 20049 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 20051 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 20053 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20055 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 20057 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 20059 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 20061 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20063 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 20065 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20067 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 20069 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20071 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 20073 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20075 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 20077 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20079 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 20081 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20083 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 20085 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20087 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 20089 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20091 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 20093 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20095 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 20097 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20099 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 20101 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20103 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 20105 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20107 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 20109 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20111 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 20113 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20115 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 20117 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20119 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 20121 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 20123 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 20125 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20127 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 20129 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 20131 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 20133 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20135 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 20137 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 20139 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 20141 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20143 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 20145 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 20147 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 20149 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 20151 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 20153 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20155 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 20157 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20159 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 20161 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20163 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 20165 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 20167 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 20169 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20171 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 20173 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 20175 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 20177 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 20179 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 20181 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20183 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 20185 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20187 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 20189 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20191 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 20193 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20195 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 20197 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20199 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 20201 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20203 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 20205 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20207 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 20209 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20211 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 20213 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20215 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 20217 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20219 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 20221 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20223 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 20225 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20227 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 20229 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20231 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 20233 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 20235 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 20237 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 20239 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 20241 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 20243 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 20245 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 20247 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 20249 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 20251 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 20253 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 20255 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 20257 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20259 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 20261 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 20263 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 20265 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20267 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 20269 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20271 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 20273 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20275 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 20277 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 20279 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 20281 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20283 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 20285 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 20287 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 20289 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20291 - } - ] - } - } - }, - { - "common": { - "handle": 649, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "288" - }, - "offset": 20299 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 648 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 20307 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 20309 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20311 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 20313 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20315 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 20317 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 20319 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 20321 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20323 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 20325 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 20327 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 20329 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20331 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 20333 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20335 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 20337 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20339 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 20341 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20343 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 20345 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20347 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 20349 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20351 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 20353 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20355 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 20357 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20359 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 20361 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20363 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 20365 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20367 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 20369 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20371 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 20373 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20375 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 20377 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20379 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 20381 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20383 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 20385 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20387 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 20389 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 20391 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 20393 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20395 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 20397 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 20399 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 20401 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20403 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 20405 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 20407 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 20409 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20411 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 20413 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 20415 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 20417 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 20419 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 20421 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20423 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 20425 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20427 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 20429 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20431 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 20433 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 20435 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 20437 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20439 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 20441 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 20443 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 20445 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 20447 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 20449 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20451 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 20453 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20455 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 20457 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20459 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 20461 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20463 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 20465 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20467 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 20469 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20471 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 20473 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20475 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 20477 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20479 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 20481 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20483 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 20485 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20487 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 20489 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20491 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 20493 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20495 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 20497 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20499 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 20501 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 20503 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 20505 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 20507 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 20509 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 20511 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 20513 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 20515 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 20517 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 20519 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 20521 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 20523 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 20525 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20527 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 20529 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 20531 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 20533 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20535 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 20537 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20539 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 20541 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20543 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 20545 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 20547 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 20549 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20551 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 20553 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 20555 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 20557 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20559 - } - ] - } - } - }, - { - "common": { - "handle": 657, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "290" - }, - "offset": 20567 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 656 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 20575 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 20577 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20579 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 20581 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20583 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 20585 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 20587 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 20589 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20591 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 20593 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 20595 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 20597 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20599 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 20601 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20603 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 20605 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20607 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 20609 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20611 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 20613 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20615 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 20617 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20619 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 20621 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20623 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 20625 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20627 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 20629 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20631 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 20633 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20635 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 20637 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20639 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 20641 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20643 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 20645 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20647 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 20649 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20651 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 20653 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20655 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 20657 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 20659 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 20661 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20663 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 20665 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 20667 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 20669 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20671 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 20673 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 20675 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 20677 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20679 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 20681 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 20683 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 20685 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 20687 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 20689 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20691 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 20693 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20695 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 20697 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20699 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 20701 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 20703 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 20705 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20707 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 20709 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 20711 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 20713 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 20715 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 20717 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20719 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 20721 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20723 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 20725 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20727 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 20729 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20731 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 20733 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20735 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 20737 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20739 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 20741 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20743 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 20745 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20747 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 20749 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20751 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 20753 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20755 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 20757 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20759 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 20761 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20763 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 20765 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20767 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 20769 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 20771 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 20773 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 20775 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 20777 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 20779 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 20781 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 20783 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 20785 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 20787 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 20789 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 20791 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 20793 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20795 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 20797 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 20799 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 20801 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20803 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 20805 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20807 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 20809 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20811 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 20813 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 20815 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 20817 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20819 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 20821 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 20823 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 20825 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20827 - } - ] - } - } - }, - { - "common": { - "handle": 645, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "284" - }, - "offset": 20835 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 644 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 20843 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 20845 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20847 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 20849 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20851 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 20853 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 20855 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 20857 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20859 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 20861 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 20863 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 20865 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20867 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 20869 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20871 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 20873 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20875 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 20877 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20879 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 20881 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20883 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 20885 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20887 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 20889 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20891 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 20893 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20895 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 20897 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20899 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 20901 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20903 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 20905 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20907 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 20909 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20911 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 20913 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20915 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 20917 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20919 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 20921 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20923 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 20925 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 20927 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 20929 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20931 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 20933 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 20935 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 20937 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20939 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 20941 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 20943 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 20945 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20947 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 20949 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 20951 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 20953 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 20955 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 20957 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20959 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 20961 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20963 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 20965 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20967 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 20969 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 20971 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 20973 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20975 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 20977 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 20979 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 20981 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 20983 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 20985 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20987 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 20989 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 20991 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 20993 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 20995 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 20997 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 20999 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 21001 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21003 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 21005 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21007 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 21009 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21011 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 21013 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21015 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 21017 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21019 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 21021 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21023 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 21025 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21027 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 21029 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21031 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 21033 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21035 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 21037 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 21039 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 21041 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 21043 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 21045 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21047 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 21049 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 21051 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 21053 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21055 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 21057 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 21059 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 21061 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21063 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 21065 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 21067 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 21069 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21071 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 21073 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21075 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 21077 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21079 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 21081 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 21083 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 21085 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21087 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 21089 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 21091 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 21093 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21095 - } - ] - } - } - }, - { - "common": { - "handle": 647, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "286" - }, - "offset": 21103 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 646 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 21111 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 21113 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21115 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 21117 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21119 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 21121 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 21123 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 21125 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21127 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 21129 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 21131 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 21133 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21135 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 21137 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21139 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 21141 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21143 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 21145 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21147 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 21149 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21151 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 21153 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21155 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 21157 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21159 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 21161 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21163 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 21165 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21167 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 21169 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21171 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 21173 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21175 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 21177 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21179 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 21181 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21183 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 21185 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21187 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 21189 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21191 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 21193 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 21195 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 21197 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21199 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 21201 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 21203 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 21205 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21207 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 21209 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 21211 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 21213 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21215 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 21217 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 21219 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 21221 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 21223 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 21225 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21227 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 21229 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21231 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 21233 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21235 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 21237 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 21239 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 21241 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21243 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 21245 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 21247 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 21249 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 21251 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 21253 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21255 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 21257 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21259 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 21261 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21263 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 21265 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21267 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 21269 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21271 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 21273 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21275 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 21277 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21279 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 21281 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21283 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 21285 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21287 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 21289 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21291 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 21293 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21295 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 21297 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21299 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 21301 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21303 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 21305 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 21307 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 21309 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 21311 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 21313 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21315 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 21317 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 21319 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 21321 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21323 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 21325 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 21327 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 21329 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21331 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 21333 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 21335 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 21337 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21339 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 21341 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21343 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 21345 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21347 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 21349 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 21351 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 21353 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21355 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 21357 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 21359 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 21361 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21363 - } - ] - } - } - }, - { - "common": { - "handle": 663, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "296" - }, - "offset": 21371 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 662 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 21379 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 21381 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21383 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 21385 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21387 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 21389 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 21391 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 21393 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21395 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 21397 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 21399 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 21401 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21403 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 21405 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21407 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 21409 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21411 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 21413 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21415 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 21417 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21419 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 21421 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21423 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 21425 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21427 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 21429 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21431 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 21433 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21435 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 21437 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21439 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 21441 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21443 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 21445 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21447 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 21449 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21451 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 21453 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21455 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 21457 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21459 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 21461 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 21463 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 21465 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21467 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 21469 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 21471 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 21473 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21475 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 21477 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 21479 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 21481 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21483 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 21485 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 21487 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 21489 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 21491 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 21493 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21495 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 21497 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21499 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 21501 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21503 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 21505 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 21507 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 21509 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21511 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 21513 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 21515 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 21517 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 21519 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 21521 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21523 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 21525 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21527 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 21529 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21531 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 21533 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21535 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 21537 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21539 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 21541 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21543 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 21545 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21547 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 21549 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21551 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 21553 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21555 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 21557 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21559 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 21561 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21563 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 21565 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21567 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 21569 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21571 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 21573 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 21575 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 21577 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 21579 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 21581 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21583 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 21585 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 21587 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 21589 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21591 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 21593 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 21595 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 21597 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21599 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 21601 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 21603 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 21605 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21607 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 21609 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21611 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 21613 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21615 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 21617 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 21619 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 21621 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21623 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 21625 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 21627 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 21629 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21631 - } - ] - } - } - }, - { - "common": { - "handle": 655, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "28E" - }, - "offset": 21639 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 654 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 21647 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 21649 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21651 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 21653 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21655 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 21657 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 21659 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 21661 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21663 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 21665 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 21667 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 21669 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21671 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 21673 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21675 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 21677 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21679 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 21681 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21683 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 21685 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21687 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 21689 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21691 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 21693 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21695 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 21697 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21699 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 21701 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21703 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 21705 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21707 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 21709 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21711 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 21713 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21715 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 21717 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21719 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 21721 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21723 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 21725 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21727 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 21729 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 21731 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 21733 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21735 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 21737 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 21739 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 21741 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21743 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 21745 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 21747 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 21749 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21751 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 21753 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 21755 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 21757 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 21759 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 21761 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21763 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 21765 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21767 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 21769 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21771 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 21773 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 21775 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 21777 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21779 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 21781 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 21783 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 21785 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 21787 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 21789 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21791 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 21793 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21795 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 21797 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21799 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 21801 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21803 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 21805 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21807 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 21809 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21811 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 21813 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21815 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 21817 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21819 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 21821 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21823 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 21825 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21827 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 21829 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21831 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 21833 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21835 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 21837 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21839 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 21841 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 21843 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 21845 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 21847 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 21849 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21851 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 21853 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 21855 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 21857 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 21859 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 21861 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 21863 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 21865 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21867 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 21869 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 21871 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 21873 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21875 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 21877 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21879 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 21881 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21883 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 21885 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 21887 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 21889 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21891 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 21893 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 21895 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 21897 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21899 - } - ] - } - } - }, - { - "common": { - "handle": 627, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "272" - }, - "offset": 21907 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 626 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 21915 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 21917 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21919 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 21921 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21923 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 21925 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 21927 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 21929 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21931 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 21933 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 21935 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 21937 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21939 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 21941 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21943 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 21945 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21947 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 21949 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21951 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 21953 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21955 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 21957 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21959 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 21961 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21963 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 21965 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21967 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 21969 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21971 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 21973 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21975 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 21977 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21979 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 21981 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 21983 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 21985 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21987 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 21989 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 21991 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 21993 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 21995 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 21997 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 21999 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 22001 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22003 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 22005 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 22007 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 22009 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22011 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 22013 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 22015 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 22017 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22019 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 22021 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 22023 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 22025 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 22027 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 22029 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22031 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 22033 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22035 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 22037 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22039 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 22041 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 22043 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 22045 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22047 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 22049 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 22051 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 22053 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 22055 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 22057 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22059 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 22061 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22063 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 22065 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22067 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 22069 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22071 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 22073 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22075 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 22077 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22079 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 22081 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22083 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 22085 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22087 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 22089 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22091 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 22093 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22095 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 22097 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22099 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 22101 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22103 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 22105 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22107 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 22109 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 22111 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 22113 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 22115 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 22117 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 22119 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 22121 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 22123 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 22125 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 22127 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 22129 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 22131 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 22133 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22135 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 22137 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 22139 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 22141 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22143 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 22145 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22147 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 22149 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22151 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 22153 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 22155 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 22157 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22159 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 22161 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 22163 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 22165 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22167 - } - ] - } - } - }, - { - "common": { - "handle": 629, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "274" - }, - "offset": 22175 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 628 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 22183 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 22185 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22187 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 22189 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22191 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 22193 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 22195 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 22197 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22199 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 22201 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 22203 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 22205 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22207 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 22209 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22211 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 22213 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22215 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 22217 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22219 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 22221 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22223 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 22225 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22227 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 22229 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22231 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 22233 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22235 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 22237 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22239 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 22241 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22243 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 22245 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22247 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 22249 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22251 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 22253 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22255 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 22257 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22259 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 22261 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22263 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 22265 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 22267 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 22269 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22271 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 22273 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 22275 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 22277 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22279 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 22281 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 22283 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 22285 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22287 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 22289 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 22291 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 22293 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 22295 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 22297 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22299 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 22301 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22303 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 22305 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22307 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 22309 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 22311 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 22313 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22315 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 22317 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 22319 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 22321 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 22323 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 22325 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22327 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 22329 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22331 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 22333 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22335 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 22337 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22339 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 22341 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22343 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 22345 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22347 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 22349 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22351 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 22353 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22355 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 22357 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22359 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 22361 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22363 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 22365 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22367 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 22369 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22371 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 22373 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22375 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 22377 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 22379 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 22381 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 22383 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 22385 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 22387 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 22389 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 22391 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 22393 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 22395 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 22397 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 22399 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 22401 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22403 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 22405 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 22407 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 22409 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22411 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 22413 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22415 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 22417 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22419 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 22421 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 22423 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 22425 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22427 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 22429 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 22431 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 22433 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22435 - } - ] - } - } - }, - { - "common": { - "handle": 631, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "276" - }, - "offset": 22443 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 630 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 22451 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 22453 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22455 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 22457 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22459 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 22461 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 22463 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 22465 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22467 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 22469 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 22471 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 22473 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22475 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 22477 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22479 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 22481 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22483 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 22485 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22487 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 22489 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22491 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 22493 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22495 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 22497 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22499 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 22501 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22503 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 22505 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22507 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 22509 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22511 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 22513 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22515 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 22517 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22519 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 22521 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22523 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 22525 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22527 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 22529 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22531 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 22533 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 22535 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 22537 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22539 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 22541 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 22543 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 22545 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22547 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 22549 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 22551 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 22553 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22555 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 22557 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 22559 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 22561 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 22563 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 22565 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22567 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 22569 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22571 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 22573 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22575 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 22577 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 22579 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 22581 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22583 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 22585 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 22587 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 22589 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 22591 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 22593 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22595 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 22597 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22599 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 22601 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22603 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 22605 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22607 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 22609 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22611 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 22613 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22615 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 22617 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22619 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 22621 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22623 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 22625 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22627 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 22629 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22631 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 22633 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22635 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 22637 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22639 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 22641 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22643 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 22645 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 22647 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 22649 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 22651 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 22653 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 22655 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 22657 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 22659 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 22661 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 22663 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 22665 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 22667 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 22669 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22671 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 22673 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 22675 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 22677 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22679 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 22681 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22683 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 22685 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22687 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 22689 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 22691 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 22693 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22695 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 22697 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 22699 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 22701 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22703 - } - ] - } - } - }, - { - "common": { - "handle": 633, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "278" - }, - "offset": 22711 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 632 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 22719 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 22721 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22723 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 22725 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22727 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 22729 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 22731 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 22733 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22735 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 22737 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 22739 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 22741 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22743 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 22745 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22747 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 22749 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22751 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 22753 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22755 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 22757 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22759 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 22761 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22763 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 22765 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22767 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 22769 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22771 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 22773 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22775 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 22777 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22779 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 22781 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22783 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 22785 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22787 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 22789 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22791 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 22793 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22795 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 22797 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22799 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 22801 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 22803 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 22805 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22807 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 22809 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 22811 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 22813 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22815 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 22817 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 22819 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 22821 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22823 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 22825 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 22827 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 22829 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 22831 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 22833 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22835 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 22837 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22839 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 22841 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22843 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 22845 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 22847 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 22849 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22851 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 22853 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 22855 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 22857 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 22859 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 22861 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22863 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 22865 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22867 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 22869 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22871 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 22873 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22875 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 22877 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22879 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 22881 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22883 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 22885 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22887 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 22889 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22891 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 22893 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22895 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 22897 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22899 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 22901 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22903 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 22905 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 22907 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 22909 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22911 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 22913 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 22915 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 22917 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 22919 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 22921 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 22923 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 22925 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 22927 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 22929 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 22931 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 22933 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 22935 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 22937 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22939 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 22941 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 22943 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 22945 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22947 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 22949 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22951 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 22953 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22955 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 22957 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 22959 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 22961 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22963 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 22965 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 22967 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 22969 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22971 - } - ] - } - } - }, - { - "common": { - "handle": 639, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "27E" - }, - "offset": 22979 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 638 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 22987 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 22989 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 22991 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 22993 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 22995 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 22997 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 22999 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 23001 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23003 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 23005 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 23007 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 23009 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23011 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 23013 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23015 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 23017 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23019 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 23021 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23023 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 23025 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23027 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 23029 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23031 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 23033 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23035 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 23037 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23039 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 23041 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23043 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 23045 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23047 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 23049 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23051 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 23053 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23055 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 23057 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23059 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 23061 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23063 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 23065 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23067 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 23069 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 23071 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 23073 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23075 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 23077 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 23079 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 23081 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23083 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 23085 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 23087 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 23089 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23091 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 23093 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 23095 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 23097 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 23099 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 23101 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23103 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 23105 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23107 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 23109 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23111 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 23113 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 23115 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 23117 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23119 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 23121 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 23123 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 23125 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 23127 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 23129 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23131 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 23133 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23135 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 23137 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23139 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 23141 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23143 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 23145 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23147 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 23149 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23151 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 23153 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23155 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 23157 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23159 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 23161 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23163 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 23165 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23167 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 23169 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23171 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 23173 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23175 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 23177 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23179 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 23181 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 23183 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 23185 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 23187 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 23189 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23191 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 23193 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 23195 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 23197 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23199 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 23201 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 23203 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 23205 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23207 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 23209 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 23211 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 23213 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23215 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 23217 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23219 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 23221 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23223 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 23225 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 23227 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 23229 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23231 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 23233 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 23235 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 23237 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23239 - } - ] - } - } - }, - { - "common": { - "handle": 659, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "292" - }, - "offset": 23247 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 658 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 23255 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 23257 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23259 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 23261 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23263 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 23265 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 23267 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 23269 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23271 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 23273 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 23275 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 23277 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23279 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 23281 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23283 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 23285 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23287 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 23289 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23291 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 23293 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23295 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 23297 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23299 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 23301 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23303 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 23305 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23307 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 23309 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23311 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 23313 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23315 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 23317 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23319 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 23321 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23323 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 23325 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23327 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 23329 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23331 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 23333 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23335 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 23337 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 23339 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 23341 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23343 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 23345 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 23347 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 23349 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23351 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 23353 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 23355 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 23357 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23359 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 23361 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 23363 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 23365 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 23367 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 23369 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23371 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 23373 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23375 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 23377 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23379 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 23381 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 23383 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 23385 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23387 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 23389 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 23391 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 23393 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 23395 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 23397 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23399 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 23401 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23403 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 23405 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23407 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 23409 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23411 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 23413 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23415 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 23417 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23419 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 23421 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23423 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 23425 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23427 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 23429 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23431 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 23433 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23435 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 23437 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23439 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 23441 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23443 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 23445 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23447 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 23449 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 23451 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 23453 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 23455 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 23457 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23459 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 23461 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 23463 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 23465 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23467 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 23469 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 23471 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 23473 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23475 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 23477 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 23479 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 23481 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23483 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 23485 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23487 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 23489 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23491 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 23493 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 23495 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 23497 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23499 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 23501 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 23503 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 23505 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23507 - } - ] - } - } - }, - { - "common": { - "handle": 653, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "28C" - }, - "offset": 23515 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 652 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 23523 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 23525 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23527 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 23529 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23531 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 23533 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 23535 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 23537 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23539 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 23541 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 23543 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 23545 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23547 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 23549 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23551 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 23553 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23555 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 23557 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23559 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 23561 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23563 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 23565 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23567 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 23569 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23571 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 23573 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23575 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 23577 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23579 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 23581 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23583 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 23585 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23587 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 23589 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23591 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 23593 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23595 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 23597 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23599 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 23601 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23603 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 23605 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 23607 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 23609 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23611 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 23613 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 23615 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 23617 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23619 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 23621 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 23623 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 23625 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23627 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 23629 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 23631 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 23633 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 23635 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 23637 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23639 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 23641 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23643 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 23645 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23647 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 23649 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 23651 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 23653 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23655 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 23657 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 23659 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 23661 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 23663 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 23665 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23667 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 23669 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23671 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 23673 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23675 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 23677 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23679 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 23681 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23683 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 23685 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23687 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 23689 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23691 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 23693 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23695 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 23697 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23699 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 23701 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23703 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 23705 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23707 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 23709 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23711 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 23713 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23715 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 23717 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 23719 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 23721 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 23723 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 23725 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23727 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 23729 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 23731 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 23733 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23735 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 23737 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 23739 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 23741 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23743 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 23745 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 23747 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 23749 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23751 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 23753 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23755 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 23757 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23759 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 23761 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 23763 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 23765 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23767 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 23769 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 23771 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 23773 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 23775 - } - ] - } - } - }, - { - "common": { - "handle": 661, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "294" - }, - "offset": 23783 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 660 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 23791 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 23793 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23795 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 23797 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23799 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 23801 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 23803 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 23805 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23807 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 23809 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 23811 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 23813 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23815 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 23817 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23819 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 23821 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23823 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 23825 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23827 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 23829 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23831 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 23833 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23835 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 23837 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23839 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 23841 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23843 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 23845 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23847 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 23849 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23851 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 23853 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23855 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 23857 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23859 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 23861 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23863 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 23865 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23867 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 23869 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23871 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 23873 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 23875 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 23877 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23879 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 23881 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 23883 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 23885 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23887 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 23889 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 23891 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 23893 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23895 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 23897 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 23899 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 23901 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 23903 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 23905 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23907 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 23909 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23911 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 23913 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23915 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 23917 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 23919 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 23921 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23923 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 23925 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 23927 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 23929 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 23931 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 23933 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23935 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 23937 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23939 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 23941 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23943 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 23945 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23947 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 23949 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23951 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 23953 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23955 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 23957 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23959 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 23961 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23963 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 23965 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23967 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 23969 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 23971 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 23973 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23975 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 23977 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 23979 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 23981 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23983 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 23985 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 23987 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 23989 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 23991 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 23993 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 23995 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 23997 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 23999 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 24001 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 24003 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 24005 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 24007 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 24009 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 24011 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 24013 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 24015 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 24017 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 24019 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 24021 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24023 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 24025 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 24027 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 24029 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 24031 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 24033 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 24035 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 24037 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 24039 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 24041 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 24043 - } - ] - } - } - }, - { - "common": { - "handle": 643, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "282" - }, - "offset": 24051 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 642 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 24059 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 24061 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24063 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 24065 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24067 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 24069 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 24071 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 24073 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24075 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 24077 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 24079 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 24081 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24083 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 24085 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24087 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 24089 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24091 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 24093 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24095 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 24097 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24099 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 24101 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24103 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 24105 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24107 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 24109 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24111 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 24113 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24115 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 24117 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24119 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 24121 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24123 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 24125 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24127 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 24129 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24131 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 24133 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24135 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 24137 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24139 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 24141 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 24143 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 24145 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24147 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 24149 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 24151 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 24153 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24155 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 24157 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 24159 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 24161 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24163 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 24165 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 24167 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 24169 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 24171 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 24173 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24175 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 24177 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24179 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 24181 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24183 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 24185 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 24187 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 24189 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24191 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 24193 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 24195 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 24197 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 24199 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 24201 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24203 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 24205 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24207 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 24209 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24211 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 24213 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24215 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 24217 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24219 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 24221 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24223 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 24225 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24227 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 24229 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24231 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 24233 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24235 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 24237 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24239 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 24241 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24243 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 24245 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24247 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 24249 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24251 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 24253 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 24255 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 24257 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 24259 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 24261 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 24263 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 24265 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 24267 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 24269 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 24271 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 24273 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 24275 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 24277 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24279 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 24281 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 24283 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 24285 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24287 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 24289 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24291 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 24293 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24295 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 24297 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 24299 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 24301 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24303 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 24305 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 24307 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 24309 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24311 - } - ] - } - } - }, - { - "common": { - "handle": 673, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "2A0" - }, - "offset": 24319 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 672 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 24327 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 24329 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24331 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 24333 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24335 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 24337 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 24339 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 24341 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24343 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 24345 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 24347 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 24349 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24351 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 24353 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24355 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 24357 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24359 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 24361 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24363 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 24365 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24367 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 24369 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24371 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 24373 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24375 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 24377 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24379 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 24381 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24383 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 24385 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24387 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 24389 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24391 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 24393 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24395 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 24397 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24399 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 24401 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24403 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 24405 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24407 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 24409 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 24411 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 24413 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24415 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 24417 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 24419 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 24421 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24423 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 24425 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 24427 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 24429 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24431 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 24433 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 24435 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 24437 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 24439 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 24441 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24443 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 24445 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24447 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 24449 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24451 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 24453 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 24455 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 24457 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24459 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 24461 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 24463 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 24465 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 24467 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 24469 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24471 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 24473 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24475 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 24477 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24479 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 24481 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24483 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 24485 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24487 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 24489 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24491 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 24493 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24495 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 24497 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24499 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 24501 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24503 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 24505 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24507 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 24509 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24511 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 24513 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24515 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 24517 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24519 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 24521 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 24523 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 24525 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 24527 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 24529 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 24531 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 24533 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 24535 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 24537 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 24539 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 24541 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 24543 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 24545 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24547 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 24549 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 24551 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 24553 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24555 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 24557 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24559 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 24561 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24563 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 24565 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 24567 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 24569 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24571 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 24573 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 24575 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 24577 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24579 - } - ] - } - } - }, - { - "common": { - "handle": 671, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "29E" - }, - "offset": 24587 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 670 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 24595 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 24597 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24599 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 24601 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24603 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 24605 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 24607 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 24609 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24611 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 24613 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 24615 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 24617 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24619 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 24621 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24623 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 24625 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24627 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 24629 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24631 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 24633 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24635 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 24637 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24639 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 24641 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24643 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 24645 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24647 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 24649 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24651 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 24653 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24655 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 24657 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24659 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 24661 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24663 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 24665 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24667 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 24669 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24671 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 24673 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24675 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 24677 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 24679 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 24681 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24683 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 24685 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 24687 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 24689 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24691 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 24693 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 24695 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 24697 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24699 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 24701 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 24703 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 24705 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 24707 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 24709 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24711 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 24713 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24715 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 24717 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24719 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 24721 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 24723 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 24725 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24727 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 24729 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 24731 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 24733 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 24735 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 24737 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24739 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 24741 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24743 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 24745 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24747 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 24749 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24751 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 24753 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24755 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 24757 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24759 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 24761 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24763 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 24765 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24767 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 24769 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24771 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 24773 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24775 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 24777 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24779 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 24781 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24783 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 24785 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24787 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 24789 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 24791 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 24793 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 24795 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 24797 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 24799 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 24801 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 24803 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 24805 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 24807 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 24809 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 24811 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 24813 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24815 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 24817 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 24819 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 24821 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24823 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 24825 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24827 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 24829 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24831 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 24833 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 24835 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 24837 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24839 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 24841 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 24843 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 24845 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24847 - } - ] - } - } - }, - { - "common": { - "handle": 665, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "298" - }, - "offset": 24855 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 664 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 24863 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 24865 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24867 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 24869 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24871 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 24873 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 24875 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 24877 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24879 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 24881 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 24883 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 24885 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24887 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 24889 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24891 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 24893 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24895 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 24897 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24899 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 24901 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24903 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 24905 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24907 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 24909 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24911 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 24913 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24915 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 24917 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24919 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 24921 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24923 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 24925 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24927 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 24929 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 24931 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 24933 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24935 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 24937 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24939 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 24941 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24943 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 24945 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 24947 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 24949 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24951 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 24953 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 24955 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 24957 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24959 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 24961 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 24963 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 24965 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24967 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 24969 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 24971 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 24973 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 24975 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 24977 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24979 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 24981 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 24983 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 24985 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24987 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 24989 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 24991 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 24993 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 24995 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 24997 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 24999 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 25001 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 25003 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 25005 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25007 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 25009 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25011 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 25013 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25015 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 25017 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25019 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 25021 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25023 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 25025 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25027 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 25029 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25031 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 25033 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25035 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 25037 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25039 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 25041 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25043 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 25045 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25047 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 25049 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25051 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 25053 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25055 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 25057 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 25059 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 25061 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 25063 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 25065 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 25067 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 25069 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 25071 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 25073 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 25075 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 25077 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 25079 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 25081 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25083 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 25085 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 25087 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 25089 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25091 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 25093 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25095 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 25097 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25099 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 25101 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 25103 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 25105 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25107 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 25109 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 25111 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 25113 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25115 - } - ] - } - } - }, - { - "common": { - "handle": 667, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "29A" - }, - "offset": 25123 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 666 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 25131 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 25133 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25135 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 25137 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25139 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 25141 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 25143 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 25145 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25147 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 25149 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 25151 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 25153 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25155 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 25157 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25159 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 25161 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25163 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 25165 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25167 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 25169 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25171 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 25173 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25175 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 25177 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25179 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 25181 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25183 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 25185 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25187 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 25189 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25191 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 25193 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25195 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 25197 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25199 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 25201 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25203 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 25205 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25207 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 25209 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25211 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 25213 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 25215 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 25217 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25219 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 25221 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 25223 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 25225 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25227 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 25229 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 25231 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 25233 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25235 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 25237 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 25239 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 25241 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 25243 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 25245 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25247 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 25249 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25251 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 25253 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25255 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 25257 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 25259 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 25261 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25263 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 25265 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 25267 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 25269 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 25271 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 25273 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25275 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 25277 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25279 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 25281 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25283 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 25285 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25287 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 25289 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25291 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 25293 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25295 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 25297 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25299 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 25301 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25303 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 25305 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25307 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 25309 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25311 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 25313 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25315 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 25317 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25319 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 25321 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25323 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 25325 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 25327 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 25329 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 25331 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 25333 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 25335 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 25337 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 25339 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 25341 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 25343 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 25345 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 25347 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 25349 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25351 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 25353 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 25355 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 25357 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25359 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 25361 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25363 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 25365 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25367 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 25369 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 25371 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 25373 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25375 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 25377 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 25379 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 25381 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25383 - } - ] - } - } - }, - { - "common": { - "handle": 651, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "28A" - }, - "offset": 25391 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 650 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 25399 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 25401 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25403 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 25405 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25407 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 25409 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 25411 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 25413 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25415 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 25417 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 25419 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 25421 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25423 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 25425 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25427 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 25429 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25431 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 25433 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25435 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 25437 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25439 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 25441 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25443 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 25445 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25447 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 25449 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25451 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 25453 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25455 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 25457 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25459 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 25461 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25463 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 25465 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25467 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 25469 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25471 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 25473 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25475 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 25477 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25479 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 25481 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 25483 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 25485 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25487 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 25489 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 25491 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 25493 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25495 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 25497 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 25499 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 25501 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25503 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 25505 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 25507 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 25509 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 25511 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 25513 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25515 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 25517 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25519 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 25521 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25523 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 25525 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 25527 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 25529 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25531 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 25533 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 25535 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 25537 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 25539 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 25541 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25543 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 25545 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25547 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 25549 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25551 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 25553 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25555 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 25557 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25559 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 25561 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25563 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 25565 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25567 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 25569 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25571 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 25573 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25575 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 25577 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25579 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 25581 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25583 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 25585 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25587 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 25589 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25591 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 25593 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 25595 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 25597 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 25599 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 25601 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 25603 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 25605 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 25607 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 25609 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 25611 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 25613 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 25615 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 25617 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25619 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 25621 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 25623 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 25625 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25627 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 25629 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25631 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 25633 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25635 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 25637 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 25639 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 25641 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25643 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 25645 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 25647 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 25649 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25651 - } - ] - } - } - }, - { - "common": { - "handle": 637, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "27C" - }, - "offset": 25659 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 636 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 25667 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 25669 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25671 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 25673 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25675 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 25677 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 25679 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 25681 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25683 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 25685 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 25687 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 25689 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25691 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 25693 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25695 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 25697 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25699 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 25701 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25703 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 25705 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25707 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 25709 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25711 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 25713 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25715 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 25717 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25719 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 25721 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25723 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 25725 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25727 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 25729 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25731 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 25733 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25735 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 25737 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25739 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 25741 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25743 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 25745 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25747 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 25749 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 25751 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 25753 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25755 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 25757 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 25759 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 25761 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25763 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 25765 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 25767 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 25769 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25771 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 25773 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 25775 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 25777 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 25779 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 25781 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25783 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 25785 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25787 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 25789 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25791 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 25793 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 25795 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 25797 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25799 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 25801 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 25803 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 25805 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 25807 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 25809 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25811 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 25813 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25815 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 25817 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25819 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 25821 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25823 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 25825 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25827 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 25829 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25831 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 25833 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25835 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 25837 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25839 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 25841 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25843 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 25845 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25847 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 25849 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25851 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 25853 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 25855 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 25857 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25859 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 25861 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 25863 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 25865 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 25867 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 25869 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 25871 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 25873 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 25875 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 25877 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 25879 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 25881 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 25883 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 25885 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25887 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 25889 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 25891 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 25893 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25895 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 25897 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25899 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 25901 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25903 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 25905 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 25907 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 25909 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25911 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 25913 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 25915 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 25917 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25919 - } - ] - } - } - }, - { - "common": { - "handle": 669, - "extension_data_groups": [ - { - "application_name": "ACAD_REACTORS", - "items": [ - { - "CodePair": { - "code": 330, - "value": { - "Str": "29C" - }, - "offset": 25927 - } - } - ] - } - ], - "x_data": [], - "__owner_handle": 668 - }, - "specific": { - "XRecordObject": { - "duplicate_record_handling": "NotApplicable", - "data_pairs": [ - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 25935 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop28" - }, - "offset": 25937 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25939 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp28" - }, - "offset": 25941 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25943 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop29" - }, - "offset": 25945 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 25947 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp29" - }, - "offset": 25949 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25951 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop30" - }, - "offset": 25953 - }, - { - "code": 280, - "value": { - "Short": 1 - }, - "offset": 25955 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp30" - }, - "offset": 25957 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25959 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop31" - }, - "offset": 25961 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25963 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp31" - }, - "offset": 25965 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25967 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop32" - }, - "offset": 25969 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25971 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp32" - }, - "offset": 25973 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25975 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop33" - }, - "offset": 25977 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25979 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp33" - }, - "offset": 25981 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25983 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop34" - }, - "offset": 25985 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25987 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp34" - }, - "offset": 25989 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25991 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop35" - }, - "offset": 25993 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 25995 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp35" - }, - "offset": 25997 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 25999 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop36" - }, - "offset": 26001 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 26003 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp36" - }, - "offset": 26005 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26007 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop37" - }, - "offset": 26009 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 26011 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp37" - }, - "offset": 26013 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26015 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop38" - }, - "offset": 26017 - }, - { - "code": 140, - "value": { - "Double": 0.0 - }, - "offset": 26019 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp38" - }, - "offset": 26021 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26023 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop39" - }, - "offset": 26025 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 26027 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp39" - }, - "offset": 26029 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26031 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop40" - }, - "offset": 26033 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 26035 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp40" - }, - "offset": 26037 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26039 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorIndex" - }, - "offset": 26041 - }, - { - "code": 90, - "value": { - "Integer": 18 - }, - "offset": 26043 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop41ColorRGB" - }, - "offset": 26045 - }, - { - "code": 90, - "value": { - "Integer": 0 - }, - "offset": 26047 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp41" - }, - "offset": 26049 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26051 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop42" - }, - "offset": 26053 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 26055 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp42" - }, - "offset": 26057 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26059 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop43" - }, - "offset": 26061 - }, - { - "code": 90, - "value": { - "Integer": 3 - }, - "offset": 26063 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp43" - }, - "offset": 26065 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26067 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorIndex" - }, - "offset": 26069 - }, - { - "code": 90, - "value": { - "Integer": 5 - }, - "offset": 26071 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop44ColorRGB" - }, - "offset": 26073 - }, - { - "code": 90, - "value": { - "Integer": 255 - }, - "offset": 26075 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp44" - }, - "offset": 26077 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26079 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop45" - }, - "offset": 26081 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 26083 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp45" - }, - "offset": 26085 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26087 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop46" - }, - "offset": 26089 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 26091 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp46" - }, - "offset": 26093 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26095 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop47" - }, - "offset": 26097 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 26099 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp47" - }, - "offset": 26101 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26103 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop48" - }, - "offset": 26105 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 26107 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp48" - }, - "offset": 26109 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26111 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop49" - }, - "offset": 26113 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 26115 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp49" - }, - "offset": 26117 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26119 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop50" - }, - "offset": 26121 - }, - { - "code": 90, - "value": { - "Integer": 50 - }, - "offset": 26123 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp50" - }, - "offset": 26125 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26127 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorIndex" - }, - "offset": 26129 - }, - { - "code": 90, - "value": { - "Integer": 256 - }, - "offset": 26131 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop51ColorRGB" - }, - "offset": 26133 - }, - { - "code": 90, - "value": { - "Integer": -16777216 - }, - "offset": 26135 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp51" - }, - "offset": 26137 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 26139 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop52" - }, - "offset": 26141 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 26143 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp52" - }, - "offset": 26145 - }, - { - "code": 70, - "value": { - "Short": 0 - }, - "offset": 26147 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop53" - }, - "offset": 26149 - }, - { - "code": 90, - "value": { - "Integer": 2 - }, - "offset": 26151 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp53" - }, - "offset": 26153 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26155 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop54" - }, - "offset": 26157 - }, - { - "code": 1, - "value": { - "Str": "strokes_ogs.tif" - }, - "offset": 26159 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp54" - }, - "offset": 26161 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26163 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop55" - }, - "offset": 26165 - }, - { - "code": 280, - "value": { - "Short": 0 - }, - "offset": 26167 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp55" - }, - "offset": 26169 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26171 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop56" - }, - "offset": 26173 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 26175 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp56" - }, - "offset": 26177 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26179 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010Prop57" - }, - "offset": 26181 - }, - { - "code": 140, - "value": { - "Double": 1.0 - }, - "offset": 26183 - }, - { - "code": 102, - "value": { - "Str": "RTVSPost2010PropOp57" - }, - "offset": 26185 - }, - { - "code": 70, - "value": { - "Short": 1 - }, - "offset": 26187 - } - ] - } - } - } - ] -} \ No newline at end of file