jqgrid_utils 1.34.1 → 1.35.1

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.
package/README.md CHANGED
@@ -1,4 +1,5 @@
1
- # Jqgrid_utils
1
+ # ![email_gateway](pages/public/img/logo.png) Jqgrid_utils
2
+
2
3
  Convenient Functions for free jqGrid
3
4
 
4
5
  # How to install:
@@ -27,8 +28,11 @@ A module for Jqgrid_utils
27
28
 
28
29
 
29
30
  * [Jqgrid_utils](#module_Jqgrid_utils)
31
+ * [module.exports#_grid_substract_on()](#exp_module_Jqgrid_utils--module.exports+_grid_substract_on) ⏏
32
+ * [module.exports#grid_substract_on(grid, minuend, subtrahend, difference, no_negative)](#exp_module_Jqgrid_utils--module.exports+grid_substract_on) ⏏
30
33
  * [module.exports#_grid_ratio_on()](#exp_module_Jqgrid_utils--module.exports+_grid_ratio_on) ⏏
31
34
  * [module.exports#grid_ratio_on(grid, fraction_col, denominator_col, ratio_col)](#exp_module_Jqgrid_utils--module.exports+grid_ratio_on) ⏏
35
+ * [module.exports#is_html(str)](#exp_module_Jqgrid_utils--module.exports+is_html) ⇒ <code>boolean</code> ⏏
32
36
  * [module.exports#_grid_sum_on()](#exp_module_Jqgrid_utils--module.exports+_grid_sum_on) ⏏
33
37
  * [module.exports#grid_sum_on(grid, fields)](#exp_module_Jqgrid_utils--module.exports+grid_sum_on) ⏏
34
38
  * [module.exports#_grid_avg_on()](#exp_module_Jqgrid_utils--module.exports+_grid_avg_on) ⏏
@@ -68,8 +72,11 @@ A module for Jqgrid_utils
68
72
  * [module.exports#s_hide_del_icon()](#exp_module_Jqgrid_utils--module.exports+s_hide_del_icon) ⏏
69
73
  * [module.exports#hide_del_icon()](#exp_module_Jqgrid_utils--module.exports+hide_del_icon) ⏏
70
74
  * [module.exports#add_link_details_csv(col_model, url, edit_field, attr, keys, format, seperator)](#exp_module_Jqgrid_utils--module.exports+add_link_details_csv) ⏏
71
- * [module.exports#compare(obj, column1, column2, style)](#exp_module_Jqgrid_utils--module.exports+compare) ⏏
75
+ * [module.exports#compare(obj, column1, column2, css_class)](#exp_module_Jqgrid_utils--module.exports+compare) ⏏
76
+ * [module.exports#compare_smaller(obj, column1, column2, css_class)](#exp_module_Jqgrid_utils--module.exports+compare_smaller) ⏏
77
+ * [module.exports#compare_bigger(obj, column1, column2, css_class)](#exp_module_Jqgrid_utils--module.exports+compare_bigger) ⏏
72
78
  * [module.exports#set_styles(obj, style_column)](#exp_module_Jqgrid_utils--module.exports+set_styles) ⏏
79
+ * [module.exports#set_classes(grid_id)](#exp_module_Jqgrid_utils--module.exports+set_classes) ⏏
73
80
  * [module.exports#add_link_details(col_model, url, edit_field, attr, keys)](#exp_module_Jqgrid_utils--module.exports+add_link_details) ⏏
74
81
  * [module.exports#add_link_details_separator(col_model, url, edit_field, attr, keys)](#exp_module_Jqgrid_utils--module.exports+add_link_details_separator) ⏏
75
82
  * [module.exports#add_link_separator(col_model, url, edit_field, fields)](#exp_module_Jqgrid_utils--module.exports+add_link_separator) ⏏
@@ -79,6 +86,39 @@ A module for Jqgrid_utils
79
86
  * [module.exports#set_filter(grid, data, fx, append_to)](#exp_module_Jqgrid_utils--module.exports+set_filter) ⏏
80
87
  * [module.exports#_filter()](#exp_module_Jqgrid_utils--module.exports+_filter) ⏏
81
88
 
89
+ <a name="exp_module_Jqgrid_utils--module.exports+_grid_substract_on"></a>
90
+
91
+ ### module.exports#\_grid\_substract\_on() ⏏
92
+ Syncron Alias grid_sum_on
93
+
94
+ **Kind**: Exported function
95
+ <a name="exp_module_Jqgrid_utils--module.exports+grid_substract_on"></a>
96
+
97
+ ### module.exports#grid\_substract\_on(grid, minuend, subtrahend, difference, no_negative) ⏏
98
+ Sum the columns values together
99
+
100
+ **Kind**: Exported function
101
+
102
+ | Param | Type | Default | Description |
103
+ | --- | --- | --- | --- |
104
+ | grid | <code>object</code> | | Grid Object (required) |
105
+ | minuend | <code>array</code> | | string array list of field_names used as minuend(number from which the other number is subtracted) |
106
+ | subtrahend | <code>array</code> | | string array list of field_names used as subtrahend(number which is to be subtracted from the minuend) |
107
+ | difference | <code>string</code> | | string field name for the difference(number which is to be subtracted from the minuend) |
108
+ | no_negative | <code>bolen</code> | <code>false</code> | true or 1 to not show negative numbers |
109
+
110
+ **Example**
111
+ ```js
112
+ var jqu = new Jqgrid_utils({page:page});
113
+ gridComplete: function () {
114
+ jqu._jqu._grid_sum_on(this, [
115
+ "qty_icollect",
116
+ "qty_ordered",
117
+ "need_for_qty_ordered",
118
+ "wait_icollect",
119
+ ]);
120
+ },
121
+ ```
82
122
  <a name="exp_module_Jqgrid_utils--module.exports+_grid_ratio_on"></a>
83
123
 
84
124
  ### module.exports#\_grid\_ratio\_on() ⏏
@@ -107,6 +147,18 @@ var jqu = new Jqgrid_utils({page:page});
107
147
  jqu._grid_ratio_on(this, 'actual_days', 'plan_days', 'qc_eta_ratio');
108
148
  },
109
149
  ```
150
+ <a name="exp_module_Jqgrid_utils--module.exports+is_html"></a>
151
+
152
+ ### module.exports#is\_html(str) ⇒ <code>boolean</code> ⏏
153
+ Check if the string is html
154
+
155
+ **Kind**: Exported function
156
+ **Returns**: <code>boolean</code> - - true or false
157
+
158
+ | Param | Type | Description |
159
+ | --- | --- | --- |
160
+ | str | <code>string</code> | String of any kind |
161
+
110
162
  <a name="exp_module_Jqgrid_utils--module.exports+_grid_sum_on"></a>
111
163
 
112
164
  ### module.exports#\_grid\_sum\_on() ⏏
@@ -847,7 +899,7 @@ col_model = await jqu.add_link_details_csv(col_model, host + '/html/report.html'
847
899
  ```
848
900
  <a name="exp_module_Jqgrid_utils--module.exports+compare"></a>
849
901
 
850
- ### module.exports#compare(obj, column1, column2, style) ⏏
902
+ ### module.exports#compare(obj, column1, column2, css_class) ⏏
851
903
  Compare 2 columns and give them a style class when they have different content
852
904
  http://www.trirand.com/jqgridwiki/doku.php?id=wiki:methods
853
905
 
@@ -858,13 +910,57 @@ http://www.trirand.com/jqgridwiki/doku.php?id=wiki:methods
858
910
  | obj | <code>object</code> | grid object |
859
911
  | column1 | <code>string</code> | first column |
860
912
  | column2 | <code>string</code> | second column |
861
- | style | <code>string</code> | css class name |
913
+ | css_class | <code>string</code> | css class name |
862
914
 
863
915
  **Example**
864
916
  ```js
865
917
  loadComplete: async function()
866
918
  {
867
- await jqu.compare(this,'value','value_report','greenlight');
919
+ await jqu.compare(this,'first_column','second_column','redlight');
920
+ }
921
+ ```
922
+ <a name="exp_module_Jqgrid_utils--module.exports+compare_smaller"></a>
923
+
924
+ ### module.exports#compare\_smaller(obj, column1, column2, css_class) ⏏
925
+ Compare 2 columns for smaller and give them a style class
926
+ http://www.trirand.com/jqgridwiki/doku.php?id=wiki:methods
927
+
928
+ **Kind**: Exported function
929
+
930
+ | Param | Type | Description |
931
+ | --- | --- | --- |
932
+ | obj | <code>object</code> | grid object |
933
+ | column1 | <code>string</code> | first column |
934
+ | column2 | <code>string</code> | second column |
935
+ | css_class | <code>string</code> | css class name |
936
+
937
+ **Example**
938
+ ```js
939
+ loadComplete: async function()
940
+ {
941
+ await jqu.compare(this,'first_column','second_column','redlight');
942
+ }
943
+ ```
944
+ <a name="exp_module_Jqgrid_utils--module.exports+compare_bigger"></a>
945
+
946
+ ### module.exports#compare\_bigger(obj, column1, column2, css_class) ⏏
947
+ Compare 2 columns for bigger and give them a style class
948
+ http://www.trirand.com/jqgridwiki/doku.php?id=wiki:methods
949
+
950
+ **Kind**: Exported function
951
+
952
+ | Param | Type | Description |
953
+ | --- | --- | --- |
954
+ | obj | <code>object</code> | grid object |
955
+ | column1 | <code>string</code> | first column |
956
+ | column2 | <code>string</code> | second column |
957
+ | css_class | <code>string</code> | css class name |
958
+
959
+ **Example**
960
+ ```js
961
+ loadComplete: async function()
962
+ {
963
+ await jqu.compare(this,'first_column','second_column','redlight');
868
964
  }
869
965
  ```
870
966
  <a name="exp_module_Jqgrid_utils--module.exports+set_styles"></a>
@@ -886,6 +982,25 @@ var jqu = new Jqgrid_utils();
886
982
  await jqu.set_styles(this);
887
983
  },
888
984
  ```
985
+ <a name="exp_module_Jqgrid_utils--module.exports+set_classes"></a>
986
+
987
+ ### module.exports#set\_classes(grid_id) ⏏
988
+ Set a class to a row, what must be defined in a dedicated column called row.class
989
+ Once the grid is loaded, the functions adds extra class to the row element
990
+
991
+ **Kind**: Exported function
992
+
993
+ | Param | Type | Description |
994
+ | --- | --- | --- |
995
+ | grid_id | <code>object</code> | grid id like #grid |
996
+
997
+ **Example**
998
+ ```js
999
+ var jqu = new Jqgrid_utils();
1000
+ loadComplete: async function() {
1001
+ await jqu.set_classes("#grid");
1002
+ },
1003
+ ```
889
1004
  <a name="exp_module_Jqgrid_utils--module.exports+add_link_details"></a>
890
1005
 
891
1006
  ### module.exports#add\_link\_details(col_model, url, edit_field, attr, keys) ⏏
package/_README.md CHANGED
@@ -1,4 +1,5 @@
1
- # Jqgrid_utils
1
+ # ![email_gateway](pages/public/img/logo.png) Jqgrid_utils
2
+
2
3
  Convenient Functions for free jqGrid
3
4
 
4
5
  # How to install:
@@ -168,6 +168,25 @@ var jqu = new Jqgrid_utils({page:page});
168
168
  return footer;
169
169
  }
170
170
 
171
+ /**
172
+ * Check if the string is html
173
+ @alias module:Jqgrid_utils
174
+ @param {string} - String of any kind
175
+ @returns {boolean} - true or false
176
+ */
177
+ is_html(str) {
178
+ let r = false;
179
+ try {
180
+ const doc = new DOMParser().parseFromString(str, "text/html");
181
+ const a = Array.from(doc.body.childNodes).some((n) => n.nodeType === 1);
182
+ console.log(a);
183
+ if (a) {
184
+ r = true;
185
+ }
186
+ } catch (err) {}
187
+ return r;
188
+ }
189
+
171
190
  /**
172
191
  * Syncron Alias grid_sum_on
173
192
  @alias module:Jqgrid_utils
@@ -201,14 +220,31 @@ gridComplete: function () {
201
220
  for (let i in fields) {
202
221
  let sum = 0;
203
222
  for (let r in rows) {
223
+ let _val = 0;
204
224
  if (rows[r].hasOwnProperty(fields[i])) {
205
225
  let val = rows[r][fields[i]];
206
- if (typeof val === "string") {
207
- if (is_digit(val)) {
208
- val = parseFloat(val);
226
+ if (val) {
227
+ if (typeof val === "string") {
228
+ if (this.is_html(val)) {
229
+ const doc = new DOMParser().parseFromString(val, "text/html");
230
+ const _a = doc.querySelectorAll("a");
231
+ const a = Array.from(_a).map((a) => a.text);
232
+ if (a.length) {
233
+ const n = a[0].replace(",", "");
234
+ if (is_digit(n)) {
235
+ _val = parseFloat(n);
236
+ }
237
+ }
238
+ } else {
239
+ if (is_digit(val)) {
240
+ _val = parseFloat(val);
241
+ }
242
+ }
243
+ } else if (typeof val === "number") {
244
+ _val = val;
209
245
  }
246
+ sum += _val;
210
247
  }
211
- sum += val;
212
248
  }
213
249
  }
214
250
  //let number = new Intl.NumberFormat('en-En', { style: 'currency', currency: 'USD' }).format(sum);
@@ -1568,6 +1604,27 @@ var jqu = new Jqgrid_utils();
1568
1604
  }
1569
1605
  }
1570
1606
 
1607
+ /**
1608
+ * Set a class to a row, what must be defined in a dedicated column called row.class
1609
+ * Once the grid is loaded, the functions adds extra class to the row element
1610
+ @alias module:Jqgrid_utils
1611
+ @param {object} - grid id like #grid
1612
+ @example
1613
+ var jqu = new Jqgrid_utils();
1614
+ loadComplete: async function() {
1615
+ await jqu.set_classes("#grid");
1616
+ },
1617
+ */
1618
+ async set_classes(grid_id) {
1619
+ const rows = jQuery(grid_id).getDataIDs();
1620
+ for (var i = 0; i < rows.length; i = i + 1) {
1621
+ const row = jQuery(grid_id).getRowData(rows[i]);
1622
+ var e = jQuery("#" + rows[i], jQuery(grid_id));
1623
+ e.removeClass("ui-widget-content");
1624
+ e.addClass(row.class);
1625
+ }
1626
+ }
1627
+
1571
1628
  /**
1572
1629
  * Convert a cell into a link/url with data from another cell
1573
1630
  @alias module:Jqgrid_utils
package/jqgrid_utils.js CHANGED
@@ -167,6 +167,25 @@ var jqu = new Jqgrid_utils({page:page});
167
167
  return footer;
168
168
  }
169
169
 
170
+ /**
171
+ * Check if the string is html
172
+ @alias module:Jqgrid_utils
173
+ @param {string} - String of any kind
174
+ @returns {boolean} - true or false
175
+ */
176
+ is_html(str) {
177
+ let r = false;
178
+ try {
179
+ const doc = new DOMParser().parseFromString(str, "text/html");
180
+ const a = Array.from(doc.body.childNodes).some((n) => n.nodeType === 1);
181
+ console.log(a);
182
+ if (a) {
183
+ r = true;
184
+ }
185
+ } catch (err) {}
186
+ return r;
187
+ }
188
+
170
189
  /**
171
190
  * Syncron Alias grid_sum_on
172
191
  @alias module:Jqgrid_utils
@@ -200,14 +219,31 @@ gridComplete: function () {
200
219
  for (let i in fields) {
201
220
  let sum = 0;
202
221
  for (let r in rows) {
222
+ let _val = 0;
203
223
  if (rows[r].hasOwnProperty(fields[i])) {
204
224
  let val = rows[r][fields[i]];
205
- if (typeof val === "string") {
206
- if (is_digit(val)) {
207
- val = parseFloat(val);
225
+ if (val) {
226
+ if (typeof val === "string") {
227
+ if (this.is_html(val)) {
228
+ const doc = new DOMParser().parseFromString(val, "text/html");
229
+ const _a = doc.querySelectorAll("a");
230
+ const a = Array.from(_a).map((a) => a.text);
231
+ if (a.length) {
232
+ const n = a[0].replace(",", "");
233
+ if (is_digit(n)) {
234
+ _val = parseFloat(n);
235
+ }
236
+ }
237
+ } else {
238
+ if (is_digit(val)) {
239
+ _val = parseFloat(val);
240
+ }
241
+ }
242
+ } else if (typeof val === "number") {
243
+ _val = val;
208
244
  }
245
+ sum += _val;
209
246
  }
210
- sum += val;
211
247
  }
212
248
  }
213
249
  //let number = new Intl.NumberFormat('en-En', { style: 'currency', currency: 'USD' }).format(sum);
@@ -1567,6 +1603,27 @@ var jqu = new Jqgrid_utils();
1567
1603
  }
1568
1604
  }
1569
1605
 
1606
+ /**
1607
+ * Set a class to a row, what must be defined in a dedicated column called row.class
1608
+ * Once the grid is loaded, the functions adds extra class to the row element
1609
+ @alias module:Jqgrid_utils
1610
+ @param {object} - grid id like #grid
1611
+ @example
1612
+ var jqu = new Jqgrid_utils();
1613
+ loadComplete: async function() {
1614
+ await jqu.set_classes("#grid");
1615
+ },
1616
+ */
1617
+ async set_classes(grid_id) {
1618
+ const rows = jQuery(grid_id).getDataIDs();
1619
+ for (var i = 0; i < rows.length; i = i + 1) {
1620
+ const row = jQuery(grid_id).getRowData(rows[i]);
1621
+ var e = jQuery("#" + rows[i], jQuery(grid_id));
1622
+ e.removeClass("ui-widget-content");
1623
+ e.addClass(row.class);
1624
+ }
1625
+ }
1626
+
1570
1627
  /**
1571
1628
  * Convert a cell into a link/url with data from another cell
1572
1629
  @alias module:Jqgrid_utils
package/package.json CHANGED
@@ -30,8 +30,7 @@
30
30
  "test": "echo \"Error: no test specified\" && exit 1"
31
31
  },
32
32
 
33
- "version": "1.34.1"
34
-
33
+ "version": "1.35.1"
35
34
 
36
35
 
37
36
  }
Binary file
@@ -0,0 +1,554 @@
1
+ <?xml version="1.0"?>
2
+ <svg
3
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ xmlns:cc="http://creativecommons.org/ns#"
6
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
7
+ xmlns:svg="http://www.w3.org/2000/svg"
8
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
9
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
10
+ xmlns:ns1="http://sozi.baierouge.fr"
11
+ xmlns:xlink="http://www.w3.org/1999/xlink"
12
+ id="svg2"
13
+ viewBox="0 0 788.61 950.38"
14
+ version="1.1"
15
+ >
16
+ <g
17
+ id="layer1"
18
+ transform="translate(1107.1 -294.84)"
19
+ >
20
+ <path
21
+ id="path4015"
22
+ style="color:#000000"
23
+ d="m-556.59 623.05-84.348 254.31s-3.1819 23.907-14.189 32.517c-6.0193 4.7085-10.222 3.7977-15.113 3.1522-4.6993-0.62018-10.131-0.82063-13.752-3.9596-3.5864-3.1089-14.225-2.7423-13.009-10.244 6.0609-37.376 44.447-43.437 44.447-43.437l52.528-212.13 50.508-30.305"
24
+ />
25
+ <path
26
+ id="path4041"
27
+ d="m-871.42 1052.1 87.277 17.665 11.137 81.584-21.906-73.179-69.66-1.1307"
28
+ style="color:#000000"
29
+ fill="#28170b"
30
+ />
31
+ <path
32
+ id="path3968"
33
+ d="m-909.14 1017.5s35.86 113.64 95.964 98.995c60.104-14.647 88.641-153.8 109.85-195.72 21.213-41.921 29.294-56.316 29.294-56.316l-10.607 2.0203s-63.387 272.24-121.98 241.43c-58.589-30.81-85.358-63.135-85.358-63.135"
34
+ style="color:#000000"
35
+ fill="#500"
36
+ />
37
+ <path
38
+ id="path4039"
39
+ d="m-867.16 1050.8 90.643 8.7865 32.369 84.456-41.321-73.232-68.245 5.0777"
40
+ style="color:#000000"
41
+ fill="#28170b"
42
+ />
43
+ <path
44
+ id="path4037"
45
+ d="m-986.82 1048.9-79.142 51.673 18.772 88.477-5.155-83.928 67.888-27.857"
46
+ style="color:#000000"
47
+ fill="#28170b"
48
+ />
49
+ <path
50
+ id="path4035"
51
+ d="m-835.17 1045.3 79.142 51.673-18.772 88.477 5.155-83.928-67.888-27.857"
52
+ style="color:#000000"
53
+ fill="#28170b"
54
+ />
55
+ <path
56
+ id="path3947"
57
+ d="m-807.14 1050.9 28.571-68.571 45.714 128.57-20 115.71 7.1428-114.29-31.429-57.857-51.429 31.429z"
58
+ style="color:#000000"
59
+ fill="#502d16"
60
+ />
61
+ <path
62
+ id="path3970"
63
+ d="m-971.66 1087.2-37.651-56.867-70.571 91.673 18.772 88.477-5.155-83.928 59.316-67.857 54.49 50.429"
64
+ style="color:#000000"
65
+ fill="#28170b"
66
+ />
67
+ <path
68
+ id="path3963"
69
+ d="m-1009.3 1085.9-49.286-47.143-48.572 105 37.857 82.143-23.571-80.714 42.857-79.286 64.286 37.143"
70
+ style="color:#000000"
71
+ fill="#28170b"
72
+ />
73
+ <path
74
+ id="path3116"
75
+ d="m-487.14 930.93 11.429 167.14s11.429 8.5714 14.286 2.8571c2.8571-5.7143 28.571-190 28.571-190z"
76
+ style="color:#000000"
77
+ fill="#ccc"
78
+ />
79
+ <path
80
+ id="path3106"
81
+ d="m-590 946.65 11.429 167.14s11.429 8.5714 14.286 2.8571c2.8571-5.7143 28.571-190 28.571-190z"
82
+ style="color:#000000"
83
+ fill="#ccc"
84
+ />
85
+ <path
86
+ id="path3104"
87
+ style="color:#000000"
88
+ d="m-557.14 606.65-87.143 348.57s218.57-32.857 261.43-20c42.857 12.857-80-331.43-80-331.43z"
89
+ />
90
+ <path
91
+ id="path3094"
92
+ d="m-694.29 619.51a89.286 44.286 0 1 1 -178.57 0 89.286 44.286 0 1 1 178.57 0z"
93
+ style="color:#000000"
94
+ fill="#784421"
95
+ transform="matrix(1.268 0 0 1.268 73.926 271.39)"
96
+ />
97
+ <path
98
+ id="path3886"
99
+ style="color:#000000"
100
+ d="m-587.5 981.65 43.214 0.71428-2.1428 15-39.643-1.0714z"
101
+ />
102
+ <path
103
+ id="path3888"
104
+ style="color:#000000"
105
+ d="m-584.64 1022.7 34.643 1.7857-1.7857 14.286-32.143-2.5z"
106
+ />
107
+ <path
108
+ id="path3890"
109
+ style="color:#000000"
110
+ d="m-580.71 1065.6h23.929l-1.7857 15.357-22.143-2.1428z"
111
+ />
112
+ <path
113
+ id="path3892"
114
+ style="color:#000000"
115
+ d="m-589.29 954.86 48.929-5 1.0714-10-50.357 5z"
116
+ />
117
+ <path
118
+ id="path3894"
119
+ style="color:#000000"
120
+ d="m-565.71 1117-16.071-2.8571s-12.5-1.0714-19.643 12.5c-7.1429 13.571-16.071 16.786-19.286 16.786-3.2143 0 28.929 23.571 43.929 8.2143s25.714-38.214 18.214-37.143c-7.5 1.0715-9.6429 2.1429-9.6429 2.1429v1.4286"
121
+ />
122
+ <path
123
+ id="path3896"
124
+ style="color:#000000"
125
+ d="m-476.07 1091.3s-10.357 1.0714-11.786 4.6428c-1.4286 3.5714-5.3572 17.857 3.9286 20 9.2857 2.1429 58.929 12.143 60.357 14.286 1.4286 2.1429 10.327-26.544-1.4286-21.786-15 6.0714-32.857-17.143-32.857-17.143z"
126
+ />
127
+ <path
128
+ id="path3898"
129
+ style="color:#000000"
130
+ d="m-476.43 1074.1 20.357-3.5714 0.71429-10-22.857 2.5z"
131
+ />
132
+ <path
133
+ id="path3900"
134
+ style="color:#000000"
135
+ d="m-480.36 1022.4 31.786-3.2143-3.2143 18.929-26.429-1.0715z"
136
+ />
137
+ <path
138
+ id="path3902"
139
+ style="color:#000000"
140
+ d="m-484.64 980.93h41.786l-2.5 14.286-37.15-1.07z"
141
+ />
142
+ <path
143
+ id="path3904"
144
+ style="color:#000000"
145
+ d="m-486.91 946.63 50.357-2.3618v-12.281l-50 3.7788z"
146
+ />
147
+ <path
148
+ id="path3108"
149
+ d="m-871.43 1035.9a26.429 26.429 0 1 1 -52.857 0 26.429 26.429 0 1 1 52.857 0z"
150
+ style="color:#000000"
151
+ transform="matrix(.86486 0 0 .86486 -215.4 129.22)"
152
+ />
153
+ <path
154
+ id="path3912"
155
+ d="m-871.43 1035.9a26.429 26.429 0 1 1 -52.857 0 26.429 26.429 0 1 1 52.857 0z"
156
+ style="color:#000000"
157
+ fill="#fff"
158
+ transform="matrix(.45946 0 0 .45946 -585.11 540.62)"
159
+ />
160
+ <path
161
+ id="path3914"
162
+ d="m-871.43 1035.9a26.429 26.429 0 1 1 -52.857 0 26.429 26.429 0 1 1 52.857 0z"
163
+ style="color:#000000"
164
+ fill="#fff"
165
+ transform="matrix(.28378 0 0 .28378 -730.34 740.82)"
166
+ />
167
+ <path
168
+ id="path3923"
169
+ d="m-871.43 1035.9a26.429 26.429 0 1 1 -52.857 0 26.429 26.429 0 1 1 52.857 0z"
170
+ style="color:#000000"
171
+ transform="matrix(.86486 0 0 .86486 -53.669 124.05)"
172
+ />
173
+ <path
174
+ id="path3925"
175
+ d="m-871.43 1035.9a26.429 26.429 0 1 1 -52.857 0 26.429 26.429 0 1 1 52.857 0z"
176
+ style="color:#000000"
177
+ fill="#fff"
178
+ transform="matrix(.45946 0 0 .45946 -423.38 535.45)"
179
+ />
180
+ <path
181
+ id="path3927"
182
+ d="m-871.43 1035.9a26.429 26.429 0 1 1 -52.857 0 26.429 26.429 0 1 1 52.857 0z"
183
+ style="color:#000000"
184
+ fill="#fff"
185
+ transform="matrix(.28378 0 0 .28378 -568.61 735.65)"
186
+ />
187
+ <path
188
+ id="path3931"
189
+ d="m-871.43 1035.9a26.429 26.429 0 1 1 -52.857 0 26.429 26.429 0 1 1 52.857 0z"
190
+ style="color:#000000"
191
+ transform="matrix(.5 0 0 .5 -489.57 515.15)"
192
+ />
193
+ <path
194
+ id="path3933"
195
+ d="m-871.43 1035.9a26.429 26.429 0 1 1 -52.857 0 26.429 26.429 0 1 1 52.857 0z"
196
+ style="color:#000000"
197
+ fill="#fff"
198
+ transform="matrix(.26563 0 0 .26563 -703.31 752.99)"
199
+ />
200
+ <path
201
+ id="path3935"
202
+ d="m-871.43 1035.9a26.429 26.429 0 1 1 -52.857 0 26.429 26.429 0 1 1 52.857 0z"
203
+ style="color:#000000"
204
+ fill="#fff"
205
+ transform="matrix(.16406 0 0 .16406 -787.27 868.73)"
206
+ />
207
+ <path
208
+ id="path3939"
209
+ d="m-871.43 1035.9a26.429 26.429 0 1 1 -52.857 0 26.429 26.429 0 1 1 52.857 0z"
210
+ style="color:#000000"
211
+ transform="matrix(.5 0 0 .5 -430.34 516.45)"
212
+ />
213
+ <path
214
+ id="path3941"
215
+ d="m-871.43 1035.9a26.429 26.429 0 1 1 -52.857 0 26.429 26.429 0 1 1 52.857 0z"
216
+ style="color:#000000"
217
+ fill="#fff"
218
+ transform="matrix(.26563 0 0 .26563 -644.08 754.3)"
219
+ />
220
+ <path
221
+ id="path3943"
222
+ d="m-871.43 1035.9a26.429 26.429 0 1 1 -52.857 0 26.429 26.429 0 1 1 52.857 0z"
223
+ style="color:#000000"
224
+ fill="#fff"
225
+ transform="matrix(.16406 0 0 .16406 -728.04 870.04)"
226
+ />
227
+ <path
228
+ id="path3945"
229
+ d="m-1016.4 1050.9-42.143-59.286-46.429 135 17.857 118.57-5.7142-120 36.428-75.714 43.572 33.572z"
230
+ style="color:#000000"
231
+ fill="#502d16"
232
+ />
233
+ <path
234
+ id="path3949"
235
+ d="m-932.86 1083.1s-27.143 38.571-12.143 54.286c15 15.714 32.857 12.857 32.857 12.857l-25-15 7.8571-4.2857-7.8571-12.143 17.143-30"
236
+ style="color:#000000"
237
+ fill="#502d16"
238
+ />
239
+ <path
240
+ id="path3951"
241
+ d="m-870 1082.4s12.857 51.429 1.4286 58.571c-11.429 7.1429-12.857 7.1429-12.857 7.1429l8.5714-16.429-7.8572-7.1429 11.429-6.4285-17.143-7.1429 4.2857-18.571"
242
+ style="color:#000000"
243
+ fill="#502d16"
244
+ />
245
+ <path
246
+ id="path3989"
247
+ d="m-897.27 1051.1 65.786 40.911-8.8388 5.3033-56.19-38.007z"
248
+ style="color:#000000"
249
+ fill="#d40000"
250
+ />
251
+ <path
252
+ id="path3979"
253
+ d="m-911.66 1054.9s-67.175 46.467-68.185 48.74c-1.0102 2.2728 17.173 4.7982 17.173 4.7982l51.518-44.699z"
254
+ style="color:#000000"
255
+ fill="#d40000"
256
+ />
257
+ <path
258
+ id="path3953"
259
+ d="m-925.9 999.17c13.383 37.875 15.979 26.56 13.058 67.039l14.281-1.4375s4.4373-0.2447 1.5802-14.53c-2.0057-10.028-12.67-50.719-12.67-50.719z"
260
+ style="color:#000000"
261
+ fill="#d40000"
262
+ />
263
+ <path
264
+ id="path3955"
265
+ d="m-917.64 996.78c-5.1536 0.0456-10.97 0.26987-10.765 0.87403 0.32809 0.96667 0.31578 1.7763 0.31578 1.7763l0.17225-1.1278s2.4647 13.848 6.4018 14.492c3.937 0.6444 16.568 0.8136 17.224-0.9586 0.65616-1.7723-3.1414-14.838-6.2582-15-1.1688-0.0604-3.9986-0.0838-7.0907-0.0564zm3.2726 2.1146c1.338-0.008 2.4401 0.0161 3.0143 0.0564 2.2966 0.16111 4.9172 8.0516 3.9329 10.629-0.98425 2.5778-8.0422 2.7469-12.143 1.297-4.1011-1.4501-4.909-11.785-4.909-11.785s6.0911-0.17471 10.105-0.19737z"
266
+ style="color:#000000"
267
+ fill="#ff0"
268
+ />
269
+ <path
270
+ id="path3960"
271
+ d="m-916.99 1003.6s1.7857 4.4643 2.6786 4.6429c0.89286 0.1786-0.35713-5.7143-0.35713-5.7143"
272
+ style="color:#000000"
273
+ fill="#808000"
274
+ />
275
+ <path
276
+ id="path3981"
277
+ d="m-909.14 1018.1a1.894 1.894 0 1 1 -3.7881 0 1.894 1.894 0 1 1 3.7881 0z"
278
+ style="color:#000000"
279
+ fill="#800000"
280
+ />
281
+ <path
282
+ id="path3983"
283
+ d="m-906.61 1024.8a1.5152 2.0203 0 1 1 -3.0305 0 1.5152 2.0203 0 1 1 3.0305 0z"
284
+ style="color:#000000"
285
+ fill="#800000"
286
+ transform="translate(-.50508 1.0102)"
287
+ />
288
+ <path
289
+ id="path3985"
290
+ d="m-905.85 1032a1.6415 2.1466 0 1 1 -3.283 0 1.6415 2.1466 0 1 1 3.283 0z"
291
+ style="color:#000000"
292
+ fill="#800000"
293
+ />
294
+ <path
295
+ id="path3987"
296
+ d="m-910.65 1048.8c1.6415-0.3788 12.627-1.1364 12.627-1.1364l-1.0102-4.7982-13.132 2.1466z"
297
+ style="color:#000000"
298
+ fill="#800000"
299
+ />
300
+ <path
301
+ id="path3096"
302
+ d="m-381.43 629.51a60 64.286 0 1 1 -120 0 60 64.286 0 1 1 120 0z"
303
+ style="color:#000000"
304
+ fill="#c8beb7"
305
+ transform="matrix(1.9226 0 0 1.8861 333.34 -685.5)"
306
+ />
307
+ <path
308
+ id="path3098"
309
+ style="color:#000000"
310
+ d="m-381.43 629.51a60 64.286 0 1 1 -120 0 60 64.286 0 1 1 120 0z"
311
+ transform="matrix(.68093 0 0 .668 -253.91 46.79)"
312
+ stroke="#000"
313
+ stroke-width="16"
314
+ fill="#fff"
315
+ />
316
+ <path
317
+ id="path4007"
318
+ style="color:#000000"
319
+ d="m-1238.4 26.552a31.82 31.82 0 1 1 -63.64 0 31.82 31.82 0 1 1 63.64 0z"
320
+ transform="matrix(.973 0 0 .973 679.55 440.37)"
321
+ stroke="#f00"
322
+ stroke-width="1.2115"
323
+ />
324
+ <path
325
+ id="path3100"
326
+ style="color:#000000"
327
+ d="m-381.43 629.51a60 64.286 0 1 1 -120 0 60 64.286 0 1 1 120 0z"
328
+ transform="matrix(.68093 0 0 .668 -159.61 45.106)"
329
+ stroke="#000"
330
+ stroke-width="16"
331
+ fill="#fff"
332
+ />
333
+ <path
334
+ id="path4011"
335
+ style="color:#000000"
336
+ d="m-1238.4 26.552a31.82 31.82 0 1 1 -63.64 0 31.82 31.82 0 1 1 63.64 0z"
337
+ transform="matrix(.973 0 0 .973 780.77 439.18)"
338
+ stroke="#f00"
339
+ stroke-width="1.2115"
340
+ />
341
+ <path
342
+ id="path4009"
343
+ opacity=".68649"
344
+ style="color:#000000"
345
+ d="m-1238.4 26.552a31.82 31.82 0 1 1 -63.64 0 31.82 31.82 0 1 1 63.64 0z"
346
+ transform="matrix(.43037 0 0 .43037 -17.446 434.19)"
347
+ fill="#fff"
348
+ />
349
+ <path
350
+ id="path4025"
351
+ style="color:#000000"
352
+ d="m-920.34 1096.7s22.37 12.947 32.01-0.4384"
353
+ stroke="#000"
354
+ stroke-width="1.0977"
355
+ fill="none"
356
+ />
357
+ <g
358
+ id="g4057"
359
+ stroke="#000"
360
+ transform="matrix(.97719 .21239 -.21239 .97719 732.9 -65.798)"
361
+ >
362
+ <path
363
+ id="path4053"
364
+ style="color:#000000"
365
+ d="m-1085 873.08 6.4286 7.8571 1.4285-9.2857 28.572-3.5714-29.286 15-25-3.5714z"
366
+ />
367
+ <path
368
+ id="path4055"
369
+ style="color:#000000"
370
+ d="m-1102.9 882.36 32.857 10.714 19.286-23.571z"
371
+ />
372
+ </g
373
+ >
374
+ <path
375
+ id="path4061"
376
+ d="m-519.22 531.12 30.305-2.0203-18.183 16.162z"
377
+ style="color:#000000"
378
+ fill="#916f6f"
379
+ />
380
+ <path
381
+ id="path4063"
382
+ style="color:#000000"
383
+ d="m-531.96 294.84c-170.1-1.1368-121.62 351.44-121.62 351.44h72.812l3.9797-230.3 127.28-4.0516 12.214 234.36h34.25s4.036 4.0356 22.219-99 35.88-223.26-129.28-250.5c-7.6551-1.2627-14.929-1.8913-21.844-1.9375z"
384
+ />
385
+ <path
386
+ id="path4068"
387
+ style="color:#000000"
388
+ d="m-686.65 873.57s-13.637 1.5152-13.637 4.2932c0 2.7779 7.8287 4.7982 7.8287 4.7982z"
389
+ />
390
+ <path
391
+ id="path4076"
392
+ opacity=".68649"
393
+ style="color:#000000"
394
+ d="m-1238.4 26.552a31.82 31.82 0 1 1 -63.64 0 31.82 31.82 0 1 1 63.64 0z"
395
+ transform="matrix(.43037 0 0 .43037 74.478 433.18)"
396
+ fill="#fff"
397
+ />
398
+ <g
399
+ id="g3361"
400
+ transform="matrix(.99361 .11289 -.11289 .99361 68.217 55.943)"
401
+ >
402
+ <path
403
+ id="path4084"
404
+ style="color:#000000"
405
+ d="m-465.07 612.57 90.82 117.16-12.629 14.18-99.023-99.704"
406
+ />
407
+ <path
408
+ id="path4086"
409
+ style="color:#000000"
410
+ d="m-375.36 728.43 51.14 99.304-16.14 8.9106-47.857-95z"
411
+ />
412
+ <g
413
+ id="g4109"
414
+ transform="matrix(1.3651 0 0 1.3651 124.17 -304.98)"
415
+ >
416
+ <path
417
+ id="path4107"
418
+ style="color:#000000"
419
+ d="m-340 843.08-3.5714 23.929 9.6429 7.5s-1.7857-8.2143-3.2143-8.5714c-1.4286-0.35714 2.5-10.714 2.5-10.714l-4.2857-2.5"
420
+ />
421
+ <path
422
+ id="path4088"
423
+ style="color:#000000"
424
+ d="m-340.42 835.93-1.7179 21.786l27.14-14.29-13.4-14.28z"
425
+ />
426
+ <g
427
+ id="g4100"
428
+ transform="matrix(1.0767 0 0 1.0767 25.066 -65.033)"
429
+ >
430
+ <path
431
+ id="path4090"
432
+ style="color:#000000"
433
+ d="m-315.92 843.08 11.988 29.089-1.8929 0.55407-17.036-26.595z"
434
+ />
435
+ <path
436
+ id="path4092"
437
+ style="color:#000000"
438
+ d="m-332.86 852.01 13.571 37.5-2.1429 0.71428-19.286-34.286z"
439
+ />
440
+ <path
441
+ id="path4094"
442
+ style="color:#000000"
443
+ d="m-326.07 849.15 13.571 37.5-2.1429 0.71428-19.286-34.286z"
444
+ />
445
+ <path
446
+ id="path4096"
447
+ style="color:#000000"
448
+ d="m-320.71 846.29 13.571 37.5-2.1429 0.71428-19.286-34.286z"
449
+ />
450
+ <path
451
+ id="path4098"
452
+ style="color:#000000"
453
+ d="m-320.71 846.29 13.571 37.5-2.1429 0.71428-19.286-34.286z"
454
+ />
455
+ </g
456
+ >
457
+ </g
458
+ >
459
+ </g
460
+ >
461
+ </g
462
+ >
463
+ <metadata
464
+ >
465
+ <rdf:RDF
466
+ >
467
+ <cc:Work
468
+ >
469
+ <dc:format
470
+ >image/svg+xml</dc:format
471
+ >
472
+ <dc:type
473
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage"
474
+ />
475
+ <cc:license
476
+ rdf:resource="http://creativecommons.org/licenses/publicdomain/"
477
+ />
478
+ <dc:publisher
479
+ >
480
+ <cc:Agent
481
+ rdf:about="http://openclipart.org/"
482
+ >
483
+ <dc:title
484
+ >Openclipart</dc:title
485
+ >
486
+ </cc:Agent
487
+ >
488
+ </dc:publisher
489
+ >
490
+ <dc:title
491
+ >Pet Spider Girl</dc:title
492
+ >
493
+ <dc:date
494
+ >2013-10-14T17:01:19</dc:date
495
+ >
496
+ <dc:description
497
+ >Creepy girl with pet spider. </dc:description
498
+ >
499
+ <dc:source
500
+ >https://openclipart.org/detail/184904/pet-spider-girl-by-feraliminal-184904</dc:source
501
+ >
502
+ <dc:creator
503
+ >
504
+ <cc:Agent
505
+ >
506
+ <dc:title
507
+ >feraliminal</dc:title
508
+ >
509
+ </cc:Agent
510
+ >
511
+ </dc:creator
512
+ >
513
+ <dc:subject
514
+ >
515
+ <rdf:Bag
516
+ >
517
+ <rdf:li
518
+ >Halloween</rdf:li
519
+ >
520
+ <rdf:li
521
+ >girl</rdf:li
522
+ >
523
+ <rdf:li
524
+ >pet</rdf:li
525
+ >
526
+ <rdf:li
527
+ >spider</rdf:li
528
+ >
529
+ </rdf:Bag
530
+ >
531
+ </dc:subject
532
+ >
533
+ </cc:Work
534
+ >
535
+ <cc:License
536
+ rdf:about="http://creativecommons.org/licenses/publicdomain/"
537
+ >
538
+ <cc:permits
539
+ rdf:resource="http://creativecommons.org/ns#Reproduction"
540
+ />
541
+ <cc:permits
542
+ rdf:resource="http://creativecommons.org/ns#Distribution"
543
+ />
544
+ <cc:permits
545
+ rdf:resource="http://creativecommons.org/ns#DerivativeWorks"
546
+ />
547
+ </cc:License
548
+ >
549
+ </rdf:RDF
550
+ >
551
+ </metadata
552
+ >
553
+ </svg
554
+ >