moo 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. data/LICENSE +19 -0
  2. data/README.mkd +96 -0
  3. data/data/moo/templates/businesscard_bottom_image_dual_column_text_landscape.xml +361 -0
  4. data/data/moo/templates/businesscard_bottom_image_single_column_text_landscape.xml +231 -0
  5. data/data/moo/templates/businesscard_bottom_image_single_column_text_portrait.xml +361 -0
  6. data/data/moo/templates/businesscard_full_details_image_landscape.xml +77 -0
  7. data/data/moo/templates/businesscard_full_details_image_portrait.xml +75 -0
  8. data/data/moo/templates/businesscard_full_image_landscape.xml +73 -0
  9. data/data/moo/templates/businesscard_full_image_portrait.xml +73 -0
  10. data/data/moo/templates/businesscard_full_text_landscape.xml +343 -0
  11. data/data/moo/templates/businesscard_full_text_portrait.xml +342 -0
  12. data/data/moo/templates/businesscard_left_image_landscape.xml +363 -0
  13. data/data/moo/templates/businesscard_right_image_landscape.xml +363 -0
  14. data/data/moo/templates/businesscard_top_image_dual_column_text_landscape.xml +361 -0
  15. data/data/moo/templates/businesscard_top_image_single_column_text_landscape.xml +231 -0
  16. data/data/moo/templates/businesscard_top_image_single_column_text_portrait.xml +361 -0
  17. data/data/moo/templates/minicard_bottom_image_landscape.xml +155 -0
  18. data/data/moo/templates/minicard_full_details_image_landscape.xml +75 -0
  19. data/data/moo/templates/minicard_full_details_image_portrait.xml +74 -0
  20. data/data/moo/templates/minicard_full_image_landscape.xml +75 -0
  21. data/data/moo/templates/minicard_full_image_portrait.xml +74 -0
  22. data/data/moo/templates/minicard_full_text_landscape.xml +221 -0
  23. data/data/moo/templates/minicard_left_image_landscape.xml +238 -0
  24. data/data/moo/templates/minicard_right_image_landscape.xml +239 -0
  25. data/data/moo/templates/minicard_top_image_landscape.xml +154 -0
  26. data/data/moo/templates/postcard_full_details_image_landscape.xml +77 -0
  27. data/data/moo/templates/postcard_full_details_image_portrait.xml +76 -0
  28. data/data/moo/templates/postcard_full_image_landscape.xml +77 -0
  29. data/data/moo/templates/postcard_full_image_portrait.xml +77 -0
  30. data/data/moo/templates/postcard_full_text_portrait.xml +76 -0
  31. data/data/moo/templates/sticker_image.xml +76 -0
  32. data/lib/moo.rb +4 -0
  33. data/lib/moo/client.rb +111 -0
  34. data/lib/moo/core_ext/object.rb +7 -0
  35. data/lib/moo/core_ext/string.rb +6 -0
  36. data/lib/moo/model.rb +20 -0
  37. data/lib/moo/model/bounding_box.rb +70 -0
  38. data/lib/moo/model/box_data.rb +38 -0
  39. data/lib/moo/model/card.rb +12 -0
  40. data/lib/moo/model/colour.rb +100 -0
  41. data/lib/moo/model/data.rb +11 -0
  42. data/lib/moo/model/fixed_image_data.rb +40 -0
  43. data/lib/moo/model/font.rb +66 -0
  44. data/lib/moo/model/image_basket.rb +21 -0
  45. data/lib/moo/model/image_basket_item.rb +88 -0
  46. data/lib/moo/model/image_data.rb +64 -0
  47. data/lib/moo/model/multi_line_text_data.rb +8 -0
  48. data/lib/moo/model/pack.rb +50 -0
  49. data/lib/moo/model/side.rb +72 -0
  50. data/lib/moo/model/template.rb +78 -0
  51. data/lib/moo/model/text_data.rb +72 -0
  52. metadata +160 -0
