thinreports 0.6.0.pre3 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (158) hide show
  1. data/README.rdoc +37 -32
  2. data/doc/yardoc_templates/default/layout/html/footer.erb +1 -1
  3. data/lib/thinreports.rb +2 -1
  4. data/lib/thinreports/config.rb +21 -0
  5. data/lib/thinreports/core/errors.rb +14 -1
  6. data/lib/thinreports/core/format/builder.rb +6 -1
  7. data/lib/thinreports/core/page.rb +6 -6
  8. data/lib/thinreports/core/shape.rb +8 -9
  9. data/lib/thinreports/core/shape/base/internal.rb +6 -12
  10. data/lib/thinreports/core/shape/basic.rb +3 -0
  11. data/lib/thinreports/core/shape/basic/block_format.rb +12 -0
  12. data/lib/thinreports/core/shape/basic/block_interface.rb +25 -0
  13. data/lib/thinreports/core/shape/basic/block_internal.rb +33 -0
  14. data/lib/thinreports/core/shape/basic/interface.rb +37 -11
  15. data/lib/thinreports/core/shape/basic/internal.rb +3 -12
  16. data/lib/thinreports/core/shape/image_block.rb +15 -0
  17. data/lib/thinreports/core/shape/image_block/format.rb +13 -0
  18. data/lib/thinreports/core/shape/image_block/interface.rb +19 -0
  19. data/lib/thinreports/core/shape/image_block/internal.rb +16 -0
  20. data/lib/thinreports/core/shape/list/events.rb +19 -2
  21. data/lib/thinreports/core/shape/list/manager.rb +17 -4
  22. data/lib/thinreports/core/shape/list/page.rb +2 -2
  23. data/lib/thinreports/core/shape/list/page_state.rb +4 -0
  24. data/lib/thinreports/core/shape/list/section_internal.rb +4 -0
  25. data/lib/thinreports/core/shape/manager/format.rb +1 -1
  26. data/lib/thinreports/core/shape/manager/internal.rb +24 -11
  27. data/lib/thinreports/core/shape/manager/target.rb +2 -2
  28. data/lib/thinreports/core/shape/style.rb +15 -0
  29. data/lib/thinreports/core/shape/style/base.rb +149 -0
  30. data/lib/thinreports/core/shape/style/basic.rb +17 -0
  31. data/lib/thinreports/core/shape/style/graphic.rb +60 -0
  32. data/lib/thinreports/core/shape/style/text.rb +138 -0
  33. data/lib/thinreports/core/shape/text/internal.rb +4 -0
  34. data/lib/thinreports/core/shape/text_block.rb +16 -0
  35. data/lib/thinreports/core/shape/{tblock → text_block}/format.rb +3 -3
  36. data/lib/thinreports/core/shape/{tblock → text_block}/formatter.rb +7 -7
  37. data/lib/thinreports/core/shape/{tblock → text_block}/formatter/basic.rb +1 -1
  38. data/lib/thinreports/core/shape/{tblock → text_block}/formatter/datetime.rb +1 -1
  39. data/lib/thinreports/core/shape/{tblock → text_block}/formatter/number.rb +1 -1
  40. data/lib/thinreports/core/shape/{tblock → text_block}/formatter/padding.rb +10 -8
  41. data/lib/thinreports/core/shape/{tblock → text_block}/interface.rb +2 -21
  42. data/lib/thinreports/core/shape/{tblock → text_block}/internal.rb +16 -10
  43. data/lib/thinreports/core/utils.rb +0 -8
  44. data/lib/thinreports/generator.rb +2 -2
  45. data/lib/thinreports/generator/configuration.rb +30 -0
  46. data/lib/thinreports/generator/pdf.rb +13 -10
  47. data/lib/thinreports/generator/pdf/configuration.rb +28 -0
  48. data/lib/thinreports/generator/pdf/document.rb +16 -56
  49. data/lib/thinreports/generator/pdf/document/draw_shape.rb +35 -17
  50. data/lib/thinreports/generator/pdf/document/font.rb +25 -9
  51. data/lib/thinreports/generator/pdf/document/graphics.rb +1 -1
  52. data/lib/thinreports/generator/pdf/document/graphics/attributes.rb +18 -4
  53. data/lib/thinreports/generator/pdf/document/graphics/basic.rb +1 -1
  54. data/lib/thinreports/generator/pdf/document/graphics/image.rb +18 -1
  55. data/lib/thinreports/generator/pdf/document/graphics/text.rb +29 -6
  56. data/lib/thinreports/generator/pdf/document/page.rb +70 -0
  57. data/lib/thinreports/generator/pdf/document/parse_color.rb +1 -1
  58. data/lib/thinreports/generator/pdf/document/parse_svg.rb +1 -1
  59. data/lib/thinreports/generator/pdf/drawer.rb +1 -1
  60. data/lib/thinreports/generator/pdf/drawer/base.rb +5 -7
  61. data/lib/thinreports/generator/pdf/drawer/list.rb +4 -4
  62. data/lib/thinreports/generator/pdf/drawer/list_section.rb +8 -3
  63. data/lib/thinreports/generator/pdf/drawer/page.rb +10 -3
  64. data/lib/thinreports/generator/pdf/prawn_ext.rb +16 -21
  65. data/lib/thinreports/layout/format.rb +2 -2
  66. data/lib/thinreports/layout/version.rb +2 -2
  67. data/lib/thinreports/report/base.rb +68 -31
  68. data/tasks/test.rake +48 -4
  69. data/test/benchmark/basic_estimate.tlf +1 -0
  70. data/test/benchmark/bench_basic_estimate.rb +95 -0
  71. data/test/case/character_spacing/character_spacing.rb +7 -0
  72. data/test/case/character_spacing/character_spacing.tlf +1 -0
  73. data/test/case/dynamic_image/dynamic_image.rb +41 -0
  74. data/test/case/dynamic_image/dynamic_image.tlf +1 -0
  75. data/test/case/dynamic_image/img200x100.png +0 -0
  76. data/test/case/dynamic_image/img50x50.png +0 -0
  77. data/test/case/dynamic_style/dynamic_style.rb +154 -0
  78. data/test/case/dynamic_style/dynamic_style.tlf +1 -0
  79. data/test/case/dynamic_style/dynamic_style_in_list.tlf +1 -0
  80. data/test/case/dynamic_style/image.png +0 -0
  81. data/test/case/eudc/eudc.rb +20 -0
  82. data/test/case/eudc/eudc.tlf +1 -0
  83. data/test/case/eudc/eudc.ttf +0 -0
  84. data/test/case/helper.rb +27 -0
  85. data/test/case/hidden_shapes/hidden_shapes.rb +13 -0
  86. data/test/case/hidden_shapes/hidden_shapes.tlf +1 -0
  87. data/test/case/list_events/list_events.rb +32 -0
  88. data/test/case/list_events/list_events.tlf +1 -0
  89. data/test/case/list_header_inheriting/list_header_inheriting.rb +19 -0
  90. data/test/case/list_header_inheriting/list_header_inheriting.tlf +1 -0
  91. data/test/case/list_manual_generation/list_manual_generation.rb +24 -0
  92. data/test/case/list_manual_generation/list_manual_generation.tlf +1 -0
  93. data/test/case/single_line_tblock/single_line_tblock.rb +15 -0
  94. data/test/case/single_line_tblock/single_line_tblock.tlf +1 -0
  95. data/test/case/tblock_styles/tblock_styles.rb +27 -0
  96. data/test/case/tblock_styles/tblock_styles.tlf +1 -0
  97. data/test/case/text_align/text_align.rb +9 -0
  98. data/test/case/text_align/text_align.tlf +1 -0
  99. data/test/unit/core/shape/base/test_internal.rb +65 -85
  100. data/test/unit/core/shape/basic/test_basic_format.rb +30 -0
  101. data/test/unit/core/shape/basic/test_basic_interface.rb +27 -0
  102. data/test/unit/core/shape/basic/test_basic_internal.rb +55 -0
  103. data/test/unit/core/shape/basic/test_interface.rb +84 -36
  104. data/test/unit/core/shape/basic/test_internal.rb +32 -24
  105. data/test/unit/core/shape/image_block/test_format.rb +58 -0
  106. data/test/unit/core/shape/image_block/test_interface.rb +23 -0
  107. data/test/unit/core/shape/image_block/test_internal.rb +28 -0
  108. data/test/unit/core/shape/list/test_events.rb +19 -11
  109. data/test/unit/core/shape/list/test_manager.rb +112 -0
  110. data/test/unit/core/shape/list/test_page.rb +57 -0
  111. data/test/unit/core/shape/list/test_section_format.rb +1 -1
  112. data/test/unit/core/shape/list/test_section_interface.rb +37 -30
  113. data/test/unit/core/shape/list/test_section_internal.rb +39 -14
  114. data/test/unit/core/shape/manager/test_format.rb +12 -18
  115. data/test/unit/core/shape/manager/test_internal.rb +127 -93
  116. data/test/unit/core/shape/manager/test_target.rb +63 -56
  117. data/test/unit/core/shape/styles/test_base.rb +219 -0
  118. data/test/unit/core/shape/styles/test_basic.rb +24 -0
  119. data/test/unit/core/shape/styles/test_graphic.rb +69 -0
  120. data/test/unit/core/shape/styles/test_text.rb +318 -0
  121. data/test/unit/core/shape/{tblock → text_block}/formatter/test_basic.rb +2 -2
  122. data/test/unit/core/shape/{tblock → text_block}/formatter/test_datetime.rb +2 -2
  123. data/test/unit/core/shape/{tblock → text_block}/formatter/test_number.rb +2 -2
  124. data/test/unit/core/shape/{tblock → text_block}/formatter/test_padding.rb +11 -6
  125. data/test/unit/core/shape/text_block/test_format.rb +160 -0
  126. data/test/unit/core/shape/{tblock → text_block}/test_formatter.rb +2 -2
  127. data/test/unit/core/shape/text_block/test_interface.rb +46 -0
  128. data/test/unit/core/shape/text_block/test_internal.rb +128 -0
  129. data/test/unit/core/test_shape.rb +31 -6
  130. data/test/unit/data/basic_layout1.tlf +1 -0
  131. data/test/unit/data/basic_layout2.tlf +1 -0
  132. data/test/unit/data/basic_list_layout.tlf +1 -0
  133. data/test/unit/generator/pdf/document/graphics/test_attributes.rb +81 -52
  134. data/test/unit/generator/pdf/document/graphics/test_text.rb +159 -0
  135. data/test/unit/generator/pdf/document/test_font.rb +21 -6
  136. data/test/unit/generator/pdf/document/test_graphics.rb +2 -2
  137. data/test/unit/generator/pdf/document/test_page.rb +95 -0
  138. data/test/unit/generator/pdf/document/test_parse_color.rb +2 -2
  139. data/test/unit/generator/pdf/test_configuration.rb +24 -0
  140. data/test/unit/generator/pdf/test_document.rb +28 -0
  141. data/test/unit/generator/test_configuration.rb +25 -0
  142. data/test/unit/generator/test_pdf.rb +19 -0
  143. data/test/unit/helper.rb +18 -0
  144. data/test/unit/layout/test_format.rb +24 -7
  145. data/test/unit/layout/test_version.rb +61 -27
  146. data/test/unit/report/test_base.rb +185 -89
  147. data/test/unit/test_config.rb +22 -0
  148. data/test/unit/test_report.rb +4 -4
  149. metadata +94 -43
  150. data/lib/thinreports/core/shape/tblock.rb +0 -16
  151. data/lib/thinreports/generator/pxd.rb +0 -75
  152. data/lib/thinreports/generator/pxd/helper.rb +0 -33
  153. data/lib/thinreports/generator/pxd/list_renderer.rb +0 -58
  154. data/lib/thinreports/generator/pxd/page_renderer.rb +0 -75
  155. data/tasks/clean.rake +0 -6
  156. data/test/unit/core/shape/tblock/test_format.rb +0 -125
  157. data/test/unit/core/shape/tblock/test_interface.rb +0 -40
  158. data/test/unit/core/shape/tblock/test_internal.rb +0 -139
@@ -9,10 +9,54 @@ namespace :test do
9
9
  files.each {|f| require f }
10
10
  end
11
11
 
12
- desc 'Run all examples'
13
- task :example do
14
- $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + '/..'))
12
+ namespace :bench do
13
+ Dir['test/benchmark/bench_*.rb'].each do |f|
14
+ benchname = File.basename(f, '.*').sub(/bench_/, '')
15
+
16
+ desc "Run #{benchname} benchmark"
17
+ task benchname.to_sym do
18
+ require File.expand_path(f)
19
+ end
20
+ end
21
+ end
22
+
23
+ namespace :case do
24
+ desc 'Run all special test cases [MANAGE_TEMPLATES(false): true/false]'
25
+ task :all do
26
+ $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + '/..'))
27
+
28
+ require 'test/case/helper'
29
+
30
+ Dir['test/case/*/*.rb'].each do |f|
31
+ if ENV['MANAGE_TEMPLATES']
32
+ ThinReports.config.generator.pdf.manage_templates = File.expand_path(File.dirname(f))
33
+ end
34
+ require f
35
+ end
36
+ end
15
37
 
16
- Dir['test/example/**/*.rb'].each {|f| require f }
38
+ desc 'Reset all output of test cases'
39
+ task :reset do
40
+ File.delete(*Dir['test/case/*/*.pdf'])
41
+ end
42
+
43
+ Dir['test/case/*/*.rb'].each do |f|
44
+ casename = File.basename(File.dirname(f))
45
+
46
+ desc "Run #{casename} case [MANAGE_TEMPLATE(false): true/false]"
47
+ task casename.to_sym do
48
+ $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + '/..'))
49
+
50
+ require 'test/case/helper'
51
+
52
+ if ENV['MANAGE_TEMPLATES']
53
+ ThinReports.config.generator.pdf.manage_templates = File.expand_path(File.dirname(f))
54
+ end
55
+ require "test/case/#{casename}/#{casename}"
56
+ end
57
+ end
17
58
  end
59
+
60
+ desc 'Alias for test:case:all'
61
+ task :case => [:'case:all']
18
62
  end
