|
//* comment *//
|
|
|
|
Copyright (C) 2015 Ignacio Rodríguez
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
TODO: description
|
|
|
|
//* globals *//
|
|
var nutritionCalories = 0;
|
|
var nutritionProtein = 0;
|
|
var nutritionCarbohydrate = 0;
|
|
var nutritionFiber = 0;
|
|
var nutritionFat = 0;
|
|
var nutritionFoodData = {
|
|
'apple': [72, 0, 19, 3, 0],
|
|
'banana': [105, 1, 27, 3, 0],
|
|
'orange': [62, 1, 15, 3, 0],
|
|
'bread': [69, 4, 12, 2, 1],
|
|
'corn': [96, 3, 21, 3, 1],
|
|
'potato': [159, 4, 36, 4, 0],
|
|
'sweetpotato': [169, 1, 22, 1, 8],
|
|
'tomato': [150, 4, 25, 3, 5],
|
|
'broccoli': [94, 4, 11, 5, 5],
|
|
'riceandbeans': [411, 14, 60, 8, 13],
|
|
'tamale': [126, 6, 11, 1, 6],
|
|
'cheese': [114, 7, 0, 0, 9],
|
|
'chicken': [152, 15, 0, 0, 10],
|
|
'fish': [58, 6, 0, 0, 3],
|
|
'beef': [285, 46, 0, 0, 10],
|
|
'cake': [387, 4, 69, 2, 13],
|
|
'cookie': [68, 1, 8, 0, 4],
|
|
'water': [0, 0, 0, 0, 0]
|
|
};
|
|
|
|
//* flow-globals *//
|
|
var block = logo.blocks.blockList[blk];
|
|
var conns = block.connections;
|
|
function showMsg(data) {
|
|
logo.textMsg(JSON.stringify(data));
|
|
};
|
|
|
|
//* arg-globals *//
|
|
var block = logo.blocks.blockList[blk];
|
|
var conns = block.connections;
|
|
|
|
//* block-globals *//
|
|
var get_eatme = function (name, label) {
|
|
var block = new ProtoBlock(name);
|
|
block.palette = palettes.dict['eatme'];
|
|
blocks.protoBlockDict[name] = block;
|
|
block.staticLabels.push(label);
|
|
block.adjustWidthToLabel();
|
|
block.oneArgMathBlock();
|
|
block.dockTypes[1] = 'mediain';
|
|
};
|
|
var show_value = function (name, label) {
|
|
var block = new ProtoBlock(name);
|
|
block.palette = palettes.dict['eatme'];
|
|
blocks.protoBlockDict[name] = block;
|
|
block.staticLabels.push(label);
|
|
block.adjustWidthToLabel();
|
|
block.parameterBlock();
|
|
};
|
|
var eat = function (name, label) {
|
|
var block = new ProtoBlock(name);
|
|
block.palette = palettes.dict['eatme'];
|
|
blocks.protoBlockDict[name] = block;
|
|
block.staticLabels.push(label);
|
|
block.adjustWidthToLabel();
|
|
block.oneArgBlock();
|
|
block.dockTypes[1] = 'mediain';
|
|
};
|
|
var action = function (name, label) {
|
|
var block = new ProtoBlock(name);
|
|
block.palette = palettes.dict['eatme'];
|
|
blocks.protoBlockDict[name] = block;
|
|
block.staticLabels.push(label);
|
|
block.adjustWidthToLabel();
|
|
block.zeroArgBlock();
|
|
};
|
|
var food_block = function (blkname, name) {
|
|
var block = new ProtoBlock(blkname);
|
|
block.palette = palettes.dict['food'];
|
|
block.image = pluginsImages[blkname];
|
|
block.staticLabels.push(name);
|
|
block.adjustWidthToLabel();
|
|
block.mediaBlock();
|
|
blocks.protoBlockDict[blkname] = block;
|
|
};
|
|
|
|
//* block:get_calories *//
|
|
get_eatme('get_calories', _('get calories'));
|
|
|
|
//* block:get_protein *//
|
|
get_eatme('get_protein', _('get protein'));
|
|
|
|
//* block:get_carbohydrates *//
|
|
get_eatme('get_carbohydrates', _('get carbs'));
|
|
|
|
//* block:get_fiber *//
|
|
get_eatme('get_fiber', _('get fiber'));
|
|
|
|
//* block:get_fat *//
|
|
get_eatme('get_fat', _('get fat'));
|
|
|
|
//* block:get_name *//
|
|
get_eatme('get_name', _('get name'));
|
|
|
|
//* block:calories *//
|
|
show_value('calories', _('calories'));
|
|
|
|
//* parameter:calories )*//
|
|
value = nutritionCalories;
|
|
|
|
//* block:protein *//
|
|
show_value('protein', _('protein'));
|
|
|
|
//* parameter:protein *//
|
|
value = nutritionProtein;
|
|
|
|
//* block:carbohydrates *//
|
|
show_value('carbohydrates', _('carbs'));
|
|
|
|
//* parameter:carbohydrates *//
|
|
value = nutritionCarbohydrates;
|
|
|
|
//* block:fiber *//
|
|
show_value('fiber', _('fiber'));
|
|
|
|
//* parameter:fiber *//
|
|
value = nutritionFiber;
|
|
|
|
//* block:fat *//
|
|
show_value('fat', _('fat'));
|
|
|
|
//* parameter:fat *//
|
|
value = nutritionFat;
|
|
|
|
//* block:eat *//
|
|
eat('eat', _('eat'));
|
|
|
|
//* block:digest *//
|
|
action('digest', _('digest meal'), 20);
|
|
|
|
//* block:apple *//
|
|
food_block('apple', _('apple'));
|
|
|
|
//* block:banana *//
|
|
food_block('banana', _('banana'));
|
|
|
|
//* block:orange *//
|
|
food_block('orange', _('orange'));
|
|
|
|
//* block:bread *//
|
|
food_block('bread', _('wheat bread'));
|
|
|
|
//* block:corn *//
|
|
food_block('corn', _('corn'));
|
|
|
|
//* block:potato *//
|
|
food_block('potato', _('potato'));
|
|
|
|
//* block:sweetpotato *//
|
|
food_block('sweetpotato', _('sweet potato'));
|
|
|
|
//* block:tomato *//
|
|
food_block('tomato', _('tomato'));
|
|
|
|
//* block:broccoli *//
|
|
food_block('broccoli', _('broccoli'));
|
|
|
|
//* block:riceandbeans *//
|
|
food_block('riceandbeans', _('rice and beans'));
|
|
|
|
//* block:tamale *//
|
|
food_block('tamale', _('tamale'));
|
|
|
|
//* block:cheese *//
|
|
food_block('cheese', _('cheese'));
|
|
|
|
//* block:chicken *//
|
|
food_block('chicken', _('chicken'));
|
|
|
|
//* block:fish *//
|
|
food_block('fish', _('fish'));
|
|
|
|
//* block:beef *//
|
|
food_block('beef', _('beef'));
|
|
|
|
//* block:cake *//
|
|
food_block('cake', _('cake'));
|
|
|
|
//* block:cookie *//
|
|
food_block('cookie', _('cookie'));
|
|
|
|
//* block:water *//
|
|
food_block('water', _('water'));
|
|
|
|
//* flow:apple *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:banana *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:orange *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:bread *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:corn *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:potato *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:sweetpotato *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:tomato *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:broccoli *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:riceandbeans *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:tamale *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:cheese *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:chicken *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:fish *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:beef *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:cake *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:cookie *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:water *//
|
|
block.value = nutritionFoodData[block.name];
|
|
showMsg(block.value);
|
|
|
|
//* flow:eat *//
|
|
console.log();
|
|
var blockFoodData = nutritionFoodData[logo.blocks.blockList[conns[1]].name];
|
|
nutritionCalories += blockFoodData[0];
|
|
nutritionProtein += blockFoodData[1];
|
|
nutritionCarbohydrate += blockFoodData[2];
|
|
nutritionFiber += blockFoodData[3];
|
|
nutritionFat += blockFoodData[4];
|
|
|
|
//* flow:digest *//
|
|
nutritionCalories = 0;
|
|
nutritionProtein = 0;
|
|
nutritionCarbohydrate = 0;
|
|
nutritionFiber = 0;
|
|
nutritionFat = 0;
|
|
|
|
//* arg:fiber *//
|
|
block.value = nutritionFiber;
|
|
|
|
//* arg:calories *//
|
|
block.value = nutritionCalories;
|
|
|
|
//* arg:protein *//
|
|
block.value = nutritionProtein;
|
|
|
|
//* arg:carbohydrates *//
|
|
block.value = nutritionCarbohydrate;
|
|
|
|
//* arg:fat *//
|
|
block.value = nutritionFat;
|
|
|
|
//* arg:get_calories *//
|
|
var blockFoodData = nutritionFoodData[logo.blocks.blockList[conns[1]].name];
|
|
block.value = blockFoodData[0];
|
|
|
|
//* arg:get_protein *//
|
|
var blockFoodData = nutritionFoodData[logo.blocks.blockList[conns[1]].name];
|
|
block.value = blockFoodData[1];
|
|
|
|
//* arg:get_carbohydrates *//
|
|
var blockFoodData = nutritionFoodData[logo.blocks.blockList[conns[1]].name];
|
|
block.value = blockFoodData[2];
|
|
|
|
//* arg:get_fiber *//
|
|
var blockFoodData = nutritionFoodData[logo.blocks.blockList[conns[1]].name];
|
|
block.value = blockFoodData[3];
|
|
|
|
//* arg:get_fat *//
|
|
var blockFoodData = nutritionFoodData[logo.blocks.blockList[conns[1]].name];
|
|
block.value = blockFoodData[4];
|
|
|
|
//* arg:get_name *//
|
|
block.value = logo.blocks.blockList[conns[1]].name;
|
|
|
|
//* palette-icon:food *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="55" height="55" viewBox="0 0 55 55"><g transform="matrix(.17664 0 0 .17664 5.327 2.929)" fill="none" stroke="#fff" stroke-linecap="round" stroke-width="8.492"><path d="m4.109 146.44c-4.866-30.845 7.585-67.26 30.909-88.02 19.819-17.643 53.962-15.281 80.15-21.569 14.601-3.506 41.696-9.16 56.36-5.944 26.19 5.742 40.579 17.94 58.801 41.645 10.05 13.07 15.215 35.519 17.245 51.883 5.296 42.693-41.793 122.62-51.33 130.73-12.287 10.457-41.758 13.398-59.729 21.539-9.744 4.414-45.527-2.479-55.56-6.178-19.01-7.01-68.21-69.33-76.845-124.08z"/><path d="m77.16 62.47c0 0 22.54 8.764 34.35 8.96 17.02.283 48.784-11.947 48.784-11.947"/><path d="m113 70.43c0 0 10.1-56.838 28.872-68.2 4.192-2.537 10.515 2.713 12.943 6.969 2.057 3.606 2.857 9.999-.498 12.445-2.505 1.826-6.954-4.852-8.96-2.489-6.242 7.355-18.418 47.788-18.418 47.788"/></g></svg>
|
|
//* palette-fill:food *// #D5D5D5
|
|
//* palette-stroke:food *// #A0A0A0
|
|
//* palette-highlight:food *// #FFFFFF
|
|
//* palette-stroke-highlight:food *// #000000
|
|
|
|
|
|
//* palette-icon:eatme *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="55" height="55" enable-background="new 0 0 55 55" viewBox="0 0 55 55"><g display="inline" fill="none" stroke="#fff" stroke-linecap="round" stroke-width="3.5"><path d="m51.38 27.597c0 0-11.387 13.04-24 13.04-12.613 0-23.999-13.04-23.999-13.04s8.915-11.234 16.869-11.234c4.418 0 7.13 2.73 7.13 2.73s2.716-2.73 7.132-2.73c7.953-.001 16.869 11.234 16.869 11.234z"/><path d="m3.375 27.597h48"/></g></svg>
|
|
//* palette-fill:eatme *// #D5D5D5
|
|
//* palette-stroke:eatme *// #A0A0A0
|
|
//* palette-highlight:eatme *// #FFFFFF
|
|
//* palette-stroke-highlight:eatme *// #000000
|
|
|
|
//* image:egg *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="46.55" height="45.571"><path d="m299.39 480.15c-6.185-6.08-18.416-5.208-26-1-7.05 3.912-11.815 12.378-14.597 19.945-1.872 5.093-2.152 13.03-.403 17.06 2.553 5.882 12.717 4.28 19 3 6.163-1.256 11.535-5.571 16-10 3.086-3.061 7.2-9.07 8.298-13.272 1.519-5.814 1.987-11.515-2.298-15.728z" fill="#fefde1" stroke="#000" transform="translate(-256.72-475.29)"/></svg>
|
|
|
|
|
|
//* image:orange *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="61.805" height="70"><g stroke="#000"><path d="m.876 36.816c-1.113-7.642 1.876-16.633 7.644-21.768 4.901-4.363 11.546-5.854 18.02-7.409 3.611-.867 12.11-.19 15.737.605 6.476 1.42 10.03 4.437 14.541 10.299 2.485 3.233 3.763 8.784 4.265 12.83 1.31 10.558-2.173 26.449-12.693 32.33-3.483 1.947-5.761 4-14.771 5.327-2.617.384-11.437-.227-13.741-1.528-14.651-8.275-17.05-17.278-19-30.685z" fill="#eba319" stroke-linecap="round" stroke-width="1.236"/><path d="m39.704 15.356l2.075 3.182-2.352 1.937 3.735.138 4.565 2.49-1.66-3.458 5.395-.83c-7.458.439-2.306-3.551-5.188-4.01-2.283 4.15-6.571.553-6.571.553z" fill="#9a6a0d"/></g></svg>
|
|
|
|
|
|
//* image:tomato *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="63.14" height="65.17"><defs><radialGradient cx="30.997" cy="38.19" r="30.968" id="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0 1-1.0195 0 70.51 3.208)"><stop stop-color="#eb3a19"/><stop offset="1" stop-color="#c02c11"/></radialGradient></defs><g stroke="#000"><path d="m32.945 4.085c7.642-1.113 16.633 1.876 21.768 7.644 4.363 4.901 5.854 11.546 7.409 18.02.867 3.611.19 12.11-.605 15.737-1.42 6.476-4.437 10.03-10.299 14.541-3.233 2.485-8.784 3.763-12.83 4.265-10.558 1.31-26.449-2.173-32.33-12.693-1.947-3.483-4-5.761-5.327-14.771-.384-2.617.227-11.437 1.528-13.741 8.275-14.651 17.278-17.05 30.685-19z" fill="url(#0)" stroke-linecap="round" stroke-width="1.236"/><path d="m42.676 2.248c6.791 8.06-3.225 5.253-3.225 5.253-.146-.061 5.8 1.795 7.637 3.089 2.335 1.645 5.882 6.233 5.882 6.233-4.122-6.725 2.471-2.237 4.465-2.35l-6.08-3.471 5.809-3.882c-9.196 3.643-7.679 1.949-6.12-6.621-2.628 9.08-3.781 8.646-8.368 1.748z" fill="#719a0d"/></g></svg>
|
|
|
|
|
|
//* image:sweetpotato *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="99.69" height="60.734"><defs><radialGradient cx="30.902" cy="38.695" r="30.902" id="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1 0 0 1.01303 23.917-5.473)"><stop stop-color="#d5a4b6"/><stop offset="1" stop-color="#7e3a53"/></radialGradient></defs><g stroke-linecap="round"><path d="m.753 46.695c.574-7.701 22.425-2.314 29.09-6.212 8.672-5.07 18.06-16.271 24.298-19.947 3.199-1.885 15.988-11.902 19.595-12.783 5.769-1.408 19.227-7.112 23.733-7.143 3.784 1.519-.326 3.098-.449 7.174-.34 11.265-25.774 38.25-28.25 40.11-5.631 4.236-16.219 10.384-23.727 12.162-2.574.609-31.626-4.222-34.25-4.592-8.944-1.261-10.74.531-10.05-8.766z" fill="url(#0)" stroke="#000" stroke-width="1.236"/><path d="m-16.969697 53.855217a2.946128 5.06734 0 1 1 -5.892256 0 2.946128 5.06734 0 1 1 5.892256 0z" transform="matrix(.88062 0 0 1 21.19-4.969)" fill="#856e76" stroke="#442d35" stroke-linejoin="round" stroke-width="1.2"/></g></svg>
|
|
|
|
|
|
//* image:broccoli *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="79.996" height="95.49"><g transform="translate(-181.44-372.7)" stroke="#000"><path d="m238 467.7c-4.44-.029-8.08-3.981-11.333-7-9.974-9.248-24-33-24-33l2.333-7.333-6.667-7 8.333-4.333 3.333 7-1.333-9.333 5.667-1.667 2.333 7.333 1.333-13 8 4.667 2.667 18.333 1.333-18h9.333l1 10 5.667-13 5.333 3-10.333 29c0 0 3.907 12.569 7 18.333 1.356 2.527 5.584 4.193 5 7-1.187 5.709-9.169 9.04-15 9z" fill="#8ba806"/><g fill="#2c8305"><path d="m203.33 427.36c-3.82 1.883-9.236-.41-12.333-3.333-2.3-2.171-4.571-6.256-3-9 1.862-3.253 7.495-3.661 11-2.333 3.491 1.323 6.207 5.295 6.667 9 .252 2.027-.501 4.763-2.333 5.667z"/><path d="m201 412.36c-4.214 1.732-9.08 4.633-13.333 3-3.051-1.171-5.417-4.742-5.667-8-.549-7.184 3.161-16.237 9.667-19.333 2.775-1.321 6.33.478 9 2 2.117 1.207 3.288 3.599 5 5.333 2.816 2.852 9.02 4.341 8.667 8.333-.285 3.192-5.307 3.595-8 5.333-1.761 1.137-3.394 2.536-5.333 3.333z"/><path d="m214 404.36c0 0-11.714-8.06-12.333-14.333-.489-4.951 3.282-10.112 7.333-13 4.507-3.214 11.151-4.946 16.333-3 3.85 1.446 6.592 5.697 7.667 9.667.821 3.034-.223 6.393-1.333 9.333-1.36 3.604-3.281 7.316-6.333 9.667-2.784 2.144-10 3.333-10 3.333"/><path d="m229.33 378.36c1-2.6 4.903-3.688 7.667-3.333 7.143.916 15.242 6.35 17 13.333.474 1.882-.579 4.505-2.333 5.333-5.534 2.614-13.03-1.01-17.667-5-2.863-2.467-6.03-6.807-4.667-10.333z"/><path d="m250.67 394.36c0 0 .098 9.485 3.667 10.667 2.428.804 5.704-1.854 6.333-4.333 1.198-4.72-1.807-13.312-6.667-13-2.946.189-3 8.333-3 8.333"/><path d="m228 407.36c-3.446-2.861-3.221-9.133-1.667-13.333 1.146-3.098 4.103-5.976 7.333-6.667 6.288-1.345 13.494 1.767 18.333 6 2.693 2.356 6.249 6.458 4.667 9.667-2.66 5.394-11.705 2.872-17.667 3.667-3.641.486-8.174 3.01-11 .667z"/></g></g></svg>
|
|
|
|
|
|
//* image:apple *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width='61.805' height='70'><defs><radialGradient cx="30.902" cy="38.695" r="30.902" id="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1 0 0 1.01303 0-.504)"><stop stop-color="#f3c82f"/><stop offset="1" stop-color="#c5ca1e"/></radialGradient></defs><g stroke="#000" stroke-linecap="round"><g stroke-width="1.236"><path d="m.876 36.816c-1.203-7.628 1.876-16.633 7.644-21.768 4.901-4.363 13.345-3.779 19.82-5.334 3.611-.867 10.311-2.265 13.938-1.47 6.476 1.42 10.03 4.437 14.541 10.299 2.485 3.233 3.763 8.784 4.265 12.83 1.31 10.558-10.335 30.32-12.693 32.33-3.038 2.586-10.327 3.313-14.771 5.327-2.41 1.092-11.259-.613-13.741-1.528-4.702-1.732-16.868-17.15-19-30.685z" fill="url(#0)"/><path d="m18.941 16.05c0 0 5.574 2.167 8.494 2.216 4.21.07 12.06-2.954 12.06-2.954" fill="none"/></g><path d="m27.805 18.02c0 0 2.498-14.06 7.14-16.865 1.037-.627 2.6.671 3.201 1.723.509.892.707 2.473-.123 3.078-.619.452-1.72-1.2-2.216-.616-1.544 1.819-4.555 11.818-4.555 11.818" fill="#453100" stroke-width="1.978"/></g></svg>
|
|
|
|
|
|
//* image:cookie *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="71.72" height="70"><path d="m16.887 13.589c2.802-2.392 5.283-5.477 8.731-6.777 4.781-1.802 10.286-1.912 15.301-.932 2.507.49 4.802 1.87 6.912 3.309 4.416 3.01 8.772 6.484 11.725 10.939 3.154 4.759 5.742 10.379 5.883 16.09.15 6.086-2.474 12.11-5.421 17.441-.968 1.751-2.321 3.338-3.909 4.557-1.826 1.401-5.173 3.041-6.226 2.986-10.9-.577-17.205 3.535-18.15 3.535-.943 0-6.599-1.178-7.306-1.414-.707-.236-10.446-7.746-13.67-13.199-2.9-4.905-4.384-10.801-4.478-16.498-.073-4.439.839-9.121 3.064-12.963 1.727-2.982 4.921-4.833 7.542-7.07z" fill="#eda35a" stroke="#000"/><path d="m16.887 13.589c2.966 3.077-4.688 18.82-3.302 23.298 1.089 3.519 7.287 12.242 9.397 13.681 4.416 3.01 1.163 3.181 6.107 5.213 5.531 2.274 9.123.165 14.742 1.177 3.75.675 6.424-1.354 12.278 1.254 2.102.937-5.173 3.041-6.226 2.986-10.9-.577-17.205 3.535-18.15 3.535-.943 0-6.599-1.178-7.306-1.414-.707-.236-10.446-7.746-13.67-13.199-2.9-4.905-4.384-10.801-4.478-16.498-.073-4.439.839-9.121 3.064-12.963 1.727-2.982 6.093-5.074 7.542-7.07" fill="#bb6e22"/><g fill="#96581b" stroke="#000"><path d="m24.849 17.601c-1.945.864-2.227 2.196-1.729 3.349.416.963 2.123 1.399 3.03.864.984-.584 1.231-2.308.756-3.349-.22-.484-1.405-.756-1.405-.756"/><path d="m31.33 11.875c0 0 1.339 2.39 2.485 2.377 1.019-.011 1.998-1.155 2.161-2.161.181-1.113-.471-2.594-1.513-3.03-1.052-.436-2.534.188-3.241 1.08-.247.312-.108 1.188-.108 1.188"/><path d="m44.08 15.548c.928-.208 2.112.368 2.593 1.188.457.779.406 2.047-.216 2.701-.576.605-1.715.648-2.485.324-.83-.35-1.646-1.261-1.621-2.161.025-.894.856-1.857 1.729-2.053z"/><path d="m54.24 24.515c.56-.344 1.493-.153 1.945.324.448.474.542 1.38.216 1.945-.315.545-1.12.916-1.729.756-.522-.138-.881-.764-.972-1.296-.102-.595.026-1.412.54-1.729z"/><path d="m41.487 29.485c.601.149 1.201.905 1.08 1.513-.132.666-1.053 1.01-1.729 1.08-.419.044-.961-.077-1.188-.432-.234-.365-.135-.937.108-1.296.361-.533 1.103-1.02 1.729-.864z"/><path d="m29.28 34.24c.628-.032 1.446-.061 1.837.432.246.311.157.825 0 1.188-.333.772-1.296 1.405-1.837 1.729-.54.324-1.585 1.166-2.269.756-.909-.544-1.079-2.221-.54-3.133.504-.853 1.819-.922 2.809-.972z"/><path d="m39.65 46.555c1.224-.182 2.749-1.363 3.673-.54.915.814.224 2.494-.108 3.673-.157.559-.385 1.185-.864 1.513-1.022.698-2.436.582-3.673.54-.847-.029-2.054.19-2.485-.54-.764-1.296.16-3.337 1.296-4.322.55-.477 1.44-.217 2.161-.324z"/><path d="m56.829 37.16c-1.448.388-2.954 1.278-3.673 2.593-.381.696-.54 2.269-.108 2.377.432.108 1.743 1.015 2.701 1.296.836.246 1.844.77 2.593.324.764-.455.946-1.596.972-2.485.042-1.4-.202-3.123-1.296-3.997-.311-.248-.804-.211-1.188-.108z"/><path d="m52.4 53.902c0 0-2.292 1.674-2.053 2.809.163.774 1.621 1.296 2.053 1.188.432-.108 1.684-.253 2.161-.864.827-1.06 1.492-3.047.54-3.997-.566-.565-2.377.324-2.377.324"/><path d="m21.07 52.07c0 0-.106 1.057.216 1.405 1.508 1.628 5.01 3.168 6.482 1.513.713-.799-.456-2.155-1.08-3.03-.642-.896-1.494-1.961-2.593-2.053-.819-.068-1.634.557-2.161 1.188-.219.262-.324.972-.324.972"/><path d="m11.56 34.455c1.28.118 2.813.089 3.781-.756.747-.651 1.224-1.851.972-2.809-.416-1.579-2.042-3.313-3.673-3.241-.993.044-1.611 1.271-2.053 2.161-.6 1.209-1.313 2.822-.648 3.997.286.506 1.041.595 1.621.648z"/></g></svg>
|
|
|
|
|
|
//* image:corn *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="94.72" height="48"><g transform="translate(-2.639-11)" stroke-width="1.2"><g stroke="#000"><path d="m3.591 35.1c-.514-3.261-.81-4.692 1.655-6.887 2.095-1.865 9.03-3.227 11.797-3.892 1.543-.371 18.862-.63 23.488-.729 2.833-.061 22.701 1.053 25.861 1.078 23.356.185 17.325 8.993 17.338 12.94.015 4.548.519 6.715-2.504 8.278-1.515.783-26.679.711-33.31-.443-1.114-.194-24.76-1.975-25.821-2.366-2.01-.741-17.587-2.191-18.5-7.978z" fill="#ffb208" stroke-linecap="round"/><path d="m83.83 41.15c0 0 1.168 2.733 1.426 2.297.218-.368 1.53-.462 3.723-.871.583-.109.373-1.64.95-1.505 2.263.529 5.386.871 5.782.238.396-.634 1.164-2.228 1.03-3.406-.163-1.422-.94-2.941-2.139-3.723-1.245-.812-2.937.19-4.119-.713-.518-.396-.473-1.244-1.03-1.584-.679-.415-2.059.317-2.376.238-.317-.079-2.9-1.606-2.851-.634.181 3.658-.317 10.138-.317 10.138" fill="#a0823f"/></g><g fill="none" stroke="#dd9800"><path d="m12.147 32.874c.504-.907.907-1.914 2.116-2.821.504.168 1.01.336 1.511.504.403.302.806.604 1.209.907.638-.101 1.276-.201 1.914-.302.672.134 1.343.269 2.01.403.537-.034 1.075-.067 1.612-.101.437.067.873.134 1.31.201.47.235.94.47 1.41.705.47-.168.94-.336 1.41-.504.567-.739 1.757.285 2.216.302.604 0 2.116-.403 2.116-.403 1.041-.034 1.276.034 2.317 0 0 0 .705.604 1.612.604.907 0 2.821.101 2.821.101 0 0 1.612.403 2.519.604.907.201 2.72-.403 2.72-.403 0 0 2.216.101 2.72.101.504 0 1.511-.604 1.511-.604.604.235 1.209.47 1.813.705.437-.034.873-.067 1.31-.101 0 0 1.511.504 1.914.403.403-.101 3.224-.201 3.224-.201 1.041.134 2.082.269 3.123.403 1.142-.067 2.284-.134 3.425-.201 1.209 0 2.418 0 3.627 0 0 0 1.813-.907 2.216-.604.403.302 2.418.806 3.123.907.705.101 2.317-.201 2.317-.201 0 0 2.821.604 3.425.604.604 0 1.914-.504 2.418-.403.504.101 3.929-.201 3.929-.201.235.134.47.269.705.403"/><path d="m14.06 29.952c0-.772-.329-1.618 0-2.317.278-.59.967-1.01 1.612-1.108.405-.062.626.555 1.01.705.576.226 1.222.218 1.813.403.488.153.899.587 1.41.604.531.018.982-.552 1.511-.504.331.03.373.705.705.705.496 0 .823-.802 1.31-.705.559.112.652 1.09 1.209 1.209.561.12 1.051-.482 1.612-.604.526-.115 1.087-.222 1.612-.101.399.092.598.723 1.01.705.512-.022.797-.806 1.31-.806.3 0 .103.792.403.806.617.029 1.097-.656 1.713-.705.316-.025.496.571.806.504.592-.129.908-.953 1.511-1.01.356-.032.362.406.705.504.457.13.939.042 1.41.101.149.019.051.403.201.403.489 0 .941-.54 1.41-.403.479.14.512 1.044 1.01 1.108.508.066.799-.855 1.31-.806.428.041.385.92.806 1.01.551.115 1.051-.545 1.612-.504.437.032.671.684 1.108.705.391.019.616-.604 1.01-.604.701 0 1.315.566 2.01.604.553.031 1.067-.504 1.612-.403.469.087.631.886 1.108.907.484.021.725-.806 1.209-.806.38 0 .427.838.806.806.631-.053.979-.986 1.612-1.01.559-.019.865.783 1.41.907.293.067.513-.471.806-.403.281.065.215.705.504.705.556 0 .956-.687 1.511-.705.574-.018 1.038.604 1.612.604.262 0 .243-.631.504-.604.568.057.944.738 1.511.806.373.045.633-.479 1.01-.504.215-.014.289.414.504.403.53-.027.981-.54 1.511-.504.524.036.886.674 1.41.705.691.041 1.329-.595 2.01-.504.448.06.557.946 1.01.907.57-.05.749-.996 1.31-1.108.584-.117 1.118.504 1.713.504.595 0 1.125-.408 1.713-.504.664-.108 1.347-.178 2.01-.101.241.028.366.445.604.403.431-.076.672-.663 1.108-.705.682-.066 1.345.258 2.01.403.573.124 1.215.092 1.713.403.371.232.314.912.705 1.108.451.225 1.01 0 1.511 0"/><path d="m11.995 32.831c0 0 1.154 1.575 1.98 1.505.54-.046.567-1.198 1.109-1.188.524.01.547.983 1.03 1.188.462.197 1.047-.285 1.505-.079.308.138.321.663.634.792.442.183.962-.276 1.426-.158.405.102.614.671 1.03.713.4.04.71-.526 1.109-.475.43.054.598.756 1.03.792.506.043.841-.757 1.346-.713.3.026.419.489.713.554.581.129 1.166-.546 1.743-.396.344.089.44.665.792.713.468.063.804-.724 1.267-.634.588.114.59 1.346 1.188 1.346.599 0 .591-1.312 1.188-1.346.709-.041.877 1.359 1.584 1.426.861.081 1.357-1.434 2.218-1.346.502.051.605 1 1.109 1.03.49.028.698-.909 1.188-.871.372.028.426.72.792.792.337.067.61-.437.95-.396.75.091 1.07 1.418 1.822 1.346.465-.044.488-.968.95-1.03.247-.033.385.376.634.396.543.044.994-.822 1.505-.634.166.061.075.404.238.475.528.232 1.136-.707 1.663-.475.27.119.129.667.396.792.418.196.889-.37 1.346-.317.293.034.497.382.792.396.735.035 1.385-1.086 2.059-.792.261.114.064.661.317.792.506.262 1.105-.512 1.663-.396.258.054.379.404.634.475.511.143 1.073-.301 1.584-.158.254.071.373.431.634.475.519.088.987-.568 1.505-.475.296.053.415.511.713.554.505.074.924-.647 1.426-.554.386.072.489.703.871.792.561.131 1.096-.371 1.663-.475.599-.111 1.257-.389 1.822-.158.225.092.239.494.475.554.575.146 1.07-.632 1.663-.634.451-.001.817.51 1.267.475.483-.037.783-.701 1.267-.713.236-.006.399.287.634.317.617.077 1.239-.613 1.822-.396.371.138.334.835.713.95.535.163 1.036-.442 1.584-.554.778-.159 1.585-.09 2.376-.158.741-.064 1.822-.396 2.218-.238.396.158.59.488.95.554.474.087.961-.364 1.426-.238.597.162.808 1.165 1.426 1.188.454.017.663-.707 1.109-.792.321-.061.95.238.95.238"/><path d="m11.362 34.653l.871 2.218 1.505-.396 2.059 1.109h2.455l2.851.792 1.98.475h2.139l2.139.634 2.059-.079 2.376.317 2.455-.079 1.426.396 2.455.158 1.822.079 1.98.079 2.059.158 2.376-.238 1.98.396 2.376-.158 2.139.396 2.139-.079 2.376.079 2.139.238 1.03.158 1.584-.396 1.743.079 2.455.317c0 0 .158-.554.634-.475.475.079 1.98.238 1.98.238h1.822l1.743.396c0 0 1.267-.238 1.584-.158.317.079 1.743-.079 1.743-.079l1.98-.158 3.089.158h1.346"/><path d="m12.312 36.871c0 0-.023 2.536.871 3.168.605.428 1.477-.193 2.218-.158.481.023.95.158 1.426.238.792.132 1.649.056 2.376.396.441.206.713.871 1.109.95.396.079.579-.197.871-.158.609.081 1.061.673 1.663.792.467.092.95-.158 1.426-.079.475.079 1.692.138 2.535.238.742.088 1.478.218 2.218.317.844.113 1.687.24 2.535.317.948.085 1.9.132 2.851.158.475.013 1.109 0 1.426 0 .317 0 1.471.354 2.218.475.708.115 1.422.213 2.139.238.634.022 1.267-.08 1.901-.079.581.001 1.165.013 1.743.079.72.083 1.414.376 2.139.396.825.023 1.632-.264 2.455-.317.606-.039 1.248-.198 1.822 0 .444.154.64.842 1.109.871.615.039.969-.917 1.584-.95.377-.02.656.419 1.03.475.395.06.789-.132 1.188-.158.501-.033 1 .007 1.505 0 .951-.013 1.915-.246 2.851-.079.42.075.771.388 1.188.475.776.163 1.584.053 2.376.079.792.026 1.584.079 2.376.079.792 0 1.612.132 2.376-.079.262-.073.443-.362.713-.396.623-.079 1.203.368 1.822.475.601.104 1.219.066 1.822.158.722.111 2.139.475 2.139.475 0 0 .396-.792.713-.713.317.079 1.361.355 2.059.396.714.041 1.431-.058 2.139-.158.508-.072 1.012-.177 1.505-.317.378-.107 1.109-.396 1.109-.396"/><path d="m16.906 26.416c0 0 1.298-.027 1.901-.238.671-.234 1.111-1.095 1.822-1.109.815-.016 1.325 1.239 2.139 1.188.49-.031.706-.779 1.188-.871.723-.139 1.418.708 2.139.554.331-.071.465-.548.792-.634.932-.243 1.889.437 2.851.475.927.037 1.868-.029 2.772-.238.358-.083.668-.329 1.03-.396.986-.183 2.01-.062 3.01 0 .85.053 1.695.176 2.535.317.878.148 1.728.462 2.614.554.683.072 1.375-.057 2.059 0 .64.053 1.265.226 1.901.317.658.094 1.319.165 1.98.238.527.058 1.054.141 1.584.158.792.026 1.585-.124 2.376-.079.719.041 1.663.317 2.139.317.475 0 1.265.153 1.901.158.794.007 1.582-.15 2.376-.158.581-.006 1.161.058 1.743.079.95.035 1.902.025 2.851.079.609.035 1.212.162 1.822.158.796-.005 1.58-.242 2.376-.238.478.003 1.03.079 1.426.158.396.079 1.372.076 2.059.079.872.003 1.743-.114 2.614-.079 1.194.048 2.371.33 3.564.396.764.042 1.536-.084 2.297 0 .726.08 1.576.009 2.139.475.31.257.261.769.475 1.109.15.238.378.416.554.634.083.103.238.317.238.317"/><path d="m11.52 35.05c0 0-1.999 1.01-2.772.475-.777-.534.321-2.423-.554-2.772-.809-.323-1.276 1.628-2.139 1.505-.502-.071-.757-.719-.95-1.188-.283-.687-.704-1.639-.238-2.218.467-.579 1.673.269 2.218-.238.649-.603-.241-2.093.475-2.614.797-.579 2.648-.548 2.931.396.231.771-1.718.786-1.822 1.584-.103.792.871 2.059 1.346 1.98.475-.079 1.029-.836 1.267-1.426.238-.588-.185-1.324.079-1.901.241-.526.744-.941 1.267-1.188.554-.262 1.362-.642 1.822-.238.04.035 0 .158 0 .158"/><path d="m12.233 36.95c0 0-1.89 1.124-2.851.871-.704-.185-.79-1.725-1.505-1.584-.861.17-1.686 1.976-.95 2.455.031.02.079-.079.079-.079"/></g></g></svg>
|
|
|
|
|
|
//* image:water *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="51.31" height="58.01"><g transform="translate(-174.21-613.25)" stroke="#000"><g fill="#f2feff"><path d="m225 622.36c-.366 4.161-5.912 4.08-7.243 8.04-2.329 6.93 2.989 7.442 3.311 18.497.236 8.114.271 14.87-4.995 19.243-3.855 3.202-9.566 2.68-14.571 2.435-5.6-.275-8.934.146-12.243-3.175-5.882-5.903-5.728-9.06-4.401-24.785.265-3.134 4.355-7.117 4.141-10.254-.177-2.597-3.945-3.182-3.927-5.785.043-6.146 5.108-9.474 10.819-11.746 5.917-2.354 12.5-.225 18.785.819 4.556.757 10.696 2.46 10.322 6.712z"/><path d="m186.29 623.33c-4.063-2.391-10.11 4.471-11.288 9.03-1.217 4.698 1.539 9.817 4 14 .956 1.625 2.753 3.646 4.537 3.034 2.542-.872 2.01-4.01 1.322-6.605-.428-1.611-2.434-1.727-2.785-3.356-.648-3-2.041-9.275.927-10.07 3.466-.933 5.38-4.803 3.288-6.03z"/></g><path d="m187.71 639.58c0 0-3.742 15.05-.356 22.576 2.033 4.519 6.327 5.979 11.209 6.825 2.956.512 13.639-.14 16.191-1.717 5.706-3.527 4.599-20.898 4.599-20.898" fill="#e6fdff"/><path d="m188 638.36c2.344-4.528 9.91-2.693 15-3 4.338-.262 8.143-1.413 11.605 1.215 3.107 2.359 5.881 7.106 4.537 10.249-1.724 4.03-7.757 2.493-12.141 2.537-5.04.051-10.962 1.023-15-2-2.628-1.967-5.509-6.084-4-9z" fill="#c9fbff"/><path d="m194.6 617.12c-1.946.741-2.828 1.315-4.615 2.469-1.212.782-1.171 2.853 0 3.542 2.23 1.312 6.932 2.445 10.948 3.01 4.536.632 13.09.215 13.739 0 .644-.215 6.551-.565 7.728-2.791.495-.937.495-2.219-.215-3.01-2.539-2.815-11.377-3.542-12.02-3.649-.644-.107-7.557-2.134-11.27-.859-.578.199-3.722 1.07-4.293 1.288z" fill="#f2feff"/></g></svg>
|
|
|
|
|
|
//* image:beef *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width='103.25' height='68.26'><g transform="translate(-242.71-315.86)" stroke="#000"><path d="m244.24 321.12c-2.841 9.958.95 23.21 2 31 .736 5.462 16.795 8.468 25.5 12 10.452 4.241 21.306 7.414 32 11 8.645 2.899 16.883 8.388 26 8.5 5.22.064 14.94-2.077 15-4.5.073-2.942 1.861-15.06-.5-22-1.996-5.87-6.582-10.65-11-15-4.515-4.445-9.343-9.509-15.5-11-4.582-1.11-10.905 1.621-15.338 2-6.476.553-12.139-4.69-18-7.5-5.649-2.709-8.997-7.886-15.16-9-4.639-.838-9.408.603-14.12.662-2.853.035-5.77-.817-8.378.338-1.311.58-2.107 2.121-2.5 3.5z" fill="#fdd3c6"/><path d="m244.24 321.12c-2.841 9.958 6.842 12.64 12.826 17.741 3.465 2.953 16.917 11.02 24.77 16.379 9.318 6.356 15.224 8.995 25.918 12.581 8.645 2.899 18.951 3.401 28.07 3.513 5.22.064 7.623-4.454 8.188-6.811.559-2.334 2.591-.458.23-7.402-1.996-5.87-6.582-10.65-11-15-4.515-4.445-9.343-9.509-15.5-11-4.582-1.11-10.905 1.621-15.338 2-6.476.553-12.139-4.69-18-7.5-5.649-2.709-8.997-7.886-15.16-9-4.639-.838-9.408.603-14.12.662-2.853.035-5.77-.817-8.378.338-1.311.58-2.107 2.121-2.5 3.5z" fill="#feece7"/><g fill="#fc6030"><path d="m251.81 324.8c.888 2.278 2.897 3.993 4.744 5.596 7.02 6.089 15.923 9.604 23.599 14.841 2.707 1.847 4.704 5.148 7.907 5.839 2.27.49 6.326-1.338 6.812-1.46.487-.122 3.807-3.365 3.041-5.231-.942-2.293-6.691-1.825-7.177-1.946-.487-.122-7.542-3.041-8.394-3.771-.852-.73-12.272-8.359-12.773-8.394-1.749-.122-10.1-7.907-10.583-8.03-.487-.122-5.552-2.188-7.299-.487-.727.708-.247 2.096.122 3.041z"/><path d="m264.46 320.78c-1.081.758-1.164 1.908-.487 3.041 2.817 4.711 10.826 2.881 15.449 5.839 2.127 1.361 3.02 4.179 5.109 5.596 2.188 1.483 4.891 2.03 7.42 2.798 2.908.883 6.461.228 8.88 2.068 1.213.923.71 4.38 2.19 4.01 2.638-.652 1.957-6.147.122-8.15-2.636-2.878-8.06.616-11.678-.852-4.267-1.731-10.1-8.515-10.583-8.88-.487-.365-6.817-3.437-10.462-4.501-1.933-.564-4.313-2.129-5.961-.973z"/><path d="m308.25 335.5c-1.308 1.61-1.291 5.135.487 6.204 2.615 1.572 5.355-3.924 8.394-3.649 4.57.413 9.511 3.498 11.435 7.664.89 1.927.889 4.953-.73 6.326-1.889 1.602-5.549-1.987-7.42-.365-.985.854-.105 2.771.73 3.771 3.939 4.717 10.67 2.207 17.274 1.703 5.687-.434-8.637-14.476-9.123-14.476-.487 0-7.654-7.142-12.53-8.272-2.788-.646-6.711-1.126-8.515 1.095z"/><path d="m299.98 353.63c-2.239 1.081-3.566 4.381-3.041 6.812 1.018 4.717 4.613 2.256 11.435 5.717 5.113 2.594 17.76 2.92 18.247 2.92.487 0 8.05-.33 9.853-3.893.816-1.616-.973-3.893-1.46-3.771-.487.122-7.144.502-10.583-.365-3.566-.899-6.421-8.699-9.123-6.204-1.988 1.835 3.522 4.395 4.01 7.06.44 2.38 1.131 4.681-.852 4.866-3.782.353-10.638-1.552-12.286-5.961-.997-2.667 3.988-2.279 2.798-4.866-1.295-2.814-6.212-3.658-9-2.311z"/><path d="m315.55 344.51c-.892 1.422 1.393 3.696 3.041 4.01 1.625.314 4.54-.924 4.258-2.555-.423-2.445-5.981-3.562-7.299-1.46z"/><path d="m307.28 345.11c-1.591.716-3.285 4.615-1.581 4.987 3.329.727 5.965 2.193 8.03.365.913-.808.82-1.433.122-2.433-1.372-1.965-4.384-3.903-6.569-2.92z"/></g></g></svg>
|
|
|
|
|
|
//* image:cake *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="70" height="70" id="svg2"> <g transform="matrix(0.97241808,0,0,0.99268369,-0.0620926,0.19314078)" id="g3965"> <path d="m 69.867924,62.669811 a 34.339622,7.9905663 0 1 1 -68.6792453,0 34.339622,7.9905663 0 1 1 68.6792453,0 z" transform="matrix(1.0323519,0,0,1.5357271,-0.62110627,-38.724865)" style="fill:#ffcc00;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.85239625;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> <path d="m 65.905661,55.405659 a 30.377359,9.179245 0 1 1 -60.7547192,0 30.377359,9.179245 0 1 1 60.7547192,0 z" transform="matrix(0.99905504,0,0,1.119175,0.56187465,-7.3293823)" style="fill:#552200;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> <path d="M 5.4150944,54.415094 5.1509434,38.169811 66.433962,37.641509 66.830189,54.150943 6.0754717,54.811321" style="fill:#552200;fill-opacity:1;stroke:none" /> <path d="m 4.754717,46.358491 c -1.7975519,1.221571 -1.6018439,4.454692 -0.7924528,6.471698 0.233027,0.580704 0.8304381,1.124279 1.4528301,1.188679 1.2339531,0.12768 2.0712363,-1.560643 3.3018868,-1.716981 1.1653716,-0.148045 2.3837079,0.26617 3.4339619,0.792453 1.340552,0.671752 2.563081,1.685048 3.433963,2.90566 0.493838,0.692154 0.142638,2.043289 0.924528,2.377358 1.270601,0.542876 2.461627,-1.394697 3.830189,-1.584905 2.634106,-0.366098 5.579561,-0.329933 7.924528,0.924528 1.018966,0.545105 1.207684,2.132768 2.245283,2.64151 0.870544,0.426833 1.990182,0.451346 2.90566,0.132075 1.708915,-0.595981 2.389982,-2.957147 4.09434,-3.566038 1.36877,-0.489001 3.017891,-0.429571 4.358491,0.132076 1.292381,0.541445 1.731036,2.399746 3.037735,2.90566 1.683774,0.651907 3.667209,0.320662 5.415095,-0.132075 1.010342,-0.261698 2.082633,-0.670615 2.773585,-1.452831 0.996096,-1.127664 0.298824,-3.445499 1.584905,-4.226415 1.250916,-0.759563 3.830189,0.396227 4.358491,0.528302 0.528302,0.132076 1.283302,-1.864798 2.245283,-2.377358 1.1817,-0.62963 2.74265,-0.107756 3.962264,-0.660378 0.569937,-0.258246 1.131902,-0.651534 1.45283,-1.188679 0.82812,-1.386043 1.046296,-3.144726 0.924529,-4.754717 -0.04936,-0.652617 -0.04921,-1.614911 -0.660378,-1.849056 -3.973365,-1.522247 -7.234634,4.602193 -11.226415,6.075471 -5.322179,1.964298 -10.983719,3.14955 -16.641509,3.566038 -4.795652,0.353023 -13.471698,-0.924528 -14.396227,-0.924528 -0.924528,0 -7.536896,-1.093372 -11.094339,-2.377359 C 11.547797,49.446616 9.8315732,47.938145 7.7924528,47.150943 6.8162084,46.774064 5.6202385,45.770304 4.754717,46.358491 z" style="fill:#984f46;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <path d="m 7.5283019,27.207547 c -1.1182438,0.993091 -2.6359934,1.6986 -3.3018868,3.037736 -1.0240085,2.059319 -2.06117,5.043872 -0.6603774,6.867925 0.6524284,0.849565 2.6415095,0.132075 3.1698114,0.528301 0.5283018,0.396227 2.1132075,1.981133 1.981132,2.509434 -0.1320754,0.528302 -0.7869434,3.217265 0,4.490566 0.3105281,0.502445 0.9942463,0.792453 1.5849059,0.792453 0.689102,0 1.378848,-0.420775 1.849056,-0.924528 0.781053,-0.836773 0.660378,-3.169811 1.320755,-3.169811 0.660377,0 2.676879,0.95232 3.566038,1.981132 1.138839,1.317707 0.924528,4.490566 1.849056,4.886792 0.924529,0.396227 1.108983,0.211773 1.452831,-0.132075 0.687695,-0.687695 -0.33018,-2.135843 0.264151,-2.905661 1.029763,-1.333819 3.070502,-1.663081 4.754717,-1.716981 1.420406,-0.04546 2.970584,0.31874 4.094339,1.188679 1.295576,1.002952 1.716981,3.698114 2.509434,4.226416 0.792453,0.528301 2.432266,2.554782 3.962264,2.377358 2.195769,-0.254628 3.248471,-3.004784 4.754717,-4.622641 0.745164,-0.80038 1.020645,-2.462696 2.113208,-2.509434 1.928326,-0.08249 2.225957,3.610193 4.094339,4.094339 0.620522,0.160793 1.329038,-0.153493 1.849057,-0.528302 0.822223,-0.592624 0.988463,-1.804796 1.716981,-2.509434 0.825195,-0.798147 1.849057,-1.849056 2.905661,-1.849056 1.056603,0 1.584905,0.132075 2.245283,0.396226 0.660377,0.264151 2.453243,1.699635 3.830188,1.584906 0.827797,-0.06897 1.672346,-0.616734 2.113208,-1.320755 0.657982,-1.050744 -0.352591,-2.710046 0.396226,-3.698113 0.715992,-0.944755 2.773585,-1.320755 3.301887,-1.320755 0.528302,0 1.349102,-0.388622 1.716981,-0.924528 1.582308,-2.305021 2.113665,-5.732427 1.056604,-8.320755 -0.912448,-2.234228 -3.527559,-3.397597 -5.679245,-4.490566 -2.933117,-1.489905 -6.32491,-1.815799 -9.509434,-2.641509 -3.638361,-0.943385 -7.232499,-2.176217 -10.962264,-2.64151 -3.713612,-0.463278 -7.490252,-0.347989 -11.226416,-0.132075 -3.810651,0.220218 -7.616872,0.697944 -11.35849,1.45283 -2.41864,0.48797 -4.954783,0.820387 -7.132076,1.981132 -1.790862,0.954734 -3.1051958,2.614649 -4.6226411,3.962264 z" style="fill:#984f46;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <g id="g3854"> <g id="g3808"> <path d="m 7.5283019,19.150943 c 2.1255378,-0.132331 4.7140711,-2.168317 6.3396231,-0.792452 0.807199,0.683212 0.127675,2.1123 0.132075,3.169811 0.0055,1.321477 -0.226737,2.644171 -0.132075,3.962264 0.0897,1.248987 0.549883,2.450793 0.660377,3.698113 0.04662,0.526241 0.29447,1.146283 0,1.584906 -0.58329,0.868829 -1.891594,0.930298 -2.90566,1.188679 C 10.849998,32.159131 9.8820592,32.70626 9.245283,32.226415 7.5689917,30.963241 8.6196282,28.073094 8.1886792,26.018868 8.0023329,25.130602 7.8897823,24.209868 7.5283019,23.377358 7.1732579,22.559671 6.2707732,22.00186 6.0754717,21.132075 5.9295125,20.482039 5.8383681,19.5898 6.3396226,19.150943 c 0.2981145,-0.261004 0.7932185,0.02462 1.1886793,0 z" style="fill:#2a7fff;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <path d="m 7.7924528,20.603774 c 2.1132076,3.301886 1.8490566,2.509434 2.2452832,3.830188 0.396226,1.320755 0.792453,5.679246 0.792453,5.679246" style="fill:#87aade;stroke:#70a7fa;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> </g> <g id="g3834"> <path d="m 9.3773585,7.6603774 c 0,0 3.0606885,4.8997566 4.6226415,7.5283016 0.449798,0.756946 -1.262625,1.357322 -2.113208,1.584906 C 10.473058,17.151847 8.4618837,17.372293 7.5283019,16.245283 6.6838878,15.225915 7.5315104,13.58073 7.7924528,12.283019 8.113569,10.686053 9.3773585,7.6603774 9.3773585,7.6603774 z" style="fill:#ff7f2a;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <path d="m 9.4979709,10.478876 c 0,0 1.6569191,3.182228 2.5024901,4.88938 0.2435,0.491612 -0.683528,0.881536 -1.143995,1.029344 -0.765332,0.245668 -1.8540911,0.388841 -2.3594901,-0.343115 -0.457128,-0.662045 0.0017,-1.730538 0.142999,-2.573358 0.173838,-1.037176 0.857996,-3.002251 0.857996,-3.002251 z" style="fill:#ffff00;stroke:none" /> </g> <path d="M 10.698113,17.830189 C 9.6415094,13.603774 9.6415094,13.603774 9.6415094,13.603774" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> </g> <g transform="translate(15.043242,5.9794972)" id="g3854-5"> <g id="g3808-6"> <path d="m 7.5283019,19.150943 c 2.1255378,-0.132331 4.7140711,-2.168317 6.3396231,-0.792452 0.807199,0.683212 0.127675,2.1123 0.132075,3.169811 0.0055,1.321477 -0.226737,2.644171 -0.132075,3.962264 0.0897,1.248987 0.549883,2.450793 0.660377,3.698113 0.04662,0.526241 0.29447,1.146283 0,1.584906 -0.58329,0.868829 -1.891594,0.930298 -2.90566,1.188679 C 10.849998,32.159131 9.8820592,32.70626 9.245283,32.226415 7.5689917,30.963241 8.6196282,28.073094 8.1886792,26.018868 8.0023329,25.130602 7.8897823,24.209868 7.5283019,23.377358 7.1732579,22.559671 6.2707732,22.00186 6.0754717,21.132075 5.9295125,20.482039 5.8383681,19.5898 6.3396226,19.150943 c 0.2981145,-0.261004 0.7932185,0.02462 1.1886793,0 z" style="fill:#2a7fff;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <path d="m 7.7924528,20.603774 c 2.1132076,3.301886 1.8490566,2.509434 2.2452832,3.830188 0.396226,1.320755 0.792453,5.679246 0.792453,5.679246" style="fill:#87aade;stroke:#70a7fa;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> </g> <g id="g3834-4"> <path d="m 9.3773585,7.6603774 c 0,0 3.0606885,4.8997566 4.6226415,7.5283016 0.449798,0.756946 -1.262625,1.357322 -2.113208,1.584906 C 10.473058,17.151847 8.4618837,17.372293 7.5283019,16.245283 6.6838878,15.225915 7.5315104,13.58073 7.7924528,12.283019 8.113569,10.686053 9.3773585,7.6603774 9.3773585,7.6603774 z" style="fill:#ff7f2a;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <path d="m 9.4979709,10.478876 c 0,0 1.6569191,3.182228 2.5024901,4.88938 0.2435,0.491612 -0.683528,0.881536 -1.143995,1.029344 -0.765332,0.245668 -1.8540911,0.388841 -2.3594901,-0.343115 -0.457128,-0.662045 0.0017,-1.730538 0.142999,-2.573358 0.173838,-1.037176 0.857996,-3.002251 0.857996,-3.002251 z" style="fill:#ffff00;stroke:none" /> </g> <path d="M 10.698113,17.830189 C 9.6415094,13.603774 9.6415094,13.603774 9.6415094,13.603774" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> </g> <g transform="translate(23.892297,-7.3601254)" id="g3854-8"> <g id="g3808-1"> <path d="m 7.5283019,19.150943 c 2.1255378,-0.132331 4.7140711,-2.168317 6.3396231,-0.792452 0.807199,0.683212 0.127675,2.1123 0.132075,3.169811 0.0055,1.321477 -0.226737,2.644171 -0.132075,3.962264 0.0897,1.248987 0.549883,2.450793 0.660377,3.698113 0.04662,0.526241 0.29447,1.146283 0,1.584906 -0.58329,0.868829 -1.891594,0.930298 -2.90566,1.188679 C 10.849998,32.159131 9.8820592,32.70626 9.245283,32.226415 7.5689917,30.963241 8.6196282,28.073094 8.1886792,26.018868 8.0023329,25.130602 7.8897823,24.209868 7.5283019,23.377358 7.1732579,22.559671 6.2707732,22.00186 6.0754717,21.132075 5.9295125,20.482039 5.8383681,19.5898 6.3396226,19.150943 c 0.2981145,-0.261004 0.7932185,0.02462 1.1886793,0 z" style="fill:#2a7fff;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <path d="m 7.7924528,20.603774 c 2.1132076,3.301886 1.8490566,2.509434 2.2452832,3.830188 0.396226,1.320755 0.792453,5.679246 0.792453,5.679246" style="fill:#87aade;stroke:#70a7fa;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> </g> <g id="g3834-3"> <path d="m 9.3773585,7.6603774 c 0,0 3.0606885,4.8997566 4.6226415,7.5283016 0.449798,0.756946 -1.262625,1.357322 -2.113208,1.584906 C 10.473058,17.151847 8.4618837,17.372293 7.5283019,16.245283 6.6838878,15.225915 7.5315104,13.58073 7.7924528,12.283019 8.113569,10.686053 9.3773585,7.6603774 9.3773585,7.6603774 z" style="fill:#ff7f2a;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <path d="m 9.4979709,10.478876 c 0,0 1.6569191,3.182228 2.5024901,4.88938 0.2435,0.491612 -0.683528,0.881536 -1.143995,1.029344 -0.765332,0.245668 -1.8540911,0.388841 -2.3594901,-0.343115 -0.457128,-0.662045 0.0017,-1.730538 0.142999,-2.573358 0.173838,-1.037176 0.857996,-3.002251 0.857996,-3.002251 z" style="fill:#ffff00;stroke:none" /> </g> <path d="M 10.698113,17.830189 C 9.6415094,13.603774 9.6415094,13.603774 9.6415094,13.603774" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> </g> <g transform="translate(34.722486,5.1870444)" id="g3854-2"> <g id="g3808-15"> <path d="m 7.5283019,19.150943 c 2.1255378,-0.132331 4.7140711,-2.168317 6.3396231,-0.792452 0.807199,0.683212 0.127675,2.1123 0.132075,3.169811 0.0055,1.321477 -0.226737,2.644171 -0.132075,3.962264 0.0897,1.248987 0.549883,2.450793 0.660377,3.698113 0.04662,0.526241 0.29447,1.146283 0,1.584906 -0.58329,0.868829 -1.891594,0.930298 -2.90566,1.188679 C 10.849998,32.159131 9.8820592,32.70626 9.245283,32.226415 7.5689917,30.963241 8.6196282,28.073094 8.1886792,26.018868 8.0023329,25.130602 7.8897823,24.209868 7.5283019,23.377358 7.1732579,22.559671 6.2707732,22.00186 6.0754717,21.132075 5.9295125,20.482039 5.8383681,19.5898 6.3396226,19.150943 c 0.2981145,-0.261004 0.7932185,0.02462 1.1886793,0 z" style="fill:#2a7fff;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <path d="m 7.7924528,20.603774 c 2.1132076,3.301886 1.8490566,2.509434 2.2452832,3.830188 0.396226,1.320755 0.792453,5.679246 0.792453,5.679246" style="fill:#87aade;stroke:#70a7fa;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> </g> <g id="g3834-46"> <path d="m 9.3773585,7.6603774 c 0,0 3.0606885,4.8997566 4.6226415,7.5283016 0.449798,0.756946 -1.262625,1.357322 -2.113208,1.584906 C 10.473058,17.151847 8.4618837,17.372293 7.5283019,16.245283 6.6838878,15.225915 7.5315104,13.58073 7.7924528,12.283019 8.113569,10.686053 9.3773585,7.6603774 9.3773585,7.6603774 z" style="fill:#ff7f2a;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <path d="m 9.4979709,10.478876 c 0,0 1.6569191,3.182228 2.5024901,4.88938 0.2435,0.491612 -0.683528,0.881536 -1.143995,1.029344 -0.765332,0.245668 -1.8540911,0.388841 -2.3594901,-0.343115 -0.457128,-0.662045 0.0017,-1.730538 0.142999,-2.573358 0.173838,-1.037176 0.857996,-3.002251 0.857996,-3.002251 z" style="fill:#ffff00;stroke:none" /> </g> <path d="M 10.698113,17.830189 C 9.6415094,13.603774 9.6415094,13.603774 9.6415094,13.603774" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> </g> <g transform="translate(47.005506,-0.22804997)" id="g3854-59"> <g id="g3808-4"> <path d="m 7.5283019,19.150943 c 2.1255378,-0.132331 4.7140711,-2.168317 6.3396231,-0.792452 0.807199,0.683212 0.127675,2.1123 0.132075,3.169811 0.0055,1.321477 -0.226737,2.644171 -0.132075,3.962264 0.0897,1.248987 0.549883,2.450793 0.660377,3.698113 0.04662,0.526241 0.29447,1.146283 0,1.584906 -0.58329,0.868829 -1.891594,0.930298 -2.90566,1.188679 C 10.849998,32.159131 9.8820592,32.70626 9.245283,32.226415 7.5689917,30.963241 8.6196282,28.073094 8.1886792,26.018868 8.0023329,25.130602 7.8897823,24.209868 7.5283019,23.377358 7.1732579,22.559671 6.2707732,22.00186 6.0754717,21.132075 5.9295125,20.482039 5.8383681,19.5898 6.3396226,19.150943 c 0.2981145,-0.261004 0.7932185,0.02462 1.1886793,0 z" style="fill:#2a7fff;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <path d="m 7.7924528,20.603774 c 2.1132076,3.301886 1.8490566,2.509434 2.2452832,3.830188 0.396226,1.320755 0.792453,5.679246 0.792453,5.679246" style="fill:#87aade;stroke:#70a7fa;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> </g> <g id="g3834-7"> <path d="m 9.3773585,7.6603774 c 0,0 3.0606885,4.8997566 4.6226415,7.5283016 0.449798,0.756946 -1.262625,1.357322 -2.113208,1.584906 C 10.473058,17.151847 8.4618837,17.372293 7.5283019,16.245283 6.6838878,15.225915 7.5315104,13.58073 7.7924528,12.283019 8.113569,10.686053 9.3773585,7.6603774 9.3773585,7.6603774 z" style="fill:#ff7f2a;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <path d="m 9.4979709,10.478876 c 0,0 1.6569191,3.182228 2.5024901,4.88938 0.2435,0.491612 -0.683528,0.881536 -1.143995,1.029344 -0.765332,0.245668 -1.8540911,0.388841 -2.3594901,-0.343115 -0.457128,-0.662045 0.0017,-1.730538 0.142999,-2.573358 0.173838,-1.037176 0.857996,-3.002251 0.857996,-3.002251 z" style="fill:#ffff00;stroke:none" /> </g> <path d="M 10.698113,17.830189 C 9.6415094,13.603774 9.6415094,13.603774 9.6415094,13.603774" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> </g> </g> </svg>
|
|
|
|
|
|
//* image:potato *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="61.805" height="70"><defs><radialGradient cx="32" cy="38.32" r="25.51" id="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1 0 0 1.09007 0-3.452)"><stop stop-color="#d1d29c"/><stop offset="1" stop-color="#a09049"/></radialGradient></defs><path d="m7.24 47.19c-1.203-7.628 6.354-19.933 12.12-25.07 4.901-4.363 7.688-7.079 14.163-8.634 3.611-.867 7.483-2.972 11.11-2.177 6.476 1.42 7.678 2.551 10.299 9.591 1.422 3.821 2.903 6.768 1.201 10.474-8.193 17.838-12.313 22.473-15.285 24.787-3.148 2.451-8.717 9.131-13.592 9.333-3.588.149-8.43-.613-10.912-1.528-4.702-1.732-6.969-3.24-9.104-16.78z" fill="url(#0)" stroke="#000" stroke-linecap="round" stroke-width="1.236"/><g fill="#7a6d37"><path d="m51.14 15.08c1.178 2.121 1.414 10.842 1.414 10.842-.707 1.65 0 6.364-.707 8.01-1.178 2.985-3.064 2.435-4.242 5.421-1.728 2.278-2.75 8.092-4.478 10.37-2.671 1.336-5.342 2.671-8.01 4.01 0 0-1.65 5.421-1.886 6.128-.236.707-6.599 3.064-6.599 3.064-3.771-.471-7.542-.943-11.313-1.414-.393.157-.786.314-1.178.471 1.1.786 2.2 1.571 3.3 2.357 3.928.314 7.558 1.325 11.785.943 4.321-3.3 8.343-6.599 12.664-9.899 4.824-5.709 7.558-12.314 11.486-18.52.681-2.572 2.456-5.442 3.635-8.113-1.178-4.01-2.158-7.715-3.336-11.722-.943-.55-1.587-1.398-2.53-1.948"/><path d="m37.71 17.441c1.181-.861 3.927 1.185 3.535 2.593-.232.836-1.866.711-2.593.236-.832-.544-1.746-2.243-.943-2.828"/><path d="m27.34 45.49c.212.971 1.977 1.455 2.828.943 1.228-.739 1.97-3.565.707-4.242-1.42-.762-3.879 1.725-3.535 3.3"/><path d="m15.32 51.616c-.607.691.089 2.252.943 2.593 1.142.455 3.45-.429 3.3-1.65-.177-1.438-3.287-2.032-4.242-.943"/></g></svg>
|
|
|
|
|
|
//* image:fish *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100.31" height="44.41" id="svg2"> <g transform="matrix(0.37127,0,0,0.37127,2.1206572,0.97556568)" style="stroke:#000000;stroke-width:2.69300008"> <g style="fill:#85d0d6"> <path d="M 99.56,22.254 87.54,11.194 c 0,0 29.984,-10.87 45.69,-12.02 20.269,-1.489 41.17,0.759 60.6,6.733 9.185,2.825 17.832,7.662 25.49,13.466 3.525,2.671 9.138,9.619 9.138,9.619" id="path12" /> <path d="m 105.33,88.62 -10.581,15.39 c 0,0 13.522,5.78 20.681,7.214 18.424,3.691 37.638,5.795 56.27,3.367 17.746,-2.312 35.618,-7.653 50.98,-16.833 3.602,-2.152 9.138,-8.657 9.138,-8.657 l -0.962,-0.962" id="path14" /> </g> <path d="M 57.23,56.882 C 45.269,54.51 39.333,40.032 28.854,33.792 18.723,27.762 5.875,16.494 -3.85,20.326 c 7.463,9.492 20.02,17.245 25.49,28.857 2.627,5.58 4.153,12.24 2.886,18.276 -2.623,12.49 -8.679,14.363 -20.681,32.22 5.274,6.947 17.483,-3.288 25.01,-7.695 12.04,-7.05 16.756,-25.523 30.3,-28.857 4.533,-1.116 9.282,1.777 13.466,3.848 9.857,4.877 16.869,14.322 26.452,19.719 11.154,6.281 33.19,13.466 35.59,14.428 2.405,0.962 27.434,6.934 41.36,6.252 13.709,-0.671 37.995,-10.1 39.918,-10.1 1.924,0 21.394,-8.752 30.3,-15.871 6.574,-5.255 15.913,-10.833 16.352,-19.238 0.385,-7.371 -7.299,-13.04 -12.505,-18.276 -7.15,-7.189 -23.09,-16.833 -25.01,-17.314 -1.924,-0.481 -41.539,-16.457 -63.48,-18.276 -16.726,-1.387 -34.33,-0.194 -50.02,5.771 -10.434,3.968 -19.19,11.687 -27.414,19.238 -6.622,6.081 -9.807,15.734 -17.314,20.681 -2.795,1.842 -6.335,3.537 -9.619,2.886 z" style="fill:#c6e9ec" /> <path d="m 200.21,68.42 c 0,0 -4.355,2.267 -10.744,5.771 -3.716,2.038 -13.442,14.428 -13.442,14.428 0,0 13.14,-29.784 8.101,-38.475 -3.407,-5.88 -5.185,-14.909 -5.185,-14.909 0,0 10.566,16.582 18.15,19.238 2.543,0.891 1.525,0 1.525,0" style="fill:#85d0d6" /> <g style="fill:#0c2325"> <path d="m 234.7,52.07 c -2.568,2.32 -3.827,6.945 -2.405,10.1 1.12,2.485 4.489,3.812 7.214,3.848 1.792,0.024 4.02,-0.798 4.809,-2.405 1.879,-3.806 1.04,-10.02 -2.405,-12.505 -1.969,-1.418 -5.414,-0.665 -7.214,0.962 z" id="path22" /> <path d="m 227.49,77.56 14.428,6.733 -2.886,1.924 z" id="path24" /> </g> <path d="m 214.5,47.744 c 0,0 -5.087,10.35 -4.809,15.871 0.209,4.163 2.672,7.964 4.809,11.543 1.695,2.837 6.252,7.695 6.252,7.695" style="fill:none;stroke-linecap:round" /> </g> </svg>
|
|
|
|
|
|
//* image:bread *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="61.805" height="70"><path d="m9.225 14.188c7.335-3.977 17.679.625 23.404-.792 7.969-1.534 16.99-.941 20.911 1.828 3.921 2.769 5.862 7.61 5.808 12.907-.058 5.656-1.19 11.815-.858 18.974.349 7.496.7 13.598 1.122 19.821-8.543-.355-29.61-.349-57.14 1.318-1.536-5.691 1.647-17.89.053-29.819-1.596-11.943 1.861-22.615 6.695-24.24z" fill="#ebdfb7" stroke="#8a5a1d" stroke-width="1.5"/></svg>
|
|
|
|
|
|
//* image:banana *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width='93.73' height='70.02'><g transform="matrix(.27155 0 0 .27155-.404.092)"><g stroke="#000"><path d="m12.493 169.43c25.13-12.1 90.58-9.415 121.77-10.656 35.777-1.423 74.28-1.532 103.46-22.279 17.479-12.427 49.569-47.45 57.49-77.03 3.99-14.896-1.629-24.25-5.377-39.21-5.144-20.531 20.524-19.252 30.1-16.541 8.607 2.436-3.585 20.898-2.707 25.445 2.979 15.431 2.488 29.17 6.706 35.85 3.885 6.153 15.281 6.647 17.704 15.622 9.552 35.37-10.408 80.2-30.902 110.57-21.03 31.17-78.24 55.29-123.56 63.16-18.572 3.226-126.94-6.509-147.75-19.934-7.747-4.997-20.848-21.615-29.23-31.26-8.236-9.48-9.02-28.29 2.297-33.737z" fill="#ffe612" stroke-width="5"/><path d="m289.22 18.561c1.408 3.272 11.336.54 14.74-.508 5.888-1.813 16.989-3.622 15.757-9.658-.925-4.531-13.893-5.473-18.299-4.066-5.594 1.785-14.52 8.838-12.199 14.232z"/></g><path d="m301.42 189.35c-28.435 32.894-113.35 64.55-113.35 64.55 0 0 91.47-15.418 115.38-49.813 48.03-69.07 38.884-119.45 38.884-119.45 0 0-16.411 76.36-40.918 104.71" fill="#c3ae00"/><path d="m9.149 173.08c0 0 98.39 23.674 138.76 23.381 34.485-.25 49.24-2.322 79.8-18.299 34.877-18.232 67.955-50.1 78.79-87.93 4.875-17.03-6.608-42.697-6.608-42.697 0 0-28.26 77.895-80.82 99.88-45.16 18.891-95.44 13.721-146.13 14.613-42.837.754-63.791 11.06-63.791 11.06" fill="#ffed59"/><g stroke="#000"><path d="m14.232 183.25c-.55 4.442-2.357 13.09-6.608 11.691-7.863-2.595-5.209-24.05 3.05-24.652 4.469-.324 4.109 8.515 3.558 12.961z"/><path d="m12.493 169.43c25.13-12.1 90.58-9.415 121.77-10.656 35.777-1.423 74.28-1.532 103.46-22.279 17.479-12.427 49.569-47.45 57.49-77.03 3.99-14.896-1.629-24.25-5.377-39.21-5.144-20.531 20.524-19.252 30.1-16.541 8.607 2.436-3.585 20.898-2.707 25.445 2.979 15.431 2.488 29.17 6.706 35.85 3.885 6.153 15.281 6.647 17.704 15.622 9.552 35.37-10.408 80.2-30.902 110.57-21.03 31.17-78.24 55.29-123.56 63.16-18.572 3.226-126.94-6.509-147.75-19.934-7.747-4.997-20.848-21.615-29.23-31.26-8.236-9.48-9.02-28.29 2.297-33.737z" fill="none" stroke-width="5"/></g></g></svg>
|
|
|
|
|
|
//* image:cheese *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="65.16" height="114.81"><g transform="translate(-726.66-342.41)" stroke="#000"><g fill="#f8f338"><path d="m727.58 403.51l-.261 20.541c0 0 2.745.54 3.146 1.656.627 1.746-2.152 5.132-2.152 5.132v25.331l27.649-22.682 34.603-31.29.233-18.465c0 0 .098-6.7-.564-6.7-.662 0-5.404.032-5.96-1.987-.561-2.037 3.146-4.305 4.139-4.801.993-.497 1.6.49 2.564-1.296-.922-4.149.251-15.591.251-15.591"/><path d="m734.77 370.57c-.9 2.884-1.814 15.977-1.49 8.94.048-1.049 2.434.606 3.146-.166 2.62-2.841 3.452-10.8-.331-11.589-1.015-.212-1.016 1.825-1.325 2.815z"/></g><path d="m727.15 415.28c0-.828 1.821-35.596 1.821-35.596 0 0 6.126.497 6.788 0 .662-.497 1.081-9.194.254-9.194-.828 0-4.724-.409-4.558-1.071.166-.662.828-26.49.828-26.49 0 0 22.02 1.159 22.682.828.662-.331 11.639-.547 17.219.828 6.737 1.66 18.874 8.775 18.874 8.775 0 0-11.922 15.683-20.04 23.538-1.23 1.19-4.192-3.789-5.619-2.843-2.485 1.648-.331 8.94-.331 8.94z" fill="#f9fb97"/><g fill="#f8f338"><path d="m736.92 388.12c0 0-4.873 6.235-2.98 8.609 1.904 2.387 7.781-.497 9.106-.993 1.324-.497 3.926-1.373 3.808-2.98-.27-3.673-9.603-5.464-9.603-5.464"/><path d="m749.01 381.34c.497 1.159.291 3.086 1.49 3.477 1.953.636 5.639-1.12 5.298-3.146-.412-2.444-5.719-3.411-7.285-1.49-.266.326.331.773.497 1.159z"/><path d="m753.31 360.31c0 0-1.377 12.458 3.146 14.238 4.615 1.816 11.258-7.947 12.252-8.444.993-.497 2.649-5.96 1.987-6.291-.662-.331-9.603-5.629-10.265-5.629-.662 0-7.947 6.126-7.947 6.126"/></g><g fill="#f9fb97"><path d="m765.23 393.09c-1.524.305-4.139 4.967-2.649 5.464 1.49.497 4.773 1.847 6.457.497 1.218-.977 1.324-4.305.662-4.636-.662-.331-3.642-1.49-4.47-1.325z"/><path d="m742.38 416.77c-.958 3.91-7.45 9.768-6.623 10.1.828.331 6.081 3.868 8.94 2.649 3.542-1.511 6.446-6.59 5.298-10.265-.876-2.804-5.342-5.776-7.781-4.139-.461.309.298 1.117.166 1.656z"/></g></g></svg>
|
|
|
|
|
|
//* image:chicken *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="94.93" height="86.7"><g transform="translate(-233.84-369.36)"><g stroke="#000"><path d="m253.25 408.11c1.6-3.758-.25-12.25-.25-12.25 0 0-8.817 7.253-12.25 11.75-2.647 3.468-7.372 7.284-6.25 11.5 1.183 4.447 7.159 6.927 11.75 7.25 2.904.204 7.351-.663 8-3.5.857-3.745-7.724-4.915-7.5-8.75.172-2.944 5.345-3.287 6.5-6z" fill="#f8a83a"/><path d="m286.25 377.86c1.295-3.358 3.662-8.283 7.25-8 2.581.203 3.6 3.994 4.25 6.5.294 1.132.75 3.5-.25 3.5-1 0-4.01.275-6 .5-1.757.198-3.915 1.908-5.25.75-.818-.71-.39-2.239 0-3.25z" fill="#fce0b8"/><g fill="#f8a83a"><path d="m261.75 397.61c-3.09-2.166-2.716-7.773-1.25-11.25 2.422-5.745 13.25-11 14.75-11.5 1.5-.5 8.835-.803 11 2.25 1.07 1.509-.057 3.785-.75 5.5-1.743 4.311-6.75 10.5-8.25 11.25-1.5.75-11.147 6.801-15.5 3.75z"/><path d="m294.5 429.36c-6.219 5.067-18.5 13-20.25 13-1.75 0-16.351.734-22.75-3.5-3.433-2.272-6.298-6.389-6.5-10.5-.475-9.641 6.822-18.382 12.75-26 6.245-8.03 13.612-16.506 23.25-19.75 7.198-2.423 16.93-3.63 22.75 1.25 4.198 3.519 3.419 10.532 3.75 16 .37 6.109.616 12.717-2 18.25-2.242 4.741-6.934 7.937-11 11.25z"/></g></g><path d="m265.25 400.61c-2.155 2.953-6.318 6.829-4.5 10 2.334 4.072 9.475 2.745 14 1.5 5.223-1.436 8.764-6.374 13-9.75 5.549-4.422 17.657-6.795 16.25-13.75-.831-4.107-7.816-3.512-12-3.75-3.981-.227-8.178.476-11.75 2.25-6.02 2.992-11.03 8.07-15 13.5" fill="#f9bc67"/><g stroke="#000"><g fill="#f8a83a"><path d="m298.25 419.36c-1.125 3.506-2.609 7.689-1 11 1.606 3.306 5.621 6.578 9.25 6 5.501-.876 9.75-12 10.5-13 .75-1 2.702-8.523 1-12.25-.644-1.41-2.22-2.5-3.75-2.75-4.058-.663-8.54 1.182-11.75 3.75-2.187 1.75-3.394 4.583-4.25 7.25z"/><path d="m283.25 434.86c-4.919-.724-9.5-11.5-9.5-11.5 0 0-1.23 21.823 5.5 29 2.06 2.197 5.858 3.089 8.75 2.25 5.492-1.593 11.25-11.5 11.75-12.5.5-1 3.189-7.257 1.25-10-2.02-2.857-6.812-2.897-10.25-2.25-2.953.556-4.527 5.438-7.5 5z"/></g><path d="m316.5 410.11c0 0 1.237-4.258 2.75-5.75 1.699-1.676 4.373-4.082 6.5-3 1.136.578.464 2.508.75 3.75.444 1.93 2.536 4.061 1.5 5.75-1.427 2.327-5.318 2.256-8 1.75-.886-.167-2.25-1.5-2.25-1.5" fill="#fde9cd"/></g></g></svg>
|
|
|
|
|
|
//* image:tamale *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="150" height="110"><g transform="translate(.445-22.05)"><path d="m1.481 86.3c.865-3.483 7.2-2.174 9.63-4.815 1.801-1.957 1.449-5.221 2.963-7.407 2.189-3.161 6.967-4.26 8.519-7.778.598-1.355.2-2.977 0-4.444-.311-2.285-3-4.669-1.852-6.667 3.44-5.966 13.3-3.589 20-5.185 5.653-1.347 11.244-3.243 17.04-3.704 8.875-.705 17.764 1.412 26.667 1.481 3.089.024 6.175-.542 9.259-.37 7.357.41 14.612 1.963 21.852 3.333 6.592 1.247 13.478 1.767 19.63 4.444 3.01 1.312 5.107 4.308 8.148 5.556 1.277.524 3.335-.425 4.074.741 1.026 1.619-.978 3.706-1.481 5.556-.606 2.225-.816 4.606-1.852 6.667-.632 1.258-2.036 2.041-2.593 3.333-1.285 2.983-1.136 6.4-1.481 9.63-.434 4.058-1.111 10.741-.741 12.222.37 1.481 2.855 4.634 1.481 6.296-1.889 2.286-7.407-.37-8.889-.37-1.481 0-11.81 2.096-17.778 2.593-5.784.481-15.556 0-17.407.37-1.852.37-14.993.207-22.22-1.481-3.773-.881-6.878-4.141-10.741-4.444-3.164-.249-2.593 1.852-9.259 2.222-6.667.37-19.872-3.702-29.63-6.296-6.641-1.766-14.08-2.245-19.63-6.296-1.716-1.252-4.216-3.124-3.704-5.185z" fill="#92c46c" stroke="#000"/><path d="m2.593 87.41c1.251-2.307 4.522-2.583 7.04-3.333 12.783-3.811 25.2 4.408 38.519 3.704 4.575-.242 8.757-3.118 13.333-3.333 5.738-.27 11.32 2.029 17.04 2.593 8.117.8 16.364 0 24.444 1.111 8.663 1.191 17.698 2.089 25.556 5.926 2.997 1.463 5.503 3.857 7.778 6.296 1.028 1.102 3.243 2.344 2.593 3.704-2.349 4.912-10.875.611-16.296 1.111-5.322.491-10.59 1.543-15.926 1.852-7.765.45-15.646 1.181-23.333 0-6.908-1.062-13.02-6.02-20-6.296-1.646-.064-3.172.991-4.815 1.111-7.659.561-15.408-.474-22.963-1.852-8.341-1.521-16.347-4.523-24.444-7.04-2.983-.926-5.02-1.417-6.667-4.074-.459-.743-2.268-.714-1.852-1.481" fill="#68bd28"/><g fill="none" stroke="#000"><g stroke-linecap="round" stroke-width="3"><path d="m63.704 102.59l-.741-12.963 5.185-18.15 5.556-9.63 5.926-6.667 8.889-7.04"/><path d="m21.481 67.778c0 0 19.259-6.296 20.741-6.296 1.481 0 22.963-1.111 24.815-.37 1.852.741 26.667 2.222 26.667 2.222l21.11 5.556c0 0 16.296 6.296 17.778 7.04 1.481.741 8.519 4.444 8.519 4.444"/></g><path d="m20.37 85.19l27.407-10 37.778-6.667 6.296-8.148-2.963-2.593-24.815-5.185-28.519-1.852"/><path d="m135.19 55.56l-23.333 1.481-10.741-1.111-14.07.37h-.741"/><path d="m77.04 72.22l20 7.407 21.852 7.778 15.926 10.741"/><path d="m17.778 91.48l15.185 4.444 15.185 1.481h.37"/><path d="m71.852 99.63l19.259 5.185 17.04-.741"/><path d="m80.74 98.15l29.63 4.074 2.222.37-.37 1.111"/></g></g></svg>
|
|
|
|
|
|
//* image:riceandbeans *//
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="105" height="79.03"><g transform="matrix(.51049 0 0 .51049-100.78-324.91)" stroke="#000"><path d="m252.67 680.48c-5.6 3.976-14.341 10.859-14.283 17.726.057 6.734 6.782 12.789 12.94 15.515 13.179 5.833 33.796 9.09 43.2-1.829 9.504-11.04 9.19-19.319-3.148-27.07-11.548-7.252-27.588-12.239-38.707-4.345z" fill="#421c09"/><g fill="#f7e9a3"><path d="m379.32 736.28c-3.474-1.623-8.987-3.996-9.878-2.349-.873 1.615 1.846 6.12 4.714 9.58 6.138 7.404 16.527 17.604 22.929 19.326 6.471 1.741 7.417-.356 1.977-7.828-5.091-6.993-12.845-15.507-19.743-18.729z"/><path d="m325.74 744.02c-3.416 1.741-8.678 4.629-7.927 6.345.737 1.682 5.962 2.308 10.454 2.174 9.614-.287 24.05-2.207 29.34-6.197 5.352-4.03 4.28-6.068-4.957-6.373-8.646-.286-20.13.594-26.91 4.051z"/><path d="m245.24 725.62c-3.668-1.117-9.461-2.69-10.11-.933-.637 1.722 2.69 5.799 6.02 8.82 7.121 6.465 18.843 15.1 25.424 15.901 6.652.811 7.292-1.398.854-8.03-6.03-6.206-14.903-13.541-22.19-15.759z"/><path d="m361.2 755.06c-3.825.26-9.799.849-9.781 2.722.017 1.836 4.576 4.464 8.76 6.105 8.954 3.512 22.98 7.414 29.416 5.825 6.506-1.607 6.319-3.899-2.056-7.808-7.839-3.658-18.743-7.359-26.339-6.843z"/><path d="m311.86 771.78c-3.309 1.937-8.394 5.126-7.544 6.795.833 1.636 6.086 1.958 10.562 1.563 9.581-.845 23.876-3.601 28.93-7.891 5.109-4.337 3.92-6.306-5.319-6.074-8.648.217-20.06 1.762-26.629 5.608z"/><path d="m231.67 755.75c-3.823.292-9.791.931-9.758 2.803.032 1.836 4.613 4.426 8.81 6.03 8.983 3.437 23.04 7.222 29.464 5.579 6.492-1.661 6.286-3.952-2.121-7.79-7.869-3.593-18.804-7.202-26.395-6.623z"/><path d="m256.67 772.41c-3.217 2.086-8.151 5.505-7.225 7.133.907 1.596 6.169 1.677 10.623 1.077 9.532-1.283 23.686-4.691 28.538-9.209 4.905-4.567 3.627-6.479-5.592-5.824-8.628.613-19.957 2.68-26.344 6.822z"/><path d="m273.13 754.28c-2.588 2.829-6.503 7.379-5.198 8.722 1.28 1.317 6.392.071 10.552-1.631 8.902-3.641 21.744-10.5 25.303-16.09 3.598-5.654 1.88-7.183-6.877-4.23-8.197 2.765-18.64 7.615-23.78 13.232z"/><path d="m298.69 754.74c-3.818.351-9.776 1.082-9.714 2.954.061 1.835 4.681 4.354 8.903 5.894 9.04 3.297 23.15 6.864 29.547 5.122 6.466-1.761 6.224-4.049-2.241-7.757-7.924-3.47-18.913-6.91-26.494-6.214z"/><path d="m340.02 776.09c-3.647 1.184-9.297 3.21-8.824 5.02.464 1.777 5.525 3.215 9.983 3.788 9.539 1.225 24.09 1.594 29.949-1.515 5.919-3.143 5.179-5.321-3.895-7.07-8.494-1.639-19.971-2.573-27.21-.223z"/><path d="m289.17 726.36c-3.776.665-9.653 1.885-9.437 3.745.212 1.824 5.02 3.953 9.359 5.14 9.276 2.541 23.637 4.931 29.868 2.667 6.299-2.289 5.869-4.549-2.873-7.545-8.183-2.805-19.419-5.327-26.917-4.01z"/></g><g fill="#421c09"><path d="m326.46 676.53c-5.768 3.727-14.802 10.221-15.04 17.08-.237 6.73 6.217 13.07 12.25 16.07 12.912 6.403 33.366 10.563 43.24.061 9.977-10.616 10.03-18.899-1.962-27.18-11.22-7.75-27.03-13.433-38.48-6.03z"/><path d="m279.72 643.03c-5.889 3.534-15.13 9.724-15.603 16.576-.461 6.719 5.779 13.273 11.71 16.464 12.692 6.828 32.997 11.665 43.21 1.496 10.324-10.279 10.647-18.556-1.059-27.23-10.956-8.118-26.566-14.323-38.26-7.307z"/><path d="m343.39 642.32c-5.219 4.464-13.304 12.11-12.627 18.941.664 6.702 7.907 12.13 14.286 14.286 13.651 4.621 34.478 6.01 42.857-5.714 8.47-11.854 7.411-20.07-5.574-26.673-12.154-6.182-28.579-9.703-38.941-.839z"/><path d="m204.61 673.08c-2.567 6.37-6.208 16.883-2.451 22.632 3.684 5.637 12.614 7.103 19.269 6.072 14.242-2.207 33.36-10.593 35.37-24.864 2.037-14.426-2.697-21.22-17.265-21.08-13.635.131-29.829 4.595-34.926 17.243z"/></g><g fill="#f7e9a3"><path d="m329 719.11c-3.474-1.623-8.987-3.996-9.878-2.349-.873 1.615 1.846 6.12 4.714 9.58 6.138 7.404 16.527 17.604 22.929 19.326 6.471 1.741 7.417-.356 1.977-7.828-5.091-6.993-12.845-15.507-19.743-18.729z"/><path d="m210.69 780.19c-3.416 1.741-8.678 4.629-7.927 6.345.737 1.682 5.962 2.308 10.454 2.174 9.614-.287 24.05-2.207 29.34-6.197 5.352-4.03 4.28-6.068-4.957-6.373-8.646-.286-20.13.594-26.91 4.051z"/><path d="m208.11 640.11c-3.668-1.117-9.461-2.69-10.11-.933-.637 1.722 2.69 5.799 6.02 8.82 7.121 6.465 18.843 15.1 25.424 15.901 6.652.811 7.292-1.398.854-8.03-6.03-6.206-14.903-13.541-22.19-15.759z"/><path d="m211.98 730.09c-3.825.26-9.799.849-9.781 2.722.017 1.836 4.576 4.464 8.76 6.105 8.954 3.512 22.98 7.414 29.416 5.825 6.506-1.607 6.319-3.899-2.056-7.808-7.839-3.658-18.743-7.359-26.339-6.843z"/><path d="m211.79 714.45c-3.309 1.937-8.394 5.126-7.544 6.795.833 1.636 6.086 1.958 10.562 1.563 9.581-.845 23.876-3.601 28.93-7.891 5.109-4.337 3.92-6.306-5.319-6.074-8.648.217-20.06 1.762-26.629 5.608z"/><path d="m244.29 640.88c-3.823.292-9.791.931-9.758 2.803.032 1.836 4.613 4.426 8.81 6.03 8.983 3.437 23.04 7.222 29.464 5.579 6.492-1.661 6.286-3.952-2.121-7.79-7.869-3.593-18.804-7.202-26.395-6.623z"/><path d="m364 697.69c-3.217 2.086-8.151 5.505-7.225 7.133.907 1.596 6.169 1.677 10.623 1.077 9.532-1.283 23.686-4.691 28.538-9.209 4.905-4.567 3.627-6.479-5.592-5.824-8.628.613-19.957 2.68-26.344 6.822z"/><path d="m205.43 762.89c-2.588 2.829-6.503 7.379-5.198 8.722 1.28 1.317 6.392.071 10.552-1.631 8.902-3.641 21.744-10.5 25.303-16.09 3.598-5.654 1.88-7.183-6.877-4.23-8.197 2.765-18.64 7.615-23.78 13.232z"/><path d="m351.47 710.59c-3.818.351-9.776 1.082-9.714 2.954.061 1.835 4.681 4.354 8.903 5.894 9.04 3.297 23.15 6.864 29.547 5.122 6.466-1.761 6.224-4.049-2.241-7.757-7.924-3.47-18.913-6.91-26.494-6.214z"/><path d="m274.12 781.1c-3.647 1.184-9.297 3.21-8.824 5.02.464 1.777 5.525 3.215 9.983 3.788 9.539 1.225 24.09 1.594 29.949-1.515 5.919-3.143 5.179-5.321-3.895-7.07-8.494-1.639-19.971-2.573-27.21-.223z"/><path d="m280.21 706.19c-3.776.665-9.653 1.885-9.437 3.745.212 1.824 5.02 3.953 9.359 5.14 9.276 2.541 23.637 4.931 29.868 2.667 6.299-2.289 5.869-4.549-2.873-7.545-8.183-2.805-19.419-5.327-26.917-4.01z"/></g></g></svg>
|