@@ -0,0 +1,77 @@
1
+
2
+ <?xml version="1.0" encoding="UTF-8"?>
3
+ <Template xmlns="http://www.moo.com/xsd/template-1.0">
4
+ <Code>businesscard_full_details_image_landscape</Code>
5
+ <Version>1</Version>
6
+ <Settings>
7
+ <Units type="millimetres"/>
8
+ <Origin orientation="top-left" offsetX="0" offsetY="0"/>
9
+ <PrintArea>
10
+ <Width>88</Width>
11
+ <Height>59</Height>
12
+ </PrintArea>
13
+ <BleedBox>
14
+ <Centre x="44" y="29.5"/>
15
+ <Width>88</Width>
16
+ <Height>59</Height>
17
+ <Angle>0</Angle>
18
+ </BleedBox>
19
+ <CutBox>
20
+ <Centre x="44" y="29.5"/>
21
+ <Width>84</Width>
22
+ <Height>55</Height>
23
+ <Angle>0</Angle>
24
+ </CutBox>
25
+ <SafeAreaBox>
26
+ <!-- assume safe area matches bleed for now @ 2mm -->
27
+ <Centre x="44" y="29.5"/>
28
+ <Width>80</Width>
29
+ <Height>51</Height>
30
+ <Angle>0</Angle>
31
+ </SafeAreaBox>
32
+ <RotationAngle>0</RotationAngle>
33
+ <FontSubstitutionStrategy>allLinesIfAnyNeeded</FontSubstitutionStrategy>
34
+ </Settings>
35
+ <Items>
36
+ <Box>
37
+ <LinkId>background_box</LinkId>
38
+ <ClippingBox>
39
+ <Centre x="44" y="29.5"/>
40
+ <Width>88</Width>
41
+ <Height>59</Height>
42
+ <Angle>0</Angle>
43
+ </ClippingBox>
44
+ <Colour type="CMYK">
45
+ <Cyan>0</Cyan>
46
+ <Magenta>0</Magenta>
47
+ <Yellow>0</Yellow>
48
+ <Black>0</Black>
49
+ </Colour>
50
+ <Filled>true</Filled>
51
+ <Layout>
52
+ <zIndex>0</zIndex>
53
+ </Layout>
54
+ </Box>
55
+ <Image>
56
+ <LinkId>variable_image_back</LinkId>
57
+ <ClippingBox>
58
+ <Centre x="44" y="29.5" />
59
+ <Width>88</Width>
60
+ <Height>59</Height>
61
+ <Angle>0</Angle>
62
+ </ClippingBox>
63
+ <Constraints>
64
+ <TopEdge outside="true" betweenBleedAndCut="true" betweenCutAndSafe="true" insideSafe="true" />
65
+ <LeftEdge outside="true" betweenBleedAndCut="true" betweenCutAndSafe="true" insideSafe="true" />
66
+ <BottomEdge outside="true" betweenBleedAndCut="true" betweenCutAndSafe="true"
67
+ insideSafe="true" />
68
+ <RightEdge outside="true" betweenBleedAndCut="true" betweenCutAndSafe="true"
69
+ insideSafe="true" />
70
+ </Constraints>
71
+ <Layout>
72
+ <zIndex>2</zIndex>
73
+ </Layout>
74
+ </Image>
75
+ </Items>
76
+ </Template>
77
+
@@ -0,0 +1,75 @@
1
+
2
+ <?xml version="1.0" encoding="UTF-8"?>
3
+ <Template xmlns="http://www.moo.com/xsd/template-1.0">
4
+ <Code>businesscard_full_details_image_portrait</Code>
5
+ <Version>1</Version>
6
+ <Settings>
7
+ <Units type="millimetres"/>
8
+ <Origin orientation="top-left" offsetX="0" offsetY="0"/>
9
+ <PrintArea>
10
+ <Width>59</Width>
11
+ <Height>88</Height>
12
+ </PrintArea>
13
+ <BleedBox>
14
+ <Centre x="29.5" y="44"/>
15
+ <Width>59</Width>
16
+ <Height>88</Height>
17
+ <Angle>0</Angle>
18
+ </BleedBox>
19
+ <CutBox>
20
+ <Centre x="29.5" y="44"/>
21
+ <Width>55</Width>
22
+ <Height>84</Height>
23
+ <Angle>0</Angle>
24
+ </CutBox>
25
+ <SafeAreaBox>
26
+ <!-- assume safe area matches bleed for now @ 2mm -->
27
+ <Centre x="29.5" y="44"/>
28
+ <Width>51</Width>
29
+ <Height>80</Height>
30
+ <Angle>0</Angle>
31
+ </SafeAreaBox>
32
+ <RotationAngle>270</RotationAngle>
33
+ <FontSubstitutionStrategy>allLinesIfAnyNeeded</FontSubstitutionStrategy>
34
+ </Settings>
35
+ <Items>
36
+ <Box>
37
+ <LinkId>background_box</LinkId>
38
+ <ClippingBox>
39
+ <Centre x="29.5" y="44"/>
40
+ <Width>59</Width>
41
+ <Height>88</Height>
42
+ <Angle>0</Angle>
43
+ </ClippingBox>
44
+ <Colour type="CMYK">
45
+ <Cyan>0</Cyan>
46
+ <Magenta>0</Magenta>
47
+ <Yellow>0</Yellow>
48
+ <Black>0</Black>
49
+ </Colour>
50
+ <Filled>true</Filled>
51
+ <Layout>
52
+ <zIndex>0</zIndex>
53
+ </Layout>
54
+ </Box>
55
+ <Image>
56
+ <LinkId>variable_image_back</LinkId>
57
+ <ClippingBox>
58
+ <Centre x="29.5" y="44"/>
59
+ <Width>59</Width>
60
+ <Height>88</Height>
61
+ <Angle>0</Angle>
62
+ </ClippingBox>
63
+ <Constraints>
64
+ <TopEdge outside="true" betweenBleedAndCut="true" betweenCutAndSafe="true" insideSafe="true"/>
65
+ <LeftEdge outside="true" betweenBleedAndCut="true" betweenCutAndSafe="true" insideSafe="true"/>
66
+ <BottomEdge outside="true" betweenBleedAndCut="true" betweenCutAndSafe="true" insideSafe="true"/>
67
+ <RightEdge outside="true" betweenBleedAndCut="true" betweenCutAndSafe="true" insideSafe="true"/>
68
+ </Constraints>
69
+ <Layout>
70
+ <zIndex>2</zIndex>
71
+ </Layout>
72
+ </Image>
73
+ </Items>
74
+ </Template>
75
+
@@ -0,0 +1,73 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Template xmlns="http://www.moo.com/xsd/template-1.0">
3
+ <Code>businesscard_full_image_landscape</Code>
4
+ <Version>1</Version>
5
+ <Settings>
6
+ <Units type="millimetres"/>
7
+ <Origin orientation="top-left" offsetX="0" offsetY="0"/>
8
+ <PrintArea>
9
+ <Width>88</Width>
10
+ <Height>59</Height>
11
+ </PrintArea>
12
+ <BleedBox>
13
+ <Centre x="44" y="29.5"/>
14
+ <Width>88</Width>
15
+ <Height>59</Height>
16
+ <Angle>0</Angle>
17
+ </BleedBox>
18
+ <CutBox>
19
+ <Centre x="44" y="29.5"/>
20
+ <Width>84</Width>
21
+ <Height>55</Height>
22
+ <Angle>0</Angle>
23
+ </CutBox>
24
+ <SafeAreaBox>
25
+ <!-- assume safe area matches bleed for now @ 2mm -->
26
+ <Centre x="44" y="29.5"/>
27
+ <Width>80</Width>
28
+ <Height>51</Height>
29
+ <Angle>0</Angle>
30
+ </SafeAreaBox>
31
+ <RotationAngle>0</RotationAngle>
32
+ <FontSubstitutionStrategy>allLinesIfAnyNeeded</FontSubstitutionStrategy>
33
+ </Settings>
34
+ <Items>
35
+ <Box>
36
+ <LinkId>background_box</LinkId>
37
+ <ClippingBox>
38
+ <Centre x="44" y="29.5"/>
39
+ <Width>88</Width>
40
+ <Height>59</Height>
41
+ <Angle>0</Angle>
42
+ </ClippingBox>
43
+ <Colour type="CMYK">
44
+ <Cyan>0</Cyan>
45
+ <Magenta>0</Magenta>
46
+ <Yellow>0</Yellow>
47
+ <Black>0</Black>
48
+ </Colour>
49
+ <Filled>true</Filled>
50
+ <Layout>
51
+ <zIndex>0</zIndex>
52
+ </Layout>
53
+ </Box>
54
+ <Image>
55
+ <LinkId>variable_image_front</LinkId>
56
+ <ClippingBox>
57
+ <Centre x="44" y="29.5"/>
58
+ <Width>88</Width>
59
+ <Height>59</Height>
60
+ <Angle>0</Angle>
61
+ </ClippingBox>
62
+ <Constraints>
63
+ <TopEdge outside="true" betweenBleedAndCut="true" betweenCutAndSafe="true" insideSafe="true"/>
64
+ <LeftEdge outside="true" betweenBleedAndCut="true" betweenCutAndSafe="true" insideSafe="true"/>
65
+ <BottomEdge outside="true" betweenBleedAndCut="true" betweenCutAndSafe="true" insideSafe="true"/>
66
+ <RightEdge outside="true" betweenBleedAndCut="true" betweenCutAndSafe="true" insideSafe="true"/>
67
+ </Constraints>
68
+ <Layout>
69
+ <zIndex>1</zIndex>
70
+ </Layout>
71
+ </Image>
72
+ </Items>
73
+ </Template>
@@ -0,0 +1,73 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Template xmlns="http://www.moo.com/xsd/template-1.0">
3
+ <Code>businesscard_full_image_portrait</Code>
4
+ <Version>1</Version>
5
+ <Settings>
6
+ <Units type="millimetres"/>
7
+ <Origin orientation="top-left" offsetX="0" offsetY="0"/>
8
+ <PrintArea>
9
+ <Width>59</Width>
10
+ <Height>88</Height>
11
+ </PrintArea>
12
+ <BleedBox>
13
+ <Centre x="29.5" y="44"/>
14
+ <Width>59</Width>
15
+ <Height>88</Height>
16
+ <Angle>0</Angle>
17
+ </BleedBox>
18
+ <CutBox>
19
+ <Centre x="29.5" y="44"/>
20
+ <Width>55</Width>
21
+ <Height>84</Height>
22
+ <Angle>0</Angle>
23
+ </CutBox>
24
+ <SafeAreaBox>
25
+ <!-- assume safe area matches bleed for now @ 2mm -->
26
+ <Centre x="29.5" y="44"/>
27
+ <Width>51</Width>
28
+ <Height>80</Height>
29
+ <Angle>0</Angle>
30
+ </SafeAreaBox>
31
+ <RotationAngle>90</RotationAngle>
32
+ <FontSubstitutionStrategy>allLinesIfAnyNeeded</FontSubstitutionStrategy>
33
+ </Settings>
34
+ <Items>
35
+ <Box>
36
+ <LinkId>background_box</LinkId>
37
+ <ClippingBox>
38
+ <Centre x="29.5" y="44"/>
39
+ <Width>59</Width>
40
+ <Height>88</Height>
41
+ <Angle>0</Angle>
42
+ </ClippingBox>
43
+ <Colour type="CMYK">
44
+ <Cyan>0</Cyan>
45
+ <Magenta>0</Magenta>
46
+ <Yellow>0</Yellow>
47
+ <Black>0</Black>
48
+ </Colour>
49
+ <Filled>true</Filled>
50
+ <Layout>
51
+ <zIndex>0</zIndex>
52
+ </Layout>
53
+ </Box>
54
+ <Image>
55
+ <LinkId>variable_image_front</LinkId>
56
+ <ClippingBox>
57
+ <Centre x="29.5" y="44"/>
58
+ <Width>59</Width>
59
+ <Height>88</Height>
60
+ <Angle>0</Angle>
61
+ </ClippingBox>
62
+ <Constraints>
63
+ <TopEdge outside="true" betweenBleedAndCut="true" betweenCutAndSafe="true" insideSafe="true"/>
64
+ <LeftEdge outside="true" betweenBleedAndCut="true" betweenCutAndSafe="true" insideSafe="true"/>
65
+ <BottomEdge outside="true" betweenBleedAndCut="true" betweenCutAndSafe="true" insideSafe="true"/>
66
+ <RightEdge outside="true" betweenBleedAndCut="true" betweenCutAndSafe="true" insideSafe="true"/>
67
+ </Constraints>
68
+ <Layout>
69
+ <zIndex>1</zIndex>
70
+ </Layout>
71
+ </Image>
72
+ </Items>
73
+ </Template>
@@ -0,0 +1,343 @@
1
+
2
+ <?xml version="1.0" encoding="UTF-8"?>
3
+ <Template xmlns="http://www.moo.com/xsd/template-1.0">
4
+ <Code>businesscard_full_text_landscape</Code>
5
+ <Version>1</Version>
6
+ <Settings>
7
+ <Units type="millimetres"/>
8
+ <Origin orientation="top-left" offsetX="0" offsetY="0"/>
9
+ <PrintArea>
10
+ <Width>88</Width>
11
+ <Height>59</Height>
12
+ </PrintArea>
13
+ <BleedBox>
14
+ <Centre x="44" y="29.5"/>
15
+ <Width>88</Width>
16
+ <Height>59</Height>
17
+ <Angle>0</Angle>
18
+ </BleedBox>
19
+ <CutBox>
20
+ <Centre x="44" y="29.5"/>
21
+ <Width>84</Width>
22
+ <Height>55</Height>
23
+ <Angle>0</Angle>
24
+ </CutBox>
25
+ <SafeAreaBox>
26
+ <!-- assume safe area matches bleed for now @ 2mm -->
27
+ <Centre x="44" y="29.5"/>
28
+ <Width>80</Width>
29
+ <Height>51</Height>
30
+ <Angle>0</Angle>
31
+ </SafeAreaBox>
32
+ <RotationAngle>0</RotationAngle>
33
+ <FontSubstitutionStrategy>allLinesIfAnyNeeded</FontSubstitutionStrategy>
34
+ </Settings>
35
+ <Items>
36
+ <Box>
37
+ <LinkId>background_box</LinkId>
38
+ <ClippingBox>
39
+ <Centre x="44" y="29.5"/>
40
+ <Width>88</Width>
41
+ <Height>59</Height>
42
+ <Angle>0</Angle>
43
+ </ClippingBox>
44
+ <Colour type="CMYK">
45
+ <Cyan>0</Cyan>
46
+ <Magenta>0</Magenta>
47
+ <Yellow>0</Yellow>
48
+ <Black>0</Black>
49
+ </Colour>
50
+ <Filled>true</Filled>
51
+ <Layout>
52
+ <zIndex>0</zIndex>
53
+ </Layout>
54
+ </Box>
55
+
56
+ <Text>
57
+ <LinkId>back_line_1</LinkId>
58
+ <Font>
59
+ <Family>Helvetica</Family>
60
+ <Bold>false</Bold>
61
+ <Italic>false</Italic>
62
+ </Font>
63
+ <ClippingBox>
64
+ <Centre x="44" y="12.75"/>
65
+ <Width>74</Width>
66
+ <Height>5</Height>
67
+ <Angle>0</Angle>
68
+ </ClippingBox>
69
+ <PointSize>3.527777777</PointSize>
70
+ <Alignment>left</Alignment>
71
+ <Constraints fontFixed="false" colourFixed="false" pointSizeFixed="true" alignmentFixed="false"/>
72
+ <Layout>
73
+ <zIndex>2</zIndex>
74
+ </Layout>
75
+ <Colour type="RGB">
76
+ <Red>0</Red>
77
+ <Green>0</Green>
78
+ <Blue>0</Blue>
79
+ </Colour>
80
+ <Text/>
81
+ </Text>
82
+ <Text>
83
+ <LinkId>back_line_2</LinkId>
84
+ <Font>
85
+ <Family>Helvetica</Family>
86
+ <Bold>false</Bold>
87
+ <Italic>false</Italic>
88
+ </Font>
89
+ <ClippingBox>
90
+ <Centre x="44" y="19.125"/>
91
+ <Width>74</Width>
92
+ <Height>3.5</Height>
93
+ <Angle>0</Angle>
94
+ </ClippingBox>
95
+ <PointSize>2.82222222</PointSize>
96
+ <Alignment>left</Alignment>
97
+ <Constraints fontFixed="false" colourFixed="false" pointSizeFixed="true" alignmentFixed="false"/>
98
+ <Layout>
99
+ <zIndex>3</zIndex>
100
+ </Layout>
101
+ <Colour type="RGB">
102
+ <Red>0</Red>
103
+ <Green>0</Green>
104
+ <Blue>0</Blue>
105
+ </Colour>
106
+ <Text/>
107
+ </Text>
108
+ <Text>
109
+ <LinkId>back_line_3</LinkId>
110
+ <Font>
111
+ <Family>Helvetica</Family>
112
+ <Bold>false</Bold>
113
+ <Italic>false</Italic>
114
+ </Font>
115
+ <ClippingBox>
116
+ <Centre x="44" y="22.625"/>
117
+ <Width>74</Width>
118
+ <Height>3.5</Height>
119
+ <Angle>0</Angle>
120
+ </ClippingBox>
121
+ <PointSize>2.82222222</PointSize>
122
+ <Alignment>left</Alignment>
123
+ <Constraints fontFixed="false" colourFixed="false" pointSizeFixed="true" alignmentFixed="false"/>
124
+ <Layout>
125
+ <zIndex>4</zIndex>
126
+ </Layout>
127
+ <Colour type="RGB">
128
+ <Red>0</Red>
129
+ <Green>0</Green>
130
+ <Blue>0</Blue>
131
+ </Colour>
132
+ <Text/>
133
+ </Text>
134
+ <Text>
135
+ <LinkId>back_line_4</LinkId>
136
+ <Font>
137
+ <Family>Helvetica</Family>
138
+ <Bold>false</Bold>
139
+ <Italic>false</Italic>
140
+ </Font>
141
+ <ClippingBox>
142
+ <Centre x="44" y="26.125"/>
143
+ <Width>74</Width>
144
+ <Height>3.5</Height>
145
+ <Angle>0</Angle>
146
+ </ClippingBox>
147
+ <PointSize>2.82222222</PointSize>
148
+ <Alignment>left</Alignment>
149
+ <Constraints fontFixed="false" colourFixed="false" pointSizeFixed="true" alignmentFixed="false"/>
150
+ <Layout>
151
+ <zIndex>5</zIndex>
152
+ </Layout>
153
+ <Colour type="RGB">
154
+ <Red>0</Red>
155
+ <Green>0</Green>
156
+ <Blue>0</Blue>
157
+ </Colour>
158
+ <Text/>
159
+ </Text>
160
+ <Text>
161
+ <LinkId>back_line_5</LinkId>
162
+ <Font>
163
+ <Family>Helvetica</Family>
164
+ <Bold>false</Bold>
165
+ <Italic>false</Italic>
166
+ </Font>
167
+ <ClippingBox>
168
+ <Centre x="44" y="29.625"/>
169
+ <Width>74</Width>
170
+ <Height>3.5</Height>
171
+ <Angle>0</Angle>
172
+ </ClippingBox>
173
+ <PointSize>2.82222222</PointSize>
174
+ <Alignment>left</Alignment>
175
+ <Constraints fontFixed="false" colourFixed="false" pointSizeFixed="true" alignmentFixed="false"/>
176
+ <Layout>
177
+ <zIndex>6</zIndex>
178
+ </Layout>
179
+ <Colour type="RGB">
180
+ <Red>0</Red>
181
+ <Green>0</Green>
182
+ <Blue>0</Blue>
183
+ </Colour>
184
+ <Text/>
185
+ </Text>
186
+ <Text>
187
+ <LinkId>back_line_6</LinkId>
188
+ <Font>
189
+ <Family>Helvetica</Family>
190
+ <Bold>false</Bold>
191
+ <Italic>false</Italic>
192
+ </Font>
193
+ <ClippingBox>
194
+ <Centre x="44" y="33.125"/>
195
+ <Width>74</Width>
196
+ <Height>3.5</Height>
197
+ <Angle>0</Angle>
198
+ </ClippingBox>
199
+ <PointSize>2.82222222</PointSize>
200
+ <Alignment>left</Alignment>
201
+ <Constraints fontFixed="false" colourFixed="false" pointSizeFixed="true" alignmentFixed="false"/>
202
+ <Layout>
203
+ <zIndex>7</zIndex>
204
+ </Layout>
205
+ <Colour type="RGB">
206
+ <Red>0</Red>
207
+ <Green>0</Green>
208
+ <Blue>0</Blue>
209
+ </Colour>
210
+ <Text/>
211
+ </Text>
212
+ <Text>
213
+ <LinkId>back_line_7</LinkId>
214
+ <Font>
215
+ <Family>Helvetica</Family>
216
+ <Bold>false</Bold>
217
+ <Italic>false</Italic>
218
+ </Font>
219
+ <ClippingBox>
220
+ <Centre x="44" y="36.625"/>
221
+ <Width>74</Width>
222
+ <Height>3.5</Height>
223
+ <Angle>0</Angle>
224
+ </ClippingBox>
225
+ <PointSize>2.82222222</PointSize>
226
+ <Alignment>left</Alignment>
227
+ <Constraints fontFixed="false" colourFixed="false" pointSizeFixed="true" alignmentFixed="false"/>
228
+ <Layout>
229
+ <zIndex>8</zIndex>
230
+ </Layout>
231
+ <Colour type="RGB">
232
+ <Red>0</Red>
233
+ <Green>0</Green>
234
+ <Blue>0</Blue>
235
+ </Colour>
236
+ <Text/>
237
+ </Text>
238
+ <Text>
239
+ <LinkId>back_line_8</LinkId>
240
+ <Font>
241
+ <Family>Helvetica</Family>
242
+ <Bold>false</Bold>
243
+ <Italic>false</Italic>
244
+ </Font>
245
+ <ClippingBox>
246
+ <Centre x="44" y="40.125"/>
247
+ <Width>74</Width>
248
+ <Height>3.5</Height>
249
+ <Angle>0</Angle>
250
+ </ClippingBox>
251
+ <PointSize>2.82222222</PointSize>
252
+ <Alignment>left</Alignment>
253
+ <Constraints fontFixed="false" colourFixed="false" pointSizeFixed="true" alignmentFixed="false"/>
254
+ <Layout>
255
+ <zIndex>9</zIndex>
256
+ </Layout>
257
+ <Colour type="RGB">
258
+ <Red>0</Red>
259
+ <Green>0</Green>
260
+ <Blue>0</Blue>
261
+ </Colour>
262
+ <Text/>
263
+ </Text>
264
+ <Text>
265
+ <LinkId>back_line_9</LinkId>
266
+ <Font>
267
+ <Family>Helvetica</Family>
268
+ <Bold>false</Bold>
269
+ <Italic>false</Italic>
270
+ </Font>
271
+ <ClippingBox>
272
+ <Centre x="44" y="43.625"/>
273
+ <Width>74</Width>
274
+ <Height>3.5</Height>
275
+ <Angle>0</Angle>
276
+ </ClippingBox>
277
+ <PointSize>2.82222222</PointSize>
278
+ <Alignment>left</Alignment>
279
+ <Constraints fontFixed="false" colourFixed="false" pointSizeFixed="true" alignmentFixed="false"/>
280
+ <Layout>
281
+ <zIndex>10</zIndex>
282
+ </Layout>
283
+ <Colour type="RGB">
284
+ <Red>0</Red>
285
+ <Green>0</Green>
286
+ <Blue>0</Blue>
287
+ </Colour>
288
+ <Text/>
289
+ </Text>
290
+ <Text>
291
+ <LinkId>back_line_10</LinkId>
292
+ <Font>
293
+ <Family>Helvetica</Family>
294
+ <Bold>false</Bold>
295
+ <Italic>false</Italic>
296
+ </Font>
297
+ <ClippingBox>
298
+ <Centre x="44" y="47.125"/>
299
+ <Width>74</Width>
300
+ <Height>3.5</Height>
301
+ <Angle>0</Angle>
302
+ </ClippingBox>
303
+ <PointSize>2.82222222</PointSize>
304
+ <Alignment>left</Alignment>
305
+ <Constraints fontFixed="false" colourFixed="false" pointSizeFixed="true" alignmentFixed="false"/>
306
+ <Layout>
307
+ <zIndex>11</zIndex>
308
+ </Layout>
309
+ <Colour type="RGB">
310
+ <Red>0</Red>
311
+ <Green>0</Green>
312
+ <Blue>0</Blue>
313
+ </Colour>
314
+ <Text/>
315
+ </Text>
316
+ <Text>
317
+ <LinkId>back_line_11</LinkId>
318
+ <Font>
319
+ <Family>Helvetica</Family>
320
+ <Bold>false</Bold>
321
+ <Italic>false</Italic>
322
+ </Font>
323
+ <ClippingBox>
324
+ <Centre x="44" y="50.625"/>
325
+ <Width>74</Width>
326
+ <Height>3.5</Height>
327
+ <Angle>0</Angle>
328
+ </ClippingBox>
329
+ <PointSize>2.82222222</PointSize>
330
+ <Alignment>left</Alignment>
331
+ <Constraints fontFixed="false" colourFixed="false" pointSizeFixed="true" alignmentFixed="false"/>
332
+ <Layout>
333
+ <zIndex>12</zIndex>
334
+ </Layout>
335
+ <Colour type="RGB">
336
+ <Red>0</Red>
337
+ <Green>0</Green>
338
+ <Blue>0</Blue>
339
+ </Colour>
340
+ <Text/>
341
+ </Text>
342
+ </Items>
343
+ </Template>