@@ -0,0 +1 @@
1
+ {"version":"0.6.0.pre3","finger-print":-2083664714,"config":{"title":"Basic Estimate","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><defs><clipPath id=\"_svgdef_38\"><rect x=\"20\" y=\"73\" width=\"185.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_39\"><rect x=\"429.1\" y=\"71\" width=\"146.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_40\"><rect x=\"123\" y=\"148\" width=\"205.6\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_41\"><rect x=\"123\" y=\"172\" width=\"122.1\" height=\"12\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_42\"><rect x=\"123\" y=\"193\" width=\"122.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_43\"><rect x=\"123\" y=\"215\" width=\"122.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_44\"><rect x=\"446\" y=\"49\" width=\"113.2\" height=\"12\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_45\"><rect x=\"20\" y=\"807.8\" width=\"76.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_46\"><rect x=\"110.1\" y=\"807.8\" width=\"79.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_47\"><rect x=\"54\" y=\"464.3\" width=\"181.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_48\"><rect x=\"243\" y=\"464.3\" width=\"41.6\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_49\"><rect x=\"310.1\" y=\"464.3\" width=\"61.5\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_50\"><rect x=\"389.6\" y=\"464.3\" width=\"73.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_51\"><rect x=\"23\" y=\"464.3\" width=\"24.5\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_52\"><rect x=\"391.1\" y=\"552.4\" width=\"162.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath><clipPath id=\"_svgdef_53\"><rect x=\"391.1\" y=\"617.8\" width=\"162.1\" height=\"14\" stroke=\"none\" fill=\"none\"></rect></clipPath></defs><g class=\"canvas\"><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"customer\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":73,\"width\":185.1,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":20,\"y\":83,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_38)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"customer\" x-width=\"185.1\" x-height=\"14\" x-left=\"20\" x-top=\"73\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" kerning=\"null\" clip-path=\"url(#_svgdef_38)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"185.1\" height=\"14\" x=\"20\" y=\"73\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"84\">customer</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"created_d\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":429.1,\"y\":71,\"width\":146.1,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"datetime\",\"datetime\":{\"format\":\"%Y\\u5e74%m\\u6708%d\\u65e5\"}},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":502.2,\"y\":82,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_39)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"datetime\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"created_d\" x-width=\"146.1\" x-height=\"14\" x-left=\"429.1\" x-top=\"71\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" x-format-datetime-format=\"%Y\u5e74%m\u6708%d\u65e5\" kerning=\"null\" clip-path=\"url(#_svgdef_39)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"146.1\" height=\"14\" x=\"429.1\" y=\"71\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"431.1\" y=\"82\">created_d</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"title\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":123,\"y\":148,\"width\":205.6,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":123,\"y\":158,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_40)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"title\" x-width=\"205.6\" x-height=\"14\" x-left=\"123\" x-top=\"148\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" kerning=\"null\" clip-path=\"url(#_svgdef_40)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"205.6\" height=\"14\" x=\"123\" y=\"148\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"125\" y=\"159\">title</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"price\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":123,\"y\":172,\"width\":122.1,\"height\":12},\"format\":{\"base\":\"\\\\ {value}.-\",\"type\":\"number\",\"number\":{\"delimiter\":\",\",\"precision\":0}},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":245.1,\"y\":182,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_41)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"number\" x-value=\"\" x-format-base=\"\\ {value}.-\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"price\" x-width=\"122.1\" x-height=\"12\" x-left=\"123\" x-top=\"172\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-number-delimiter=\",\" x-format-number-precision=\"0\" kerning=\"null\" clip-path=\"url(#_svgdef_41)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"122.1\" height=\"12\" x=\"123\" y=\"172\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"125\" y=\"183\">price</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"tax\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":123,\"y\":193,\"width\":122.1,\"height\":14},\"format\":{\"base\":\"\\\\ {value}.-\",\"type\":\"number\",\"number\":{\"delimiter\":\",\",\"precision\":0}},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":245.1,\"y\":203,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_42)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"number\" x-value=\"\" x-format-base=\"\\ {value}.-\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"tax\" x-width=\"122.1\" x-height=\"14\" x-left=\"123\" x-top=\"193\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-number-delimiter=\",\" x-format-number-precision=\"0\" kerning=\"null\" clip-path=\"url(#_svgdef_42)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"122.1\" height=\"14\" x=\"123\" y=\"193\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"125\" y=\"204\">tax</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"note\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":123,\"y\":237,\"width\":204.1,\"height\":68.1},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":123,\"y\":237,\"width\":204.1,\"height\":68.1,\"xml:space\":\"preserve\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"kerning\":\"null\",\"text-decoration\":\"none\",\"font-style\":\"normal\",\"font-weight\":\"normal\",\"text-anchor\":\"null\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"true\" x-id=\"note\" x-width=\"204.1\" x-height=\"68.1\" x-left=\"123\" x-top=\"237\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" kerning=\"null\" text-decoration=\"none\" font-style=\"normal\" font-weight=\"normal\" text-anchor=\"null\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"204.1\" height=\"68.1\" x=\"123\" y=\"237\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"125\" y=\"248\">note</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"total_price\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":123,\"y\":215,\"width\":122.1,\"height\":14},\"format\":{\"base\":\"\\\\ {value}.-\",\"type\":\"number\",\"number\":{\"delimiter\":\",\",\"precision\":0}},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":245.1,\"y\":225,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_43)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"number\" x-value=\"\" x-format-base=\"\\ {value}.-\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"total_price\" x-width=\"122.1\" x-height=\"14\" x-left=\"123\" x-top=\"215\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-number-delimiter=\",\" x-format-number-precision=\"0\" kerning=\"null\" clip-path=\"url(#_svgdef_43)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"122.1\" height=\"14\" x=\"123\" y=\"215\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"125\" y=\"226\">total_price</text></g>LAYOUT--><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"328.1\" y1=\"161.9\" y2=\"161.9\" x1=\"122.5\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"328.1\" y1=\"185\" y2=\"185\" x1=\"122.5\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"328.1\" y1=\"207\" y2=\"207\" x1=\"122.5\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"328.1\" y1=\"229\" y2=\"229\" x1=\"122.5\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"575.6\" y1=\"85\" y2=\"85\" x1=\"429.1\"></line><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"no\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":446,\"y\":49,\"width\":113.2,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"padding\",\"padding\":{\"length\":8,\"char\":\"0\",\"direction\":\"L\"}},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":502.6,\"y\":60,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_44)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"padding\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"no\" x-width=\"113.2\" x-height=\"12\" x-left=\"446\" x-top=\"49\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" x-format-padding-char=\"0\" x-format-padding-length=\"8\" x-format-padding-direction=\"L\" kerning=\"null\" clip-path=\"url(#_svgdef_44)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"113.2\" height=\"12\" x=\"446\" y=\"49\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"448\" y=\"60\">no</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"10\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"500\" x-height=\"20\" x-left=\"20\" x-top=\"328\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"500\" height=\"20\" x=\"20\" y=\"328\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"337\">\u898b\u7a4d\u6709\u52b9\u671f\u9650\u307e\u3067\u306b\u4f55\u5352\u3054\u7528\u547d\u304f\u3060\u3055\u3044\u307e\u3059\u3088\u3046\u304a\u9858\u3044\u7533\u3057\u4e0a\u3052\u307e\u3059\u3002</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"347\">\u5c1a\u3001\u5fa1\u898b\u7a4d\u6709\u52b9\u671f\u9650\u5f8c\u306f\u3054\u9762\u5012\u3068\u306f\u5b58\u3058\u307e\u3059\u304c\u3001\u305d\u306e\u90fd\u5ea6\u3054\u9023\u7d61\u306e\u4e0a\u3054\u5951\u7d04\u304f\u3060\u3055\u308b\u3088\u3046\u304a\u9858\u3044\u7533\u3057\u4e0a\u3052\u307e\u3059\u3002</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" x-line-height=\"22.799999999999997\" x-line-height-ratio=\"1.9\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"84\" x-height=\"103.2\" x-left=\"20\" x-top=\"148\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"84\" height=\"103.2\" x=\"20\" y=\"148\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"158\">\u4ef6 \u540d</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"180.8\">\u5fa1 \u898b \u7a4d \u4fa1 \u683c</text><text class=\"s-text-l2\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"203.6\">\u6d88 \u8cbb \u7a0e</text><text class=\"s-text-l3\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"226.4\">\u5fa1\u898b\u7a4d\u91d1\u984d\u5408\u8a08</text><text class=\"s-text-l4\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"249.2\">\u5099 \u8003</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"145\" x-height=\"12\" x-left=\"431.2\" x-top=\"51\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"145\" height=\"12\" x=\"431.2\" y=\"51\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"431.2\" y=\"61\">\u7b2c\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u53f7</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"underline\" x-width=\"204\" x-height=\"12\" x-left=\"20\" x-top=\"76\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"204\" height=\"12\" x=\"20\" y=\"76\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"underline\" x=\"20\" y=\"86\">\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u6bbf</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"ref_no\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":807.8,\"width\":76.1,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"padding\",\"padding\":{\"length\":5,\"char\":\"0\",\"direction\":\"L\"}},\"value\":\"\",\"ref-id\":\"no\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":96.1,\"y\":817.8,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"end\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_45)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"padding\" x-value=\"\" x-format-base=\"\" x-ref-id=\"no\" x-display=\"true\" x-multiple=\"false\" x-id=\"ref_no\" x-width=\"76.1\" x-height=\"14\" x-left=\"20\" x-top=\"807.8\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-padding-char=\"0\" x-format-padding-length=\"5\" x-format-padding-direction=\"L\" kerning=\"null\" clip-path=\"url(#_svgdef_45)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"76.1\" height=\"14\" x=\"20\" y=\"807.8\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"818.8\">ref_no</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"ref_created_d\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":110.1,\"y\":807.8,\"width\":79.1,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"datetime\",\"datetime\":{\"format\":\"%Y%m%d\"}},\"value\":\"\",\"ref-id\":\"created_d\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":110.1,\"y\":817.8,\"xml:space\":\"preserve\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"kerning\":\"null\",\"clip-path\":\"url(#_svgdef_46)\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"datetime\" x-value=\"\" x-format-base=\"\" x-ref-id=\"created_d\" x-display=\"true\" x-multiple=\"false\" x-id=\"ref_created_d\" x-width=\"79.1\" x-height=\"14\" x-left=\"110.1\" x-top=\"807.8\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-datetime-format=\"%Y%m%d\" kerning=\"null\" clip-path=\"url(#_svgdef_46)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"79.1\" height=\"14\" x=\"110.1\" y=\"807.8\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"112.1\" y=\"818.8\">ref_created_d</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"bold\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"7\" x-height=\"12\" x-left=\"99\" x-top=\"809\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"7\" height=\"12\" x=\"99\" y=\"809\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"99\" y=\"819\">-</text></g><!--SHAPE{\"type\":\"s-list\",\"id\":\"details\",\"display\":\"true\",\"desc\":null,\"footer\":{\"height\":40,\"svg\":{\"tag\":\"g\",\"content\":\"<rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#FFFFFF\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"555.2\\\" height=\\\"40\\\" x=\\\"20\\\" y=\\\"603.9\\\"></rect><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"24\\\" x-height=\\\"12\\\" x-left=\\\"183\\\" x-top=\\\"619.9\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"24\\\" height=\\\"12\\\" x=\\\"183\\\" y=\\\"619.9\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"183\\\" y=\\\"629.9\\\">\\u5408\\u8a08</text></g><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"385\\\" y1=\\\"603.9\\\" y2=\\\"643.9\\\" x1=\\\"385\\\"></line><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"price\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":391.1,\\\"y\\\":617.8,\\\"width\\\":162.1,\\\"height\\\":14},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"number\\\",\\\"number\\\":{\\\"delimiter\\\":\\\",\\\",\\\"precision\\\":0}},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":553.2,\\\"y\\\":627.8,\\\"xml:space\\\":\\\"preserve\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"underline\\\",\\\"text-anchor\\\":\\\"end\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"IPAMincho\\\",\\\"kerning\\\":\\\"null\\\",\\\"clip-path\\\":\\\"url(#_svgdef_53)\\\"}}}SHAPE---><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"8\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"8\\\" x-height=\\\"8\\\" x-left=\\\"554\\\" x-top=\\\"630.9\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"8\\\" height=\\\"8\\\" x=\\\"554\\\" y=\\\"630.9\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"554\\\" y=\\\"637.9\\\">\\u5186</text></g>\"},\"translate\":{\"x\":0,\"y\":-199.8}},\"footer-enabled\":\"true\",\"page-footer\":{\"height\":40,\"svg\":{\"tag\":\"g\",\"content\":\"<rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#FFFFFF\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"555.2\\\" height=\\\"40\\\" x=\\\"20\\\" y=\\\"538.5\\\"></rect><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"24\\\" x-height=\\\"12\\\" x-left=\\\"183\\\" x-top=\\\"553.5\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"24\\\" height=\\\"12\\\" x=\\\"183\\\" y=\\\"553.5\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"183\\\" y=\\\"563.5\\\">\\u5c0f\\u8a08</text></g><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"price\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":391.1,\\\"y\\\":552.4,\\\"width\\\":162.1,\\\"height\\\":14},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"number\\\",\\\"number\\\":{\\\"delimiter\\\":\\\",\\\",\\\"precision\\\":0}},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":553.2,\\\"y\\\":562.4,\\\"xml:space\\\":\\\"preserve\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"underline\\\",\\\"text-anchor\\\":\\\"end\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"IPAMincho\\\",\\\"kerning\\\":\\\"null\\\",\\\"clip-path\\\":\\\"url(#_svgdef_52)\\\"}}}SHAPE---><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"8\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"8\\\" x-height=\\\"8\\\" x-left=\\\"554\\\" x-top=\\\"565.5\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"8\\\" height=\\\"8\\\" x=\\\"554\\\" y=\\\"565.5\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"554\\\" y=\\\"572.5\\\">\\u5186</text></g><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"385\\\" y1=\\\"538.5\\\" y2=\\\"578.5\\\" x1=\\\"385\\\"></line>\"},\"translate\":{\"x\":0,\"y\":-134.4}},\"page-footer-enabled\":\"true\",\"detail\":{\"height\":40,\"svg\":{\"tag\":\"g\",\"content\":\"<rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#ffffff\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"555.2\\\" height=\\\"40\\\" x=\\\"20\\\" y=\\\"451.3\\\"></rect><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"title\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":54,\\\"y\\\":464.3,\\\"width\\\":181.1,\\\"height\\\":14},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":54,\\\"y\\\":474.3,\\\"xml:space\\\":\\\"preserve\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"start\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"IPAMincho\\\",\\\"kerning\\\":\\\"null\\\",\\\"clip-path\\\":\\\"url(#_svgdef_47)\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"amount\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":243,\\\"y\\\":464.3,\\\"width\\\":41.6,\\\"height\\\":14},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"number\\\",\\\"number\\\":{\\\"delimiter\\\":\\\"\\\",\\\"precision\\\":1}},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":284.6,\\\"y\\\":474.3,\\\"xml:space\\\":\\\"preserve\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"end\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"IPAMincho\\\",\\\"kerning\\\":\\\"null\\\",\\\"clip-path\\\":\\\"url(#_svgdef_48)\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"unit_price\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":310.1,\\\"y\\\":464.3,\\\"width\\\":61.5,\\\"height\\\":14},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"number\\\",\\\"number\\\":{\\\"delimiter\\\":\\\",\\\",\\\"precision\\\":0}},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":371.6,\\\"y\\\":474.3,\\\"xml:space\\\":\\\"preserve\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"end\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"IPAMincho\\\",\\\"kerning\\\":\\\"null\\\",\\\"clip-path\\\":\\\"url(#_svgdef_49)\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"price\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":389.6,\\\"y\\\":464.3,\\\"width\\\":73.1,\\\"height\\\":14},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"number\\\",\\\"number\\\":{\\\"delimiter\\\":\\\",\\\",\\\"precision\\\":0}},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":462.7,\\\"y\\\":474.3,\\\"xml:space\\\":\\\"preserve\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"end\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"IPAMincho\\\",\\\"kerning\\\":\\\"null\\\",\\\"clip-path\\\":\\\"url(#_svgdef_50)\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"note\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"true\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":481,\\\"y\\\":456.3,\\\"width\\\":90,\\\"height\\\":30},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"textArea\\\",\\\"attrs\\\":{\\\"x\\\":481,\\\"y\\\":456.3,\\\"width\\\":90,\\\"height\\\":30,\\\"xml:space\\\":\\\"preserve\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"8\\\",\\\"font-family\\\":\\\"IPAMincho\\\",\\\"kerning\\\":\\\"null\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"font-style\\\":\\\"normal\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"text-anchor\\\":\\\"null\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"no\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"false\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":23,\\\"y\\\":464.3,\\\"width\\\":24.5,\\\"height\\\":14},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"text\\\",\\\"attrs\\\":{\\\"x\\\":35.3,\\\"y\\\":474.3,\\\"xml:space\\\":\\\"preserve\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"middle\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"12\\\",\\\"font-family\\\":\\\"IPAMincho\\\",\\\"kerning\\\":\\\"null\\\",\\\"clip-path\\\":\\\"url(#_svgdef_51)\\\"}}}SHAPE---><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"8\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"8\\\" x-height=\\\"8\\\" x-left=\\\"372\\\" x-top=\\\"476.3\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"8\\\" height=\\\"8\\\" x=\\\"372\\\" y=\\\"476.3\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"372\\\" y=\\\"483.3\\\">\\u5186</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"8\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"8\\\" x-height=\\\"8\\\" x-left=\\\"463\\\" x-top=\\\"476.3\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"8\\\" height=\\\"8\\\" x=\\\"463\\\" y=\\\"476.3\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"463\\\" y=\\\"483.3\\\">\\u5186</text></g><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"50\\\" y1=\\\"451.3\\\" y2=\\\"491.3\\\" x1=\\\"50\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"240\\\" y1=\\\"451.3\\\" y2=\\\"491.3\\\" x1=\\\"240\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"305\\\" y1=\\\"451.3\\\" y2=\\\"491.3\\\" x1=\\\"305\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"385\\\" y1=\\\"451.3\\\" y2=\\\"491.3\\\" x1=\\\"385\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"475\\\" y1=\\\"451.3\\\" y2=\\\"491.3\\\" x1=\\\"475\\\"></line><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"8\\\" font-family=\\\"IPAMincho\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"9\\\" x-height=\\\"8\\\" x-left=\\\"287\\\" x-top=\\\"476.3\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"9\\\" height=\\\"8\\\" x=\\\"287\\\" y=\\\"476.3\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"287\\\" y=\\\"483.3\\\">\\u500b</text></g>\"},\"translate\":{\"x\":0,\"y\":-47.2}},\"header\":{\"height\":40,\"svg\":{\"tag\":\"g\",\"content\":\"<rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"#F0F0F0\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"555.2\\\" height=\\\"40\\\" x=\\\"20\\\" y=\\\"364.1\\\"></rect><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"12\\\" x-height=\\\"12\\\" x-left=\\\"29\\\" x-top=\\\"380.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"12\\\" height=\\\"12\\\" x=\\\"29\\\" y=\\\"380.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"29\\\" y=\\\"390.1\\\">\\u9805</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"60\\\" x-height=\\\"12\\\" x-left=\\\"125\\\" x-top=\\\"380.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"60\\\" height=\\\"12\\\" x=\\\"125\\\" y=\\\"380.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"125\\\" y=\\\"390.1\\\">\\u540d\\u79f0\\uff0f\\u578b\\u540d</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"24\\\" x-height=\\\"12\\\" x-left=\\\"333\\\" x-top=\\\"380.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"24\\\" height=\\\"12\\\" x=\\\"333\\\" y=\\\"380.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"333\\\" y=\\\"390.1\\\">\\u5358\\u4fa1</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"24\\\" x-height=\\\"12\\\" x-left=\\\"414\\\" x-top=\\\"380.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"24\\\" height=\\\"12\\\" x=\\\"414\\\" y=\\\"380.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"414\\\" y=\\\"390.1\\\">\\u91d1\\u984d</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"24\\\" x-height=\\\"12\\\" x-left=\\\"510\\\" x-top=\\\"380.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"24\\\" height=\\\"12\\\" x=\\\"510\\\" y=\\\"380.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"510\\\" y=\\\"390.1\\\">\\u5099\\u8003</text></g><g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" stroke=\\\"none\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" font-family=\\\"IPAMincho\\\" font-size=\\\"12\\\" text-anchor=\\\"start\\\" text-decoration=\\\"none\\\" x-width=\\\"24\\\" x-height=\\\"12\\\" x-left=\\\"259\\\" x-top=\\\"380.1\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"24\\\" height=\\\"12\\\" x=\\\"259\\\" y=\\\"380.1\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"259\\\" y=\\\"390.1\\\">\\u6570\\u91cf</text></g><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"50\\\" y1=\\\"364.1\\\" y2=\\\"404.1\\\" x1=\\\"50\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"240\\\" y1=\\\"364.1\\\" y2=\\\"404.1\\\" x1=\\\"240\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"305\\\" y1=\\\"364.1\\\" y2=\\\"404.1\\\" x1=\\\"305\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"385\\\" y1=\\\"364.1\\\" y2=\\\"404.1\\\" x1=\\\"385\\\"></line><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x2=\\\"475\\\" y1=\\\"364.1\\\" y2=\\\"404.1\\\" x1=\\\"475\\\"></line>\"},\"translate\":{\"x\":0,\"y\":0}},\"header-enabled\":\"true\",\"svg\":{\"tag\":\"g\",\"attrs\":{}},\"content-height\":395.2,\"page-break\":\"true\"}SHAPE--><!--LAYOUT<g class=\"s-list\" x-id=\"details\" x-header-enabled=\"true\" x-page-footer-enabled=\"true\" x-footer-enabled=\"true\" x-changing-page=\"true\" x-display=\"true\" width=\"555.2\" height=\"435.2\" x=\"20\" y=\"364.1\"><g class=\"s-list-header\" transform=\"translate(0,0) rotate(0 0 0)\" x-top=\"364.1\" x-height=\"40\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#F0F0F0\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"555.2\" height=\"40\" x=\"20\" y=\"364.1\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"12\" x-height=\"12\" x-left=\"29\" x-top=\"380.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"12\" height=\"12\" x=\"29\" y=\"380.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"29\" y=\"390.1\">\u9805</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"60\" x-height=\"12\" x-left=\"125\" x-top=\"380.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60\" height=\"12\" x=\"125\" y=\"380.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"125\" y=\"390.1\">\u540d\u79f0\uff0f\u578b\u540d</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"24\" x-height=\"12\" x-left=\"333\" x-top=\"380.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"24\" height=\"12\" x=\"333\" y=\"380.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"333\" y=\"390.1\">\u5358\u4fa1</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"24\" x-height=\"12\" x-left=\"414\" x-top=\"380.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"24\" height=\"12\" x=\"414\" y=\"380.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"414\" y=\"390.1\">\u91d1\u984d</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"24\" x-height=\"12\" x-left=\"510\" x-top=\"380.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"24\" height=\"12\" x=\"510\" y=\"380.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"510\" y=\"390.1\">\u5099\u8003</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"24\" x-height=\"12\" x-left=\"259\" x-top=\"380.1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"24\" height=\"12\" x=\"259\" y=\"380.1\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"259\" y=\"390.1\">\u6570\u91cf</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"50\" y1=\"364.1\" y2=\"404.1\" x1=\"50\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"240\" y1=\"364.1\" y2=\"404.1\" x1=\"240\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"305\" y1=\"364.1\" y2=\"404.1\" x1=\"305\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"385\" y1=\"364.1\" y2=\"404.1\" x1=\"385\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"475\" y1=\"364.1\" y2=\"404.1\" x1=\"475\"></line></g><g class=\"s-list-detail\" transform=\"translate(0,-47.2) rotate(0 0 0)\" x-top=\"404.1\" x-height=\"40\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#ffffff\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"555.2\" height=\"40\" x=\"20\" y=\"451.3\"></rect><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"title\" x-width=\"181.1\" x-height=\"14\" x-left=\"54\" x-top=\"464.3\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" kerning=\"null\" clip-path=\"url(#_svgdef_47)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"181.1\" height=\"14\" x=\"54\" y=\"464.3\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"56\" y=\"475.3\">title</text></g><g class=\"s-tblock\" x-format-type=\"number\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"amount\" x-width=\"41.6\" x-height=\"14\" x-left=\"243\" x-top=\"464.3\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-number-delimiter=\"\" x-format-number-precision=\"1\" kerning=\"null\" clip-path=\"url(#_svgdef_48)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"41.6\" height=\"14\" x=\"243\" y=\"464.3\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"245\" y=\"475.3\">amount</text></g><g class=\"s-tblock\" x-format-type=\"number\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"unit_price\" x-width=\"61.5\" x-height=\"14\" x-left=\"310.1\" x-top=\"464.3\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-number-delimiter=\",\" x-format-number-precision=\"0\" kerning=\"null\" clip-path=\"url(#_svgdef_49)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"61.5\" height=\"14\" x=\"310.1\" y=\"464.3\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"312.1\" y=\"475.3\">unit_price</text></g><g class=\"s-tblock\" x-format-type=\"number\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"price\" x-width=\"73.1\" x-height=\"14\" x-left=\"389.6\" x-top=\"464.3\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-number-delimiter=\",\" x-format-number-precision=\"0\" kerning=\"null\" clip-path=\"url(#_svgdef_50)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"73.1\" height=\"14\" x=\"389.6\" y=\"464.3\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"391.6\" y=\"475.3\">price</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"true\" x-id=\"note\" x-width=\"90\" x-height=\"30\" x-left=\"481\" x-top=\"456.3\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"8\" font-family=\"IPAMincho\" kerning=\"null\" text-decoration=\"none\" font-style=\"normal\" font-weight=\"normal\" text-anchor=\"null\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"90\" height=\"30\" x=\"481\" y=\"456.3\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"483\" y=\"467.3\">note</text></g><g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"no\" x-width=\"24.5\" x-height=\"14\" x-left=\"23\" x-top=\"464.3\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" kerning=\"null\" clip-path=\"url(#_svgdef_51)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"24.5\" height=\"14\" x=\"23\" y=\"464.3\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"25\" y=\"475.3\">no</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"8\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"8\" x-height=\"8\" x-left=\"372\" x-top=\"476.3\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"8\" height=\"8\" x=\"372\" y=\"476.3\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"372\" y=\"483.3\">\u5186</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"8\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"8\" x-height=\"8\" x-left=\"463\" x-top=\"476.3\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"8\" height=\"8\" x=\"463\" y=\"476.3\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"463\" y=\"483.3\">\u5186</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"50\" y1=\"451.3\" y2=\"491.3\" x1=\"50\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"240\" y1=\"451.3\" y2=\"491.3\" x1=\"240\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"305\" y1=\"451.3\" y2=\"491.3\" x1=\"305\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"385\" y1=\"451.3\" y2=\"491.3\" x1=\"385\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"475\" y1=\"451.3\" y2=\"491.3\" x1=\"475\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"8\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"9\" x-height=\"8\" x-left=\"287\" x-top=\"476.3\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"9\" height=\"8\" x=\"287\" y=\"476.3\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"287\" y=\"483.3\">\u500b</text></g></g><g class=\"s-list-page-footer\" transform=\"translate(0,-94.4) rotate(0 0 0)\" x-top=\"444.1\" x-height=\"40\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"555.2\" height=\"40\" x=\"20\" y=\"538.5\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"24\" x-height=\"12\" x-left=\"183\" x-top=\"553.5\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"24\" height=\"12\" x=\"183\" y=\"553.5\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"183\" y=\"563.5\">\u5c0f\u8a08</text></g><g class=\"s-tblock\" x-format-type=\"number\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"price\" x-width=\"162.1\" x-height=\"14\" x-left=\"391.1\" x-top=\"552.4\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"underline\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-number-delimiter=\",\" x-format-number-precision=\"0\" kerning=\"null\" clip-path=\"url(#_svgdef_52)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"162.1\" height=\"14\" x=\"391.1\" y=\"552.4\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"393.1\" y=\"563.4\">price</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"8\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"8\" x-height=\"8\" x-left=\"554\" x-top=\"565.5\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"8\" height=\"8\" x=\"554\" y=\"565.5\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"554\" y=\"572.5\">\u5186</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"385\" y1=\"538.5\" y2=\"578.5\" x1=\"385\"></line></g><g class=\"s-list-footer\" transform=\"translate(0,-119.8) rotate(0 0 0)\" x-top=\"484.1\" x-height=\"40\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"555.2\" height=\"40\" x=\"20\" y=\"603.9\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"24\" x-height=\"12\" x-left=\"183\" x-top=\"619.9\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"24\" height=\"12\" x=\"183\" y=\"619.9\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"183\" y=\"629.9\">\u5408\u8a08</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"385\" y1=\"603.9\" y2=\"643.9\" x1=\"385\"></line><g class=\"s-tblock\" x-format-type=\"number\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"false\" x-id=\"price\" x-width=\"162.1\" x-height=\"14\" x-left=\"391.1\" x-top=\"617.8\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"underline\" text-anchor=\"end\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" x-format-number-delimiter=\",\" x-format-number-precision=\"0\" kerning=\"null\" clip-path=\"url(#_svgdef_53)\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"162.1\" height=\"14\" x=\"391.1\" y=\"617.8\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"393.1\" y=\"628.8\">price</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"8\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"8\" x-height=\"8\" x-left=\"554\" x-top=\"630.9\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"8\" height=\"8\" x=\"554\" y=\"630.9\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"554\" y=\"637.9\">\u5186</text></g></g><text class=\"s-list-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"374.9\">details</text><rect stroke-dasharray=\"5\" stroke=\"#BBBBBB\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"0\" class=\"s-list-face\" width=\"555.2\" height=\"435.2\" x=\"20\" y=\"364.1\"></rect></g>LAYOUT--><rect stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"46.8\" height=\"46.8\" x=\"387.5\" y=\"209\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"46.8\" height=\"46.8\" x=\"388.1\" y=\"258\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"46.8\" height=\"46.8\" x=\"434.9\" y=\"258\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"46.8\" height=\"46.8\" x=\"528.4\" y=\"258\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"46.8\" height=\"46.8\" x=\"481.6\" y=\"258\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" x-line-height=\"18\" x-line-height-ratio=\"1.5\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"187\" x-height=\"90\" x-left=\"388.2\" x-top=\"199\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"187\" height=\"90\" x=\"388.2\" y=\"199\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"388.2\" y=\"209\">\u4ee3\u8868\u53d6\u7de0\u5f79\u793e\u9577\u3000\u3000\u25b3\u25b3\u3000\u25b3\u25b3</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"388.2\" y=\"227\">TEL(\uff11\uff12\uff13\uff14)\uff15\uff16\uff0d\uff17\uff18\uff19\uff10(\u4ee3)</text><text class=\"s-text-l2\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"388.2\" y=\"245\">FAX(\uff11\uff12\uff13\uff14)\uff15\uff16\uff0d\uff17\uff18\uff19\uff11</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"144\" x-height=\"24\" x-left=\"388\" x-top=\"146\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"144\" height=\"24\" x=\"388\" y=\"146\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"388\" y=\"156\">\u5cf6\u6839\u770c\u677e\u6c5f\u5e02\u3007\u3007\u753a 123-4</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"36\" text-anchor=\"middle\" x-valign=\"center\" text-decoration=\"none\" x-width=\"174.5\" x-height=\"36\" x-left=\"210.4\" x-top=\"20\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"174.5\" height=\"36\" x=\"210.4\" y=\"20\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"297.7\" y=\"52\">\u5fa1\u898b\u7a4d\u308a</text></g><image image-rendering=\"optimizeQuality\" preserveAspectRatio=\"none\" class=\"s-image\" x-display=\"true\" x-id=\"\" x=\"358\" y=\"168\" xlink:href=\"data:image/png;base64,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\" x-natural-width=\"291\" x-natural-height=\"32\" width=\"215.1\" height=\"23.7\"></image></g></svg>"}
@@ -0,0 +1,95 @@
1
+ # coding: utf-8
2
+
3
+ require 'benchmark'
4
+
5
+ ESTIMATE_LAYOUT = File.expand_path(File.dirname(__FILE__) + '/basic_estimate.tlf')
6
+ ESTIMATE_OUTPUT = File.expand_path(File.dirname(__FILE__) + '/basic_estimate.pdf')
7
+ ESTIMATE_DATA = []
8
+
9
+ # Data 1:
10
+ data1 = {:no => 1234,
11
+ :created_d => Time.now,
12
+ :customer => '㈱テストコム',
13
+ :title => 'PC及び関連機器ご購入について',
14
+ :price => 1000000,
15
+ :tax => 50000,
16
+ :total_price => 1050000,
17
+ :details => []}
18
+
19
+ 0.step(10000, 2) do |t|
20
+ data1[:details] << {:no => 1 + t,
21
+ :title => 'ノートパソコン',
22
+ :amount => 4,
23
+ :unit_price => 200000,
24
+ :price => 800000}
25
+ data1[:details] << {:no => 2 + t,
26
+ :title => 'プリンタ',
27
+ :amount => 2,
28
+ :unit_price => 100000,
29
+ :price => 200000,
30
+ :note => 'トナー×2本含む'}
31
+ end
32
+ ESTIMATE_DATA << data1
33
+
34
+ # Data 2:
35
+ data2 = {:no => 3456,
36
+ :created_d => '2011年1月1日',
37
+ :customer => '㈱○○○○',
38
+ :title => '□□□□□□□□□',
39
+ :price => 100000,
40
+ :tax => 5000,
41
+ :total_price => 105000,
42
+ :note => '△' * 40,
43
+ :details => []}
44
+ 10000.times do |t|
45
+ data2[:details] << {:no => t + 1,
46
+ :title => '×××××××××',
47
+ :amount => 1,
48
+ :unit_price => 5000,
49
+ :price => 5000}
50
+ end
51
+ ESTIMATE_DATA << data2
52
+
53
+ puts Benchmark::CAPTION
54
+ puts Benchmark.measure {
55
+ report = ThinReports::Report.create do |r|
56
+ r.use_layout ESTIMATE_LAYOUT do |config|
57
+ config.list(:details) do
58
+ use_stores :price => 0,
59
+ :total_price => 0
60
+
61
+ events.on :page_footer_insert do |e|
62
+ e.section.item(:price).value(e.store.price)
63
+ e.store.price = 0
64
+ end
65
+
66
+ events.on :footer_insert do |e|
67
+ e.section.item(:price).value(e.store.total_price)
68
+ end
69
+ end
70
+ end
71
+
72
+ ESTIMATE_DATA.each do |data|
73
+ r.start_new_page
74
+
75
+ r.page.values(:no => data[:no],
76
+ :created_d => data[:created_d],
77
+ :customer => data[:customer],
78
+ :title => data[:title],
79
+ :price => data[:price],
80
+ :tax => data[:tax],
81
+ :total_price => data[:total_price],
82
+ :note => data[:note])
83
+
84
+ data[:details].each do |detail|
85
+ r.page.list(:details).add_row(detail)
86
+ r.page.list(:details) do |list|
87
+ list.store.price += detail[:price]
88
+ list.store.total_price += detail[:price]
89
+ end
90
+ end
91
+ end
92
+ end
93
+
94
+ report.generate_file(:pdf, ESTIMATE_OUTPUT)
95
+ }
@@ -0,0 +1,7 @@
1
+ # coding: utf-8
2
+
3
+ CaseRunner.current :character_spacing
4
+
5
+ ThinReports::Report.generate_file(CaseRunner.output_file, :layout => CaseRunner.layout_file) do
6
+ start_new_page
7
+ end
@@ -0,0 +1 @@
1
+ {"version":"0.6.0.pre3","finger-print":-932049863,"config":{"title":"Character Spacing","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><g class=\"canvas\"><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"10\" x-display=\"true\" x-id=\"\" font-size=\"36\" font-family=\"Times New Roman\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"555.2\" x-height=\"40\" x-left=\"20\" x-top=\"20\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"555.2\" height=\"40\" x=\"20\" y=\"20\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"44\">Times Roman Left</text></g><line stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"436\" x2=\"436\" y1=\"20\" y2=\"57\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"10\" x-display=\"true\" x-id=\"\" font-size=\"36\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"555.2\" x-height=\"36\" x-left=\"20\" x-top=\"137\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"555.2\" height=\"36\" x=\"20\" y=\"137\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"169\">IPA\u660e\u671d \u5de6\u5bc4\u305b</text></g><line stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"351\" y1=\"136\" y2=\"173\" x1=\"351\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"10\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAPGothic\" font-size=\"36\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"555.2\" x-height=\"36\" x-left=\"20\" x-top=\"260\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"555.2\" height=\"36\" x=\"20\" y=\"260\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"292\">IPA P\u30b4\u30b7\u30c3\u30af\u3000\u5de6\u5bc4\u305b</text></g><line stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"487\" y1=\"262\" y2=\"299\" x1=\"487\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"10\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Times New Roman\" font-size=\"36\" text-anchor=\"end\" text-decoration=\"none\" x-width=\"555.2\" x-height=\"40\" x-left=\"20\" x-top=\"70\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"555.2\" height=\"40\" x=\"20\" y=\"70\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"575.2\" y=\"94\">Times Roman Right</text></g><line stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"575.2\" y1=\"21\" y2=\"821.8\" x1=\"575\"></line><line stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"131\" y1=\"66\" y2=\"103\" x1=\"131\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"10\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"36\" text-anchor=\"end\" text-decoration=\"none\" x-width=\"555.2\" x-height=\"36\" x-left=\"20\" x-top=\"186.9\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"555.2\" height=\"36\" x=\"20\" y=\"186.9\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"575.2\" y=\"218.9\">IPA\u660e\u671d \u53f3\u5bc4\u305b</text></g><line stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"247\" y1=\"185.9\" y2=\"222.9\" x1=\"247\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"10\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAPGothic\" font-size=\"36\" text-anchor=\"end\" text-decoration=\"none\" x-width=\"555.2\" x-height=\"36\" x-left=\"20\" x-top=\"316\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"555.2\" height=\"36\" x=\"20\" y=\"316\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"575.2\" y=\"348\">IPA P\u30b4\u30b7\u30c3\u30af\u3000\u53f3\u5bc4\u305b</text></g><line stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"108\" y1=\"318\" y2=\"355\" x1=\"108\"></line></g></svg>"}
@@ -0,0 +1,41 @@
1
+ # coding: utf-8
2
+
3
+ require 'open-uri'
4
+
5
+ CaseRunner.current :dynamic_image
6
+
7
+ image50x50 = CaseRunner.case_resource('img50x50.png')
8
+ image200x100 = CaseRunner.case_resource('img200x100.png')
9
+ matsukei_logo = open('http://www.matsukei.co.jp/common/image/logo.jpg')
10
+
11
+ ThinReports::Report.generate_file(:pdf, CaseRunner.output_file) do |r|
12
+ r.use_layout(CaseRunner.layout_file)
13
+
14
+ r.start_new_page
15
+
16
+ r.page.values(:pos_top_left => image50x50,
17
+ :pos_top_center => image50x50,
18
+ :pos_top_right => image50x50,
19
+ :pos_center_left => image50x50,
20
+ :pos_center_center => image50x50,
21
+ :pos_center_right => image50x50,
22
+ :pos_bottom_left => image50x50,
23
+ :pos_bottom_center => image50x50,
24
+ :pos_bottom_right => image50x50)
25
+
26
+ r.page.item(:overflow).src(image200x100)
27
+
28
+ # It cannot do as follows:
29
+ #
30
+ # r.page.item(:logo1).src(matsukei_logo)
31
+ # r.page.item(:logo2).value(matsukei_logo)
32
+ #
33
+ r.page.item(:logo1).src(matsukei_logo.path)
34
+ r.page.item(:logo2).value(matsukei_logo.path)
35
+
36
+ r.page.item(:thinreports_logo).src(open('http://www.thinreports.org/media/i/logo.png'))
37
+
38
+ r.page.list(:list) do |list|
39
+ 3.times { list.add_row :in_list => image50x50 }
40
+ end
41
+ end
@@ -0,0 +1 @@
1
+ {"version":"0.6.0.pre3","finger-print":742712052,"config":{"title":"","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><g class=\"canvas\"><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_top_left\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":20,\"y\":51,\"width\":100,\"height\":100},\"position-x\":\"left\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":20,\"y\":51,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_top_left\" x-width=\"100\" x-height=\"100\" x-left=\"20\" x-top=\"51\" x-position-x=\"left\" x-position-y=\"top\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"20\" y=\"51\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"54\" y=\"85\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"62\">pos_top_left</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"20\" y=\"51\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"overflow\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":20,\"y\":443,\"width\":150,\"height\":100},\"position-x\":\"left\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":20,\"y\":443,\"width\":150,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"overflow\" x-width=\"150\" x-height=\"100\" x-left=\"20\" x-top=\"443\" x-position-x=\"left\" x-position-y=\"top\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"150\" height=\"100\" x=\"20\" y=\"443\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"79\" y=\"477\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"454\">overflow</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"150\" height=\"100\" x=\"20\" y=\"443\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"logo1\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":20,\"y\":618.9,\"width\":218.1,\"height\":61.3},\"position-x\":\"center\",\"position-y\":\"center\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":20,\"y\":618.9,\"width\":218.1,\"height\":61.3}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"logo1\" x-width=\"218.1\" x-height=\"61.3\" x-left=\"20\" x-top=\"618.9\" x-position-x=\"center\" x-position-y=\"center\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"218.1\" height=\"61.3\" x=\"20\" y=\"618.9\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"113\" y=\"632.9\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"629.9\">logo1</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"218.1\" height=\"61.3\" x=\"20\" y=\"618.9\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"24\" font-family=\"Times New Roman\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"200\" x-height=\"26\" x-left=\"20\" x-top=\"20\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"26\" x=\"20\" y=\"20\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"36\">Positioning</text></g><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_top_center\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":130,\"y\":51,\"width\":100,\"height\":100},\"position-x\":\"center\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":130,\"y\":51,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_top_center\" x-width=\"100\" x-height=\"100\" x-left=\"130\" x-top=\"51\" x-position-x=\"center\" x-position-y=\"top\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"130\" y=\"51\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"164\" y=\"85\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"132\" y=\"62\">pos_top_center</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"130\" y=\"51\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_top_right\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":240,\"y\":51,\"width\":100,\"height\":100},\"position-x\":\"right\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":240,\"y\":51,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_top_right\" x-width=\"100\" x-height=\"100\" x-left=\"240\" x-top=\"51\" x-position-x=\"right\" x-position-y=\"top\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"240\" y=\"51\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"274\" y=\"85\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"242\" y=\"62\">pos_top_right</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"240\" y=\"51\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_center_left\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":20,\"y\":161,\"width\":100,\"height\":100},\"position-x\":\"left\",\"position-y\":\"center\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":20,\"y\":161,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_center_left\" x-width=\"100\" x-height=\"100\" x-left=\"20\" x-top=\"161\" x-position-x=\"left\" x-position-y=\"center\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"20\" y=\"161\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"54\" y=\"195\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"172\">pos_center_left</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"20\" y=\"161\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_center_center\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":130,\"y\":161,\"width\":100,\"height\":100},\"position-x\":\"center\",\"position-y\":\"center\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":130,\"y\":161,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_center_center\" x-width=\"100\" x-height=\"100\" x-left=\"130\" x-top=\"161\" x-position-x=\"center\" x-position-y=\"center\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"130\" y=\"161\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"164\" y=\"195\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"132\" y=\"172\">pos_center_center</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"130\" y=\"161\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_center_right\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":240,\"y\":161,\"width\":100,\"height\":100},\"position-x\":\"right\",\"position-y\":\"center\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":240,\"y\":161,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_center_right\" x-width=\"100\" x-height=\"100\" x-left=\"240\" x-top=\"161\" x-position-x=\"right\" x-position-y=\"center\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"240\" y=\"161\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"274\" y=\"195\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"242\" y=\"172\">pos_center_right</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"240\" y=\"161\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_bottom_left\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":20,\"y\":271,\"width\":100,\"height\":100},\"position-x\":\"left\",\"position-y\":\"bottom\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":20,\"y\":271,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_bottom_left\" x-width=\"100\" x-height=\"100\" x-left=\"20\" x-top=\"271\" x-position-x=\"left\" x-position-y=\"bottom\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"20\" y=\"271\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"54\" y=\"305\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"282\">pos_bottom_left</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"20\" y=\"271\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_bottom_center\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":130,\"y\":271,\"width\":100,\"height\":100},\"position-x\":\"center\",\"position-y\":\"bottom\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":130,\"y\":271,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_bottom_center\" x-width=\"100\" x-height=\"100\" x-left=\"130\" x-top=\"271\" x-position-x=\"center\" x-position-y=\"bottom\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"130\" y=\"271\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"164\" y=\"305\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"132\" y=\"282\">pos_bottom_center</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"130\" y=\"271\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"pos_bottom_right\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":240,\"y\":271,\"width\":100,\"height\":100},\"position-x\":\"right\",\"position-y\":\"bottom\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":240,\"y\":271,\"width\":100,\"height\":100}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"pos_bottom_right\" x-width=\"100\" x-height=\"100\" x-left=\"240\" x-top=\"271\" x-position-x=\"right\" x-position-y=\"bottom\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"100\" height=\"100\" x=\"240\" y=\"271\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"274\" y=\"305\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"242\" y=\"282\">pos_bottom_right</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"100\" height=\"100\" x=\"240\" y=\"271\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Times New Roman\" font-size=\"24\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"200\" x-height=\"26\" x-left=\"20\" x-top=\"385\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"26\" x=\"20\" y=\"385\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"401\">Overflowing</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"14\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"288\" x-height=\"26\" x-left=\"25\" x-top=\"411\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"288\" height=\"26\" x=\"25\" y=\"411\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"25\" y=\"424\">Resize automatically to 150x75 from 200x100.</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Times New Roman\" font-size=\"24\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"200\" x-height=\"26\" x-left=\"20\" x-top=\"565\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"26\" x=\"20\" y=\"565\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"581\">Open URI</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"14\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"310\" x-height=\"26\" x-left=\"25\" x-top=\"590\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"310\" height=\"26\" x=\"25\" y=\"590\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"25\" y=\"603\">http://www.matsukei.co.jp/common/image/logo.jpg</text></g><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"logo2\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":250,\"y\":618.9,\"width\":218.1,\"height\":61.3},\"position-x\":\"center\",\"position-y\":\"center\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":250,\"y\":618.9,\"width\":218.1,\"height\":61.3}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"logo2\" x-width=\"218.1\" x-height=\"61.3\" x-left=\"250\" x-top=\"618.9\" x-position-x=\"center\" x-position-y=\"center\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"218.1\" height=\"61.3\" x=\"250\" y=\"618.9\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"343\" y=\"632.9\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"252\" y=\"629.9\">logo2</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"218.1\" height=\"61.3\" x=\"250\" y=\"618.9\"></rect><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"thinreports_logo\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":20,\"y\":728,\"width\":555.2,\"height\":92.3},\"position-x\":\"center\",\"position-y\":\"center\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":20,\"y\":728,\"width\":555.2,\"height\":92.3}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"thinreports_logo\" x-width=\"555.2\" x-height=\"92.3\" x-left=\"20\" x-top=\"728\" x-position-x=\"center\" x-position-y=\"center\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"555.2\" height=\"92.3\" x=\"20\" y=\"728\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"281\" y=\"758\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"739\">thinreports_logo</text></g>LAYOUT--><rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"555.2\" height=\"92.3\" x=\"20\" y=\"728\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"14\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"310\" x-height=\"26\" x-left=\"25\" x-top=\"695\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"310\" height=\"26\" x=\"25\" y=\"695\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"25\" y=\"708\">http://www.thinreports.org/media/i/logo.png</text></g><rect stroke=\"#f79646\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"dashed\" stroke-dasharray=\"2,2\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"150\" height=\"76\" x=\"20\" y=\"443\"></rect><!--SHAPE{\"type\":\"s-list\",\"id\":\"list\",\"display\":\"true\",\"desc\":null,\"footer\":{},\"footer-enabled\":\"false\",\"page-footer\":{},\"page-footer-enabled\":\"false\",\"detail\":{\"height\":60,\"svg\":{\"tag\":\"g\",\"content\":\"<!---SHAPE{\\\"type\\\":\\\"s-iblock\\\",\\\"id\\\":\\\"in_list\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"box\\\":{\\\"x\\\":352.1,\\\"y\\\":483.4,\\\"width\\\":198.1,\\\"height\\\":58.8},\\\"position-x\\\":\\\"center\\\",\\\"position-y\\\":\\\"center\\\",\\\"svg\\\":{\\\"tag\\\":\\\"image\\\",\\\"attrs\\\":{\\\"x\\\":352.1,\\\"y\\\":483.4,\\\"width\\\":198.1,\\\"height\\\":58.8}}}SHAPE---><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"351.1\\\" x2=\\\"550.2\\\" y1=\\\"543.2\\\" y2=\\\"543.2\\\"></line>\"},\"translate\":{\"x\":10,\"y\":-395.2}},\"header\":{\"height\":33.2,\"svg\":{\"tag\":\"g\",\"content\":\"<g class=\\\"s-text\\\" stroke-width=\\\"0\\\" fill=\\\"#000000\\\" fill-opacity=\\\"1\\\" kerning=\\\"auto\\\" x-display=\\\"true\\\" x-id=\\\"\\\" font-size=\\\"18\\\" font-family=\\\"Times New Roman\\\" font-weight=\\\"normal\\\" font-style=\\\"normal\\\" text-anchor=\\\"middle\\\" text-decoration=\\\"none\\\" x-width=\\\"199.1\\\" x-height=\\\"33.2\\\" x-left=\\\"351.1\\\" x-top=\\\"450.2\\\" x-valign=\\\"center\\\"><rect class=\\\"s-text-box\\\" stroke=\\\"none\\\" fill=\\\"#000000\\\" fill-opacity=\\\"0.001\\\" width=\\\"199.1\\\" height=\\\"33.2\\\" x=\\\"351.1\\\" y=\\\"450.2\\\"></rect><text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"450.7\\\" y=\\\"470.3\\\">In List</text></g><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"353.1\\\" x2=\\\"550.2\\\" y1=\\\"483.4\\\" y2=\\\"483.4\\\"></line>\"},\"translate\":{\"x\":10,\"y\":-395.2}},\"header-enabled\":\"true\",\"svg\":{\"tag\":\"g\",\"attrs\":{}},\"content-height\":278.90000000000003,\"page-break\":\"false\"}SHAPE--><!--LAYOUT<g class=\"s-list\" x-id=\"list\" x-header-enabled=\"true\" x-page-footer-enabled=\"false\" x-footer-enabled=\"false\" x-changing-page=\"false\" x-display=\"true\" width=\"199.1\" height=\"312.1\" x=\"361.1\" y=\"55\"><g class=\"s-list-header\" transform=\"translate(10,-395.2) rotate(0 0 0)\" x-top=\"55\" x-height=\"33.2\"><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"18\" font-family=\"Times New Roman\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"199.1\" x-height=\"33.2\" x-left=\"351.1\" x-top=\"450.2\" x-valign=\"center\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"199.1\" height=\"33.2\" x=\"351.1\" y=\"450.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"450.7\" y=\"470.3\">In List</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"353.1\" x2=\"550.2\" y1=\"483.4\" y2=\"483.4\"></line></g><g class=\"s-list-detail\" transform=\"translate(10,-395.2) rotate(0 0 0)\" x-top=\"88.2\" x-height=\"60\"><g class=\"s-iblock\" x-display=\"true\" x-id=\"in_list\" x-width=\"198.1\" x-height=\"58.8\" x-left=\"352.1\" x-top=\"483.4\" x-position-x=\"center\" x-position-y=\"center\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"198.1\" height=\"58.8\" x=\"352.1\" y=\"483.4\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"435.1\" y=\"496.4\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"354.1\" y=\"494.4\">in_list</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"351.1\" x2=\"550.2\" y1=\"543.2\" y2=\"543.2\"></line></g><g class=\"s-list-page-footer\" transform=\"translate(10,-368.4) rotate(0 0 0)\" x-top=\"148.2\" x-height=\"0\" display=\"none\"></g><g class=\"s-list-footer\" transform=\"translate(10,-393.3) rotate(0 0 0)\" x-top=\"148.2\" x-height=\"0\" display=\"none\"></g><text class=\"s-list-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"363.1\" y=\"65.8\">list</text><rect stroke-dasharray=\"5\" stroke=\"#BBBBBB\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"0\" class=\"s-list-face\" width=\"199.1\" height=\"312.1\" x=\"361.1\" y=\"55\"></rect></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Times New Roman\" font-size=\"24\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"200\" x-height=\"26\" x-left=\"360\" x-top=\"20\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"26\" x=\"360\" y=\"20\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"360\" y=\"36\">Use in List</text></g></g></svg>"}
@@ -0,0 +1,154 @@
1
+ # coding: utf-8
2
+
3
+ CaseRunner.current :dynamic_style
4
+
5
+ image = CaseRunner.case_resource('image.png')
6
+ setup_values = Proc.new do |page|
7
+ # The Basic Style
8
+ page.values(:basic_show5 => 'TextBlock',
9
+ :basic_show6 => image,
10
+ :basic_hide5 => 'TextBlock',
11
+ :basic_hide6 => image)
12
+ # The Text Style
13
+ page.values(:text_b3 => 'To bold',
14
+ :text_b4 => 'To normal',
15
+ :text_i3 => 'To italic',
16
+ :text_i4 => 'To normal',
17
+ :text_u3 => 'To underline',
18
+ :text_u4 => 'To none',
19
+ :text_l3 => 'To line-through',
20
+ :text_l4 => 'To none')
21
+ page.values(:text_a2 => 'To right align',
22
+ :text_a3 => "To right align\n右寄せ",
23
+ :text_va2 => "To bottom align\n下揃え",
24
+ :text_color2 => '赤色')
25
+ end
26
+
27
+ ThinReports::Report.generate_file(CaseRunner.output_file,
28
+ :layout => CaseRunner.layout_file) do |r|
29
+ # In case of using "dynamic_style.tlf"
30
+
31
+ # Create raw-page.
32
+ r.start_new_page
33
+ r.page.item(:title).value('Original Page')
34
+
35
+ setup_values.call(r.page)
36
+
37
+ # Create styled-page.
38
+ r.start_new_page
39
+
40
+ setup_values.call(r.page)
41
+ r.page.item(:title).value('Styled Page')
42
+
43
+ # The Basic Style
44
+ 6.times do |i|
45
+ r.page.item("basic_show#{i + 1}").style(:visible, true)
46
+ r.page.item("basic_hide#{i + 1}").style(:visible, false)
47
+ end
48
+
49
+ # The Graphic Style
50
+ r.page.item(:graphic_bcolor1).style(:border_color, '#ff0000')
51
+ r.page.item(:graphic_bcolor2).style(:border_color, 'red')
52
+ # [WARNING] :stroke is deprecated.
53
+ r.page.item(:graphic_bcolor3).style(:stroke, 'ff0000')
54
+ # nil or 'none'.
55
+ r.page.item(:graphic_bcolor4).style(:border_color, nil)
56
+
57
+ r.page.item(:graphic_bwidth1).style(:border_width, 5)
58
+ r.page.item(:graphic_bwidth2).style(:border_width, 5)
59
+ r.page.item(:graphic_bwidth3).style(:border_width, 5)
60
+ r.page.item(:graphic_bwidth4).style(:border_width, 2)
61
+ r.page.item(:graphic_bwidth5).style(:border_width, 0)
62
+
63
+ r.page.item(:graphic_fcolor1).style(:fill_color, '#ff0000')
64
+ # [WARNING] :fill is deprecated.
65
+ r.page.item(:graphic_fcolor2).style(:fill, 'red')
66
+ # nil or 'none'
67
+ r.page.item(:graphic_fcolor3).style(:fill_color, 'none')
68
+ r.page.item(:graphic_fcolor4).style(:fill_color, 'ff0000')
69
+
70
+ # The Text Style
71
+ [1, 3].each do |i|
72
+ r.page.item("text_b#{i}").style(:bold, true)
73
+ r.page.item("text_i#{i}").style(:italic, true)
74
+ r.page.item("text_u#{i}").style(:underline, true)
75
+ r.page.item("text_l#{i}").style(:linethrough, true)
76
+ end
77
+ [2, 4].each do |i|
78
+ r.page.item("text_b#{i}").style(:bold, false)
79
+ r.page.item("text_i#{i}").style(:italic, false)
80
+ r.page.item("text_u#{i}").style(:underline, false)
81
+ r.page.item("text_l#{i}").style(:linethrough, false)
82
+ end
83
+
84
+ 3.times do |i|
85
+ r.page.item("text_a#{i + 1}").style(:align, :right)
86
+ end
87
+ 2.times do |i|
88
+ r.page.item("text_va#{i + 1}").style(:valign, :bottom)
89
+ end
90
+
91
+ 2.times do |i|
92
+ r.page.item("text_color#{i + 1}").style(:color, 'ff0000')
93
+ end
94
+
95
+ # In case of using "dynamic_style_in_list.tlf"
96
+ r.start_new_page(:layout => CaseRunner.case_resource('dynamic_style_in_list.tlf'))
97
+
98
+ # Settings for Header.
99
+ r.page.list(:list).header do |header|
100
+ header.item(:rect).styles(:border_color => nil,
101
+ :fill_color => 'ff00ff')
102
+ header.item(:text).styles(:align => :center,
103
+ :valign => :center,
104
+ :bold => true)
105
+ header.item(:tblock).styles(:align => :center,
106
+ :valign => :center,
107
+ :color => 'red',
108
+ :linethrough => true)
109
+ end
110
+
111
+ 1.step(10, 1) do |i|
112
+ # Flag of overflowed list-page.
113
+ is_overflowed = r.page.list(:list).overflow?
114
+
115
+ # Add details.
116
+ r.page.list(:list).add_row do |row|
117
+ case
118
+ when i % 2 == 0
119
+ row.item(:rect).styles(:border_color => 'ff0000',
120
+ :border_width => 3,
121
+ :fill_color => '0000ff')
122
+ row.item(:text).styles(:color => 'red',
123
+ :align => :left,
124
+ :valign => :center)
125
+ row.item(:tblock).styles(:color => 'blue',
126
+ :align => :left,
127
+ :valign => :center)
128
+ when i % 3 == 0
129
+ row.item(:rect).style(:visible, false)
130
+ row.item(:text).styles(:color => '0000ff',
131
+ :align => :right,
132
+ :valign => :bottom)
133
+ row.item(:tblock).styles(:color => 'ff0000',
134
+ :align => :right,
135
+ :valign => :bottom)
136
+ end
137
+ end
138
+
139
+ # Change header styles when list-page was overflowed.
140
+ if is_overflowed
141
+ r.page.list(:list).header do |header|
142
+ header.item(:rect).styles(:border_color => 'black',
143
+ :fill_color => '#ffffff')
144
+ header.item(:text).styles(:align => :left,
145
+ :valign => :top,
146
+ :bold => false)
147
+ header.item(:tblock).styles(:align => :left,
148
+ :valign => :top,
149
+ :color => '#000000',
150
+ :linethrough => false)
151
+ end
152
+ end
153
+ end
154
+ end
@@ -0,0 +1 @@
1
+ {"version":"0.6.0.pre3","finger-print":1987612850,"config":{"title":"Dynamic Style","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><g class=\"canvas\"><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"20\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"underline\" x-width=\"374.1\" x-height=\"22\" x-left=\"20\" x-top=\"42\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"374.1\" height=\"22\" x=\"20\" y=\"42\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"underline\" x=\"20\" y=\"60\">The Basic Style</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"12\" font-family=\"Courier New\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"280\" x-height=\"14\" x-left=\"20\" x-top=\"72\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"280\" height=\"14\" x=\"20\" y=\"72\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"80\">Visibility: To true from false.</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"basic_show1\",\"display\":\"false\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"52\",\"height\":\"34\",\"x\":\"20\",\"y\":\"90\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"false\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"basic_show1\" rx=\"0\" ry=\"0\" width=\"52\" height=\"34\" x=\"20\" y=\"90\"></rect>LAYOUT--><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"basic_show2\",\"display\":\"false\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"31.55\",\"ry\":\"21.5\",\"cx\":\"118.45\",\"cy\":\"108.5\"}}}SHAPE--><!--LAYOUT<ellipse stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"false\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"basic_show2\" rx=\"31.55\" ry=\"21.5\" cx=\"118.45\" cy=\"108.5\"></ellipse>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"basic_show3\",\"display\":\"false\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":165.1,\"y\":97,\"width\":36,\"height\":20},\"text\":[\"Text\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"165.1\\\" y=\\\"114\\\">Text</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"false\" x-id=\"basic_show3\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"36\" x-height=\"20\" x-left=\"165.1\" x-top=\"97\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"36\" height=\"20\" x=\"165.1\" y=\"97\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"165.1\" y=\"114\">Text</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-image\",\"id\":\"basic_show4\",\"display\":\"false\",\"desc\":null,\"svg\":{\"tag\":\"image\",\"attrs\":{\"image-rendering\":\"optimizeQuality\",\"preserveAspectRatio\":\"none\",\"x\":\"213.1\",\"y\":\"91\",\"xlink:href\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC\",\"width\":\"41\",\"height\":\"41\"}}}SHAPE--><!--LAYOUT<image image-rendering=\"optimizeQuality\" preserveAspectRatio=\"none\" class=\"s-image\" x-display=\"false\" x-id=\"basic_show4\" x=\"213.1\" y=\"91\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC\" x-natural-width=\"50\" x-natural-height=\"50\" width=\"41\" height=\"41\"></image>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"basic_show5\",\"display\":\"false\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":267.1,\"y\":97,\"width\":106,\"height\":20},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":267.1,\"y\":114,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"false\" x-multiple=\"false\" x-id=\"basic_show5\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"106\" x-height=\"20\" x-left=\"267.1\" x-top=\"97\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"106\" height=\"20\" x=\"267.1\" y=\"97\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"269.1\" y=\"108\">basic_show5</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"basic_show6\",\"display\":\"false\",\"desc\":null,\"box\":{\"x\":387,\"y\":87,\"width\":74,\"height\":58},\"position-x\":\"left\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":387,\"y\":87,\"width\":74,\"height\":58}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"false\" x-id=\"basic_show6\" x-width=\"74\" x-height=\"58\" x-left=\"387\" x-top=\"87\" x-position-x=\"left\" x-position-y=\"top\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"74\" height=\"58\" x=\"387\" y=\"87\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"408\" y=\"100\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"389\" y=\"98\">basic_show6</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"280\" x-height=\"14\" x-left=\"20\" x-top=\"147\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"280\" height=\"14\" x=\"20\" y=\"147\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"155\">Visibility: To false from true.</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"basic_hide1\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"52\",\"height\":\"34\",\"x\":\"20\",\"y\":\"165\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"basic_hide1\" rx=\"0\" ry=\"0\" width=\"52\" height=\"34\" x=\"20\" y=\"165\"></rect>LAYOUT--><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"basic_hide2\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"31.55\",\"ry\":\"21.5\",\"cx\":\"118.45\",\"cy\":\"183.5\"}}}SHAPE--><!--LAYOUT<ellipse stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"basic_hide2\" rx=\"31.55\" ry=\"21.5\" cx=\"118.45\" cy=\"183.5\"></ellipse>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"basic_hide3\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":165.1,\"y\":172,\"width\":36,\"height\":20},\"text\":[\"Text\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"18\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"165.1\\\" y=\\\"189\\\">Text</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"basic_hide3\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"18\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"36\" x-height=\"20\" x-left=\"165.1\" x-top=\"172\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"36\" height=\"20\" x=\"165.1\" y=\"172\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"165.1\" y=\"189\">Text</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-image\",\"id\":\"basic_hide4\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"image\",\"attrs\":{\"image-rendering\":\"optimizeQuality\",\"preserveAspectRatio\":\"none\",\"xlink:href\":\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC\",\"width\":\"41\",\"height\":\"41\",\"x\":\"213.1\",\"y\":\"166\"}}}SHAPE--><!--LAYOUT<image image-rendering=\"optimizeQuality\" preserveAspectRatio=\"none\" class=\"s-image\" x-display=\"true\" x-id=\"basic_hide4\" xlink:href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOdAAADnQBaySz1gAAABZ0RVh0Q3JlYXRpb24gVGltZQAwOS8xNS8xMe/neuYAAAAfdEVYdFNvZnR3YXJlAE1hY3JvbWVkaWEgRmlyZXdvcmtzIDi1aNJ4AAAAV0lEQVRoge3PAQ3AMAzAsH78OfckLi26bATJM7M7P3BuB3zFSI2RGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TmBQWzAmLkoN8LAAAAAElFTkSuQmCC\" x-natural-width=\"50\" x-natural-height=\"50\" width=\"41\" height=\"41\" x=\"213.1\" y=\"166\"></image>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"basic_hide5\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":267.1,\"y\":172,\"width\":106,\"height\":20},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":267.1,\"y\":189,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"basic_hide5\" x-width=\"106\" x-height=\"20\" x-left=\"267.1\" x-top=\"172\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"106\" height=\"20\" x=\"267.1\" y=\"172\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"269.1\" y=\"183\">basic_hide5</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-iblock\",\"id\":\"basic_hide6\",\"display\":\"true\",\"desc\":null,\"box\":{\"x\":387,\"y\":162,\"width\":74,\"height\":58},\"position-x\":\"left\",\"position-y\":\"top\",\"svg\":{\"tag\":\"image\",\"attrs\":{\"x\":387,\"y\":162,\"width\":74,\"height\":58}}}SHAPE--><!--LAYOUT<g class=\"s-iblock\" x-display=\"true\" x-id=\"basic_hide6\" x-width=\"74\" x-height=\"58\" x-left=\"387\" x-top=\"162\" x-position-x=\"left\" x-position-y=\"top\"><rect class=\"s-iblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"74\" height=\"58\" x=\"387\" y=\"162\"></rect><image width=\"32\" height=\"32\" class=\"s-iblock-mark\" opacity=\"0.5\" xlink:href=\"assets/icons/x-image-mark.png\" display=\"inline\" x=\"408\" y=\"175\"></image><text class=\"s-iblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"389\" y=\"173\">basic_hide6</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"20\" text-anchor=\"start\" text-decoration=\"underline\" x-width=\"374.1\" x-height=\"22\" x-left=\"20\" x-top=\"222\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"374.1\" height=\"22\" x=\"20\" y=\"222\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"underline\" x=\"20\" y=\"240\">The Graphic Style</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_bcolor1\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"20\",\"y\":\"269\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bcolor1\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"20\" y=\"269\"></rect>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"245\" x-height=\"14\" x-left=\"20\" x-top=\"252\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"252\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"260\">Border Color: To red from black.</text></g><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"graphic_bcolor2\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"38.05\",\"ry\":\"23\",\"cx\":\"167.05\",\"cy\":\"291\"}}}SHAPE--><!--LAYOUT<ellipse stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bcolor2\" rx=\"38.05\" ry=\"23\" cx=\"167.05\" cy=\"291\"></ellipse>LAYOUT--><!--SHAPE{\"type\":\"s-line\",\"id\":\"graphic_bcolor3\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"line\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"none\",\"stroke-dasharray\":\"none\",\"x1\":\"227.1\",\"x2\":\"286.1\",\"y1\":\"276\",\"y2\":\"302\"}}}SHAPE--><!--LAYOUT<line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bcolor3\" x1=\"227.1\" x2=\"286.1\" y1=\"276\" y2=\"302\"></line>LAYOUT--><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_bcolor4\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#ff0000\",\"stroke-width\":\"1\",\"fill\":\"#e5b9b7\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"311.1\",\"y\":\"268\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"#e5b9b7\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bcolor4\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"311.1\" y=\"268\"></rect>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"182.1\" x-height=\"14\" x-left=\"311\" x-top=\"316.9\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"182.1\" height=\"14\" x=\"311\" y=\"316.9\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"311\" y=\"324.9\">To none from red.</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"245\" x-height=\"14\" x-left=\"20\" x-top=\"332\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"332\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"340\">Border Width: To 5 from 1.</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_bwidth1\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"20\",\"y\":\"350\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bwidth1\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"20\" y=\"350\"></rect>LAYOUT--><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"graphic_bwidth2\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"38.05\",\"ry\":\"23\",\"cx\":\"167.05\",\"cy\":\"370.9\"}}}SHAPE--><!--LAYOUT<ellipse stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bwidth2\" rx=\"38.05\" ry=\"23\" cx=\"167.05\" cy=\"370.9\"></ellipse>LAYOUT--><!--SHAPE{\"type\":\"s-line\",\"id\":\"graphic_bwidth3\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"line\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"none\",\"stroke-dasharray\":\"none\",\"x2\":\"286.1\",\"y1\":\"355.9\",\"y2\":\"381.9\",\"x1\":\"227.1\"}}}SHAPE--><!--LAYOUT<line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bwidth3\" x2=\"286.1\" y1=\"355.9\" y2=\"381.9\" x1=\"227.1\"></line>LAYOUT--><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_bwidth4\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#ff0000\",\"stroke-width\":\"1\",\"fill\":\"#e5b9b7\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"311.1\",\"y\":\"343\",\"stroke-opacity\":\"0\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"#e5b9b7\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bwidth4\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"311.1\" y=\"343\" stroke-opacity=\"0\"></rect>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"182.1\" x-height=\"14\" x-left=\"311\" x-top=\"391.9\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"182.1\" height=\"14\" x=\"311\" y=\"391.9\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"311\" y=\"399.9\">To 2 from none(0).</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_bwidth5\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#ff0000\",\"stroke-width\":\"1\",\"fill\":\"#e5b9b7\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"448.1\",\"y\":\"343\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#ff0000\" stroke-width=\"1\" fill=\"#e5b9b7\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_bwidth5\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"448.1\" y=\"343\"></rect>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"127\" x-height=\"14\" x-left=\"448\" x-top=\"391.9\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"127\" height=\"14\" x=\"448\" y=\"391.9\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"448\" y=\"399.9\">To none(0) from 1.</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"245\" x-height=\"14\" x-left=\"20\" x-top=\"412\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"412\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"420\">Fill Color: To red from white.</text></g><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_fcolor1\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"89\",\"height\":\"44\",\"x\":\"20\",\"y\":\"428.8\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_fcolor1\" rx=\"0\" ry=\"0\" width=\"89\" height=\"44\" x=\"20\" y=\"428.8\"></rect>LAYOUT--><!--SHAPE{\"type\":\"s-ellipse\",\"id\":\"graphic_fcolor2\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"ellipse\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#FFFFFF\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"38.05\",\"ry\":\"23\",\"cx\":\"167.05\",\"cy\":\"450.8\"}}}SHAPE--><!--LAYOUT<ellipse stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_fcolor2\" rx=\"38.05\" ry=\"23\" cx=\"167.05\" cy=\"450.8\"></ellipse>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"182.1\" x-height=\"14\" x-left=\"226\" x-top=\"476.7\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"182.1\" height=\"14\" x=\"226\" y=\"476.7\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"226\" y=\"484.7\">To none from black.</text></g><ellipse stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"37.5\" ry=\"15.5\" cx=\"302.5\" cy=\"434.5\"></ellipse><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_fcolor3\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"73\",\"height\":\"35.2\",\"x\":\"226\",\"y\":\"427.8\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#000000\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_fcolor3\" rx=\"0\" ry=\"0\" width=\"73\" height=\"35.2\" x=\"226\" y=\"427.8\"></rect>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"182.1\" x-height=\"14\" x-left=\"371\" x-top=\"476.7\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"182.1\" height=\"14\" x=\"371\" y=\"476.7\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"371\" y=\"484.7\">To red from none.</text></g><ellipse stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-ellipse\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"37.5\" ry=\"15.5\" cx=\"447.5\" cy=\"434.5\"></ellipse><!--SHAPE{\"type\":\"s-rect\",\"id\":\"graphic_fcolor4\",\"display\":\"true\",\"desc\":null,\"svg\":{\"tag\":\"rect\",\"attrs\":{\"stroke\":\"#000000\",\"stroke-width\":\"1\",\"fill\":\"none\",\"fill-opacity\":\"1\",\"stroke-dasharray\":\"none\",\"rx\":\"0\",\"ry\":\"0\",\"width\":\"73\",\"height\":\"35.2\",\"x\":\"371\",\"y\":\"427.8\"}}}SHAPE--><!--LAYOUT<rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"graphic_fcolor4\" rx=\"0\" ry=\"0\" width=\"73\" height=\"35.2\" x=\"371\" y=\"427.8\"></rect>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"20\" text-anchor=\"start\" text-decoration=\"underline\" x-width=\"374.1\" x-height=\"22\" x-left=\"20\" x-top=\"497\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"374.1\" height=\"22\" x=\"20\" y=\"497\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"underline\" x=\"20\" y=\"515\">The Text Style</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"122\" x-height=\"14\" x-left=\"20\" x-top=\"527\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"122\" height=\"14\" x=\"20\" y=\"527\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"535\">Bold Style:</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_b1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":20,\"y\":549.2,\"width\":131,\"height\":15},\"text\":[\"To bold from normal.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"20\\\" y=\\\"560.2\\\">To bold from normal.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_b1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"131\" x-height=\"15\" x-left=\"20\" x-top=\"549.2\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"131\" height=\"15\" x=\"20\" y=\"549.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"560.2\">To bold from normal.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_b2\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":20,\"y\":567,\"width\":144,\"height\":15},\"text\":[\"To normal from bold.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"bold\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"20\\\" y=\\\"578\\\">To normal from bold.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_b2\" stroke=\"none\" font-weight=\"bold\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"144\" x-height=\"15\" x-left=\"20\" x-top=\"567\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"144\" height=\"15\" x=\"20\" y=\"567\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"578\">To normal from bold.</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"122\" x-height=\"14\" x-left=\"150\" x-top=\"527\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"122\" height=\"14\" x=\"150\" y=\"527\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"150\" y=\"535\">Italic Style:</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_i1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":150,\"y\":549.2,\"width\":132,\"height\":15},\"text\":[\"To italic from normal.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"150\\\" y=\\\"560.2\\\">To italic from normal.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_i1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"132\" x-height=\"15\" x-left=\"150\" x-top=\"549.2\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"132\" height=\"15\" x=\"150\" y=\"549.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"150\" y=\"560.2\">To italic from normal.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_i2\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":150,\"y\":567,\"width\":146,\"height\":15},\"text\":[\"To normal from italic.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"italic\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"150\\\" y=\\\"578\\\">To normal from italic.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_i2\" stroke=\"none\" font-weight=\"normal\" font-style=\"italic\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"146\" x-height=\"15\" x-left=\"150\" x-top=\"567\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"146\" height=\"15\" x=\"150\" y=\"567\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"150\" y=\"578\">To normal from italic.</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"122\" x-height=\"14\" x-left=\"280\" x-top=\"527\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"122\" height=\"14\" x=\"280\" y=\"527\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"280\" y=\"535\">Underline Style:</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_u1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":280,\"y\":549.2,\"width\":132,\"height\":15},\"text\":[\"To underline from none.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"280\\\" y=\\\"560.2\\\">To underline from none.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_u1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"132\" x-height=\"15\" x-left=\"280\" x-top=\"549.2\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"132\" height=\"15\" x=\"280\" y=\"549.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"280\" y=\"560.2\">To underline from none.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_u2\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":280,\"y\":567,\"width\":146,\"height\":15},\"text\":[\"To none from underline.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"underline\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"underline\\\" x=\\\"280\\\" y=\\\"578\\\">To none from underline.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_u2\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"underline\" x-width=\"146\" x-height=\"15\" x-left=\"280\" x-top=\"567\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"146\" height=\"15\" x=\"280\" y=\"567\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"underline\" x=\"280\" y=\"578\">To none from underline.</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"133\" x-height=\"14\" x-left=\"425\" x-top=\"527\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"133\" height=\"14\" x=\"425\" y=\"527\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"425\" y=\"535\">Line-Through Style:</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_l1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":425,\"y\":549.2,\"width\":145,\"height\":15},\"text\":[\"To line-through from none.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"425\\\" y=\\\"560.2\\\">To line-through from none.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_l1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"145\" x-height=\"15\" x-left=\"425\" x-top=\"549.2\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"145\" height=\"15\" x=\"425\" y=\"549.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"425\" y=\"560.2\">To line-through from none.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_l2\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":425,\"y\":567,\"width\":146,\"height\":15},\"text\":[\"To none from line-through.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"line-through\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"line-through\\\" x=\\\"425\\\" y=\\\"578\\\">To none from line-through.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_l2\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"line-through\" x-width=\"146\" x-height=\"15\" x-left=\"425\" x-top=\"567\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"146\" height=\"15\" x=\"425\" y=\"567\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"line-through\" x=\"425\" y=\"578\">To none from line-through.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_b3\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":586.2,\"width\":119,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":20,\"y\":597.2,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_b3\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"119\" x-height=\"14\" x-left=\"20\" x-top=\"586.2\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"20\" y=\"586.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"597.2\">text_b3</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_b4\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":606,\"width\":119,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":20,\"y\":617,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"bold\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_b4\" x-width=\"119\" x-height=\"14\" x-left=\"20\" x-top=\"606\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"bold\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"20\" y=\"606\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"617\">text_b4</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_i3\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":150,\"y\":586.2,\"width\":119,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":150,\"y\":597.2,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_i3\" x-width=\"119\" x-height=\"14\" x-left=\"150\" x-top=\"586.2\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"150\" y=\"586.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"152\" y=\"597.2\">text_i3</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_i4\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":150,\"y\":606,\"width\":119,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":150,\"y\":617,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"italic\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_i4\" x-width=\"119\" x-height=\"14\" x-left=\"150\" x-top=\"606\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"italic\" text-decoration=\"none\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"150\" y=\"606\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"152\" y=\"617\">text_i4</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_u3\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":280,\"y\":586.2,\"width\":119,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":280,\"y\":597.2,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_u3\" x-width=\"119\" x-height=\"14\" x-left=\"280\" x-top=\"586.2\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"280\" y=\"586.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"282\" y=\"597.2\">text_u3</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_u4\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":280,\"y\":606,\"width\":119,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":280,\"y\":617,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"underline\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_u4\" x-width=\"119\" x-height=\"14\" x-left=\"280\" x-top=\"606\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"underline\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"280\" y=\"606\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"282\" y=\"617\">text_u4</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_l3\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":425,\"y\":586.2,\"width\":119,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":425,\"y\":597.2,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_l3\" x-width=\"119\" x-height=\"14\" x-left=\"425\" x-top=\"586.2\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"425\" y=\"586.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"427\" y=\"597.2\">text_l3</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_l4\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":425,\"y\":606,\"width\":119,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":425,\"y\":617,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"line-through\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_l4\" x-width=\"119\" x-height=\"14\" x-left=\"425\" x-top=\"606\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"line-through\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"14\" x=\"425\" y=\"606\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"427\" y=\"617\">text_l4</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"217\" x-height=\"14\" x-left=\"20\" x-top=\"637\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"217\" height=\"14\" x=\"20\" y=\"637\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"645\">Text Align: To right from left.</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_a1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":20,\"y\":659,\"width\":155.1,\"height\":23.2},\"text\":[\"To right from left.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"20\\\" y=\\\"670\\\">To right from left.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_a1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"155.1\" x-height=\"23.2\" x-left=\"20\" x-top=\"659\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"155.1\" height=\"23.2\" x=\"20\" y=\"659\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"670\">To right from left.</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"155.1\" height=\"23.2\" x=\"20\" y=\"659\"></rect><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_a2\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":192.1,\"y\":660.2,\"width\":138,\"height\":14},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":192.1,\"y\":671.2,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"Helvetica\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_a2\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"138\" x-height=\"14\" x-left=\"192.1\" x-top=\"660.2\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"138\" height=\"14\" x=\"192.1\" y=\"660.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"194.1\" y=\"671.2\">text_a2</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_a3\",\"display\":\"true\",\"desc\":\"\\u65e5\\u672c\\u8a9e\",\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":344.1,\"y\":660.2,\"width\":153.1,\"height\":44.1},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":344.1,\"y\":660.2,\"width\":153.1,\"height\":44.1,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"text_a3\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"153.1\" x-height=\"44.1\" x-left=\"344.1\" x-top=\"660.2\" x-desc=\"\u65e5\u672c\u8a9e\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"153.1\" height=\"44.1\" x=\"344.1\" y=\"660.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"346.1\" y=\"671.2\">text_a3</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"138\" height=\"22\" x=\"192.1\" y=\"660.2\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"153.1\" height=\"44.1\" x=\"344.1\" y=\"660.2\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"245\" x-height=\"14\" x-left=\"20\" x-top=\"712\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"712\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"720\">Vertical Align: To bottom from top.</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_va1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":20,\"y\":729,\"width\":155.1,\"height\":50.3},\"text\":[\"To bottom from top.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"20\\\" y=\\\"740\\\">To bottom from top.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_va1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"155.1\" x-height=\"50.3\" x-left=\"20\" x-top=\"729\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"155.1\" height=\"50.3\" x=\"20\" y=\"729\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"740\">To bottom from top.</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"155.1\" height=\"50.3\" x=\"20\" y=\"729\"></rect><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_va2\",\"display\":\"true\",\"desc\":\"\\u65e5\\u672c\\u8a9e\",\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":189,\"y\":730,\"width\":153.1,\"height\":50.3},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":189,\"y\":730,\"width\":153.1,\"height\":50.3,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"text_va2\" x-width=\"153.1\" x-height=\"50.3\" x-left=\"189\" x-top=\"730\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-desc=\"\u65e5\u672c\u8a9e\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"153.1\" height=\"50.3\" x=\"189\" y=\"730\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"191\" y=\"741\">text_va2</text></g>LAYOUT--><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"153.1\" height=\"50.3\" x=\"189\" y=\"730\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Courier New\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"245\" x-height=\"14\" x-left=\"20\" x-top=\"789\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"245\" height=\"14\" x=\"20\" y=\"789\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"797\">Text Color: To red from black.</text></g><!--SHAPE{\"type\":\"s-text\",\"id\":\"text_color1\",\"display\":\"true\",\"desc\":null,\"line-height\":\"\",\"valign\":\"\",\"box\":{\"x\":20,\"y\":809,\"width\":131,\"height\":15},\"text\":[\"To red from black.\"],\"svg\":{\"tag\":\"g\",\"attrs\":{\"stroke-width\":\"0\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"kerning\":\"auto\",\"stroke\":\"none\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"font-family\":\"Helvetica\",\"font-size\":\"12\",\"text-anchor\":\"start\",\"text-decoration\":\"none\"},\"content\":\"<text class=\\\"s-text-l0\\\" xml:space=\\\"preserve\\\" stroke=\\\"none\\\" fill=\\\"inherit\\\" fill-opacity=\\\"1\\\" text-decoration=\\\"none\\\" x=\\\"20\\\" y=\\\"820\\\">To red from black.</text>\"}}SHAPE--><!--LAYOUT<g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text_color1\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"12\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"131\" x-height=\"15\" x-left=\"20\" x-top=\"809\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"131\" height=\"15\" x=\"20\" y=\"809\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"20\" y=\"820\">To red from black.</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"text_color2\",\"display\":\"true\",\"desc\":\"\\u65e5\\u672c\\u8a9e\",\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":136,\"y\":808.1,\"width\":119,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":136,\"y\":818.1,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"text_color2\" x-width=\"119\" x-height=\"12\" x-left=\"136\" x-top=\"808.1\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-desc=\"\u65e5\u672c\u8a9e\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"119\" height=\"12\" x=\"136\" y=\"808.1\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"138\" y=\"819.1\">text_color2</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"title\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":183.1,\"y\":21,\"width\":208,\"height\":19},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":287.1,\"y\":33,\"xml:space\":\"preserve\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"18\",\"font-family\":\"Times New Roman\",\"font-weight\":\"bold\",\"font-style\":\"normal\",\"text-anchor\":\"middle\",\"text-decoration\":\"underline\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"title\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Times New Roman\" font-weight=\"bold\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"underline\" x-width=\"208\" x-height=\"19\" x-left=\"183.1\" x-top=\"21\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"208\" height=\"19\" x=\"183.1\" y=\"21\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"185.1\" y=\"32\">title</text></g>LAYOUT--></g></svg>"}
@@ -0,0 +1 @@
1
+ {"version":"0.6.0.pre3","finger-print":-2118659524,"config":{"title":"Dynamic Style in List","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><g class=\"canvas\"><!--SHAPE{\"type\":\"s-list\",\"id\":\"list\",\"display\":\"true\",\"desc\":null,\"footer\":{},\"footer-enabled\":\"false\",\"page-footer\":{},\"page-footer-enabled\":\"false\",\"detail\":{\"height\":57,\"svg\":{\"tag\":\"g\",\"content\":\"<!---SHAPE{\\\"type\\\":\\\"s-rect\\\",\\\"id\\\":\\\"rect\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"svg\\\":{\\\"tag\\\":\\\"rect\\\",\\\"attrs\\\":{\\\"stroke\\\":\\\"#000000\\\",\\\"stroke-width\\\":\\\"1\\\",\\\"fill\\\":\\\"#FFFFFF\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"stroke-dasharray\\\":\\\"none\\\",\\\"rx\\\":\\\"0\\\",\\\"ry\\\":\\\"0\\\",\\\"width\\\":\\\"77\\\",\\\"height\\\":\\\"31\\\",\\\"x\\\":\\\"111.1\\\",\\\"y\\\":\\\"137.8\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-text\\\",\\\"id\\\":\\\"text\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"line-height\\\":\\\"\\\",\\\"valign\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":223.1,\\\"y\\\":132.8,\\\"width\\\":147,\\\"height\\\":45.1},\\\"text\\\":[\\\"Detail Text\\\"],\\\"svg\\\":{\\\"tag\\\":\\\"g\\\",\\\"attrs\\\":{\\\"stroke-width\\\":\\\"0\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"kerning\\\":\\\"auto\\\",\\\"stroke\\\":\\\"none\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-size\\\":\\\"18\\\",\\\"text-anchor\\\":\\\"start\\\",\\\"text-decoration\\\":\\\"none\\\"},\\\"content\\\":\\\"<text class=\\\\\\\"s-text-l0\\\\\\\" xml:space=\\\\\\\"preserve\\\\\\\" stroke=\\\\\\\"none\\\\\\\" fill=\\\\\\\"inherit\\\\\\\" fill-opacity=\\\\\\\"1\\\\\\\" text-decoration=\\\\\\\"none\\\\\\\" x=\\\\\\\"223.1\\\\\\\" y=\\\\\\\"149.8\\\\\\\">Detail Text</text>\\\"}}SHAPE---><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"147\\\" height=\\\"45.1\\\" x=\\\"223.1\\\" y=\\\"132.8\\\"></rect><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"tblock\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"true\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":389.1,\\\"y\\\":134.8,\\\"width\\\":144.1,\\\"height\\\":42.1},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"Detail Tblock\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"textArea\\\",\\\"attrs\\\":{\\\"x\\\":389.1,\\\"y\\\":134.8,\\\"width\\\":144.1,\\\"height\\\":42.1,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"18\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"start\\\"}}}SHAPE---><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"144.1\\\" height=\\\"42.1\\\" x=\\\"389.1\\\" y=\\\"134.8\\\"></rect><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"20\\\" x2=\\\"575.2\\\" y1=\\\"183.8\\\" y2=\\\"183.8\\\"></line>\"},\"translate\":{\"x\":0,\"y\":1.2}},\"header\":{\"height\":51,\"svg\":{\"tag\":\"g\",\"content\":\"<!---SHAPE{\\\"type\\\":\\\"s-rect\\\",\\\"id\\\":\\\"rect\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"svg\\\":{\\\"tag\\\":\\\"rect\\\",\\\"attrs\\\":{\\\"stroke\\\":\\\"#000000\\\",\\\"stroke-width\\\":\\\"1\\\",\\\"fill\\\":\\\"#FFFFFF\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"stroke-dasharray\\\":\\\"none\\\",\\\"rx\\\":\\\"0\\\",\\\"ry\\\":\\\"0\\\",\\\"width\\\":\\\"77\\\",\\\"height\\\":\\\"31\\\",\\\"x\\\":\\\"110.1\\\",\\\"y\\\":\\\"31\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-text\\\",\\\"id\\\":\\\"text\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"line-height\\\":\\\"\\\",\\\"valign\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":223.1,\\\"y\\\":21,\\\"width\\\":147,\\\"height\\\":45.1},\\\"text\\\":[\\\"Header Text\\\"],\\\"svg\\\":{\\\"tag\\\":\\\"g\\\",\\\"attrs\\\":{\\\"stroke-width\\\":\\\"0\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"kerning\\\":\\\"auto\\\",\\\"font-size\\\":\\\"18\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-anchor\\\":\\\"start\\\",\\\"text-decoration\\\":\\\"none\\\"},\\\"content\\\":\\\"<text class=\\\\\\\"s-text-l0\\\\\\\" xml:space=\\\\\\\"preserve\\\\\\\" stroke=\\\\\\\"none\\\\\\\" fill=\\\\\\\"inherit\\\\\\\" fill-opacity=\\\\\\\"1\\\\\\\" text-decoration=\\\\\\\"none\\\\\\\" x=\\\\\\\"223.1\\\\\\\" y=\\\\\\\"38\\\\\\\">Header Text</text>\\\"}}SHAPE---><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"147\\\" height=\\\"45.1\\\" x=\\\"223.1\\\" y=\\\"21\\\"></rect><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"tblock\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"true\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":389.1,\\\"y\\\":23,\\\"width\\\":144.1,\\\"height\\\":42.1},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"Header Tblock\\\",\\\"ref-id\\\":\\\"\\\",\\\"svg\\\":{\\\"tag\\\":\\\"textArea\\\",\\\"attrs\\\":{\\\"x\\\":389.1,\\\"y\\\":23,\\\"width\\\":144.1,\\\"height\\\":42.1,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"18\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-anchor\\\":\\\"start\\\",\\\"text-decoration\\\":\\\"none\\\"}}}SHAPE---><rect stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"144.1\\\" height=\\\"42.1\\\" x=\\\"389.1\\\" y=\\\"23\\\"></rect><line stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"20\\\" x2=\\\"575.2\\\" y1=\\\"71\\\" y2=\\\"71\\\"></line>\"},\"translate\":{\"x\":0,\"y\":57}},\"header-enabled\":\"true\",\"svg\":{\"tag\":\"g\",\"attrs\":{}},\"content-height\":364.2,\"page-break\":\"true\"}SHAPE--><!--LAYOUT<g class=\"s-list\" x-id=\"list\" x-header-enabled=\"true\" x-page-footer-enabled=\"false\" x-footer-enabled=\"false\" x-changing-page=\"true\" x-display=\"true\" width=\"555.2\" height=\"415.2\" x=\"20\" y=\"77\"><g class=\"s-list-header\" transform=\"translate(0,57) rotate(0 0 0)\" x-top=\"77\" x-height=\"51\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"rect\" rx=\"0\" ry=\"0\" width=\"77\" height=\"31\" x=\"110.1\" y=\"31\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"147\" x-height=\"45.1\" x-left=\"223.1\" x-top=\"21\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"147\" height=\"45.1\" x=\"223.1\" y=\"21\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"223.1\" y=\"38\">Header Text</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"147\" height=\"45.1\" x=\"223.1\" y=\"21\"></rect><g class=\"s-tblock\" x-format-type=\"\" x-value=\"Header Tblock\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"tblock\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"144.1\" x-height=\"42.1\" x-left=\"389.1\" x-top=\"23\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"144.1\" height=\"42.1\" x=\"389.1\" y=\"23\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"391.1\" y=\"34\">tblock</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"144.1\" height=\"42.1\" x=\"389.1\" y=\"23\"></rect><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"20\" x2=\"575.2\" y1=\"71\" y2=\"71\"></line></g><g class=\"s-list-detail\" transform=\"translate(0,1.2) rotate(0 0 0)\" x-top=\"128\" x-height=\"57\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"rect\" rx=\"0\" ry=\"0\" width=\"77\" height=\"31\" x=\"111.1\" y=\"137.8\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"18\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"147\" x-height=\"45.1\" x-left=\"223.1\" x-top=\"132.8\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"147\" height=\"45.1\" x=\"223.1\" y=\"132.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"223.1\" y=\"149.8\">Detail Text</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"147\" height=\"45.1\" x=\"223.1\" y=\"132.8\"></rect><g class=\"s-tblock\" x-format-type=\"\" x-value=\"Detail Tblock\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"tblock\" x-width=\"144.1\" x-height=\"42.1\" x-left=\"389.1\" x-top=\"134.8\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"144.1\" height=\"42.1\" x=\"389.1\" y=\"134.8\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"391.1\" y=\"145.8\">tblock</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"144.1\" height=\"42.1\" x=\"389.1\" y=\"134.8\"></rect><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"20\" x2=\"575.2\" y1=\"183.8\" y2=\"183.8\"></line></g><g class=\"s-list-page-footer\" transform=\"translate(0,-48.6) rotate(0 0 0)\" x-top=\"185\" x-height=\"0\" display=\"none\"></g><g class=\"s-list-footer\" transform=\"translate(0,-128.7) rotate(0 0 0)\" x-top=\"185\" x-height=\"0\" display=\"none\"></g><text class=\"s-list-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"87.8\">list</text><rect stroke-dasharray=\"5\" stroke=\"#BBBBBB\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"0\" class=\"s-list-face\" width=\"555.2\" height=\"415.2\" x=\"20\" y=\"77\"></rect></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"18\" font-family=\"Times New Roman\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"underline\" x-width=\"200\" x-height=\"19\" x-left=\"197.6\" x-top=\"37\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"19\" x=\"197.6\" y=\"37\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"underline\" x=\"297.6\" y=\"49\">Dynamic Style in List</text></g></g></svg>"}
@@ -0,0 +1,20 @@
1
+ # coding: utf-8
2
+
3
+ CaseRunner.current :eudc
4
+
5
+ ThinReports.configure do |config|
6
+ config.generator.pdf.eudc_fonts = CaseRunner.case_resource('eudc.ttf')
7
+ end
8
+
9
+ ThinReports::Report.generate_file(:pdf, CaseRunner.output_file) do
10
+ use_layout(CaseRunner.layout_file)
11
+
12
+ start_new_page
13
+
14
+ page.item(:eudc).value('日本で生まれ世界が育てた言語 Ruby')
15
+ page.values(:eudc_bold => '太字',
16
+ :eudc_italic => '斜体',
17
+ :eudc_bold_italic => '太字斜体')
18
+ end
19
+
20
+ ThinReports.config.generator.pdf.eudc_fonts = []
@@ -0,0 +1 @@
1
+ {"version":"0.6.0.pre3","finger-print":-295770618,"config":{"title":"EUDC","option":{},"page":{"paper-type":"A4","orientation":"landscape","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"841.8\" height=\"595.2\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 841.8 595.2\"><g class=\"canvas\"><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"36\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"631\" x-height=\"100\" x-left=\"105.4\" x-top=\"61\" x-valign=\"center\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"631\" height=\"100\" x=\"105.4\" y=\"61\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"420.9\" y=\"125\">\u65e5\u672c\u3067\u751f\u307e\u308c\u4e16\u754c\u304c\u80b2\u3066\u305f\u8a00\u8a9e Ruby\ue000</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"eudc\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"center\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":154.3,\"width\":801.8,\"height\":61},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":20,\"y\":154.3,\"width\":801.8,\"height\":61,\"xml:space\":\"preserve\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"36\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\",\"kerning\":\"null\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"true\" x-id=\"eudc\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"36\" font-family=\"IPAMincho\" x-width=\"801.8\" x-height=\"61\" x-left=\"20\" x-top=\"154.3\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" kerning=\"null\" x-valign=\"center\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"801.8\" height=\"61\" x=\"20\" y=\"154.3\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"165.3\">eudc</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"eudc_bold\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"center\",\"line-height\":\"\",\"box\":{\"x\":249.2,\"y\":249,\"width\":343.3,\"height\":61},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":249.2,\"y\":249,\"width\":343.3,\"height\":61,\"xml:space\":\"preserve\",\"kerning\":\"null\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"36\",\"font-family\":\"IPAMincho\",\"font-weight\":\"bold\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"null\" x-display=\"true\" x-multiple=\"true\" x-id=\"eudc_bold\" x-width=\"343.3\" x-height=\"61\" x-left=\"249.2\" x-top=\"249\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"36\" font-family=\"IPAMincho\" font-weight=\"bold\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-valign=\"center\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"343.3\" height=\"61\" x=\"249.2\" y=\"249\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"251.2\" y=\"260\">eudc_bold</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"eudc_italic\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"center\",\"line-height\":\"\",\"box\":{\"x\":249.2,\"y\":329.1,\"width\":343.3,\"height\":61},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":249.2,\"y\":329.1,\"width\":343.3,\"height\":61,\"xml:space\":\"preserve\",\"kerning\":\"null\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"36\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"italic\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"null\" x-display=\"true\" x-multiple=\"true\" x-id=\"eudc_italic\" x-width=\"343.3\" x-height=\"61\" x-left=\"249.2\" x-top=\"329.1\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"36\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"italic\" text-decoration=\"none\" text-anchor=\"middle\" x-valign=\"center\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"343.3\" height=\"61\" x=\"249.2\" y=\"329.1\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"251.2\" y=\"340.1\">eudc_italic</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"eudc_bold_italic\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"center\",\"line-height\":\"\",\"box\":{\"x\":249.2,\"y\":409,\"width\":343.3,\"height\":61},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":249.2,\"y\":409,\"width\":343.3,\"height\":61,\"xml:space\":\"preserve\",\"kerning\":\"null\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"36\",\"font-family\":\"IPAMincho\",\"font-weight\":\"bold\",\"font-style\":\"italic\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\"}}}SHAPE--><!--LAYOUT<g class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"null\" x-display=\"true\" x-multiple=\"true\" x-id=\"eudc_bold_italic\" x-width=\"343.3\" x-height=\"61\" x-left=\"249.2\" x-top=\"409\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"36\" font-family=\"IPAMincho\" font-weight=\"bold\" font-style=\"italic\" text-decoration=\"none\" text-anchor=\"middle\" x-valign=\"center\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"343.3\" height=\"61\" x=\"249.2\" y=\"409\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"251.2\" y=\"420\">eudc_bold_italic</text></g>LAYOUT--></g></svg>"}
Binary file
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+
3
+ class ThinReports::TestCaseRunner
4
+ ROOTDIR = File.expand_path(File.join('test', 'case'))
5
+
6
+ class << self
7
+ attr_accessor :current
8
+
9
+ def current(casename)
10
+ @current = casename.to_s
11
+ end
12
+
13
+ def layout_file
14
+ case_resource("#{@current}.tlf")
15
+ end
16
+
17
+ def output_file
18
+ case_resource("#{@current}.pdf")
19
+ end
20
+
21
+ def case_resource(filename = nil)
22
+ File.join(*[ROOTDIR, @current, filename].compact)
23
+ end
24
+ end
25
+ end
26
+
27
+ CaseRunner = ThinReports::TestCaseRunner
@@ -0,0 +1,13 @@
1
+ # coding: utf-8
2
+
3
+ CaseRunner.current :hidden_shapes
4
+
5
+ ThinReports::Report.generate_file(:pdf, CaseRunner.output_file) do
6
+ use_layout(CaseRunner.layout_file)
7
+
8
+ start_new_page
9
+
10
+ 2.times do
11
+ page.list(:List).add_row
12
+ end
13
+ end