diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 00000000..a654e89b
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,12 @@
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+indent_style = tab
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[*.{php,css,html,xml,lua,js}]
+indent_style = tab
+indent_size = 4
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 00000000..425c21fe
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,16 @@
+# Set the default behavior, in case people don't have core.autocrlf set.
+* text=auto
+
+# Declare files that will always have LF line endings on checkout.
+*.php text eol=lf
+*.lua text eol=lf
+*.html text eol=lf
+*.css text eol=lf
+*.js text eol=lf
+*.xml text eol=lf
+
+*.sql text eol=crlf
+
+# Denote all files that are truly binary and should not be modified.
+*.png binary
+*.jpg binary
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..e68cae6d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+*.cache.php
+engine/cache/*
+.idea
\ No newline at end of file
diff --git a/.htaccess b/.htaccess
new file mode 100644
index 00000000..51276020
--- /dev/null
+++ b/.htaccess
@@ -0,0 +1,5 @@
+Options +FollowSymLinks
+RewriteEngine On
+RewriteCond %{REQUEST_FILENAME} !-f
+RewriteCond %{REQUEST_FILENAME} !-d
+RewriteRule ^(.*)$ /characterprofile.php?name=$1
\ No newline at end of file
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 00000000..230056fe
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2019 Stefan André Brannfjell
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/Lua/TFS_02/creaturescript firstitems/Installation Instructions.txt b/Lua/TFS_02/creaturescript firstitems/Installation Instructions.txt
new file mode 100644
index 00000000..4b603168
--- /dev/null
+++ b/Lua/TFS_02/creaturescript firstitems/Installation Instructions.txt
@@ -0,0 +1,4 @@
+Step 1: Copy firstitems.lua to /data/creaturescripts/scripts/ folder
+-- Edit firstitems.lua with item IDs you want characters to start with on your server.
+
+Step 2: Restart OT server, and it should work. :)
\ No newline at end of file
diff --git a/Lua/TFS_02/creaturescript firstitems/firstitems.lua b/Lua/TFS_02/creaturescript firstitems/firstitems.lua
new file mode 100644
index 00000000..0c0443ac
--- /dev/null
+++ b/Lua/TFS_02/creaturescript firstitems/firstitems.lua
@@ -0,0 +1,77 @@
+function onLogin(cid)
+ local storage = 30055 -- storage value
+
+ local sorcItems = {
+ 2460, -- Brass helmet
+ 2465, -- Brass armor
+ 2190, -- Wand of vortex
+ 2511, -- Brass shield
+ 2478, -- Brass legs
+ 2643, -- Leather boots
+ 1988, -- Brown backpack
+ 2050 -- torch
+ }
+ local druidItems = {
+ 2460, -- Brass helmet
+ 2465, -- Brass armor
+ 2511, -- Brass shield
+ 2182, -- Snakebite rod
+ 2478, -- Brass legs
+ 2643, -- Leather boots
+ 1988, -- Brown backpack
+ 2050 -- torch
+ }
+ local pallyItems = {
+ 2460, -- Brass helmet
+ 2465, -- Brass armor
+ 2456, -- Bow
+ 2478, -- Brass legs
+ 2643, -- Leather boots
+ 1988, -- Brown backpack
+ }
+ local kinaItems = {
+ 2460, -- Brass helmet
+ 2465, -- Brass armor
+ 2511, -- Brass shield
+ 2412, -- Katana
+ 2478, -- Brass legs
+ 2643, -- Leather boots
+ 1988, -- Brown backpack
+ 2050 -- torch
+ }
+
+ if getPlayerStorageValue(cid, storage) == -1 then
+ setPlayerStorageValue(cid, storage, 1)
+ if getPlayerVocation(cid) == 1 then
+ -- Sorcerer
+ for i = 1, table.getn(sorcItems), 1 do
+ doPlayerAddItem(cid, sorcItems[i], 1, false)
+ end
+
+ elseif getPlayerVocation(cid) == 2 then
+ -- Druid
+ for i = 1, table.getn(druidItems), 1 do
+ doPlayerAddItem(cid, druidItems[i], 1, false)
+ end
+
+ elseif getPlayerVocation(cid) == 3 then
+ -- Paladin
+ for i = 1, table.getn(pallyItems), 1 do
+ doPlayerAddItem(cid, pallyItems[i], 1, false)
+ end
+ -- 8 arrows
+ doPlayerAddItem(cid, 2544, 8, false)
+
+ elseif getPlayerVocation(cid) == 4 then
+ -- Knight
+ for i = 1, table.getn(kinaItems), 1 do
+ doPlayerAddItem(cid, kinaItems[i], 1, false)
+ end
+ end
+
+ -- Common for all
+ doPlayerAddItem(cid, 2674, 5, false) -- 5 apples
+ doPlayerAddItem(cid, 2120, 1, false) -- 1 rope
+ end
+ return true
+end
diff --git a/Lua/TFS_02/talkaction shopsystem/talkaction XML.txt b/Lua/TFS_02/talkaction shopsystem/talkaction XML.txt
new file mode 100644
index 00000000..2fdffee0
--- /dev/null
+++ b/Lua/TFS_02/talkaction shopsystem/talkaction XML.txt
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/Lua/TFS_02/talkaction shopsystem/znoteshop.lua b/Lua/TFS_02/talkaction shopsystem/znoteshop.lua
new file mode 100644
index 00000000..361ff27f
--- /dev/null
+++ b/Lua/TFS_02/talkaction shopsystem/znoteshop.lua
@@ -0,0 +1,103 @@
+-- Znote Shop v1.1 for Znote AAC on TFS 0.2.13+ Mystic Spirit.
+function onSay(cid, words, param)
+ local storage = 54073 -- Make sure to select non-used storage. This is used to prevent SQL load attacks.
+ local cooldown = 15 -- in seconds.
+
+ if getPlayerStorageValue(cid, storage) <= os.time() then
+ setPlayerStorageValue(cid, storage, os.time() + cooldown)
+ local accid = getAccountNumberByPlayerName(getCreatureName(cid))
+
+ local type_desc = {
+ "itemids",
+ "pending premium (skip)",
+ "pending gender change (skip)",
+ "pending character name change (skip)",
+ "Outfit and addons",
+ "Mounts",
+ "Instant house purchase"
+ }
+ print("Player: " .. getCreatureName(cid) .. " triggered !shop talkaction.")
+ -- Create the query
+ local orderQuery = db.storeQuery("SELECT `id`, `type`, `itemid`, `count` FROM `znote_shop_orders` WHERE `account_id` = " .. accid .. ";")
+ local served = false
+
+ -- Detect if we got any results
+ if orderQuery ~= false then
+ -- Fetch order values
+ local q_id = result.getDataInt(orderQuery, "id")
+ local q_type = result.getDataInt(orderQuery, "type")
+ local q_itemid = result.getDataInt(orderQuery, "itemid")
+ local q_count = result.getDataInt(orderQuery, "count")
+
+ local description = "Unknown or custom type"
+ if type_desc[q_type] ~= nil then
+ description = type_desc[q_type]
+ end
+ print("Processing type "..q_type..": ".. description)
+
+ -- ORDER TYPE 1 (Regular item shop products)
+ if q_type == 1 then
+ served = true
+ -- Get weight
+ local playerCap = getPlayerFreeCap(cid)
+ local itemweight = getItemWeight(q_itemid, q_count)
+ if playerCap >= itemweight then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. q_id .. ";")
+ doPlayerAddItem(cid, q_itemid, q_count)
+ doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Congratulations! You have received ".. q_count .." "..getItemName(q_itemid).."(s)!")
+ else
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "Need more CAP!")
+ end
+ end
+ -- ORDER TYPE 5 (Outfit and addon)
+ if q_type == 5 then
+ served = true
+
+ local itemid = q_itemid
+ local outfits = {}
+
+ if itemid > 1000 then
+ local first = math.floor(itemid/1000)
+ table.insert(outfits, first)
+ itemid = itemid - (first * 1000)
+ end
+ table.insert(outfits, itemid)
+
+ for _, outfitId in pairs(outfits) do
+ -- Make sure player don't already have this outfit and addon
+ if not canPlayerWearOutfit(cid, outfitId, q_count) then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. q_id .. ";")
+ doPlayerAddOutfit(cid,outfitId,q_count)
+ doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Congratulations! You have received a new outfit!")
+ else
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "You already have this outfit and addon!")
+ end
+ end
+ end
+
+ -- ORDER TYPE 6 (Mounts)
+ -- Not supported on TFS 0.2
+
+ -- Add custom order types here
+ -- Type 1 is for itemids (Already coded here)
+ -- Type 2 is for premium (Coded on web)
+ -- Type 3 is for gender change (Coded on web)
+ -- Type 4 is for character name change (Coded on web)
+ -- Type 5 is for character outfit and addon (Already coded here)
+ -- Type 6 is for mounts (Not for TFS 0.2)
+ -- Type 7 is for Instant house purchase (Not for TFS 0.2)
+ -- So use type 8+ for custom stuff, like etc packages.
+ -- if q_type == 8 then
+ -- end
+ result.free(orderQuery)
+ if not served then
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You have no orders to process in-game.")
+ end
+ else
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "You have no orders.")
+ end
+ else
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Can only be executed once every "..cooldown.." seconds. Remaining cooldown: ".. getPlayerStorageValue(cid, storage) - os.time())
+ end
+ return false
+end
diff --git a/Lua/TFS_03/creaturescript firstitems/Installation Instructions.txt b/Lua/TFS_03/creaturescript firstitems/Installation Instructions.txt
new file mode 100644
index 00000000..742ac3ae
--- /dev/null
+++ b/Lua/TFS_03/creaturescript firstitems/Installation Instructions.txt
@@ -0,0 +1,10 @@
+Step 1: Copy firstitems.lua to /data/creaturescripts/scripts/ folder
+-- Edit firstitems.lua with item IDs you want characters to start with on your server.
+
+Step 2: Edit the /data/creaturescripts/creaturescripts.XML file
+ - ADD:
+
+Step 3: Edit the /data/creaturescripts/scripts/login.lua file
+ - ADD: registerCreatureEvent(cid, "firstItems")
+
+Step 4: Restart OT server, and it should work. :)
\ No newline at end of file
diff --git a/Lua/TFS_03/creaturescript firstitems/firstitems.lua b/Lua/TFS_03/creaturescript firstitems/firstitems.lua
new file mode 100644
index 00000000..0c0443ac
--- /dev/null
+++ b/Lua/TFS_03/creaturescript firstitems/firstitems.lua
@@ -0,0 +1,77 @@
+function onLogin(cid)
+ local storage = 30055 -- storage value
+
+ local sorcItems = {
+ 2460, -- Brass helmet
+ 2465, -- Brass armor
+ 2190, -- Wand of vortex
+ 2511, -- Brass shield
+ 2478, -- Brass legs
+ 2643, -- Leather boots
+ 1988, -- Brown backpack
+ 2050 -- torch
+ }
+ local druidItems = {
+ 2460, -- Brass helmet
+ 2465, -- Brass armor
+ 2511, -- Brass shield
+ 2182, -- Snakebite rod
+ 2478, -- Brass legs
+ 2643, -- Leather boots
+ 1988, -- Brown backpack
+ 2050 -- torch
+ }
+ local pallyItems = {
+ 2460, -- Brass helmet
+ 2465, -- Brass armor
+ 2456, -- Bow
+ 2478, -- Brass legs
+ 2643, -- Leather boots
+ 1988, -- Brown backpack
+ }
+ local kinaItems = {
+ 2460, -- Brass helmet
+ 2465, -- Brass armor
+ 2511, -- Brass shield
+ 2412, -- Katana
+ 2478, -- Brass legs
+ 2643, -- Leather boots
+ 1988, -- Brown backpack
+ 2050 -- torch
+ }
+
+ if getPlayerStorageValue(cid, storage) == -1 then
+ setPlayerStorageValue(cid, storage, 1)
+ if getPlayerVocation(cid) == 1 then
+ -- Sorcerer
+ for i = 1, table.getn(sorcItems), 1 do
+ doPlayerAddItem(cid, sorcItems[i], 1, false)
+ end
+
+ elseif getPlayerVocation(cid) == 2 then
+ -- Druid
+ for i = 1, table.getn(druidItems), 1 do
+ doPlayerAddItem(cid, druidItems[i], 1, false)
+ end
+
+ elseif getPlayerVocation(cid) == 3 then
+ -- Paladin
+ for i = 1, table.getn(pallyItems), 1 do
+ doPlayerAddItem(cid, pallyItems[i], 1, false)
+ end
+ -- 8 arrows
+ doPlayerAddItem(cid, 2544, 8, false)
+
+ elseif getPlayerVocation(cid) == 4 then
+ -- Knight
+ for i = 1, table.getn(kinaItems), 1 do
+ doPlayerAddItem(cid, kinaItems[i], 1, false)
+ end
+ end
+
+ -- Common for all
+ doPlayerAddItem(cid, 2674, 5, false) -- 5 apples
+ doPlayerAddItem(cid, 2120, 1, false) -- 1 rope
+ end
+ return true
+end
diff --git a/Lua/TFS_03/creaturescript sync outfits/Installation Instructions.txt b/Lua/TFS_03/creaturescript sync outfits/Installation Instructions.txt
new file mode 100644
index 00000000..f90be23d
--- /dev/null
+++ b/Lua/TFS_03/creaturescript sync outfits/Installation Instructions.txt
@@ -0,0 +1,7 @@
+1. Add below line to XML file: data/creaturescripts/creaturescripts.xml
+
+
+2. Register event in login.lua: data/creaturescripts/scripts/login.lua
+registerCreatureEvent(cid, "znote_syncoutfits")
+
+3. Place Lua file syncoutfit.lua in folder: data/creaturescripts/scripts/
\ No newline at end of file
diff --git a/Lua/TFS_03/creaturescript sync outfits/syncoutfit.lua b/Lua/TFS_03/creaturescript sync outfits/syncoutfit.lua
new file mode 100644
index 00000000..41922243
--- /dev/null
+++ b/Lua/TFS_03/creaturescript sync outfits/syncoutfit.lua
@@ -0,0 +1,39 @@
+-- Sync outfits that player own with Znote AAC
+-- So its possible to see which full sets player
+-- has in characterprofile.php
+
+znote_outfit_list = {
+ { -- Female (girl) outfits
+ 136,137,138,139,140,141,142,147,148,
+ 149,150,155,156,157,158,252,269,270,
+ 279,288,324,329,336,366,431,433,464,
+ 466,471,513,514,542,575,578,618,620,
+ 632,635,636,664,666,683,694,696,698,
+ 724,732,745,749,759,845,852,874,885,
+ 900
+ },
+ { -- Male (boy) outfits
+ 128,129,130,131,132,133,134,143,144,
+ 145,146,151,152,153,154,251,268,273,
+ 278,289,325,328,335,367,430,432,463,
+ 465,472,512,516,541,574,577,610,619,
+ 633,634,637,665,667,684,695,697,699,
+ 725,733,746,750,760,846,853,873,884,
+ 899
+ }
+}
+
+function onLogin(cid)
+ -- storage_value + 1000 storages (highest outfit id) must not be used in other script.
+ -- Must be identical to Znote AAC config.php: $config['EQ_shower'] -> storage_value
+ local storage_value = 10000
+ -- Loop through outfits
+ for _, outfit in pairs(znote_outfit_list[getPlayerSex(cid)+1]) do
+ if canPlayerWearOutfit(cid,outfit,3) then
+ if getPlayerStorageValue(cid,storage_value + outfit) ~= 3 then
+ setPlayerStorageValue(cid,storage_value + outfit, 3)
+ end
+ end
+ end
+ return true
+end
diff --git a/Lua/TFS_03/talkaction shopsystem/Alternatives/znoteshop.lua b/Lua/TFS_03/talkaction shopsystem/Alternatives/znoteshop.lua
new file mode 100644
index 00000000..93ace811
--- /dev/null
+++ b/Lua/TFS_03/talkaction shopsystem/Alternatives/znoteshop.lua
@@ -0,0 +1,118 @@
+-- Znote Shop v1.1 for Znote AAC on TFS 0.3.6+ Crying Damson. [Alternative]
+function onSay(cid, words, param)
+ local storage = 54073 -- Make sure to select non-used storage. This is used to prevent SQL load attacks.
+ local cooldown = 15 -- in seconds.
+
+ if getPlayerStorageValue(cid, storage) <= os.time() then
+ setPlayerStorageValue(cid, storage, os.time() + cooldown)
+ local accid = getAccountNumberByPlayerName(getCreatureName(cid))
+
+ local type_desc = {
+ "itemids",
+ "pending premium (skip)",
+ "pending gender change (skip)",
+ "pending character name change (skip)",
+ "Outfit and addons",
+ "Mounts",
+ "Instant house purchase"
+ }
+ print("Player: " .. getCreatureName(cid) .. " triggered !shop talkaction.")
+ -- Create the query
+ local orderQuery = db.storeQuery("SELECT `id`, `type`, `itemid`, `count` FROM `znote_shop_orders` WHERE `account_id` = " .. accid .. ";")
+ local served = false
+
+ -- Detect if we got any results
+ if orderQuery ~= false then
+ repeat
+ -- Fetch order values
+ local q_id = result.getDataInt(orderQuery, "id")
+ local q_type = result.getDataInt(orderQuery, "type")
+ local q_itemid = result.getDataInt(orderQuery, "itemid")
+ local q_count = result.getDataInt(orderQuery, "count")
+
+ local description = "Unknown or custom type"
+ if type_desc[q_type] ~= nil then
+ description = type_desc[q_type]
+ end
+ print("Processing type "..q_type..": ".. description)
+
+ -- ORDER TYPE 1 (Regular item shop products)
+ if q_type == 1 then
+ served = true
+ -- Get wheight
+ local playerCap = getPlayerFreeCap(cid)
+ local itemweight = getItemWeightById(q_itemid, q_count)
+ if playerCap >= itemweight then
+ local delete = db.storeQuery("DELETE FROM `znote_shop_orders` WHERE `id` = " .. q_id .. ";")
+ result.free(delete)
+ doPlayerAddItem(cid, q_itemid, q_count)
+ doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Congratulations! You have recieved ".. q_count .." "..getItemNameById(q_itemid).."(s)!")
+ else
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "Need more CAP!")
+ end
+ end
+ -- ORDER TYPE 5 (Outfit and addon)
+ if q_type == 5 then
+ served = true
+
+ local itemid = q_itemid
+ local outfits = {}
+
+ if itemid > 1000 then
+ local first = math.floor(itemid/1000)
+ table.insert(outfits, first)
+ itemid = itemid - (first * 1000)
+ end
+ table.insert(outfits, itemid)
+
+ for _, outfitId in pairs(outfits) do
+ -- Make sure player don't already have this outfit and addon
+ if not canPlayerWearOutfit(cid, outfitId, q_count) then
+ local delete = db.storeQuery("DELETE FROM `znote_shop_orders` WHERE `id` = " .. q_id .. ";")
+ result.free(delete)
+ doPlayerAddOutfit(cid,outfitId,q_count)
+ doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Congratulations! You have received a new outfit!")
+ else
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "You already have this outfit and addon!")
+ end
+ end
+ end
+
+ -- ORDER TYPE 6 (Mounts)
+ if q_type == 6 then
+ served = true
+ -- Make sure player don't already have this outfit and addon
+ if not getPlayerMount(cid, q_itemid) then -- Failed to find a proper hasMount 0.3 function?
+ local delete = db.storeQuery("DELETE FROM `znote_shop_orders` WHERE `id` = " .. q_id .. ";")
+ result.free(delete)
+ doPlayerAddMount(cid, q_itemid)
+ doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Congratulations! You have received a new mount!")
+ else
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "You already have this mount!")
+ end
+ end
+
+ -- Add custom order types here
+ -- Type 1 is for itemids (Already coded here)
+ -- Type 2 is for premium (Coded on web)
+ -- Type 3 is for gender change (Coded on web)
+ -- Type 4 is for character name change (Coded on web)
+ -- Type 5 is for character outfit and addon (Already coded here)
+ -- Type 6 is for mounts (Already coded here)
+ -- Type 7 is for Instant house purchase (Not for TFS 0.3)
+ -- So use type 8+ for custom stuff, like etc packages.
+ -- if q_type == 8 then
+ -- end
+ until not result.next(orderQuery)
+ result.free(orderQuery)
+ if not served then
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You have no orders to process in-game.")
+ end
+ else
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "You have no orders.")
+ end
+ else
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Can only be executed once every "..cooldown.." seconds. Remaining cooldown: ".. getPlayerStorageValue(cid, storage) - os.time())
+ end
+ return false
+end
diff --git a/Lua/TFS_03/talkaction shopsystem/talkaction XML.txt b/Lua/TFS_03/talkaction shopsystem/talkaction XML.txt
new file mode 100644
index 00000000..d511abdd
--- /dev/null
+++ b/Lua/TFS_03/talkaction shopsystem/talkaction XML.txt
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/Lua/TFS_03/talkaction shopsystem/znoteshop.lua b/Lua/TFS_03/talkaction shopsystem/znoteshop.lua
new file mode 100644
index 00000000..2179277b
--- /dev/null
+++ b/Lua/TFS_03/talkaction shopsystem/znoteshop.lua
@@ -0,0 +1,128 @@
+-- Znote Shop v1.1 for Znote AAC on TFS 0.3.6+ Crying Damson.
+function onSay(cid, words, param)
+ local storage = 54073 -- Make sure to select non-used storage. This is used to prevent SQL load attacks.
+ local cooldown = 15 -- in seconds.
+
+ if getPlayerStorageValue(cid, storage) <= os.time() then
+ setPlayerStorageValue(cid, storage, os.time() + cooldown)
+ local accid = getAccountNumberByPlayerName(getCreatureName(cid))
+
+ local type_desc = {
+ "itemids",
+ "pending premium (skip)",
+ "pending gender change (skip)",
+ "pending character name change (skip)",
+ "Outfit and addons",
+ "Mounts",
+ "Instant house purchase"
+ }
+ print("Player: " .. getCreatureName(cid) .. " triggered !shop talkaction.")
+ -- Create the query
+ local orderQuery = db.storeQuery("SELECT `id`, `type`, `itemid`, `count` FROM `znote_shop_orders` WHERE `account_id` = " .. accid .. ";")
+ local served = false
+
+ -- Detect if we got any results
+ if orderQuery ~= false then
+ repeat
+ -- Fetch order values
+ local q_id = result.getDataInt(orderQuery, "id")
+ local q_type = result.getDataInt(orderQuery, "type")
+ local q_itemid = result.getDataInt(orderQuery, "itemid")
+ local q_count = result.getDataInt(orderQuery, "count")
+
+ local description = "Unknown or custom type"
+ if type_desc[q_type] ~= nil then
+ description = type_desc[q_type]
+ end
+ print("Processing type "..q_type..": ".. description)
+
+ -- ORDER TYPE 1 (Regular item shop products)
+ if q_type == 1 then
+ served = true
+ -- Get weight
+ local playerCap = getPlayerFreeCap(cid)
+ local itemweight = getItemWeightById(q_itemid, q_count)
+ if playerCap >= itemweight and getTileInfo(getCreaturePosition(cid)).protection then
+ -- backpack check
+ local backpack = getPlayerSlotItem(cid, 3)
+ local gotItem = false
+ if(backpack and backpack.itemid > 0) then
+ local received = doAddContainerItem(getPlayerSlotItem(cid, 3).uid, q_itemid,q_count)
+ if(received ~= false) then
+ db.executeQuery("DELETE FROM `znote_shop_orders` WHERE `id` = " .. q_id .. ";")
+ doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Congratulations! You have received ".. q_count .." "..getItemNameById(q_itemid).."(s)!")
+ gotItem = true
+ end
+ end
+
+ if(not gotItem) then
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "You have no available space in backpack to receive that item.")
+ end
+ else
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "Need more CAP and Need ProtectZone!")
+ end
+ end
+ -- ORDER TYPE 5 (Outfit and addon)
+ if q_type == 5 then
+ served = true
+
+ local itemid = q_itemid
+ local outfits = {}
+
+ if itemid > 1000 then
+ local first = math.floor(itemid/1000)
+ table.insert(outfits, first)
+ itemid = itemid - (first * 1000)
+ end
+ table.insert(outfits, itemid)
+
+ for _, outfitId in pairs(outfits) do
+ -- Make sure player don't already have this outfit and addon
+ if not canPlayerWearOutfit(cid, outfitId, q_count) then
+ db.executeQuery("DELETE FROM `znote_shop_orders` WHERE `id` = " .. q_id .. ";")
+ doPlayerAddOutfit(cid,outfitId,q_count)
+ doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Congratulations! You have received a new outfit!")
+ else
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "You already have this outfit and addon!")
+ end
+ end
+ end
+
+ -- ORDER TYPE 6 (Mounts)
+ if q_type == 6 then
+ served = true
+ -- Make sure player don't already have this outfit and addon
+ if not getPlayerMount(cid, q_itemid) then -- Failed to find a proper hasMount 0.3 function?
+ db.executeQuery("DELETE FROM `znote_shop_orders` WHERE `id` = " .. q_id .. ";")
+ doPlayerAddMount(cid, q_itemid)
+ doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Congratulations! You have received a new mount!")
+ else
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "You already have this mount!")
+ end
+ end
+
+ -- Add custom order types here
+ -- Type 1 is for itemids (Already coded here)
+ -- Type 2 is for premium (Coded on web)
+ -- Type 3 is for gender change (Coded on web)
+ -- Type 4 is for character name change (Coded on web)
+ -- Type 5 is for character outfit and addon (Already coded here)
+ -- Type 6 is for mounts (Already coded here)
+ -- Type 7 is for Instant house purchase (Not for TFS 0.3)
+ -- So use type 8+ for custom stuff, like etc packages.
+ -- if q_type == 8 then
+ -- end
+ until not result.next(orderQuery)
+ result.free(orderQuery)
+ if not served then
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You have no orders to process in-game.")
+ end
+ else
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You have no orders.")
+ end
+
+ else
+ doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Can only be executed once every "..cooldown.." seconds. Remaining cooldown: ".. getPlayerStorageValue(cid, storage) - os.time())
+ end
+ return false
+end
diff --git a/Lua/TFS_10/creaturescript firstitems/Installation Instructions.txt b/Lua/TFS_10/creaturescript firstitems/Installation Instructions.txt
new file mode 100644
index 00000000..b4fcac81
--- /dev/null
+++ b/Lua/TFS_10/creaturescript firstitems/Installation Instructions.txt
@@ -0,0 +1,4 @@
+Step 1: Copy firstitems.lua to /data/creaturescripts/scripts/ folder
+-- Edit firstitems.lua with item IDs you want characters to start with on your server.
+
+Step 2: Restart OT server, and it should work. :)
diff --git a/Lua/TFS_10/creaturescript firstitems/firstitems.lua b/Lua/TFS_10/creaturescript firstitems/firstitems.lua
new file mode 100644
index 00000000..67213921
--- /dev/null
+++ b/Lua/TFS_10/creaturescript firstitems/firstitems.lua
@@ -0,0 +1,114 @@
+-- With Rookgaard
+
+--[[
+local firstItems = {2050, 2382} -- torch and club
+
+function onLogin(player)
+ if player:getLastLoginSaved() <= 0 then
+ for i = 1, #firstItems do
+ player:addItem(firstItems[i], 1)
+ end
+ player:addItem(player:getSex() == 0 and 2651 or 2650, 1) -- coat
+ player:addItem(ITEM_BAG, 1)
+ player:addItem(2674, 1) -- red apple
+ end
+ return true
+end
+]]--
+
+-- Without Rookgaard
+local config = {
+ [1] = { -- Sorcerer
+ items = {
+ {2175, 1}, -- spellbook
+ {2190, 1}, -- wand of vortex
+ {8819, 1}, -- magician's robe
+ {8820, 1}, -- mage hat
+ {2468, 1}, -- studded legs
+ {2643, 1}, -- leather boots
+ {2661, 1} -- scarf
+ },
+ container = {
+ {2120, 1}, -- rope
+ {2554, 1}, -- shovel
+ {7620, 1} -- mana potion
+ }
+ },
+ [2] = { -- Druid
+ items = {
+ {2175, 1}, -- spellbook
+ {2182, 1}, -- snakebite rod
+ {8819, 1}, -- magician's robe
+ {8820, 1}, -- mage hat
+ {2468, 1}, -- studded legs
+ {2643, 1}, -- leather boots
+ {2661, 1} -- scarf
+ },
+ container = {
+ {2120, 1}, -- rope
+ {2554, 1}, -- shovel
+ {7620, 1} -- mana potion
+ }
+ },
+ [3] = { -- Paladin
+ items = {
+ {2525, 1}, -- dwarven shield
+ {2389, 5}, -- 5 spears
+ {2660, 1}, -- ranger's cloak
+ {8923, 1}, -- ranger legs
+ {2643, 1}, -- leather boots
+ {2661, 1}, -- scarf
+ {2480, 1} -- legion helmet
+ },
+ container = {
+ {2120, 1}, -- rope
+ {2554, 1}, -- shovel
+ {7618, 1}, -- health potion
+ {2456, 1}, -- bow
+ {2544, 50} -- 50 arrows
+ }
+ },
+ [4] = { -- Knight
+ items = {
+ {2525, 1}, -- dwarven shield
+ {8601, 1}, -- steel axe
+ {2465, 1}, -- brass armor
+ {2460, 1}, -- brass helmet
+ {2478, 1}, -- brass legs
+ {2643, 1}, -- leather boots
+ {2661, 1} -- scarf
+ },
+ container = {
+ {8602, 1}, -- jagged sword
+ {2439, 1}, -- daramanian mace
+ {2120, 1}, -- rope
+ {2554, 1}, -- shovel
+ {7618, 1} -- health potion
+ }
+ }
+}
+
+function onLogin(player)
+ local targetVocation = config[player:getVocation():getId()]
+ if not targetVocation then
+ return true
+ end
+
+ if player:getLastLoginSaved() ~= 0 then
+ return true
+ end
+
+ for i = 1, #targetVocation.items do
+ player:addItem(targetVocation.items[i][1], targetVocation.items[i][2])
+ end
+
+ local backpack = player:addItem(1988)
+ if not backpack then
+ return true
+ end
+
+ for i = 1, #targetVocation.container do
+ backpack:addItem(targetVocation.container[i][1], targetVocation.container[i][2])
+ end
+ return true
+end
diff --git a/Lua/TFS_10/creaturescript playerdeath/Installation Instructions.txt b/Lua/TFS_10/creaturescript playerdeath/Installation Instructions.txt
new file mode 100644
index 00000000..c5ad6e9b
--- /dev/null
+++ b/Lua/TFS_10/creaturescript playerdeath/Installation Instructions.txt
@@ -0,0 +1,3 @@
+Step 1: Replace the one that comes with tfs with this one
+
+Step 2: Restart OT server, and it should work. :)
diff --git a/Lua/TFS_10/creaturescript playerdeath/playerdeath.lua b/Lua/TFS_10/creaturescript playerdeath/playerdeath.lua
new file mode 100644
index 00000000..2fd63fa0
--- /dev/null
+++ b/Lua/TFS_10/creaturescript playerdeath/playerdeath.lua
@@ -0,0 +1,122 @@
+local deathListEnabled = true
+local maxDeathRecords = 5
+
+local function sendWarStatus(guildId, enemyGuildId, warId, playerName, killerName)
+ local guild, enemyGuild = Guild(guildId), Guild(enemyGuildId)
+ if not guild or not enemyGuild then
+ return
+ end
+
+ local resultId = db.storeQuery("SELECT `guild_wars`.`id`, (SELECT `limit` FROM `znote_guild_wars` WHERE `znote_guild_wars`.`id` = `guild_wars`.`id`) AS `limit`, (SELECT COUNT(1) FROM `guildwar_kills` WHERE `guildwar_kills`.`warid` = `guild_wars`.`id` AND `guildwar_kills`.`killerguild` = `guild_wars`.`guild1`) guild1_kills, (SELECT COUNT(1) FROM `guildwar_kills` WHERE `guildwar_kills`.`warid` = `guild_wars`.`id` AND `guildwar_kills`.`killerguild` = `guild_wars`.`guild2`) guild2_kills FROM `guild_wars` WHERE (`guild1` = " .. guildId .. " OR `guild2` = " .. guildId .. ") AND `status` = 1 AND `id` = " .. warId)
+ if resultId then
+
+ local guild1_kills = result.getNumber(resultId, "guild1_kills")
+ local guild2_kills = result.getNumber(resultId, "guild2_kills")
+ local limit = result.getNumber(resultId, "limit")
+ result.free(resultId)
+
+ local members = guild:getMembersOnline()
+ for i = 1, #members do
+ members[i]:sendChannelMessage("", string.format("%s was killed by %s. The new score is %d:%d frags (limit: %d)", playerName, killerName, guild1_kills, guild2_kills, limit), TALKTYPE_CHANNEL_R1, CHANNEL_GUILD)
+ end
+
+ local enemyMembers = enemyGuild:getMembersOnline()
+ for i = 1, #enemyMembers do
+ enemyMembers[i]:sendChannelMessage("", string.format("%s was killed by %s. The new score is %d:%d frags (limit: %d)", playerName, killerName, guild1_kills, guild2_kills, limit), TALKTYPE_CHANNEL_R1, CHANNEL_GUILD)
+ end
+
+ if guild1_kills >= limit or guild2_kills >= limit then
+ db.query("UPDATE `guild_wars` SET `status` = 4, `ended` = " .. os.time() .. " WHERE `status` = 1 AND `id` = " .. warId)
+ Game.broadcastMessage(string.format("%s has just won the war against %s.", guild:getName(), enemyGuild:getName()), MESSAGE_EVENT_ADVANCE)
+ end
+ end
+end
+
+function onDeath(player, corpse, killer, mostDamageKiller, lastHitUnjustified, mostDamageUnjustified)
+ local playerId = player:getId()
+ if nextUseStaminaTime[playerId] then
+ nextUseStaminaTime[playerId] = nil
+ end
+
+ player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You are dead.")
+ if not deathListEnabled then
+ return
+ end
+
+ local byPlayer = 0
+ local killerName
+ if killer then
+ if killer:isPlayer() then
+ byPlayer = 1
+ else
+ local master = killer:getMaster()
+ if master and master ~= killer and master:isPlayer() then
+ killer = master
+ byPlayer = 1
+ end
+ end
+ killerName = killer:getName()
+ else
+ killerName = "field item"
+ end
+
+ local byPlayerMostDamage = 0
+ local mostDamageKillerName
+ if mostDamageKiller then
+ if mostDamageKiller:isPlayer() then
+ byPlayerMostDamage = 1
+ else
+ local master = mostDamageKiller:getMaster()
+ if master and master ~= mostDamageKiller and master:isPlayer() then
+ mostDamageKiller = master
+ byPlayerMostDamage = 1
+ end
+ end
+ mostDamageName = mostDamageKiller:getName()
+ else
+ mostDamageName = "field item"
+ end
+
+ local playerGuid = player:getGuid()
+ db.query("INSERT INTO `player_deaths` (`player_id`, `time`, `level`, `killed_by`, `is_player`, `mostdamage_by`, `mostdamage_is_player`, `unjustified`, `mostdamage_unjustified`) VALUES (" .. playerGuid .. ", " .. os.time() .. ", " .. player:getLevel() .. ", " .. db.escapeString(killerName) .. ", " .. byPlayer .. ", " .. db.escapeString(mostDamageName) .. ", " .. byPlayerMostDamage .. ", " .. (lastHitUnjustified and 1 or 0) .. ", " .. (mostDamageUnjustified and 1 or 0) .. ")")
+ local resultId = db.storeQuery("SELECT `player_id` FROM `player_deaths` WHERE `player_id` = " .. playerGuid)
+
+ local deathRecords = 0
+ local tmpResultId = resultId
+ while tmpResultId ~= false do
+ tmpResultId = result.next(resultId)
+ deathRecords = deathRecords + 1
+ end
+
+ if resultId ~= false then
+ result.free(resultId)
+ end
+
+ local limit = deathRecords - maxDeathRecords
+ if limit > 0 then
+ db.asyncQuery("DELETE FROM `player_deaths` WHERE `player_id` = " .. playerGuid .. " ORDER BY `time` LIMIT " .. limit)
+ end
+
+ if byPlayer == 1 then
+ local targetGuild = player:getGuild()
+ targetGuild = targetGuild and targetGuild:getId() or 0
+ if targetGuild ~= 0 then
+ local killerGuild = killer:getGuild()
+ killerGuild = killerGuild and killerGuild:getId() or 0
+ if killerGuild ~= 0 and targetGuild ~= killerGuild and isInWar(playerId, killer:getId()) then
+ local warId = false
+ resultId = db.storeQuery("SELECT `id` FROM `guild_wars` WHERE `status` = 1 AND ((`guild1` = " .. killerGuild .. " AND `guild2` = " .. targetGuild .. ") OR (`guild1` = " .. targetGuild .. " AND `guild2` = " .. killerGuild .. "))")
+ if resultId ~= false then
+ warId = result.getNumber(resultId, "id")
+ result.free(resultId)
+ end
+
+ if warId ~= false then
+ local playerName = player:getName()
+ db.asyncQuery("INSERT INTO `guildwar_kills` (`killer`, `target`, `killerguild`, `targetguild`, `time`, `warid`) VALUES (" .. db.escapeString(killerName) .. ", " .. db.escapeString(playerName) .. ", " .. killerGuild .. ", " .. targetGuild .. ", " .. os.time() .. ", " .. warId .. ")")
+ addEvent(sendWarStatus, 1000, killerGuild, targetGuild, warId, playerName, killerName)
+ end
+ end
+ end
+ end
+end
diff --git a/Lua/TFS_10/creaturescript sync outfits/Installation Instructions.txt b/Lua/TFS_10/creaturescript sync outfits/Installation Instructions.txt
new file mode 100644
index 00000000..96f80a14
--- /dev/null
+++ b/Lua/TFS_10/creaturescript sync outfits/Installation Instructions.txt
@@ -0,0 +1,4 @@
+1. Add below line to XML file: data/creaturescripts/creaturescripts.xml
+
+
+2. Place Lua file syncoutfit.lua in folder: data/creaturescripts/scripts/
diff --git a/Lua/TFS_10/creaturescript sync outfits/syncoutfit.lua b/Lua/TFS_10/creaturescript sync outfits/syncoutfit.lua
new file mode 100644
index 00000000..563f6f54
--- /dev/null
+++ b/Lua/TFS_10/creaturescript sync outfits/syncoutfit.lua
@@ -0,0 +1,46 @@
+-- Sync outfits that player own with Znote AAC
+-- So its possible to see which full sets player
+-- has in characterprofile.php
+
+znote_outfit_list = {
+ { -- Female outfits
+ 136, 137, 138, 139, 140, 141, 142, 147, 148,
+ 149, 150, 155, 156, 157, 158, 252, 269, 270,
+ 279, 288, 324, 329, 336, 366, 431, 433, 464,
+ 466, 471, 513, 514, 542, 575, 578, 618, 620,
+ 632, 635, 636, 664, 666, 683, 694, 696, 698,
+ 724, 732, 745, 749, 759, 845, 852, 874, 885,
+ 900, 973, 975, 1020, 1024, 1043, 1050, 1057,
+ 1070, 1095, 1103, 1128, 1147, 1162, 1174,
+ 1187, 1203, 1205, 1207, 1211, 1246, 1244,
+ 1252, 1271, 1280, 1283, 1289, 1293, 1332
+ },
+ { -- Male outfits
+ 128, 129, 130, 131, 132, 133, 134, 143, 144,
+ 145, 146, 151, 152, 153, 154, 251, 268, 273,
+ 278, 289, 325, 328, 335, 367, 430, 432, 463,
+ 465, 472, 512, 516, 541, 574, 577, 610, 619,
+ 633, 634, 637, 665, 667, 684, 695, 697, 699,
+ 725, 733, 746, 750, 760, 846, 853, 873, 884,
+ 899, 908, 931, 955, 957, 962, 964, 966, 968,
+ 970, 972, 974, 1021, 1023, 1042, 1051, 1056,
+ 1069, 1094, 1102, 1127, 1146, 1161, 1173,
+ 1186, 1202, 1204, 1206, 1210, 1245, 1243,
+ 1251, 1270, 1279, 1282, 1288, 1292, 1331
+ }
+}
+
+function onLogin(player)
+ -- storage_value + 1000 storages (highest outfit id) must not be used in other script.
+ -- Must be identical to Znote AAC config.php: $config['EQ_shower'] -> storage_value
+ local storage_value = 10000
+ -- Loop through outfits
+ for _, outfit in pairs(znote_outfit_list[player:getSex() + 1]) do
+ if player:hasOutfit(outfit,3) then
+ if player:getStorageValue(storage_value + outfit) ~= 3 then
+ player:setStorageValue(storage_value + outfit, 3)
+ end
+ end
+ end
+ return true
+end
diff --git a/Lua/TFS_10/globalevent powergamers/powergamers.lua b/Lua/TFS_10/globalevent powergamers/powergamers.lua
new file mode 100644
index 00000000..3a8c9a00
--- /dev/null
+++ b/Lua/TFS_10/globalevent powergamers/powergamers.lua
@@ -0,0 +1,64 @@
+-- getEternalStorage and setEternalStorage
+-- can be added to data/global.lua if you want to use eternal storage for another purpose than this.
+-- Regular TFS global storage values get reset every time server reboots. This does not.
+local function getEternalStorage(key, parser)
+ local value = result.getString(db.storeQuery("SELECT `value` FROM `znote_global_storage` WHERE `key` = ".. key .. ";"), "value")
+ if not value then
+ if parser then
+ return false
+ else
+ return -1
+ end
+ end
+ result.free(value)
+ return tonumber(value) or value
+end
+
+local function setEternalStorage(key, value)
+ if getEternalStorage(key, true) then
+ db.query("UPDATE `znote_global_storage` SET `value` = '".. value .. "' WHERE `key` = ".. key .. ";")
+ else
+ db.query("INSERT INTO `znote_global_storage` (`key`, `value`) VALUES (".. key ..", ".. value ..");")
+ end
+ return true
+end
+
+-- SQL Query to execute: --
+--[[
+ALTER TABLE `znote_players` ADD `exphist_lastexp` BIGINT UNSIGNED NOT NULL DEFAULT '0',
+ADD `exphist1` BIGINT UNSIGNED NOT NULL DEFAULT '0',
+ADD `exphist2` BIGINT UNSIGNED NOT NULL DEFAULT '0',
+ADD `exphist3` BIGINT UNSIGNED NOT NULL DEFAULT '0',
+ADD `exphist4` BIGINT UNSIGNED NOT NULL DEFAULT '0',
+ADD `exphist5` BIGINT UNSIGNED NOT NULL DEFAULT '0',
+ADD `exphist6` BIGINT UNSIGNED NOT NULL DEFAULT '0',
+ADD `exphist7` BIGINT UNSIGNED NOT NULL DEFAULT '0',
+ADD `onlinetimetoday` BIGINT NOT NULL DEFAULT '0',
+ADD `onlinetime1` BIGINT NOT NULL DEFAULT '0',
+ADD `onlinetime2` BIGINT NOT NULL DEFAULT '0',
+ADD `onlinetime3` BIGINT NOT NULL DEFAULT '0',
+ADD `onlinetime4` BIGINT NOT NULL DEFAULT '0',
+ADD `onlinetime5` BIGINT NOT NULL DEFAULT '0',
+ADD `onlinetime6` BIGINT NOT NULL DEFAULT '0',
+ADD `onlinetime7` BIGINT NOT NULL DEFAULT '0',
+ADD `onlinetimeall` BIGINT NOT NULL DEFAULT '0';
+]]--
+
+-- after that execute: --
+--[[
+UPDATE `znote_players` AS `z` INNER JOIN `players` AS `p` ON `p`.`id`=`z`.`player_id` SET `z`.`exphist_lastexp`=`p`.`experience`;
+]]--
+
+-- TFS 1.X (data/globalevents.xml)
+--
+--
+
+function onThink(interval, lastExecution, thinkInterval)
+ if tonumber(os.date("%d")) ~= getEternalStorage(23856) then
+ setEternalStorage(23856, (tonumber(os.date("%d"))))
+ db.query("UPDATE `znote_players` SET `onlinetime7`=`onlinetime6`, `onlinetime6`=`onlinetime5`, `onlinetime5`=`onlinetime4`, `onlinetime4`=`onlinetime3`, `onlinetime3`=`onlinetime2`, `onlinetime2`=`onlinetime1`, `onlinetime1`=`onlinetimetoday`, `onlinetimetoday`=0;")
+ db.query("UPDATE `znote_players` `z` INNER JOIN `players` `p` ON `p`.`id`=`z`.`player_id` SET `z`.`exphist7`=`z`.`exphist6`, `z`.`exphist6`=`z`.`exphist5`, `z`.`exphist5`=`z`.`exphist4`, `z`.`exphist4`=`z`.`exphist3`, `z`.`exphist3`=`z`.`exphist2`, `z`.`exphist2`=`z`.`exphist1`, `z`.`exphist1`=`p`.`experience`-`z`.`exphist_lastexp`, `z`.`exphist_lastexp`=`p`.`experience`;")
+ end
+ db.query("UPDATE `znote_players` SET `onlinetimetoday` = `onlinetimetoday` + 60, `onlinetimeall` = `onlinetimeall` + 60 WHERE `player_id` IN (SELECT `player_id` FROM `players_online` WHERE `players_online`.`player_id` = `znote_players`.`player_id`)")
+ return true
+end
diff --git a/Lua/TFS_10/globalevent shopsystem/znoteshop.lua b/Lua/TFS_10/globalevent shopsystem/znoteshop.lua
new file mode 100644
index 00000000..a98bc2cb
--- /dev/null
+++ b/Lua/TFS_10/globalevent shopsystem/znoteshop.lua
@@ -0,0 +1,160 @@
+--
+-- Znote Auto Shop v2.1 for Znote AAC on TFS 1.2+
+function onThink(interval, lastExecution)
+ local shopTypes = {1,5,7}
+ -- If game support mount orders
+ if Game.getClientVersion().min >= 870 then
+ table.insert(shopTypes, 6);
+ end
+ local orderQuery = db.storeQuery([[
+ SELECT
+ MIN(`po`.`player_id`) AS `player_id`,
+ `shop`.`id`,
+ `shop`.`type`,
+ `shop`.`itemid`,
+ `shop`.`count`
+ FROM `players_online` AS `po`
+ INNER JOIN `players` AS `p`
+ ON `po`.`player_id` = `p`.`id`
+ INNER JOIN `znote_shop_orders` AS `shop`
+ ON `p`.`account_id` = `shop`.`account_id`
+ WHERE `shop`.`type` IN(]] .. table.concat(shopTypes, ",") .. [[)
+ GROUP BY `shop`.`id`
+ ]])
+ -- Detect if we got any results
+ if orderQuery ~= false then
+ local type_desc = {
+ "itemids",
+ "pending premium (skip)",
+ "pending gender change (skip)",
+ "pending character name change (skip)",
+ "Outfit and addons",
+ "Mounts",
+ "Instant house purchase"
+ }
+ repeat
+ local player_id = result.getNumber(orderQuery, 'player_id')
+ local orderId = result.getNumber(orderQuery, 'id')
+ local orderType = result.getNumber(orderQuery, 'type')
+ local orderItemId = result.getNumber(orderQuery, 'itemid')
+ local orderCount = result.getNumber(orderQuery, 'count')
+ local served = false
+
+ local player = Player(player_id)
+ if player ~= nil then
+
+ local description = "Unknown or custom type"
+ if type_desc[orderType] ~= nil then
+ description = type_desc[orderType]
+ end
+ print("Processing type "..orderType..": ".. description)
+ print("Processing shop order for: [".. player:getName() .."] type "..orderType..": ".. description)
+
+ local tile = Tile(player:getPosition())
+ if tile ~= nil and tile:hasFlag(TILESTATE_PROTECTIONZONE) then
+ -- ORDER TYPE 1 (Regular item shop products)
+ if orderType == 1 then
+ served = true
+ local itemType = ItemType(orderItemId)
+ -- Get weight
+ if player:getFreeCapacity() >= itemType:getWeight(orderCount) then
+ local backpack = player:getSlotItem(CONST_SLOT_BACKPACK)
+ -- variable = (condition) and (return if true) or (return if false)
+ local needslots = itemType:isStackable() and math.floor(orderCount / 100) + 1 or orderCount
+ if backpack ~= nil and backpack:getEmptySlots(false) >= needslots then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. orderId .. ";")
+ player:addItem(orderItemId, orderCount)
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "Congratulations! You have received " .. orderCount .. "x " .. ItemType(orderItemId):getName() .. "!")
+ print("Process complete. [".. player:getName() .."] has received " .. orderCount .. "x " .. ItemType(orderItemId):getName() .. ".")
+ else -- not enough slots
+ player:sendTextMessage(MESSAGE_STATUS_WARNING, "Your main backpack is full. You need to free up "..needslots.." available slots to get " .. orderCount .. " " .. ItemType(orderItemId):getName() .. "!")
+ print("Process canceled. [".. player:getName() .."] need more space in his backpack to get " .. orderCount .. "x " .. ItemType(orderItemId):getName() .. ".")
+ end
+ else -- not enough cap
+ player:sendTextMessage(MESSAGE_STATUS_WARNING, "You need more CAP to carry this order!")
+ print("Process canceled. [".. player:getName() .."] need more cap to carry " .. orderCount .. "x " .. ItemType(orderItemId):getName() .. ".")
+ end
+ end
+
+ -- ORDER TYPE 5 (Outfit and addon)
+ if orderType == 5 then
+ served = true
+
+ local itemid = orderItemId
+ local outfits = {}
+
+ if itemid > 1000 then
+ local first = math.floor(itemid/1000)
+ table.insert(outfits, first)
+ itemid = itemid - (first * 1000)
+ end
+ table.insert(outfits, itemid)
+
+ for _, outfitId in pairs(outfits) do
+ -- Make sure player don't already have this outfit and addon
+ if not player:hasOutfit(outfitId, orderCount) then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. orderId .. ";")
+ player:addOutfit(outfitId)
+ player:addOutfitAddon(outfitId, orderCount)
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "Congratulations! You have received a new outfit!")
+ print("Process complete. [".. player:getName() .."] has received outfit: ["..outfitId.."] with addon: ["..orderCount.."]")
+ else -- Already has outfit
+ player:sendTextMessage(MESSAGE_STATUS_WARNING, "You already have this outfit and addon!")
+ print("Process canceled. [".. player:getName() .."] already have outfit: ["..outfitId.."] with addon: ["..orderCount.."].")
+ end
+ end
+ end
+
+ -- ORDER TYPE 6 (Mounts)
+ if orderType == 6 then
+ served = true
+ -- Make sure player don't already have this outfit and addon
+ if not player:hasMount(orderItemId) then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. orderId .. ";")
+ player:addMount(orderItemId)
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "Congratulations! You have received a new mount!")
+ print("Process complete. [".. player:getName() .."] has received mount: ["..orderItemId.."]")
+ else -- Already has mount
+ player:sendTextMessage(MESSAGE_STATUS_WARNING, "You already have this mount!")
+ print("Process canceled. [".. player:getName() .."] already have mount: ["..orderItemId.."].")
+ end
+ end
+
+ -- ORDER TYPE 7 (Direct house purchase)
+ if orderType == 7 then
+ served = true
+ local house = House(orderItemId)
+ -- Logged in player is not necessarily the player that bough the house. So we need to load player from db.
+ local buyerQuery = db.storeQuery("SELECT `name` FROM `players` WHERE `id` = "..orderCount.." LIMIT 1")
+ if buyerQuery ~= false then
+ local buyerName = result.getString(buyerQuery, "name")
+ result.free(buyerQuery)
+ if house then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. orderId .. ";")
+ house:setOwnerGuid(orderCount)
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "You have successfully bought the house "..house:getName().." on "..buyerName..", be sure to have the money for the rent in the bank.")
+ print("Process complete. [".. buyerName .."] has received house: ["..house:getName().."]")
+ else
+ print("Process canceled. Failed to load house with ID: "..orderItemId)
+ end
+ else
+ print("Process canceled. Failed to load player with ID: "..orderCount)
+ end
+ end
+
+ if not served then -- If this order hasn't been processed yet (missing type handling?)
+ print("Znote shop: Type ["..orderType.."] not properly processed. Missing Lua code?")
+ end
+ else -- Not in protection zone
+ player:sendTextMessage(MESSAGE_INFO_DESCR, 'You have a pending shop order, please enter protection zone.')
+ print("Skipped one shop order. Reason: Player: [".. player:getName() .."] is not inside protection zone.")
+ end
+ else -- player not logged in
+ print("Skipped one shop order. Reason: Player with id [".. player_id .."] is not online.")
+ end
+
+ until not result.next(orderQuery)
+ result.free(orderQuery)
+ end
+ return true
+end
diff --git a/Lua/TFS_10/revscriptsys/Installation Instructions.txt b/Lua/TFS_10/revscriptsys/Installation Instructions.txt
new file mode 100644
index 00000000..b847dae7
--- /dev/null
+++ b/Lua/TFS_10/revscriptsys/Installation Instructions.txt
@@ -0,0 +1,3 @@
+Step 1: Put script on data/script folder (edit content if necessary)
+
+Step 2: Restart OT server, and it should work. :)
diff --git a/Lua/TFS_10/revscriptsys/first_items.lua b/Lua/TFS_10/revscriptsys/first_items.lua
new file mode 100644
index 00000000..754224f1
--- /dev/null
+++ b/Lua/TFS_10/revscriptsys/first_items.lua
@@ -0,0 +1,99 @@
+local creatureevent = CreatureEvent("FirstItems")
+
+local config = {
+ [1] = { -- Sorcerer
+ items = {
+ {2175, 1}, -- spellbook
+ {2190, 1}, -- wand of vortex
+ {8819, 1}, -- magician's robe
+ {8820, 1}, -- mage hat
+ {2468, 1}, -- studded legs
+ {2643, 1}, -- leather boots
+ {2661, 1} -- scarf
+ },
+ container = {
+ {2120, 1}, -- rope
+ {2554, 1}, -- shovel
+ {7620, 1} -- mana potion
+ }
+ },
+ [2] = { -- Druid
+ items = {
+ {2175, 1}, -- spellbook
+ {2182, 1}, -- snakebite rod
+ {8819, 1}, -- magician's robe
+ {8820, 1}, -- mage hat
+ {2468, 1}, -- studded legs
+ {2643, 1}, -- leather boots
+ {2661, 1} -- scarf
+ },
+ container = {
+ {2120, 1}, -- rope
+ {2554, 1}, -- shovel
+ {7620, 1} -- mana potion
+ }
+ },
+ [3] = { -- Paladin
+ items = {
+ {2525, 1}, -- dwarven shield
+ {2389, 5}, -- 5 spears
+ {2660, 1}, -- ranger's cloak
+ {8923, 1}, -- ranger legs
+ {2643, 1}, -- leather boots
+ {2661, 1}, -- scarf
+ {2480, 1} -- legion helmet
+ },
+ container = {
+ {2120, 1}, -- rope
+ {2554, 1}, -- shovel
+ {7618, 1}, -- health potion
+ {2456, 1}, -- bow
+ {2544, 50} -- 50 arrows
+ }
+ },
+ [4] = { -- Knight
+ items = {
+ {2525, 1}, -- dwarven shield
+ {8601, 1}, -- steel axe
+ {2465, 1}, -- brass armor
+ {2460, 1}, -- brass helmet
+ {2478, 1}, -- brass legs
+ {2643, 1}, -- leather boots
+ {2661, 1} -- scarf
+ },
+ container = {
+ {8602, 1}, -- jagged sword
+ {2439, 1}, -- daramanian mace
+ {2120, 1}, -- rope
+ {2554, 1}, -- shovel
+ {7618, 1} -- health potion
+ }
+ }
+}
+
+function creatureevent.onLogin(player)
+ local targetVocation = config[player:getVocation():getId()]
+ if not targetVocation then
+ return true
+ end
+
+ if player:getLastLoginSaved() ~= 0 then
+ return true
+ end
+
+ for i = 1, #targetVocation.items do
+ player:addItem(targetVocation.items[i][1], targetVocation.items[i][2])
+ end
+
+ local backpack = player:addItem(1988) -- backpack
+ if not backpack then
+ return true
+ end
+
+ for i = 1, #targetVocation.container do
+ backpack:addItem(targetVocation.container[i][1], targetVocation.container[i][2])
+ end
+ return true
+end
+
+creatureevent:register()
diff --git a/Lua/TFS_10/revscriptsys/first_items_rook.lua b/Lua/TFS_10/revscriptsys/first_items_rook.lua
new file mode 100644
index 00000000..54d56423
--- /dev/null
+++ b/Lua/TFS_10/revscriptsys/first_items_rook.lua
@@ -0,0 +1,17 @@
+local creatureevent = CreatureEvent("FirstItemsRook")
+
+local firstItems = {2050, 2382} -- torch and club
+
+function creatureevent.onLogin(player)
+ if player:getLastLoginSaved() <= 0 then
+ for i = 1, #firstItems do
+ player:addItem(firstItems[i], 1)
+ end
+ player:addItem(player:getSex() == 0 and 2651 or 2650, 1) -- coat
+ player:addItem(ITEM_BAG, 1)
+ player:addItem(2674, 1) -- red apple
+ end
+ return true
+end
+
+creatureevent:register()
diff --git a/Lua/TFS_10/revscriptsys/playerdeath.lua b/Lua/TFS_10/revscriptsys/playerdeath.lua
new file mode 100644
index 00000000..0ec8bf46
--- /dev/null
+++ b/Lua/TFS_10/revscriptsys/playerdeath.lua
@@ -0,0 +1,135 @@
+local deathListEnabled = true
+local maxDeathRecords = 5
+
+local function sendWarStatus(guildId, enemyGuildId, warId, playerName, killerName)
+ local guild, enemyGuild = Guild(guildId), Guild(enemyGuildId)
+ if not guild or not enemyGuild then
+ return
+ end
+
+ local resultId = db.storeQuery("SELECT `guild_wars`.`id`, (SELECT `limit` FROM `znote_guild_wars` WHERE `znote_guild_wars`.`id` = `guild_wars`.`id`) AS `limit`, (SELECT COUNT(1) FROM `guildwar_kills` WHERE `guildwar_kills`.`warid` = `guild_wars`.`id` AND `guildwar_kills`.`killerguild` = `guild_wars`.`guild1`) guild1_kills, (SELECT COUNT(1) FROM `guildwar_kills` WHERE `guildwar_kills`.`warid` = `guild_wars`.`id` AND `guildwar_kills`.`killerguild` = `guild_wars`.`guild2`) guild2_kills FROM `guild_wars` WHERE (`guild1` = " .. guildId .. " OR `guild2` = " .. guildId .. ") AND `status` = 1 AND `id` = " .. warId)
+ if resultId then
+
+ local guild1_kills = result.getNumber(resultId, "guild1_kills")
+ local guild2_kills = result.getNumber(resultId, "guild2_kills")
+ local limit = result.getNumber(resultId, "limit")
+ result.free(resultId)
+
+ local members = guild:getMembersOnline()
+ for i = 1, #members do
+ members[i]:sendChannelMessage("", string.format("%s was killed by %s. The new score is %d:%d frags (limit: %d)", playerName, killerName, guild1_kills, guild2_kills, limit), TALKTYPE_CHANNEL_R1, CHANNEL_GUILD)
+ end
+
+ local enemyMembers = enemyGuild:getMembersOnline()
+ for i = 1, #enemyMembers do
+ enemyMembers[i]:sendChannelMessage("", string.format("%s was killed by %s. The new score is %d:%d frags (limit: %d)", playerName, killerName, guild1_kills, guild2_kills, limit), TALKTYPE_CHANNEL_R1, CHANNEL_GUILD)
+ end
+
+ if guild1_kills >= limit or guild2_kills >= limit then
+ db.query("UPDATE `guild_wars` SET `status` = 4, `ended` = " .. os.time() .. " WHERE `status` = 1 AND `id` = " .. warId)
+ Game.broadcastMessage(string.format("%s has just won the war against %s.", guild:getName(), enemyGuild:getName()), MESSAGE_EVENT_ADVANCE)
+ end
+ end
+end
+
+local creatureevent = CreatureEvent("PlayerDeath")
+
+function creatureevent.onDeath(creature, corpse, killer, mostDamageKiller, lastHitUnjustified, mostDamageUnjustified)
+ local playerId = player:getId()
+ if nextUseStaminaTime[playerId] then
+ nextUseStaminaTime[playerId] = nil
+ end
+
+ player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You are dead.")
+ if not deathListEnabled then
+ return
+ end
+
+ local byPlayer = 0
+ local killerName
+ if killer then
+ if killer:isPlayer() then
+ byPlayer = 1
+ else
+ local master = killer:getMaster()
+ if master and master ~= killer and master:isPlayer() then
+ killer = master
+ byPlayer = 1
+ end
+ end
+ killerName = killer:getName()
+ else
+ killerName = "field item"
+ end
+
+ local byPlayerMostDamage = 0
+ local mostDamageKillerName
+ if mostDamageKiller then
+ if mostDamageKiller:isPlayer() then
+ byPlayerMostDamage = 1
+ else
+ local master = mostDamageKiller:getMaster()
+ if master and master ~= mostDamageKiller and master:isPlayer() then
+ mostDamageKiller = master
+ byPlayerMostDamage = 1
+ end
+ end
+ mostDamageName = mostDamageKiller:getName()
+ else
+ mostDamageName = "field item"
+ end
+
+ local playerGuid = player:getGuid()
+ db.query("INSERT INTO `player_deaths` (`player_id`, `time`, `level`, `killed_by`, `is_player`, `mostdamage_by`, `mostdamage_is_player`, `unjustified`, `mostdamage_unjustified`) VALUES (" .. playerGuid .. ", " .. os.time() .. ", " .. player:getLevel() .. ", " .. db.escapeString(killerName) .. ", " .. byPlayer .. ", " .. db.escapeString(mostDamageName) .. ", " .. byPlayerMostDamage .. ", " .. (lastHitUnjustified and 1 or 0) .. ", " .. (mostDamageUnjustified and 1 or 0) .. ")")
+ local resultId = db.storeQuery("SELECT `player_id` FROM `player_deaths` WHERE `player_id` = " .. playerGuid)
+
+ local deathRecords = 0
+ local tmpResultId = resultId
+ while tmpResultId ~= false do
+ tmpResultId = result.next(resultId)
+ deathRecords = deathRecords + 1
+ end
+
+ if resultId ~= false then
+ result.free(resultId)
+ end
+
+ local limit = deathRecords - maxDeathRecords
+ if limit > 0 then
+ db.asyncQuery("DELETE FROM `player_deaths` WHERE `player_id` = " .. playerGuid .. " ORDER BY `time` LIMIT " .. limit)
+ end
+
+ if byPlayer == 1 then
+ local targetGuild = player:getGuild()
+ targetGuild = targetGuild and targetGuild:getId() or 0
+ if targetGuild ~= 0 then
+ local killerGuild = killer:getGuild()
+ killerGuild = killerGuild and killerGuild:getId() or 0
+ if killerGuild ~= 0 and targetGuild ~= killerGuild and isInWar(playerId, killer:getId()) then
+ local warId = false
+ resultId = db.storeQuery("SELECT `id` FROM `guild_wars` WHERE `status` = 1 AND ((`guild1` = " .. killerGuild .. " AND `guild2` = " .. targetGuild .. ") OR (`guild1` = " .. targetGuild .. " AND `guild2` = " .. killerGuild .. "))")
+ if resultId ~= false then
+ warId = result.getNumber(resultId, "id")
+ result.free(resultId)
+ end
+
+ if warId ~= false then
+ local playerName = player:getName()
+ db.asyncQuery("INSERT INTO `guildwar_kills` (`killer`, `target`, `killerguild`, `targetguild`, `time`, `warid`) VALUES (" .. db.escapeString(killerName) .. ", " .. db.escapeString(playerName) .. ", " .. killerGuild .. ", " .. targetGuild .. ", " .. os.time() .. ", " .. warId .. ")")
+ addEvent(sendWarStatus, 1000, killerGuild, targetGuild, warId, playerName, killerName)
+ end
+ end
+ end
+ end
+end
+
+creatureevent:register()
+
+local creatureeventLogin = CreatureEvent("creatureeventLogin")
+
+function creatureeventLogin.onLogin(player)
+ player:registerEvent("PlayerDeath")
+ return true
+end
+
+creatureeventLogin:register()
diff --git a/Lua/TFS_10/revscriptsys/powergamers.lua b/Lua/TFS_10/revscriptsys/powergamers.lua
new file mode 100644
index 00000000..289e9a4b
--- /dev/null
+++ b/Lua/TFS_10/revscriptsys/powergamers.lua
@@ -0,0 +1,65 @@
+-- getEternalStorage and setEternalStorage
+-- can be added to data/global.lua if you want to use eternal storage for another purpose than this.
+-- Regular TFS global storage values get reset every time server reboots. This does not.
+local function getEternalStorage(key, parser)
+ local value = result.getString(db.storeQuery("SELECT `value` FROM `znote_global_storage` WHERE `key` = ".. key .. ";"), "value")
+ if not value then
+ if parser then
+ return false
+ else
+ return -1
+ end
+ end
+ result.free(value)
+ return tonumber(value) or value
+end
+
+local function setEternalStorage(key, value)
+ if getEternalStorage(key, true) then
+ db.query("UPDATE `znote_global_storage` SET `value` = '".. value .. "' WHERE `key` = ".. key .. ";")
+ else
+ db.query("INSERT INTO `znote_global_storage` (`key`, `value`) VALUES (".. key ..", ".. value ..");")
+ end
+ return true
+end
+
+-- SQL Query to execute: --
+--[[
+ALTER TABLE `znote_players` ADD `exphist_lastexp` BIGINT UNSIGNED NOT NULL DEFAULT '0',
+ADD `exphist1` BIGINT UNSIGNED NOT NULL DEFAULT '0',
+ADD `exphist2` BIGINT UNSIGNED NOT NULL DEFAULT '0',
+ADD `exphist3` BIGINT UNSIGNED NOT NULL DEFAULT '0',
+ADD `exphist4` BIGINT UNSIGNED NOT NULL DEFAULT '0',
+ADD `exphist5` BIGINT UNSIGNED NOT NULL DEFAULT '0',
+ADD `exphist6` BIGINT UNSIGNED NOT NULL DEFAULT '0',
+ADD `exphist7` BIGINT UNSIGNED NOT NULL DEFAULT '0',
+ADD `onlinetimetoday` BIGINT NOT NULL DEFAULT '0',
+ADD `onlinetime1` BIGINT NOT NULL DEFAULT '0',
+ADD `onlinetime2` BIGINT NOT NULL DEFAULT '0',
+ADD `onlinetime3` BIGINT NOT NULL DEFAULT '0',
+ADD `onlinetime4` BIGINT NOT NULL DEFAULT '0',
+ADD `onlinetime5` BIGINT NOT NULL DEFAULT '0',
+ADD `onlinetime6` BIGINT NOT NULL DEFAULT '0',
+ADD `onlinetime7` BIGINT NOT NULL DEFAULT '0',
+ADD `onlinetimeall` BIGINT NOT NULL DEFAULT '0';
+]]--
+
+-- after that execute: --
+--[[
+UPDATE `znote_players` AS `z` INNER JOIN `players` AS `p` ON `p`.`id`=`z`.`player_id` SET `z`.`exphist_lastexp`=`p`.`experience`;
+]]--
+
+local globalevent = GlobalEvent("PowerGamers")
+
+function globalevent.onThink(...)
+ if tonumber(os.date("%d")) ~= getEternalStorage(23856) then
+ setEternalStorage(23856, (tonumber(os.date("%d"))))
+ db.query("UPDATE `znote_players` SET `onlinetime7`=`onlinetime6`, `onlinetime6`=`onlinetime5`, `onlinetime5`=`onlinetime4`, `onlinetime4`=`onlinetime3`, `onlinetime3`=`onlinetime2`, `onlinetime2`=`onlinetime1`, `onlinetime1`=`onlinetimetoday`, `onlinetimetoday`=0;")
+ db.query("UPDATE `znote_players` `z` INNER JOIN `players` `p` ON `p`.`id`=`z`.`player_id` SET `z`.`exphist7`=`z`.`exphist6`, `z`.`exphist6`=`z`.`exphist5`, `z`.`exphist5`=`z`.`exphist4`, `z`.`exphist4`=`z`.`exphist3`, `z`.`exphist3`=`z`.`exphist2`, `z`.`exphist2`=`z`.`exphist1`, `z`.`exphist1`=`p`.`experience`-`z`.`exphist_lastexp`, `z`.`exphist_lastexp`=`p`.`experience`;")
+ end
+ db.query("UPDATE `znote_players` SET `onlinetimetoday` = `onlinetimetoday` + 60, `onlinetimeall` = `onlinetimeall` + 60 WHERE `player_id` IN (SELECT `player_id` FROM `players_online` WHERE `players_online`.`player_id` = `znote_players`.`player_id`)")
+ return true
+end
+
+globalevent:interval(60000)
+globalevent:register()
diff --git a/Lua/TFS_10/revscriptsys/report_talkaction.lua b/Lua/TFS_10/revscriptsys/report_talkaction.lua
new file mode 100644
index 00000000..ddf29128
--- /dev/null
+++ b/Lua/TFS_10/revscriptsys/report_talkaction.lua
@@ -0,0 +1,21 @@
+local talkaction = TalkAction("!report")
+
+function talkaction.onSay(player)
+ local storage = 6708 -- You can change the storage if its already in use
+ local delaytime = 30 -- Exhaust In Seconds.
+ if param == '' then
+ player:sendTextMessage(MESSAGE_STATUS_CONSOLE_ORANGE, "Command param required.")
+ return true
+ end
+ if player:getStorageValue(storage) <= os.time() then
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "Your report has been received successfully!")
+ db.query("INSERT INTO `znote_player_reports` (`id` ,`name` ,`posx` ,`posy` ,`posz` ,`report_description` ,`date`)VALUES (NULL , " .. db.escapeString(player:getName()) .. ", '" .. player:getPosition().x .. "', '" .. player:getPosition().y .. "', '" .. player:getPosition().z .. "', " .. db.escapeString(param) .. ", '" .. os.time() .. "')")
+ player:setStorageValue(storage, os.time() + delaytime)
+ else
+ player:sendTextMessage(MESSAGE_STATUS_WARNING, "You have to wait " .. player:getStorageValue(storage) - os.time() .. " seconds to report again.")
+ end
+ return true
+end
+
+talkaction:separator(" ")
+talkaction:register()
diff --git a/Lua/TFS_10/revscriptsys/shopsystem_globalevent.lua b/Lua/TFS_10/revscriptsys/shopsystem_globalevent.lua
new file mode 100644
index 00000000..821aa7d7
--- /dev/null
+++ b/Lua/TFS_10/revscriptsys/shopsystem_globalevent.lua
@@ -0,0 +1,163 @@
+local globalevent = GlobalEvent("ShopSystemGlobal")
+
+function globalevent.onThink(...)
+ local shopTypes = {1,5,7}
+ -- If game support mount orders
+ if Game.getClientVersion().min >= 870 then
+ table.insert(shopTypes, 6);
+ end
+ local orderQuery = db.storeQuery([[
+ SELECT
+ MIN(`po`.`player_id`) AS `player_id`,
+ `shop`.`id`,
+ `shop`.`type`,
+ `shop`.`itemid`,
+ `shop`.`count`
+ FROM `players_online` AS `po`
+ INNER JOIN `players` AS `p`
+ ON `po`.`player_id` = `p`.`id`
+ INNER JOIN `znote_shop_orders` AS `shop`
+ ON `p`.`account_id` = `shop`.`account_id`
+ WHERE `shop`.`type` IN(]] .. table.concat(shopTypes, ",") .. [[)
+ GROUP BY `shop`.`id`
+ ]])
+ -- Detect if we got any results
+ if orderQuery ~= false then
+ local type_desc = {
+ "itemids",
+ "pending premium (skip)",
+ "pending gender change (skip)",
+ "pending character name change (skip)",
+ "Outfit and addons",
+ "Mounts",
+ "Instant house purchase"
+ }
+ repeat
+ local player_id = result.getNumber(orderQuery, 'player_id')
+ local orderId = result.getNumber(orderQuery, 'id')
+ local orderType = result.getNumber(orderQuery, 'type')
+ local orderItemId = result.getNumber(orderQuery, 'itemid')
+ local orderCount = result.getNumber(orderQuery, 'count')
+ local served = false
+
+ local player = Player(player_id)
+ if player ~= nil then
+
+ local description = "Unknown or custom type"
+ if type_desc[orderType] ~= nil then
+ description = type_desc[orderType]
+ end
+ print("Processing type "..orderType..": ".. description)
+ print("Processing shop order for: [".. player:getName() .."] type "..orderType..": ".. description)
+
+ local tile = Tile(player:getPosition())
+ if tile ~= nil and tile:hasFlag(TILESTATE_PROTECTIONZONE) then
+ -- ORDER TYPE 1 (Regular item shop products)
+ if orderType == 1 then
+ served = true
+ local itemType = ItemType(orderItemId)
+ -- Get weight
+ if player:getFreeCapacity() >= itemType:getWeight(orderCount) then
+ local backpack = player:getSlotItem(CONST_SLOT_BACKPACK)
+ -- variable = (condition) and (return if true) or (return if false)
+ local needslots = itemType:isStackable() and math.floor(orderCount / 100) + 1 or orderCount
+ if backpack ~= nil and backpack:getEmptySlots(false) >= needslots then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. orderId .. ";")
+ player:addItem(orderItemId, orderCount)
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "Congratulations! You have received " .. orderCount .. "x " .. ItemType(orderItemId):getName() .. "!")
+ print("Process complete. [".. player:getName() .."] has received " .. orderCount .. "x " .. ItemType(orderItemId):getName() .. ".")
+ else -- not enough slots
+ player:sendTextMessage(MESSAGE_STATUS_WARNING, "Your main backpack is full. You need to free up "..needslots.." available slots to get " .. orderCount .. " " .. ItemType(orderItemId):getName() .. "!")
+ print("Process canceled. [".. player:getName() .."] need more space in his backpack to get " .. orderCount .. "x " .. ItemType(orderItemId):getName() .. ".")
+ end
+ else -- not enough cap
+ player:sendTextMessage(MESSAGE_STATUS_WARNING, "You need more CAP to carry this order!")
+ print("Process canceled. [".. player:getName() .."] need more cap to carry " .. orderCount .. "x " .. ItemType(orderItemId):getName() .. ".")
+ end
+ end
+
+ -- ORDER TYPE 5 (Outfit and addon)
+ if orderType == 5 then
+ served = true
+
+ local itemid = orderItemId
+ local outfits = {}
+
+ if itemid > 1000 then
+ local first = math.floor(itemid/1000)
+ table.insert(outfits, first)
+ itemid = itemid - (first * 1000)
+ end
+ table.insert(outfits, itemid)
+
+ for _, outfitId in pairs(outfits) do
+ -- Make sure player don't already have this outfit and addon
+ if not player:hasOutfit(outfitId, orderCount) then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. orderId .. ";")
+ player:addOutfit(outfitId)
+ player:addOutfitAddon(outfitId, orderCount)
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "Congratulations! You have received a new outfit!")
+ print("Process complete. [".. player:getName() .."] has received outfit: ["..outfitId.."] with addon: ["..orderCount.."]")
+ else -- Already has outfit
+ player:sendTextMessage(MESSAGE_STATUS_WARNING, "You already have this outfit and addon!")
+ print("Process canceled. [".. player:getName() .."] already have outfit: ["..outfitId.."] with addon: ["..orderCount.."].")
+ end
+ end
+ end
+
+ -- ORDER TYPE 6 (Mounts)
+ if orderType == 6 then
+ served = true
+ -- Make sure player don't already have this outfit and addon
+ if not player:hasMount(orderItemId) then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. orderId .. ";")
+ player:addMount(orderItemId)
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "Congratulations! You have received a new mount!")
+ print("Process complete. [".. player:getName() .."] has received mount: ["..orderItemId.."]")
+ else -- Already has mount
+ player:sendTextMessage(MESSAGE_STATUS_WARNING, "You already have this mount!")
+ print("Process canceled. [".. player:getName() .."] already have mount: ["..orderItemId.."].")
+ end
+ end
+
+ -- ORDER TYPE 7 (Direct house purchase)
+ if orderType == 7 then
+ served = true
+ local house = House(orderItemId)
+ -- Logged in player is not necessarily the player that bough the house. So we need to load player from db.
+ local buyerQuery = db.storeQuery("SELECT `name` FROM `players` WHERE `id` = "..orderCount.." LIMIT 1")
+ if buyerQuery ~= false then
+ local buyerName = result.getString(buyerQuery, "name")
+ result.free(buyerQuery)
+ if house then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. orderId .. ";")
+ house:setOwnerGuid(orderCount)
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "You have successfully bought the house "..house:getName().." on "..buyerName..", be sure to have the money for the rent in the bank.")
+ print("Process complete. [".. buyerName .."] has received house: ["..house:getName().."]")
+ else
+ print("Process canceled. Failed to load house with ID: "..orderItemId)
+ end
+ else
+ print("Process canceled. Failed to load player with ID: "..orderCount)
+ end
+ end
+
+ if not served then -- If this order hasn't been processed yet (missing type handling?)
+ print("Znote shop: Type ["..orderType.."] not properly processed. Missing Lua code?")
+ end
+ else -- Not in protection zone
+ player:sendTextMessage(MESSAGE_INFO_DESCR, 'You have a pending shop order, please enter protection zone.')
+ print("Skipped one shop order. Reason: Player: [".. player:getName() .."] is not inside protection zone.")
+ end
+ else -- player not logged in
+ print("Skipped one shop order. Reason: Player with id [".. player_id .."] is not online.")
+ end
+
+ until not result.next(orderQuery)
+ result.free(orderQuery)
+ end
+ return true
+end
+
+globalevent:interval(30000)
+globalevent:register()
diff --git a/Lua/TFS_10/revscriptsys/shopsystem_talkaction.lua b/Lua/TFS_10/revscriptsys/shopsystem_talkaction.lua
new file mode 100644
index 00000000..3c98b3fb
--- /dev/null
+++ b/Lua/TFS_10/revscriptsys/shopsystem_talkaction.lua
@@ -0,0 +1,137 @@
+local talkaction = TalkAction("!shop")
+
+function talkaction.onSay(player)
+ local storage = 54073 -- Make sure to select non-used storage. This is used to prevent SQL load attacks.
+ local cooldown = 15 -- in seconds.
+
+ if player:getStorageValue(storage) <= os.time() then
+ player:setStorageValue(storage, os.time() + cooldown)
+
+ local type_desc = {
+ "itemids",
+ "pending premium (skip)",
+ "pending gender change (skip)",
+ "pending character name change (skip)",
+ "Outfit and addons",
+ "Mounts",
+ "Instant house purchase"
+ }
+ print("Player: " .. player:getName() .. " triggered !shop talkaction.")
+ -- Create the query
+ local orderQuery = db.storeQuery("SELECT `id`, `type`, `itemid`, `count` FROM `znote_shop_orders` WHERE `account_id` = " .. player:getAccountId() .. ";")
+ local served = false
+
+ -- Detect if we got any results
+ if orderQuery ~= false then
+ repeat
+ -- Fetch order values
+ local q_id = result.getNumber(orderQuery, "id")
+ local q_type = result.getNumber(orderQuery, "type")
+ local q_itemid = result.getNumber(orderQuery, "itemid")
+ local q_count = result.getNumber(orderQuery, "count")
+
+ local description = "Unknown or custom type"
+ if type_desc[q_type] ~= nil then
+ description = type_desc[q_type]
+ end
+ print("Processing type "..q_type..": ".. description)
+
+ -- ORDER TYPE 1 (Regular item shop products)
+ if q_type == 1 then
+ served = true
+ -- Get weight
+ if player:getFreeCapacity() >= ItemType(q_itemid):getWeight(q_count) then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. q_id .. ";")
+ player:addItem(q_itemid, q_count)
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "Congratulations! You have received " .. q_count .. " x " .. ItemType(q_itemid):getName() .. "!")
+ else
+ player:sendTextMessage(MESSAGE_STATUS_WARNING, "Need more CAP!")
+ end
+ end
+
+ -- ORDER TYPE 5 (Outfit and addon)
+ if q_type == 5 then
+ served = true
+
+ local itemid = q_itemid
+ local outfits = {}
+
+ if itemid > 1000 then
+ local first = math.floor(itemid/1000)
+ table.insert(outfits, first)
+ itemid = itemid - (first * 1000)
+ end
+ table.insert(outfits, itemid)
+
+ for _, outfitId in pairs(outfits) do
+ -- Make sure player don't already have this outfit and addon
+ if not player:hasOutfit(outfitId, q_count) then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. q_id .. ";")
+ player:addOutfit(outfitId)
+ player:addOutfitAddon(outfitId, q_count)
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "Congratulations! You have received a new outfit!")
+ else
+ player:sendTextMessage(MESSAGE_STATUS_WARNING, "You already have this outfit and addon!")
+ end
+ end
+ end
+
+ if Game.getClientVersion().min >= 870 then
+ -- ORDER TYPE 6 (Mounts)
+ if q_type == 6 then
+ served = true
+ -- Make sure player don't already have this outfit and addon
+ if not player:hasMount(q_itemid) then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. q_id .. ";")
+ player:addMount(q_itemid)
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "Congratulations! You have received a new mount!")
+ else
+ player:sendTextMessage(MESSAGE_STATUS_WARNING, "You already have this mount!")
+ end
+ end
+ end
+
+ -- ORDER TYPE 7 (Direct house purchase)
+ if orderType == 7 then
+ served = true
+ local house = House(orderItemId)
+ -- Logged in player is not necessarily the player that bough the house. So we need to load player from db.
+ local buyerQuery = db.storeQuery("SELECT `name` FROM `players` WHERE `id` = "..orderCount.." LIMIT 1")
+ if buyerQuery ~= false then
+ local buyerName = result.getString(buyerQuery, "name")
+ result.free(buyerQuery)
+ if house then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. orderId .. ";")
+ house:setOwnerGuid(orderCount)
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "You have successfully bought the house "..house:getName().." on "..buyerName..", be sure to have the money for the rent in the bank.")
+ print("Process complete. [".. buyerName .."] has received house: ["..house:getName().."]")
+ end
+ end
+ end
+
+ -- Add custom order types here
+ -- Type 1 is for itemids (Already coded here)
+ -- Type 2 is for premium (Coded on web)
+ -- Type 3 is for gender change (Coded on web)
+ -- Type 4 is for character name change (Coded on web)
+ -- Type 5 is for character outfit and addon (Already coded here)
+ -- Type 6 is for mounts (Already coded here)
+ -- Type 7 is for Instant house purchase (Already coded here)
+ -- So use type 8+ for custom stuff, like etc packages.
+ -- if q_type == 8 then
+ -- end
+ until not result.next(orderQuery)
+ result.free(orderQuery)
+ if not served then
+ player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have no orders to process in-game.")
+ end
+ else
+ player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have no orders.")
+ end
+ else
+ player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "Can only be executed once every " .. cooldown .. " seconds. Remaining cooldown: " .. player:getStorageValue(storage) - os.time())
+ end
+ return false
+end
+
+talkaction:register()
diff --git a/Lua/TFS_10/revscriptsys/sync_outfit.lua b/Lua/TFS_10/revscriptsys/sync_outfit.lua
new file mode 100644
index 00000000..236b246e
--- /dev/null
+++ b/Lua/TFS_10/revscriptsys/sync_outfit.lua
@@ -0,0 +1,50 @@
+local creatureevent = CreatureEvent("SincOutfit")
+
+-- Sync outfits that player own with Znote AAC
+-- So its possible to see which full sets player
+-- has in characterprofile.php
+
+znote_outfit_list = {
+ { -- Female outfits
+ 136, 137, 138, 139, 140, 141, 142, 147, 148,
+ 149, 150, 155, 156, 157, 158, 252, 269, 270,
+ 279, 288, 324, 329, 336, 366, 431, 433, 464,
+ 466, 471, 513, 514, 542, 575, 578, 618, 620,
+ 632, 635, 636, 664, 666, 683, 694, 696, 698,
+ 724, 732, 745, 749, 759, 845, 852, 874, 885,
+ 900, 973, 975, 1020, 1024, 1043, 1050, 1057,
+ 1070, 1095, 1103, 1128, 1147, 1162, 1174,
+ 1187, 1203, 1205, 1207, 1211, 1246, 1244,
+ 1252, 1271, 1280, 1283, 1289, 1293, 1332
+ },
+ { -- Male outfits
+ 128, 129, 130, 131, 132, 133, 134, 143, 144,
+ 145, 146, 151, 152, 153, 154, 251, 268, 273,
+ 278, 289, 325, 328, 335, 367, 430, 432, 463,
+ 465, 472, 512, 516, 541, 574, 577, 610, 619,
+ 633, 634, 637, 665, 667, 684, 695, 697, 699,
+ 725, 733, 746, 750, 760, 846, 853, 873, 884,
+ 899, 908, 931, 955, 957, 962, 964, 966, 968,
+ 970, 972, 974, 1021, 1023, 1042, 1051, 1056,
+ 1069, 1094, 1102, 1127, 1146, 1161, 1173,
+ 1186, 1202, 1204, 1206, 1210, 1245, 1243,
+ 1251, 1270, 1279, 1282, 1288, 1292, 1331
+ }
+}
+
+function creatureevent.onLogin(player)
+ -- storage_value + 1000 storages (highest outfit id) must not be used in other script.
+ -- Must be identical to Znote AAC config.php: $config['EQ_shower'] -> storage_value
+ local storage_value = 10000
+ -- Loop through outfits
+ for _, outfit in pairs(znote_outfit_list[player:getSex() + 1]) do
+ if player:hasOutfit(outfit,3) then
+ if player:getStorageValue(storage_value + outfit) ~= 3 then
+ player:setStorageValue(storage_value + outfit, 3)
+ end
+ end
+ end
+ return true
+end
+
+creatureevent:register()
diff --git a/Lua/TFS_10/revscriptsys/znote_login.lua b/Lua/TFS_10/revscriptsys/znote_login.lua
new file mode 100644
index 00000000..53e5cea0
--- /dev/null
+++ b/Lua/TFS_10/revscriptsys/znote_login.lua
@@ -0,0 +1,68 @@
+-- Znote LoginWebService (version 1) for protocol 11, 12+
+-- Move file to this location: data/scripts/znote_login.lua
+-- And restart OT server, it should auto load script.
+-- Requires updated version of Znote AAC. (18. June 2020)
+-- This script will help Znote AAC connect players to this game server.
+
+local znote_loginWebService = GlobalEvent("znote_loginWebService")
+function znote_loginWebService.onStartup()
+ print(" ")
+ print("=============================")
+ print("= Znote AAC loginWebService =")
+ print("=============================")
+ local configLua = {
+ ["SERVER_NAME"] = configManager.getString(configKeys.SERVER_NAME),
+ ["IP"] = configManager.getString(configKeys.IP),
+ ["GAME_PORT"] = configManager.getNumber(configKeys.GAME_PORT)
+ }
+ local configSQL = {
+ ["SERVER_NAME"] = false,
+ ["IP"] = false,
+ ["GAME_PORT"] = false
+ }
+ local webStorage = db.storeQuery([[
+ SELECT
+ `key`,
+ `value`
+ FROM `znote_global_storage`
+ WHERE `key` IN('SERVER_NAME', 'IP', 'GAME_PORT')
+ ]])
+ if webStorage ~= false then
+ repeat
+ local key = result.getString(webStorage, 'key')
+ local value = result.getString(webStorage, 'value')
+ configSQL[key] = value
+ until not result.next(webStorage)
+ result.free(webStorage)
+ end
+ local inserts = {}
+ if configSQL.SERVER_NAME == false then
+ table.insert(inserts, "('SERVER_NAME',".. db.escapeString(configLua.SERVER_NAME) ..")")
+ elseif configSQL.SERVER_NAME ~= configLua.SERVER_NAME then
+ db.query("UPDATE `znote_global_storage` SET `value`=".. db.escapeString(configLua.SERVER_NAME) .." WHERE `key`='SERVER_NAME';")
+ print("= Updated [SERVER_NAME] FROM [" .. configSQL.SERVER_NAME .. "] to [" .. configLua.SERVER_NAME .. "]")
+ end
+ if configSQL.IP == false then
+ table.insert(inserts, "('IP',".. db.escapeString(configLua.IP) ..")")
+ elseif configSQL.IP ~= configLua.IP then
+ db.query("UPDATE `znote_global_storage` SET `value`=".. db.escapeString(configLua.IP) .." WHERE `key`='IP';")
+ print("= Updated [IP] FROM [" .. configSQL.IP .. "] to [" .. configLua.IP .. "]")
+ end
+ if configSQL.GAME_PORT == false then
+ table.insert(inserts, "('GAME_PORT',".. db.escapeString(configLua.GAME_PORT) ..")")
+ elseif configSQL.GAME_PORT ~= tostring(configLua.GAME_PORT) then
+ db.query("UPDATE `znote_global_storage` SET `value`=".. db.escapeString(configLua.GAME_PORT) .." WHERE `key`='GAME_PORT';")
+ print("= Updated [GAME_PORT] FROM [" .. configSQL.GAME_PORT .. "] to [" .. configLua.GAME_PORT .. "]")
+ end
+ if #inserts > 0 then
+ db.query("INSERT INTO `znote_global_storage` (`key`,`value`) VALUES "..table.concat(inserts,',')..";")
+ print("= Fixed " .. #inserts .. " missing configurations.")
+ end
+ print("=============================")
+ print("= SERVER_NAME: " .. configLua.SERVER_NAME)
+ print("= IP: " .. configLua.IP)
+ print("= GAME_PORT: " .. configLua.GAME_PORT)
+ print("=============================")
+ print(" ")
+end
+znote_loginWebService:register()
diff --git a/Lua/TFS_10/talkaction report system/adminreport.lua b/Lua/TFS_10/talkaction report system/adminreport.lua
new file mode 100644
index 00000000..e1f6863c
--- /dev/null
+++ b/Lua/TFS_10/talkaction report system/adminreport.lua
@@ -0,0 +1,18 @@
+--
+-- Coded by Dark ShaoOz, modified by Znote
+function onSay(player, words, param)
+ local storage = 6708 -- You can change the storage if its already in use
+ local delaytime = 30 -- Exhaust In Seconds.
+ if param == '' then
+ player:sendTextMessage(MESSAGE_STATUS_CONSOLE_ORANGE, "Command param required.")
+ return true
+ end
+ if player:getStorageValue(storage) <= os.time() then
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "Your report has been received successfully!")
+ db.query("INSERT INTO `znote_player_reports` (`id` ,`name` ,`posx` ,`posy` ,`posz` ,`report_description` ,`date`)VALUES (NULL , " .. db.escapeString(player:getName()) .. ", '" .. player:getPosition().x .. "', '" .. player:getPosition().y .. "', '" .. player:getPosition().z .. "', " .. db.escapeString(param) .. ", '" .. os.time() .. "')")
+ player:setStorageValue(storage, os.time() + delaytime)
+ else
+ player:sendTextMessage(MESSAGE_STATUS_WARNING, "You have to wait " .. player:getStorageValue(storage) - os.time() .. " seconds to report again.")
+ end
+ return true
+end
diff --git a/Lua/TFS_10/talkaction shopsystem/znoteshop.lua b/Lua/TFS_10/talkaction shopsystem/znoteshop.lua
new file mode 100644
index 00000000..c53abb58
--- /dev/null
+++ b/Lua/TFS_10/talkaction shopsystem/znoteshop.lua
@@ -0,0 +1,135 @@
+--
+-- Znote Shop v1.1 for Znote AAC on TFS 1.2+
+function onSay(player, words, param)
+ local storage = 54073 -- Make sure to select non-used storage. This is used to prevent SQL load attacks.
+ local cooldown = 15 -- in seconds.
+
+ if player:getStorageValue(storage) <= os.time() then
+ player:setStorageValue(storage, os.time() + cooldown)
+
+ local type_desc = {
+ "itemids",
+ "pending premium (skip)",
+ "pending gender change (skip)",
+ "pending character name change (skip)",
+ "Outfit and addons",
+ "Mounts",
+ "Instant house purchase"
+ }
+ print("Player: " .. player:getName() .. " triggered !shop talkaction.")
+ -- Create the query
+ local orderQuery = db.storeQuery("SELECT `id`, `type`, `itemid`, `count` FROM `znote_shop_orders` WHERE `account_id` = " .. player:getAccountId() .. ";")
+ local served = false
+
+ -- Detect if we got any results
+ if orderQuery ~= false then
+ repeat
+ -- Fetch order values
+ local q_id = result.getNumber(orderQuery, "id")
+ local q_type = result.getNumber(orderQuery, "type")
+ local q_itemid = result.getNumber(orderQuery, "itemid")
+ local q_count = result.getNumber(orderQuery, "count")
+
+ local description = "Unknown or custom type"
+ if type_desc[q_type] ~= nil then
+ description = type_desc[q_type]
+ end
+ print("Processing type "..q_type..": ".. description)
+
+ -- ORDER TYPE 1 (Regular item shop products)
+ if q_type == 1 then
+ served = true
+ -- Get weight
+ if player:getFreeCapacity() >= ItemType(q_itemid):getWeight(q_count) then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. q_id .. ";")
+ player:addItem(q_itemid, q_count)
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "Congratulations! You have received " .. q_count .. " x " .. ItemType(q_itemid):getName() .. "!")
+ else
+ player:sendTextMessage(MESSAGE_STATUS_WARNING, "Need more CAP!")
+ end
+ end
+
+ -- ORDER TYPE 5 (Outfit and addon)
+ if q_type == 5 then
+ served = true
+
+ local itemid = q_itemid
+ local outfits = {}
+
+ if itemid > 1000 then
+ local first = math.floor(itemid/1000)
+ table.insert(outfits, first)
+ itemid = itemid - (first * 1000)
+ end
+ table.insert(outfits, itemid)
+
+ for _, outfitId in pairs(outfits) do
+ -- Make sure player don't already have this outfit and addon
+ if not player:hasOutfit(outfitId, q_count) then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. q_id .. ";")
+ player:addOutfit(outfitId)
+ player:addOutfitAddon(outfitId, q_count)
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "Congratulations! You have received a new outfit!")
+ else
+ player:sendTextMessage(MESSAGE_STATUS_WARNING, "You already have this outfit and addon!")
+ end
+ end
+ end
+
+ if Game.getClientVersion().min >= 870 then
+ -- ORDER TYPE 6 (Mounts)
+ if q_type == 6 then
+ served = true
+ -- Make sure player don't already have this outfit and addon
+ if not player:hasMount(q_itemid) then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. q_id .. ";")
+ player:addMount(q_itemid)
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "Congratulations! You have received a new mount!")
+ else
+ player:sendTextMessage(MESSAGE_STATUS_WARNING, "You already have this mount!")
+ end
+ end
+ end
+
+ -- ORDER TYPE 7 (Direct house purchase)
+ if orderType == 7 then
+ served = true
+ local house = House(orderItemId)
+ -- Logged in player is not necessarily the player that bough the house. So we need to load player from db.
+ local buyerQuery = db.storeQuery("SELECT `name` FROM `players` WHERE `id` = "..orderCount.." LIMIT 1")
+ if buyerQuery ~= false then
+ local buyerName = result.getString(buyerQuery, "name")
+ result.free(buyerQuery)
+ if house then
+ db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. orderId .. ";")
+ house:setOwnerGuid(orderCount)
+ player:sendTextMessage(MESSAGE_INFO_DESCR, "You have successfully bought the house "..house:getName().." on "..buyerName..", be sure to have the money for the rent in the bank.")
+ print("Process complete. [".. buyerName .."] has received house: ["..house:getName().."]")
+ end
+ end
+ end
+
+ -- Add custom order types here
+ -- Type 1 is for itemids (Already coded here)
+ -- Type 2 is for premium (Coded on web)
+ -- Type 3 is for gender change (Coded on web)
+ -- Type 4 is for character name change (Coded on web)
+ -- Type 5 is for character outfit and addon (Already coded here)
+ -- Type 6 is for mounts (Already coded here)
+ -- Type 7 is for Instant house purchase (Already coded here)
+ -- So use type 8+ for custom stuff, like etc packages.
+ -- if q_type == 8 then
+ -- end
+ until not result.next(orderQuery)
+ result.free(orderQuery)
+ if not served then
+ player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have no orders to process in-game.")
+ end
+ else
+ player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You have no orders.")
+ end
+ else
+ player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "Can only be executed once every " .. cooldown .. " seconds. Remaining cooldown: " .. player:getStorageValue(storage) - os.time())
+ end
+ return false
+end
diff --git a/README.md b/README.md
new file mode 100644
index 00000000..71cd6f68
--- /dev/null
+++ b/README.md
@@ -0,0 +1,21 @@
+## ZnoteAAC Hellgrave Remastered
+========
+ZnoteAAC Hellgrave Remastered has been designed for the server Hellgrave created by Edisondario team (retired) and now updated by OpenGamesCommunity.
+
+The Hellgrave Remastered was tested only for work with Hellgrave server 12.72.
+Can work with Hellgrave server 12.60 also.
+
+The website includes:
+
+- Custom Intro Website, 3 Cards with movement
+- Custom Index with server info, changelogs and latest news
+- Custom system Account, with menu, admin panel, etc
+- A Wiki
+- Interactive Map ( Only for Hellgrave Server , doesnt work for any other server)
+- Custom pages
+========
+
+### Credits
+
+Engine: ZnoteAAC
+Theme: Alex (OpenGamesCommunity)
\ No newline at end of file
diff --git a/achievements.php b/achievements.php
new file mode 100644
index 00000000..d74e637c
--- /dev/null
+++ b/achievements.php
@@ -0,0 +1,62 @@
+
+
Achievements on
+
+
+
+
Grade
+
Name
+
Description
+
Secret
+
Points
+
+
+
+ $achName) {
+ // Set defaults
+ if (!isset($achName['secret'])) $achName['secret'] = false;
+ if (!isset($achName['img'])) $achName['img'] = 'https://i.imgur.com/ZqWp1TE.png';
+
+ if (($achName['points'] >= 1) and ($achName['points'] <= 3) and (!$achName['img'])) {
+ echo '
';
+
+ } elseif (($achName['points'] >= 4) and ($achName['points'] <= 6) and (!$achName['img'])) {
+ echo '
';
+
+ } elseif (($achName['points'] >= 7) and ($achName['points'] <= 9) and (!$achName['img'])) {
+ echo '
+
+ Permanently delete/erase character from database:
+
+
+ Ban character and/or account:
+
+
+ Reset password to the account of character name:
+
+
+ Set character name to position:
+
+ ERROR: You forgot to add (Senior Tutor) rank in config.php!
+
+
+
+ Give shop points to character:
+
+
+ Teleport Player
+
+
+
+
+
+ 0)
+ $duration['hour'] = ($duration['day'] - (int)$duration['day']) * 24;
+ if (isset($duration['hour'])) {
+ if (($duration['hour'] - (int)$duration['hour']) > 0)
+ $duration['minute'] = ($duration['hour'] - (int)$duration['hour']) * 60;
+ if (isset($duration['minute'])) {
+ if (($duration['minute'] - (int)$duration['minute']) > 0)
+ $duration['second'] = ($duration['minute'] - (int)$duration['minute']) * 60;
+ }
+ }
+ $tmp = array();
+ foreach ($duration as $type => $value) {
+ if ($value >= 1) {
+ $pluralType = ((int)$value === 1) ? $type : $type . 's';
+ if ($type !== 'second') $tmp[] = (int)$value . " $pluralType";
+ else $tmp[] = (int)$value . " $pluralType";
+ }
+ }
+ return implode(', ', $tmp);
+}
+// start
+
+// Passive check to see if bid period has expired and someone won a deal
+$time = time();
+$expired_auctions = mysql_select_multi("
+ SELECT `id`
+ FROM `znote_auction_player`
+ WHERE `sold` = 0
+ AND `time_end` < {$time}
+ AND `bidder_account_id` > 0
+");
+//data_dump($expired_auctions, $this_account_id, "expired_auctions");
+if ($expired_auctions !== false) {
+ $soldIds = array();
+ foreach ($expired_auctions as $a) {
+ $soldIds[] = $a['id'];
+ }
+ if (!empty($soldIds)) {
+ mysql_update("
+ UPDATE `znote_auction_player`
+ SET `sold`=1
+ WHERE `id` IN(".implode(',', $soldIds).")
+ LIMIT ".COUNT($soldIds).";
+ ");
+ }
+}
+// end passive check
+// Pending auctions
+$pending = mysql_select_multi("
+ SELECT
+ `za`.`id` AS `zaid`,
+ `za`.`price`,
+ `za`.`bid`,
+ `za`.`time_begin`,
+ `za`.`time_end`,
+ `p`.`id` AS `player_id`,
+ `p`.`name`,
+ `p`.`vocation`,
+ `p`.`level`,
+ `p`.`lookbody` AS `body`,
+ `p`.`lookfeet` AS `feet`,
+ `p`.`lookhead` AS `head`,
+ `p`.`looklegs` AS `legs`,
+ `p`.`looktype` AS `type`,
+ `p`.`lookaddons` AS `addons`
+ FROM `znote_auction_player` za
+ INNER JOIN `players` p
+ ON `za`.`player_id` = `p`.`id`
+ WHERE `p`.`account_id` = {$auction['storage_account_id']}
+ AND `za`.`claimed` = 0
+ AND `za`.`sold` = 1
+ ORDER BY `za`.`time_end` desc
+");
+// ongoing auctions
+$ongoing = mysql_select_multi("
+ SELECT
+ `za`.`id` AS `zaid`,
+ `za`.`price`,
+ `za`.`bid`,
+ `za`.`time_begin`,
+ `za`.`time_end`,
+ `p`.`vocation`,
+ `p`.`level`,
+ `p`.`lookbody` AS `body`,
+ `p`.`lookfeet` AS `feet`,
+ `p`.`lookhead` AS `head`,
+ `p`.`looklegs` AS `legs`,
+ `p`.`looktype` AS `type`,
+ `p`.`lookaddons` AS `addons`
+ FROM `znote_auction_player` za
+ INNER JOIN `players` p
+ ON `za`.`player_id` = `p`.`id`
+ WHERE `p`.`account_id` = {$auction['storage_account_id']}
+ AND `za`.`sold` = 0
+ ORDER BY `za`.`time_end` desc;
+");
+// Completed auctions
+$completed = mysql_select_multi("
+ SELECT
+ `za`.`id` AS `zaid`,
+ `za`.`price`,
+ `za`.`bid`,
+ `za`.`time_begin`,
+ `za`.`time_end`,
+ `p`.`id` AS `player_id`,
+ `p`.`name`,
+ `p`.`vocation`,
+ `p`.`level`,
+ `p`.`lookbody` AS `body`,
+ `p`.`lookfeet` AS `feet`,
+ `p`.`lookhead` AS `head`,
+ `p`.`looklegs` AS `legs`,
+ `p`.`looktype` AS `type`,
+ `p`.`lookaddons` AS `addons`
+ FROM `znote_auction_player` za
+ INNER JOIN `players` p
+ ON `za`.`player_id` = `p`.`id`
+ WHERE `za`.`claimed` = 1
+ ORDER BY `za`.`time_end` desc
+");
+?>
+
+
+
+
Character Auction History
+
Let players sell, buy and bid on characters.
+
+ Creates a deeper shop economy, encourages players to spend more money in shop for points.
+ Pay to win/progress mechanic, but also lets people who can barely afford points to gain it
+ by leveling characters to sell. It can also discourages illegal/risky third-party account
+ services. Since players can buy officially & support the server, dodgy competitors have to sell for cheaper.
+ Without admin interference this is organic to each individual community economy inflation.
";
+ $updatechangelog = true;
+ }
+ if ($updatechangelog) {
+ // Cache changelog
+ $cache = new Cache('engine/cache/changelog');
+ $cache->setContent(mysql_select_multi("SELECT `id`, `text`, `time`, `report_id`, `status` FROM `znote_changelog` ORDER BY `id` DESC;"));
+ $cache->save();
+ }
+
+ }
+ // If we should give user price
+ if ($price > 0) {
+ $account = mysql_select_single("SELECT `a`.`id`, `a`.`email` FROM `accounts` AS `a`
+ INNER JOIN `players` AS `p` ON `p`.`account_id` = `a`.`id`
+ WHERE `p`.`name` = '$playerName' LIMIT 1;");
+
+ if ($account !== false) {
+ // transaction log
+ mysql_insert("INSERT INTO `znote_paypal` VALUES ('', '$reportId', 'report@admin.".$user_data['name']." to ".$account['email']."', '".$account['id']."', '0', '".$price."')");
+ // Process payment
+ $data = mysql_select_single("SELECT `points` AS `old_points` FROM `znote_accounts` WHERE `account_id`='".$account['id']."';");
+ // Give points to user
+ $new_points = $data['old_points'] + $price;
+ mysql_update("UPDATE `znote_accounts` SET `points`='$new_points' WHERE `account_id`='".$account['id']."'");
+
+ // Remind GM that he sent points to character
+ echo "".$playerName." has been granted ".$price." points for his reports.";
+ }
+ }
+
+// GET logic (Edit report data and specify how many [if any] points to give to user)
+} elseif (!empty($_GET)) {
+ // Fetch GET data
+ $action = getValue($_GET['action']);
+ $playerName = getValue($_GET['name']);
+ $reportId = getValue($_GET['id']);
+
+ // Fetch the report we intend to modify
+ foreach ($reports as $sid => $sa)
+ foreach ($sa as $rid => $ra)
+ if ($rid == $reportId)
+ $report = $reports[$sid][$reportId];
+
+ // Create HTML form
+ ?>
+
+
diff --git a/adminempty.php b/adminempty.php
new file mode 100644
index 00000000..7ec1b34a
--- /dev/null
+++ b/adminempty.php
@@ -0,0 +1,9 @@
+
diff --git a/animateditems/1.gif b/animateditems/1.gif
new file mode 100644
index 00000000..9b2d5c3d
Binary files /dev/null and b/animateditems/1.gif differ
diff --git a/animateditems/10.gif b/animateditems/10.gif
new file mode 100644
index 00000000..d41eee29
Binary files /dev/null and b/animateditems/10.gif differ
diff --git a/animateditems/10000.gif b/animateditems/10000.gif
new file mode 100644
index 00000000..82ffa9ec
Binary files /dev/null and b/animateditems/10000.gif differ
diff --git a/animateditems/10000.png b/animateditems/10000.png
new file mode 100644
index 00000000..e1fb7ab5
Binary files /dev/null and b/animateditems/10000.png differ
diff --git a/animateditems/10001.gif b/animateditems/10001.gif
new file mode 100644
index 00000000..e7cbc0eb
Binary files /dev/null and b/animateditems/10001.gif differ
diff --git a/animateditems/10001.png b/animateditems/10001.png
new file mode 100644
index 00000000..e2125a29
Binary files /dev/null and b/animateditems/10001.png differ
diff --git a/animateditems/10006.gif b/animateditems/10006.gif
new file mode 100644
index 00000000..58dfb817
Binary files /dev/null and b/animateditems/10006.gif differ
diff --git a/animateditems/10006.png b/animateditems/10006.png
new file mode 100644
index 00000000..7ebdbea8
Binary files /dev/null and b/animateditems/10006.png differ
diff --git a/animateditems/10011.gif b/animateditems/10011.gif
new file mode 100644
index 00000000..94a0b969
Binary files /dev/null and b/animateditems/10011.gif differ
diff --git a/animateditems/10011.png b/animateditems/10011.png
new file mode 100644
index 00000000..b8492f0c
Binary files /dev/null and b/animateditems/10011.png differ
diff --git a/animateditems/10012.gif b/animateditems/10012.gif
new file mode 100644
index 00000000..94a0b969
Binary files /dev/null and b/animateditems/10012.gif differ
diff --git a/animateditems/10012.png b/animateditems/10012.png
new file mode 100644
index 00000000..b8492f0c
Binary files /dev/null and b/animateditems/10012.png differ
diff --git a/animateditems/10016.gif b/animateditems/10016.gif
new file mode 100644
index 00000000..019630dd
Binary files /dev/null and b/animateditems/10016.gif differ
diff --git a/animateditems/10016.png b/animateditems/10016.png
new file mode 100644
index 00000000..f5ca8121
Binary files /dev/null and b/animateditems/10016.png differ
diff --git a/animateditems/10020.gif b/animateditems/10020.gif
new file mode 100644
index 00000000..8d94e106
Binary files /dev/null and b/animateditems/10020.gif differ
diff --git a/animateditems/10020.png b/animateditems/10020.png
new file mode 100644
index 00000000..340caebd
Binary files /dev/null and b/animateditems/10020.png differ
diff --git a/animateditems/10021.gif b/animateditems/10021.gif
new file mode 100644
index 00000000..82a72fd4
Binary files /dev/null and b/animateditems/10021.gif differ
diff --git a/animateditems/10021.png b/animateditems/10021.png
new file mode 100644
index 00000000..c7d1dd23
Binary files /dev/null and b/animateditems/10021.png differ
diff --git a/animateditems/10022.gif b/animateditems/10022.gif
new file mode 100644
index 00000000..f59ef103
Binary files /dev/null and b/animateditems/10022.gif differ
diff --git a/animateditems/10022.png b/animateditems/10022.png
new file mode 100644
index 00000000..768328f4
Binary files /dev/null and b/animateditems/10022.png differ
diff --git a/animateditems/10025.gif b/animateditems/10025.gif
new file mode 100644
index 00000000..b002ecc4
Binary files /dev/null and b/animateditems/10025.gif differ
diff --git a/animateditems/10025.png b/animateditems/10025.png
new file mode 100644
index 00000000..dc605033
Binary files /dev/null and b/animateditems/10025.png differ
diff --git a/animateditems/10026.gif b/animateditems/10026.gif
new file mode 100644
index 00000000..79fefff5
Binary files /dev/null and b/animateditems/10026.gif differ
diff --git a/animateditems/10026.png b/animateditems/10026.png
new file mode 100644
index 00000000..05380164
Binary files /dev/null and b/animateditems/10026.png differ
diff --git a/animateditems/10028.gif b/animateditems/10028.gif
new file mode 100644
index 00000000..0212cc7e
Binary files /dev/null and b/animateditems/10028.gif differ
diff --git a/animateditems/10028.png b/animateditems/10028.png
new file mode 100644
index 00000000..f5b74620
Binary files /dev/null and b/animateditems/10028.png differ
diff --git a/animateditems/10031.gif b/animateditems/10031.gif
new file mode 100644
index 00000000..52f8aaea
Binary files /dev/null and b/animateditems/10031.gif differ
diff --git a/animateditems/10031.png b/animateditems/10031.png
new file mode 100644
index 00000000..ae21b459
Binary files /dev/null and b/animateditems/10031.png differ
diff --git a/animateditems/10032.gif b/animateditems/10032.gif
new file mode 100644
index 00000000..ced4c57d
Binary files /dev/null and b/animateditems/10032.gif differ
diff --git a/animateditems/10032.png b/animateditems/10032.png
new file mode 100644
index 00000000..fed7b724
Binary files /dev/null and b/animateditems/10032.png differ
diff --git a/animateditems/10033.gif b/animateditems/10033.gif
new file mode 100644
index 00000000..ed8ddf55
Binary files /dev/null and b/animateditems/10033.gif differ
diff --git a/animateditems/10033.png b/animateditems/10033.png
new file mode 100644
index 00000000..057b06a1
Binary files /dev/null and b/animateditems/10033.png differ
diff --git a/animateditems/10034.gif b/animateditems/10034.gif
new file mode 100644
index 00000000..e4e82beb
Binary files /dev/null and b/animateditems/10034.gif differ
diff --git a/animateditems/10034.png b/animateditems/10034.png
new file mode 100644
index 00000000..924d7cd6
Binary files /dev/null and b/animateditems/10034.png differ
diff --git a/animateditems/10046.gif b/animateditems/10046.gif
new file mode 100644
index 00000000..49520d23
Binary files /dev/null and b/animateditems/10046.gif differ
diff --git a/animateditems/10046.png b/animateditems/10046.png
new file mode 100644
index 00000000..aea131cd
Binary files /dev/null and b/animateditems/10046.png differ
diff --git a/animateditems/10047.gif b/animateditems/10047.gif
new file mode 100644
index 00000000..fbacebc6
Binary files /dev/null and b/animateditems/10047.gif differ
diff --git a/animateditems/10047.png b/animateditems/10047.png
new file mode 100644
index 00000000..a2dc9719
Binary files /dev/null and b/animateditems/10047.png differ
diff --git a/animateditems/10048.gif b/animateditems/10048.gif
new file mode 100644
index 00000000..0c71ed4b
Binary files /dev/null and b/animateditems/10048.gif differ
diff --git a/animateditems/10048.png b/animateditems/10048.png
new file mode 100644
index 00000000..02ed72cd
Binary files /dev/null and b/animateditems/10048.png differ
diff --git a/animateditems/10050.gif b/animateditems/10050.gif
new file mode 100644
index 00000000..0d6ef90e
Binary files /dev/null and b/animateditems/10050.gif differ
diff --git a/animateditems/10050.png b/animateditems/10050.png
new file mode 100644
index 00000000..9f77fcc6
Binary files /dev/null and b/animateditems/10050.png differ
diff --git a/animateditems/10061.gif b/animateditems/10061.gif
new file mode 100644
index 00000000..0520958d
Binary files /dev/null and b/animateditems/10061.gif differ
diff --git a/animateditems/10061.png b/animateditems/10061.png
new file mode 100644
index 00000000..43ccb70a
Binary files /dev/null and b/animateditems/10061.png differ
diff --git a/animateditems/10062.gif b/animateditems/10062.gif
new file mode 100644
index 00000000..56806afc
Binary files /dev/null and b/animateditems/10062.gif differ
diff --git a/animateditems/10062.png b/animateditems/10062.png
new file mode 100644
index 00000000..7f51978e
Binary files /dev/null and b/animateditems/10062.png differ
diff --git a/animateditems/10063.gif b/animateditems/10063.gif
new file mode 100644
index 00000000..8eb64518
Binary files /dev/null and b/animateditems/10063.gif differ
diff --git a/animateditems/10063.png b/animateditems/10063.png
new file mode 100644
index 00000000..697f4a02
Binary files /dev/null and b/animateditems/10063.png differ
diff --git a/animateditems/10064.gif b/animateditems/10064.gif
new file mode 100644
index 00000000..12cdd14c
Binary files /dev/null and b/animateditems/10064.gif differ
diff --git a/animateditems/10064.png b/animateditems/10064.png
new file mode 100644
index 00000000..ab942d33
Binary files /dev/null and b/animateditems/10064.png differ
diff --git a/animateditems/10066.gif b/animateditems/10066.gif
new file mode 100644
index 00000000..a4f00779
Binary files /dev/null and b/animateditems/10066.gif differ
diff --git a/animateditems/10066.png b/animateditems/10066.png
new file mode 100644
index 00000000..bdd6b2de
Binary files /dev/null and b/animateditems/10066.png differ
diff --git a/animateditems/10067.gif b/animateditems/10067.gif
new file mode 100644
index 00000000..fd18f721
Binary files /dev/null and b/animateditems/10067.gif differ
diff --git a/animateditems/10067.png b/animateditems/10067.png
new file mode 100644
index 00000000..978eab51
Binary files /dev/null and b/animateditems/10067.png differ
diff --git a/animateditems/10068.gif b/animateditems/10068.gif
new file mode 100644
index 00000000..b3098019
Binary files /dev/null and b/animateditems/10068.gif differ
diff --git a/animateditems/10068.png b/animateditems/10068.png
new file mode 100644
index 00000000..5fd14479
Binary files /dev/null and b/animateditems/10068.png differ
diff --git a/animateditems/10069.gif b/animateditems/10069.gif
new file mode 100644
index 00000000..bafdee5e
Binary files /dev/null and b/animateditems/10069.gif differ
diff --git a/animateditems/10069.png b/animateditems/10069.png
new file mode 100644
index 00000000..50b2c32d
Binary files /dev/null and b/animateditems/10069.png differ
diff --git a/animateditems/10070.gif b/animateditems/10070.gif
new file mode 100644
index 00000000..c6e3a8fa
Binary files /dev/null and b/animateditems/10070.gif differ
diff --git a/animateditems/10070.png b/animateditems/10070.png
new file mode 100644
index 00000000..d0fdf769
Binary files /dev/null and b/animateditems/10070.png differ
diff --git a/animateditems/10071.gif b/animateditems/10071.gif
new file mode 100644
index 00000000..60e4641e
Binary files /dev/null and b/animateditems/10071.gif differ
diff --git a/animateditems/10071.png b/animateditems/10071.png
new file mode 100644
index 00000000..2af55ec4
Binary files /dev/null and b/animateditems/10071.png differ
diff --git a/animateditems/10072.gif b/animateditems/10072.gif
new file mode 100644
index 00000000..d6fce258
Binary files /dev/null and b/animateditems/10072.gif differ
diff --git a/animateditems/10072.png b/animateditems/10072.png
new file mode 100644
index 00000000..f3ea9d6f
Binary files /dev/null and b/animateditems/10072.png differ
diff --git a/animateditems/10073.gif b/animateditems/10073.gif
new file mode 100644
index 00000000..84beb784
Binary files /dev/null and b/animateditems/10073.gif differ
diff --git a/animateditems/10073.png b/animateditems/10073.png
new file mode 100644
index 00000000..ecd85f31
Binary files /dev/null and b/animateditems/10073.png differ
diff --git a/animateditems/10074.gif b/animateditems/10074.gif
new file mode 100644
index 00000000..bda1c215
Binary files /dev/null and b/animateditems/10074.gif differ
diff --git a/animateditems/10074.png b/animateditems/10074.png
new file mode 100644
index 00000000..31ec326d
Binary files /dev/null and b/animateditems/10074.png differ
diff --git a/animateditems/10075.gif b/animateditems/10075.gif
new file mode 100644
index 00000000..289c5317
Binary files /dev/null and b/animateditems/10075.gif differ
diff --git a/animateditems/10075.png b/animateditems/10075.png
new file mode 100644
index 00000000..c6164259
Binary files /dev/null and b/animateditems/10075.png differ
diff --git a/animateditems/10076.gif b/animateditems/10076.gif
new file mode 100644
index 00000000..2f5f8221
Binary files /dev/null and b/animateditems/10076.gif differ
diff --git a/animateditems/10076.png b/animateditems/10076.png
new file mode 100644
index 00000000..aca9f3ed
Binary files /dev/null and b/animateditems/10076.png differ
diff --git a/animateditems/10089.gif b/animateditems/10089.gif
new file mode 100644
index 00000000..2bf189a8
Binary files /dev/null and b/animateditems/10089.gif differ
diff --git a/animateditems/10089.png b/animateditems/10089.png
new file mode 100644
index 00000000..031835fd
Binary files /dev/null and b/animateditems/10089.png differ
diff --git a/animateditems/10090.gif b/animateditems/10090.gif
new file mode 100644
index 00000000..dc1aa5c8
Binary files /dev/null and b/animateditems/10090.gif differ
diff --git a/animateditems/10090.png b/animateditems/10090.png
new file mode 100644
index 00000000..c809e709
Binary files /dev/null and b/animateditems/10090.png differ
diff --git a/animateditems/10091.gif b/animateditems/10091.gif
new file mode 100644
index 00000000..d1bc2f83
Binary files /dev/null and b/animateditems/10091.gif differ
diff --git a/animateditems/10091.png b/animateditems/10091.png
new file mode 100644
index 00000000..ec319e2a
Binary files /dev/null and b/animateditems/10091.png differ
diff --git a/animateditems/10092.gif b/animateditems/10092.gif
new file mode 100644
index 00000000..1db0a118
Binary files /dev/null and b/animateditems/10092.gif differ
diff --git a/animateditems/10092.png b/animateditems/10092.png
new file mode 100644
index 00000000..129c46cc
Binary files /dev/null and b/animateditems/10092.png differ
diff --git a/animateditems/10096.gif b/animateditems/10096.gif
new file mode 100644
index 00000000..2510551c
Binary files /dev/null and b/animateditems/10096.gif differ
diff --git a/animateditems/10096.png b/animateditems/10096.png
new file mode 100644
index 00000000..e3a06d79
Binary files /dev/null and b/animateditems/10096.png differ
diff --git a/animateditems/10097.gif b/animateditems/10097.gif
new file mode 100644
index 00000000..2510551c
Binary files /dev/null and b/animateditems/10097.gif differ
diff --git a/animateditems/10097.png b/animateditems/10097.png
new file mode 100644
index 00000000..e3a06d79
Binary files /dev/null and b/animateditems/10097.png differ
diff --git a/animateditems/10099.gif b/animateditems/10099.gif
new file mode 100644
index 00000000..9ed975ff
Binary files /dev/null and b/animateditems/10099.gif differ
diff --git a/animateditems/10099.png b/animateditems/10099.png
new file mode 100644
index 00000000..d512fe6e
Binary files /dev/null and b/animateditems/10099.png differ
diff --git a/animateditems/10100.gif b/animateditems/10100.gif
new file mode 100644
index 00000000..9ed975ff
Binary files /dev/null and b/animateditems/10100.gif differ
diff --git a/animateditems/10100.png b/animateditems/10100.png
new file mode 100644
index 00000000..d512fe6e
Binary files /dev/null and b/animateditems/10100.png differ
diff --git a/animateditems/10101.gif b/animateditems/10101.gif
new file mode 100644
index 00000000..9ed975ff
Binary files /dev/null and b/animateditems/10101.gif differ
diff --git a/animateditems/10101.png b/animateditems/10101.png
new file mode 100644
index 00000000..d512fe6e
Binary files /dev/null and b/animateditems/10101.png differ
diff --git a/animateditems/10102.gif b/animateditems/10102.gif
new file mode 100644
index 00000000..9ed975ff
Binary files /dev/null and b/animateditems/10102.gif differ
diff --git a/animateditems/10102.png b/animateditems/10102.png
new file mode 100644
index 00000000..d512fe6e
Binary files /dev/null and b/animateditems/10102.png differ
diff --git a/animateditems/10103.gif b/animateditems/10103.gif
new file mode 100644
index 00000000..3f20d3b8
Binary files /dev/null and b/animateditems/10103.gif differ
diff --git a/animateditems/10103.png b/animateditems/10103.png
new file mode 100644
index 00000000..5a145b65
Binary files /dev/null and b/animateditems/10103.png differ
diff --git a/animateditems/10104.gif b/animateditems/10104.gif
new file mode 100644
index 00000000..a717508c
Binary files /dev/null and b/animateditems/10104.gif differ
diff --git a/animateditems/10104.png b/animateditems/10104.png
new file mode 100644
index 00000000..90b65dc4
Binary files /dev/null and b/animateditems/10104.png differ
diff --git a/animateditems/10105.gif b/animateditems/10105.gif
new file mode 100644
index 00000000..4c6324a6
Binary files /dev/null and b/animateditems/10105.gif differ
diff --git a/animateditems/10105.png b/animateditems/10105.png
new file mode 100644
index 00000000..125c8c9d
Binary files /dev/null and b/animateditems/10105.png differ
diff --git a/animateditems/10106.gif b/animateditems/10106.gif
new file mode 100644
index 00000000..e29974f4
Binary files /dev/null and b/animateditems/10106.gif differ
diff --git a/animateditems/10106.png b/animateditems/10106.png
new file mode 100644
index 00000000..0b32a0d8
Binary files /dev/null and b/animateditems/10106.png differ
diff --git a/animateditems/10107.gif b/animateditems/10107.gif
new file mode 100644
index 00000000..c9c92d0d
Binary files /dev/null and b/animateditems/10107.gif differ
diff --git a/animateditems/10107.png b/animateditems/10107.png
new file mode 100644
index 00000000..0923bc2c
Binary files /dev/null and b/animateditems/10107.png differ
diff --git a/animateditems/10108.gif b/animateditems/10108.gif
new file mode 100644
index 00000000..c9c92d0d
Binary files /dev/null and b/animateditems/10108.gif differ
diff --git a/animateditems/10108.png b/animateditems/10108.png
new file mode 100644
index 00000000..0923bc2c
Binary files /dev/null and b/animateditems/10108.png differ
diff --git a/animateditems/10109.gif b/animateditems/10109.gif
new file mode 100644
index 00000000..c7d97af8
Binary files /dev/null and b/animateditems/10109.gif differ
diff --git a/animateditems/10109.png b/animateditems/10109.png
new file mode 100644
index 00000000..b722120a
Binary files /dev/null and b/animateditems/10109.png differ
diff --git a/animateditems/10119.gif b/animateditems/10119.gif
new file mode 100644
index 00000000..b24373c1
Binary files /dev/null and b/animateditems/10119.gif differ
diff --git a/animateditems/10119.png b/animateditems/10119.png
new file mode 100644
index 00000000..580b14e1
Binary files /dev/null and b/animateditems/10119.png differ
diff --git a/animateditems/10122.gif b/animateditems/10122.gif
new file mode 100644
index 00000000..a717508c
Binary files /dev/null and b/animateditems/10122.gif differ
diff --git a/animateditems/10122.png b/animateditems/10122.png
new file mode 100644
index 00000000..90b65dc4
Binary files /dev/null and b/animateditems/10122.png differ
diff --git a/animateditems/10123.gif b/animateditems/10123.gif
new file mode 100644
index 00000000..88133e15
Binary files /dev/null and b/animateditems/10123.gif differ
diff --git a/animateditems/10123.png b/animateditems/10123.png
new file mode 100644
index 00000000..7b6f7cad
Binary files /dev/null and b/animateditems/10123.png differ
diff --git a/animateditems/10124.gif b/animateditems/10124.gif
new file mode 100644
index 00000000..8919af66
Binary files /dev/null and b/animateditems/10124.gif differ
diff --git a/animateditems/10124.png b/animateditems/10124.png
new file mode 100644
index 00000000..57c42c59
Binary files /dev/null and b/animateditems/10124.png differ
diff --git a/animateditems/10125.gif b/animateditems/10125.gif
new file mode 100644
index 00000000..cae80833
Binary files /dev/null and b/animateditems/10125.gif differ
diff --git a/animateditems/10125.png b/animateditems/10125.png
new file mode 100644
index 00000000..fad0bb9e
Binary files /dev/null and b/animateditems/10125.png differ
diff --git a/animateditems/10126.gif b/animateditems/10126.gif
new file mode 100644
index 00000000..f0678033
Binary files /dev/null and b/animateditems/10126.gif differ
diff --git a/animateditems/10126.png b/animateditems/10126.png
new file mode 100644
index 00000000..01693ad6
Binary files /dev/null and b/animateditems/10126.png differ
diff --git a/animateditems/10127.gif b/animateditems/10127.gif
new file mode 100644
index 00000000..84571223
Binary files /dev/null and b/animateditems/10127.gif differ
diff --git a/animateditems/10127.png b/animateditems/10127.png
new file mode 100644
index 00000000..0762d340
Binary files /dev/null and b/animateditems/10127.png differ
diff --git a/animateditems/10128.gif b/animateditems/10128.gif
new file mode 100644
index 00000000..434e6f2c
Binary files /dev/null and b/animateditems/10128.gif differ
diff --git a/animateditems/10128.png b/animateditems/10128.png
new file mode 100644
index 00000000..4b050aaa
Binary files /dev/null and b/animateditems/10128.png differ
diff --git a/animateditems/10129.gif b/animateditems/10129.gif
new file mode 100644
index 00000000..f9ce25d1
Binary files /dev/null and b/animateditems/10129.gif differ
diff --git a/animateditems/10129.png b/animateditems/10129.png
new file mode 100644
index 00000000..5510b732
Binary files /dev/null and b/animateditems/10129.png differ
diff --git a/animateditems/10130.gif b/animateditems/10130.gif
new file mode 100644
index 00000000..adea13bf
Binary files /dev/null and b/animateditems/10130.gif differ
diff --git a/animateditems/10130.png b/animateditems/10130.png
new file mode 100644
index 00000000..ae098783
Binary files /dev/null and b/animateditems/10130.png differ
diff --git a/animateditems/10131.gif b/animateditems/10131.gif
new file mode 100644
index 00000000..d26db854
Binary files /dev/null and b/animateditems/10131.gif differ
diff --git a/animateditems/10131.png b/animateditems/10131.png
new file mode 100644
index 00000000..7fc97860
Binary files /dev/null and b/animateditems/10131.png differ
diff --git a/animateditems/10132.gif b/animateditems/10132.gif
new file mode 100644
index 00000000..222acdb8
Binary files /dev/null and b/animateditems/10132.gif differ
diff --git a/animateditems/10132.png b/animateditems/10132.png
new file mode 100644
index 00000000..850ddd81
Binary files /dev/null and b/animateditems/10132.png differ
diff --git a/animateditems/10133.gif b/animateditems/10133.gif
new file mode 100644
index 00000000..ac5d115a
Binary files /dev/null and b/animateditems/10133.gif differ
diff --git a/animateditems/10133.png b/animateditems/10133.png
new file mode 100644
index 00000000..ed07682d
Binary files /dev/null and b/animateditems/10133.png differ
diff --git a/animateditems/10134.gif b/animateditems/10134.gif
new file mode 100644
index 00000000..9f76de2d
Binary files /dev/null and b/animateditems/10134.gif differ
diff --git a/animateditems/10134.png b/animateditems/10134.png
new file mode 100644
index 00000000..8b57d53c
Binary files /dev/null and b/animateditems/10134.png differ
diff --git a/animateditems/10135.gif b/animateditems/10135.gif
new file mode 100644
index 00000000..2f4805ff
Binary files /dev/null and b/animateditems/10135.gif differ
diff --git a/animateditems/10135.png b/animateditems/10135.png
new file mode 100644
index 00000000..3f816f4d
Binary files /dev/null and b/animateditems/10135.png differ
diff --git a/animateditems/10136.gif b/animateditems/10136.gif
new file mode 100644
index 00000000..ce74c6be
Binary files /dev/null and b/animateditems/10136.gif differ
diff --git a/animateditems/10136.png b/animateditems/10136.png
new file mode 100644
index 00000000..5097f6c9
Binary files /dev/null and b/animateditems/10136.png differ
diff --git a/animateditems/10137.gif b/animateditems/10137.gif
new file mode 100644
index 00000000..74c07b8f
Binary files /dev/null and b/animateditems/10137.gif differ
diff --git a/animateditems/10137.png b/animateditems/10137.png
new file mode 100644
index 00000000..bb4c5eeb
Binary files /dev/null and b/animateditems/10137.png differ
diff --git a/animateditems/10138.gif b/animateditems/10138.gif
new file mode 100644
index 00000000..1cce111d
Binary files /dev/null and b/animateditems/10138.gif differ
diff --git a/animateditems/10138.png b/animateditems/10138.png
new file mode 100644
index 00000000..c4b1e568
Binary files /dev/null and b/animateditems/10138.png differ
diff --git a/animateditems/10139.gif b/animateditems/10139.gif
new file mode 100644
index 00000000..1c95ce04
Binary files /dev/null and b/animateditems/10139.gif differ
diff --git a/animateditems/10139.png b/animateditems/10139.png
new file mode 100644
index 00000000..dd9ad650
Binary files /dev/null and b/animateditems/10139.png differ
diff --git a/animateditems/10140.gif b/animateditems/10140.gif
new file mode 100644
index 00000000..3d2144ce
Binary files /dev/null and b/animateditems/10140.gif differ
diff --git a/animateditems/10140.png b/animateditems/10140.png
new file mode 100644
index 00000000..f05b1ad1
Binary files /dev/null and b/animateditems/10140.png differ
diff --git a/animateditems/10141.gif b/animateditems/10141.gif
new file mode 100644
index 00000000..0c669a3a
Binary files /dev/null and b/animateditems/10141.gif differ
diff --git a/animateditems/10141.png b/animateditems/10141.png
new file mode 100644
index 00000000..e39ddec5
Binary files /dev/null and b/animateditems/10141.png differ
diff --git a/animateditems/10142.gif b/animateditems/10142.gif
new file mode 100644
index 00000000..b7913da6
Binary files /dev/null and b/animateditems/10142.gif differ
diff --git a/animateditems/10142.png b/animateditems/10142.png
new file mode 100644
index 00000000..c559f439
Binary files /dev/null and b/animateditems/10142.png differ
diff --git a/animateditems/10150.gif b/animateditems/10150.gif
new file mode 100644
index 00000000..772e536b
Binary files /dev/null and b/animateditems/10150.gif differ
diff --git a/animateditems/10150.png b/animateditems/10150.png
new file mode 100644
index 00000000..1ee78921
Binary files /dev/null and b/animateditems/10150.png differ
diff --git a/animateditems/10151.gif b/animateditems/10151.gif
new file mode 100644
index 00000000..ed2bf839
Binary files /dev/null and b/animateditems/10151.gif differ
diff --git a/animateditems/10151.png b/animateditems/10151.png
new file mode 100644
index 00000000..01101e4a
Binary files /dev/null and b/animateditems/10151.png differ
diff --git a/animateditems/10152.gif b/animateditems/10152.gif
new file mode 100644
index 00000000..dc6c474d
Binary files /dev/null and b/animateditems/10152.gif differ
diff --git a/animateditems/10152.png b/animateditems/10152.png
new file mode 100644
index 00000000..7e2183ce
Binary files /dev/null and b/animateditems/10152.png differ
diff --git a/animateditems/10153.gif b/animateditems/10153.gif
new file mode 100644
index 00000000..81878489
Binary files /dev/null and b/animateditems/10153.gif differ
diff --git a/animateditems/10153.png b/animateditems/10153.png
new file mode 100644
index 00000000..1e09ea30
Binary files /dev/null and b/animateditems/10153.png differ
diff --git a/animateditems/10154.gif b/animateditems/10154.gif
new file mode 100644
index 00000000..f99674fb
Binary files /dev/null and b/animateditems/10154.gif differ
diff --git a/animateditems/10154.png b/animateditems/10154.png
new file mode 100644
index 00000000..8c743d06
Binary files /dev/null and b/animateditems/10154.png differ
diff --git a/animateditems/10155.gif b/animateditems/10155.gif
new file mode 100644
index 00000000..46658105
Binary files /dev/null and b/animateditems/10155.gif differ
diff --git a/animateditems/10155.png b/animateditems/10155.png
new file mode 100644
index 00000000..507e1d4b
Binary files /dev/null and b/animateditems/10155.png differ
diff --git a/animateditems/10156.gif b/animateditems/10156.gif
new file mode 100644
index 00000000..a4f00779
Binary files /dev/null and b/animateditems/10156.gif differ
diff --git a/animateditems/10156.png b/animateditems/10156.png
new file mode 100644
index 00000000..bdd6b2de
Binary files /dev/null and b/animateditems/10156.png differ
diff --git a/animateditems/10157.gif b/animateditems/10157.gif
new file mode 100644
index 00000000..c96d005e
Binary files /dev/null and b/animateditems/10157.gif differ
diff --git a/animateditems/10157.png b/animateditems/10157.png
new file mode 100644
index 00000000..dcad09cc
Binary files /dev/null and b/animateditems/10157.png differ
diff --git a/animateditems/10158.gif b/animateditems/10158.gif
new file mode 100644
index 00000000..5cd10386
Binary files /dev/null and b/animateditems/10158.gif differ
diff --git a/animateditems/10158.png b/animateditems/10158.png
new file mode 100644
index 00000000..737240ad
Binary files /dev/null and b/animateditems/10158.png differ
diff --git a/animateditems/10159.gif b/animateditems/10159.gif
new file mode 100644
index 00000000..2f044c2a
Binary files /dev/null and b/animateditems/10159.gif differ
diff --git a/animateditems/10159.png b/animateditems/10159.png
new file mode 100644
index 00000000..909a70e9
Binary files /dev/null and b/animateditems/10159.png differ
diff --git a/animateditems/10165.gif b/animateditems/10165.gif
new file mode 100644
index 00000000..445c5dc2
Binary files /dev/null and b/animateditems/10165.gif differ
diff --git a/animateditems/10165.png b/animateditems/10165.png
new file mode 100644
index 00000000..57d04ebf
Binary files /dev/null and b/animateditems/10165.png differ
diff --git a/animateditems/10166.gif b/animateditems/10166.gif
new file mode 100644
index 00000000..05020aee
Binary files /dev/null and b/animateditems/10166.gif differ
diff --git a/animateditems/10166.png b/animateditems/10166.png
new file mode 100644
index 00000000..3b0b7c94
Binary files /dev/null and b/animateditems/10166.png differ
diff --git a/animateditems/10167.gif b/animateditems/10167.gif
new file mode 100644
index 00000000..ca313910
Binary files /dev/null and b/animateditems/10167.gif differ
diff --git a/animateditems/10167.png b/animateditems/10167.png
new file mode 100644
index 00000000..84622d3e
Binary files /dev/null and b/animateditems/10167.png differ
diff --git a/animateditems/10169.gif b/animateditems/10169.gif
new file mode 100644
index 00000000..0a6622fc
Binary files /dev/null and b/animateditems/10169.gif differ
diff --git a/animateditems/10169.png b/animateditems/10169.png
new file mode 100644
index 00000000..56e4c70f
Binary files /dev/null and b/animateditems/10169.png differ
diff --git a/animateditems/10170.gif b/animateditems/10170.gif
new file mode 100644
index 00000000..f5cdc7b2
Binary files /dev/null and b/animateditems/10170.gif differ
diff --git a/animateditems/10170.png b/animateditems/10170.png
new file mode 100644
index 00000000..adc078f2
Binary files /dev/null and b/animateditems/10170.png differ
diff --git a/animateditems/10173.gif b/animateditems/10173.gif
new file mode 100644
index 00000000..a820fdeb
Binary files /dev/null and b/animateditems/10173.gif differ
diff --git a/animateditems/10173.png b/animateditems/10173.png
new file mode 100644
index 00000000..2a331a9d
Binary files /dev/null and b/animateditems/10173.png differ
diff --git a/animateditems/10218.gif b/animateditems/10218.gif
new file mode 100644
index 00000000..1810dbf1
Binary files /dev/null and b/animateditems/10218.gif differ
diff --git a/animateditems/10218.png b/animateditems/10218.png
new file mode 100644
index 00000000..b26c8cfb
Binary files /dev/null and b/animateditems/10218.png differ
diff --git a/animateditems/10219.gif b/animateditems/10219.gif
new file mode 100644
index 00000000..a0376937
Binary files /dev/null and b/animateditems/10219.gif differ
diff --git a/animateditems/10219.png b/animateditems/10219.png
new file mode 100644
index 00000000..ce168aab
Binary files /dev/null and b/animateditems/10219.png differ
diff --git a/animateditems/10220.gif b/animateditems/10220.gif
new file mode 100644
index 00000000..b43f1116
Binary files /dev/null and b/animateditems/10220.gif differ
diff --git a/animateditems/10220.png b/animateditems/10220.png
new file mode 100644
index 00000000..20bd2160
Binary files /dev/null and b/animateditems/10220.png differ
diff --git a/animateditems/10221.gif b/animateditems/10221.gif
new file mode 100644
index 00000000..c99509c8
Binary files /dev/null and b/animateditems/10221.gif differ
diff --git a/animateditems/10221.png b/animateditems/10221.png
new file mode 100644
index 00000000..d243b85c
Binary files /dev/null and b/animateditems/10221.png differ
diff --git a/animateditems/10223.gif b/animateditems/10223.gif
new file mode 100644
index 00000000..48645695
Binary files /dev/null and b/animateditems/10223.gif differ
diff --git a/animateditems/10223.png b/animateditems/10223.png
new file mode 100644
index 00000000..646233b4
Binary files /dev/null and b/animateditems/10223.png differ
diff --git a/animateditems/10224.gif b/animateditems/10224.gif
new file mode 100644
index 00000000..83298d22
Binary files /dev/null and b/animateditems/10224.gif differ
diff --git a/animateditems/10224.png b/animateditems/10224.png
new file mode 100644
index 00000000..24202527
Binary files /dev/null and b/animateditems/10224.png differ
diff --git a/animateditems/10225.gif b/animateditems/10225.gif
new file mode 100644
index 00000000..9ed975ff
Binary files /dev/null and b/animateditems/10225.gif differ
diff --git a/animateditems/10225.png b/animateditems/10225.png
new file mode 100644
index 00000000..d512fe6e
Binary files /dev/null and b/animateditems/10225.png differ
diff --git a/animateditems/10289.gif b/animateditems/10289.gif
new file mode 100644
index 00000000..9906293c
Binary files /dev/null and b/animateditems/10289.gif differ
diff --git a/animateditems/10289.png b/animateditems/10289.png
new file mode 100644
index 00000000..0b45a3c8
Binary files /dev/null and b/animateditems/10289.png differ
diff --git a/animateditems/10290.gif b/animateditems/10290.gif
new file mode 100644
index 00000000..2575f3e9
Binary files /dev/null and b/animateditems/10290.gif differ
diff --git a/animateditems/10290.png b/animateditems/10290.png
new file mode 100644
index 00000000..a4a00e83
Binary files /dev/null and b/animateditems/10290.png differ
diff --git a/animateditems/10291.gif b/animateditems/10291.gif
new file mode 100644
index 00000000..463b93d3
Binary files /dev/null and b/animateditems/10291.gif differ
diff --git a/animateditems/10291.png b/animateditems/10291.png
new file mode 100644
index 00000000..08a66179
Binary files /dev/null and b/animateditems/10291.png differ
diff --git a/animateditems/10292.gif b/animateditems/10292.gif
new file mode 100644
index 00000000..f852d4f4
Binary files /dev/null and b/animateditems/10292.gif differ
diff --git a/animateditems/10292.png b/animateditems/10292.png
new file mode 100644
index 00000000..eac20f47
Binary files /dev/null and b/animateditems/10292.png differ
diff --git a/animateditems/10293.gif b/animateditems/10293.gif
new file mode 100644
index 00000000..3e0b5d36
Binary files /dev/null and b/animateditems/10293.gif differ
diff --git a/animateditems/10293.png b/animateditems/10293.png
new file mode 100644
index 00000000..c04d16d6
Binary files /dev/null and b/animateditems/10293.png differ
diff --git a/animateditems/10294.gif b/animateditems/10294.gif
new file mode 100644
index 00000000..b2cbdcfb
Binary files /dev/null and b/animateditems/10294.gif differ
diff --git a/animateditems/10294.png b/animateditems/10294.png
new file mode 100644
index 00000000..55ab832d
Binary files /dev/null and b/animateditems/10294.png differ
diff --git a/animateditems/10295.gif b/animateditems/10295.gif
new file mode 100644
index 00000000..5904c7ed
Binary files /dev/null and b/animateditems/10295.gif differ
diff --git a/animateditems/10295.png b/animateditems/10295.png
new file mode 100644
index 00000000..991aa9fc
Binary files /dev/null and b/animateditems/10295.png differ
diff --git a/animateditems/10296.gif b/animateditems/10296.gif
new file mode 100644
index 00000000..49f5c2c3
Binary files /dev/null and b/animateditems/10296.gif differ
diff --git a/animateditems/10296.png b/animateditems/10296.png
new file mode 100644
index 00000000..c65fddd4
Binary files /dev/null and b/animateditems/10296.png differ
diff --git a/animateditems/10297.gif b/animateditems/10297.gif
new file mode 100644
index 00000000..0e463472
Binary files /dev/null and b/animateditems/10297.gif differ
diff --git a/animateditems/10297.png b/animateditems/10297.png
new file mode 100644
index 00000000..9d6fe756
Binary files /dev/null and b/animateditems/10297.png differ
diff --git a/animateditems/10298.gif b/animateditems/10298.gif
new file mode 100644
index 00000000..3fcf3ac8
Binary files /dev/null and b/animateditems/10298.gif differ
diff --git a/animateditems/10298.png b/animateditems/10298.png
new file mode 100644
index 00000000..f82f8517
Binary files /dev/null and b/animateditems/10298.png differ
diff --git a/animateditems/10299.gif b/animateditems/10299.gif
new file mode 100644
index 00000000..6145f932
Binary files /dev/null and b/animateditems/10299.gif differ
diff --git a/animateditems/10299.png b/animateditems/10299.png
new file mode 100644
index 00000000..cac315e3
Binary files /dev/null and b/animateditems/10299.png differ
diff --git a/animateditems/10300.gif b/animateditems/10300.gif
new file mode 100644
index 00000000..b34ec90e
Binary files /dev/null and b/animateditems/10300.gif differ
diff --git a/animateditems/10300.png b/animateditems/10300.png
new file mode 100644
index 00000000..278ed666
Binary files /dev/null and b/animateditems/10300.png differ
diff --git a/animateditems/10301.gif b/animateditems/10301.gif
new file mode 100644
index 00000000..bf25c7db
Binary files /dev/null and b/animateditems/10301.gif differ
diff --git a/animateditems/10301.png b/animateditems/10301.png
new file mode 100644
index 00000000..06f12266
Binary files /dev/null and b/animateditems/10301.png differ
diff --git a/animateditems/10302.gif b/animateditems/10302.gif
new file mode 100644
index 00000000..e3066938
Binary files /dev/null and b/animateditems/10302.gif differ
diff --git a/animateditems/10302.png b/animateditems/10302.png
new file mode 100644
index 00000000..7887c7d2
Binary files /dev/null and b/animateditems/10302.png differ
diff --git a/animateditems/10303.gif b/animateditems/10303.gif
new file mode 100644
index 00000000..360ccd8d
Binary files /dev/null and b/animateditems/10303.gif differ
diff --git a/animateditems/10303.png b/animateditems/10303.png
new file mode 100644
index 00000000..8404417f
Binary files /dev/null and b/animateditems/10303.png differ
diff --git a/animateditems/10304.gif b/animateditems/10304.gif
new file mode 100644
index 00000000..b9f1f1cf
Binary files /dev/null and b/animateditems/10304.gif differ
diff --git a/animateditems/10304.png b/animateditems/10304.png
new file mode 100644
index 00000000..a053b38f
Binary files /dev/null and b/animateditems/10304.png differ
diff --git a/animateditems/10305.gif b/animateditems/10305.gif
new file mode 100644
index 00000000..737b04ae
Binary files /dev/null and b/animateditems/10305.gif differ
diff --git a/animateditems/10305.png b/animateditems/10305.png
new file mode 100644
index 00000000..16307324
Binary files /dev/null and b/animateditems/10305.png differ
diff --git a/animateditems/10306.gif b/animateditems/10306.gif
new file mode 100644
index 00000000..009745f7
Binary files /dev/null and b/animateditems/10306.gif differ
diff --git a/animateditems/10306.png b/animateditems/10306.png
new file mode 100644
index 00000000..bde97efd
Binary files /dev/null and b/animateditems/10306.png differ
diff --git a/animateditems/10307.gif b/animateditems/10307.gif
new file mode 100644
index 00000000..60419127
Binary files /dev/null and b/animateditems/10307.gif differ
diff --git a/animateditems/10307.png b/animateditems/10307.png
new file mode 100644
index 00000000..fa4eecee
Binary files /dev/null and b/animateditems/10307.png differ
diff --git a/animateditems/10308.gif b/animateditems/10308.gif
new file mode 100644
index 00000000..bd1f3d10
Binary files /dev/null and b/animateditems/10308.gif differ
diff --git a/animateditems/10308.png b/animateditems/10308.png
new file mode 100644
index 00000000..b58c0fb2
Binary files /dev/null and b/animateditems/10308.png differ
diff --git a/animateditems/10309.gif b/animateditems/10309.gif
new file mode 100644
index 00000000..9fa0cde7
Binary files /dev/null and b/animateditems/10309.gif differ
diff --git a/animateditems/10309.png b/animateditems/10309.png
new file mode 100644
index 00000000..bf68cd36
Binary files /dev/null and b/animateditems/10309.png differ
diff --git a/animateditems/10310.gif b/animateditems/10310.gif
new file mode 100644
index 00000000..0eb90c6c
Binary files /dev/null and b/animateditems/10310.gif differ
diff --git a/animateditems/10310.png b/animateditems/10310.png
new file mode 100644
index 00000000..83040bed
Binary files /dev/null and b/animateditems/10310.png differ
diff --git a/animateditems/10311.gif b/animateditems/10311.gif
new file mode 100644
index 00000000..0eb90c6c
Binary files /dev/null and b/animateditems/10311.gif differ
diff --git a/animateditems/10311.png b/animateditems/10311.png
new file mode 100644
index 00000000..83040bed
Binary files /dev/null and b/animateditems/10311.png differ
diff --git a/animateditems/10312.gif b/animateditems/10312.gif
new file mode 100644
index 00000000..0eb90c6c
Binary files /dev/null and b/animateditems/10312.gif differ
diff --git a/animateditems/10312.png b/animateditems/10312.png
new file mode 100644
index 00000000..83040bed
Binary files /dev/null and b/animateditems/10312.png differ
diff --git a/animateditems/10313.gif b/animateditems/10313.gif
new file mode 100644
index 00000000..54f3e5a9
Binary files /dev/null and b/animateditems/10313.gif differ
diff --git a/animateditems/10313.png b/animateditems/10313.png
new file mode 100644
index 00000000..df7d9db5
Binary files /dev/null and b/animateditems/10313.png differ
diff --git a/animateditems/10314.gif b/animateditems/10314.gif
new file mode 100644
index 00000000..0eb90c6c
Binary files /dev/null and b/animateditems/10314.gif differ
diff --git a/animateditems/10314.png b/animateditems/10314.png
new file mode 100644
index 00000000..83040bed
Binary files /dev/null and b/animateditems/10314.png differ
diff --git a/animateditems/10315.gif b/animateditems/10315.gif
new file mode 100644
index 00000000..0eb90c6c
Binary files /dev/null and b/animateditems/10315.gif differ
diff --git a/animateditems/10315.png b/animateditems/10315.png
new file mode 100644
index 00000000..83040bed
Binary files /dev/null and b/animateditems/10315.png differ
diff --git a/animateditems/10316.gif b/animateditems/10316.gif
new file mode 100644
index 00000000..54859c22
Binary files /dev/null and b/animateditems/10316.gif differ
diff --git a/animateditems/10316.png b/animateditems/10316.png
new file mode 100644
index 00000000..8c429291
Binary files /dev/null and b/animateditems/10316.png differ
diff --git a/animateditems/10317.gif b/animateditems/10317.gif
new file mode 100644
index 00000000..682867f9
Binary files /dev/null and b/animateditems/10317.gif differ
diff --git a/animateditems/10317.png b/animateditems/10317.png
new file mode 100644
index 00000000..b40809a5
Binary files /dev/null and b/animateditems/10317.png differ
diff --git a/animateditems/10318.gif b/animateditems/10318.gif
new file mode 100644
index 00000000..eb0f298f
Binary files /dev/null and b/animateditems/10318.gif differ
diff --git a/animateditems/10318.png b/animateditems/10318.png
new file mode 100644
index 00000000..e89d0687
Binary files /dev/null and b/animateditems/10318.png differ
diff --git a/animateditems/10363.gif b/animateditems/10363.gif
new file mode 100644
index 00000000..682867f9
Binary files /dev/null and b/animateditems/10363.gif differ
diff --git a/animateditems/10363.png b/animateditems/10363.png
new file mode 100644
index 00000000..b40809a5
Binary files /dev/null and b/animateditems/10363.png differ
diff --git a/animateditems/10364.gif b/animateditems/10364.gif
new file mode 100644
index 00000000..eb0f298f
Binary files /dev/null and b/animateditems/10364.gif differ
diff --git a/animateditems/10364.png b/animateditems/10364.png
new file mode 100644
index 00000000..e89d0687
Binary files /dev/null and b/animateditems/10364.png differ
diff --git a/animateditems/10454.gif b/animateditems/10454.gif
new file mode 100644
index 00000000..2b42a6f8
Binary files /dev/null and b/animateditems/10454.gif differ
diff --git a/animateditems/10454.png b/animateditems/10454.png
new file mode 100644
index 00000000..4f7b101d
Binary files /dev/null and b/animateditems/10454.png differ
diff --git a/animateditems/10455.gif b/animateditems/10455.gif
new file mode 100644
index 00000000..d631b044
Binary files /dev/null and b/animateditems/10455.gif differ
diff --git a/animateditems/10455.png b/animateditems/10455.png
new file mode 100644
index 00000000..14d825da
Binary files /dev/null and b/animateditems/10455.png differ
diff --git a/animateditems/10502.gif b/animateditems/10502.gif
new file mode 100644
index 00000000..3bc33e18
Binary files /dev/null and b/animateditems/10502.gif differ
diff --git a/animateditems/10502.png b/animateditems/10502.png
new file mode 100644
index 00000000..1694d571
Binary files /dev/null and b/animateditems/10502.png differ
diff --git a/animateditems/10503.gif b/animateditems/10503.gif
new file mode 100644
index 00000000..d398aac5
Binary files /dev/null and b/animateditems/10503.gif differ
diff --git a/animateditems/10503.png b/animateditems/10503.png
new file mode 100644
index 00000000..522ecfb8
Binary files /dev/null and b/animateditems/10503.png differ
diff --git a/animateditems/10510.gif b/animateditems/10510.gif
new file mode 100644
index 00000000..e5f81e15
Binary files /dev/null and b/animateditems/10510.gif differ
diff --git a/animateditems/10510.png b/animateditems/10510.png
new file mode 100644
index 00000000..0405d36c
Binary files /dev/null and b/animateditems/10510.png differ
diff --git a/animateditems/10511.gif b/animateditems/10511.gif
new file mode 100644
index 00000000..847b3528
Binary files /dev/null and b/animateditems/10511.gif differ
diff --git a/animateditems/10511.png b/animateditems/10511.png
new file mode 100644
index 00000000..7e6acfaa
Binary files /dev/null and b/animateditems/10511.png differ
diff --git a/animateditems/10512.gif b/animateditems/10512.gif
new file mode 100644
index 00000000..847b3528
Binary files /dev/null and b/animateditems/10512.gif differ
diff --git a/animateditems/10512.png b/animateditems/10512.png
new file mode 100644
index 00000000..7e6acfaa
Binary files /dev/null and b/animateditems/10512.png differ
diff --git a/animateditems/10513.gif b/animateditems/10513.gif
new file mode 100644
index 00000000..351afea3
Binary files /dev/null and b/animateditems/10513.gif differ
diff --git a/animateditems/10513.png b/animateditems/10513.png
new file mode 100644
index 00000000..cbd46774
Binary files /dev/null and b/animateditems/10513.png differ
diff --git a/animateditems/10514.gif b/animateditems/10514.gif
new file mode 100644
index 00000000..351afea3
Binary files /dev/null and b/animateditems/10514.gif differ
diff --git a/animateditems/10514.png b/animateditems/10514.png
new file mode 100644
index 00000000..cbd46774
Binary files /dev/null and b/animateditems/10514.png differ
diff --git a/animateditems/10515.gif b/animateditems/10515.gif
new file mode 100644
index 00000000..673ca418
Binary files /dev/null and b/animateditems/10515.gif differ
diff --git a/animateditems/10515.png b/animateditems/10515.png
new file mode 100644
index 00000000..2cd95b60
Binary files /dev/null and b/animateditems/10515.png differ
diff --git a/animateditems/10516.gif b/animateditems/10516.gif
new file mode 100644
index 00000000..673ca418
Binary files /dev/null and b/animateditems/10516.gif differ
diff --git a/animateditems/10516.png b/animateditems/10516.png
new file mode 100644
index 00000000..2cd95b60
Binary files /dev/null and b/animateditems/10516.png differ
diff --git a/animateditems/10518.gif b/animateditems/10518.gif
new file mode 100644
index 00000000..b29be263
Binary files /dev/null and b/animateditems/10518.gif differ
diff --git a/animateditems/10518.png b/animateditems/10518.png
new file mode 100644
index 00000000..d90672cf
Binary files /dev/null and b/animateditems/10518.png differ
diff --git a/animateditems/10519.gif b/animateditems/10519.gif
new file mode 100644
index 00000000..afe669d1
Binary files /dev/null and b/animateditems/10519.gif differ
diff --git a/animateditems/10519.png b/animateditems/10519.png
new file mode 100644
index 00000000..b6d8750e
Binary files /dev/null and b/animateditems/10519.png differ
diff --git a/animateditems/10520.gif b/animateditems/10520.gif
new file mode 100644
index 00000000..3fc681ba
Binary files /dev/null and b/animateditems/10520.gif differ
diff --git a/animateditems/10520.png b/animateditems/10520.png
new file mode 100644
index 00000000..3450f5b1
Binary files /dev/null and b/animateditems/10520.png differ
diff --git a/animateditems/10521.gif b/animateditems/10521.gif
new file mode 100644
index 00000000..e899402c
Binary files /dev/null and b/animateditems/10521.gif differ
diff --git a/animateditems/10521.png b/animateditems/10521.png
new file mode 100644
index 00000000..546d358e
Binary files /dev/null and b/animateditems/10521.png differ
diff --git a/animateditems/10522.gif b/animateditems/10522.gif
new file mode 100644
index 00000000..c86fb797
Binary files /dev/null and b/animateditems/10522.gif differ
diff --git a/animateditems/10522.png b/animateditems/10522.png
new file mode 100644
index 00000000..e45967f8
Binary files /dev/null and b/animateditems/10522.png differ
diff --git a/animateditems/10523.gif b/animateditems/10523.gif
new file mode 100644
index 00000000..64785696
Binary files /dev/null and b/animateditems/10523.gif differ
diff --git a/animateditems/10523.png b/animateditems/10523.png
new file mode 100644
index 00000000..8b1cad3f
Binary files /dev/null and b/animateditems/10523.png differ
diff --git a/animateditems/10529.gif b/animateditems/10529.gif
new file mode 100644
index 00000000..93e6021f
Binary files /dev/null and b/animateditems/10529.gif differ
diff --git a/animateditems/10529.png b/animateditems/10529.png
new file mode 100644
index 00000000..75c45e4d
Binary files /dev/null and b/animateditems/10529.png differ
diff --git a/animateditems/10530.gif b/animateditems/10530.gif
new file mode 100644
index 00000000..4c564c2c
Binary files /dev/null and b/animateditems/10530.gif differ
diff --git a/animateditems/10530.png b/animateditems/10530.png
new file mode 100644
index 00000000..e9bc412b
Binary files /dev/null and b/animateditems/10530.png differ
diff --git a/animateditems/10531.gif b/animateditems/10531.gif
new file mode 100644
index 00000000..adec36aa
Binary files /dev/null and b/animateditems/10531.gif differ
diff --git a/animateditems/10531.png b/animateditems/10531.png
new file mode 100644
index 00000000..eecd9a1a
Binary files /dev/null and b/animateditems/10531.png differ
diff --git a/animateditems/10532.gif b/animateditems/10532.gif
new file mode 100644
index 00000000..b6aaab92
Binary files /dev/null and b/animateditems/10532.gif differ
diff --git a/animateditems/10532.png b/animateditems/10532.png
new file mode 100644
index 00000000..2d0c2efa
Binary files /dev/null and b/animateditems/10532.png differ
diff --git a/animateditems/10533.gif b/animateditems/10533.gif
new file mode 100644
index 00000000..db258d39
Binary files /dev/null and b/animateditems/10533.gif differ
diff --git a/animateditems/10533.png b/animateditems/10533.png
new file mode 100644
index 00000000..324c240a
Binary files /dev/null and b/animateditems/10533.png differ
diff --git a/animateditems/10534.gif b/animateditems/10534.gif
new file mode 100644
index 00000000..364eb32d
Binary files /dev/null and b/animateditems/10534.gif differ
diff --git a/animateditems/10534.png b/animateditems/10534.png
new file mode 100644
index 00000000..a9ef0fd9
Binary files /dev/null and b/animateditems/10534.png differ
diff --git a/animateditems/10535.gif b/animateditems/10535.gif
new file mode 100644
index 00000000..b44b2689
Binary files /dev/null and b/animateditems/10535.gif differ
diff --git a/animateditems/10535.png b/animateditems/10535.png
new file mode 100644
index 00000000..6ba85104
Binary files /dev/null and b/animateditems/10535.png differ
diff --git a/animateditems/10542.gif b/animateditems/10542.gif
new file mode 100644
index 00000000..e87d050c
Binary files /dev/null and b/animateditems/10542.gif differ
diff --git a/animateditems/10542.png b/animateditems/10542.png
new file mode 100644
index 00000000..607e2f23
Binary files /dev/null and b/animateditems/10542.png differ
diff --git a/animateditems/10543.gif b/animateditems/10543.gif
new file mode 100644
index 00000000..f9445af6
Binary files /dev/null and b/animateditems/10543.gif differ
diff --git a/animateditems/10543.png b/animateditems/10543.png
new file mode 100644
index 00000000..e33e785e
Binary files /dev/null and b/animateditems/10543.png differ
diff --git a/animateditems/10548.gif b/animateditems/10548.gif
new file mode 100644
index 00000000..e8629fc6
Binary files /dev/null and b/animateditems/10548.gif differ
diff --git a/animateditems/10548.png b/animateditems/10548.png
new file mode 100644
index 00000000..3ebfbd5d
Binary files /dev/null and b/animateditems/10548.png differ
diff --git a/animateditems/10549.gif b/animateditems/10549.gif
new file mode 100644
index 00000000..84a47861
Binary files /dev/null and b/animateditems/10549.gif differ
diff --git a/animateditems/10549.png b/animateditems/10549.png
new file mode 100644
index 00000000..90ba9164
Binary files /dev/null and b/animateditems/10549.png differ
diff --git a/animateditems/10550.gif b/animateditems/10550.gif
new file mode 100644
index 00000000..bf57840e
Binary files /dev/null and b/animateditems/10550.gif differ
diff --git a/animateditems/10550.png b/animateditems/10550.png
new file mode 100644
index 00000000..0f770753
Binary files /dev/null and b/animateditems/10550.png differ
diff --git a/animateditems/10551.gif b/animateditems/10551.gif
new file mode 100644
index 00000000..e9d64fcb
Binary files /dev/null and b/animateditems/10551.gif differ
diff --git a/animateditems/10551.png b/animateditems/10551.png
new file mode 100644
index 00000000..0a56466b
Binary files /dev/null and b/animateditems/10551.png differ
diff --git a/animateditems/10552.gif b/animateditems/10552.gif
new file mode 100644
index 00000000..910d4edd
Binary files /dev/null and b/animateditems/10552.gif differ
diff --git a/animateditems/10552.png b/animateditems/10552.png
new file mode 100644
index 00000000..f3e130db
Binary files /dev/null and b/animateditems/10552.png differ
diff --git a/animateditems/10553.gif b/animateditems/10553.gif
new file mode 100644
index 00000000..13c85fd4
Binary files /dev/null and b/animateditems/10553.gif differ
diff --git a/animateditems/10553.png b/animateditems/10553.png
new file mode 100644
index 00000000..a2c0747b
Binary files /dev/null and b/animateditems/10553.png differ
diff --git a/animateditems/10554.gif b/animateditems/10554.gif
new file mode 100644
index 00000000..e42b543c
Binary files /dev/null and b/animateditems/10554.gif differ
diff --git a/animateditems/10554.png b/animateditems/10554.png
new file mode 100644
index 00000000..ead80356
Binary files /dev/null and b/animateditems/10554.png differ
diff --git a/animateditems/10555.gif b/animateditems/10555.gif
new file mode 100644
index 00000000..6df95046
Binary files /dev/null and b/animateditems/10555.gif differ
diff --git a/animateditems/10555.png b/animateditems/10555.png
new file mode 100644
index 00000000..0fed434a
Binary files /dev/null and b/animateditems/10555.png differ
diff --git a/animateditems/10556.gif b/animateditems/10556.gif
new file mode 100644
index 00000000..4f20c452
Binary files /dev/null and b/animateditems/10556.gif differ
diff --git a/animateditems/10556.png b/animateditems/10556.png
new file mode 100644
index 00000000..b127bb99
Binary files /dev/null and b/animateditems/10556.png differ
diff --git a/animateditems/10557.gif b/animateditems/10557.gif
new file mode 100644
index 00000000..d431bd4a
Binary files /dev/null and b/animateditems/10557.gif differ
diff --git a/animateditems/10557.png b/animateditems/10557.png
new file mode 100644
index 00000000..04663bec
Binary files /dev/null and b/animateditems/10557.png differ
diff --git a/animateditems/10558.gif b/animateditems/10558.gif
new file mode 100644
index 00000000..59ae064c
Binary files /dev/null and b/animateditems/10558.gif differ
diff --git a/animateditems/10558.png b/animateditems/10558.png
new file mode 100644
index 00000000..dfc9ae44
Binary files /dev/null and b/animateditems/10558.png differ
diff --git a/animateditems/10559.gif b/animateditems/10559.gif
new file mode 100644
index 00000000..e8da11d0
Binary files /dev/null and b/animateditems/10559.gif differ
diff --git a/animateditems/10559.png b/animateditems/10559.png
new file mode 100644
index 00000000..74e3b439
Binary files /dev/null and b/animateditems/10559.png differ
diff --git a/animateditems/10560.gif b/animateditems/10560.gif
new file mode 100644
index 00000000..2f909aca
Binary files /dev/null and b/animateditems/10560.gif differ
diff --git a/animateditems/10560.png b/animateditems/10560.png
new file mode 100644
index 00000000..97a55d89
Binary files /dev/null and b/animateditems/10560.png differ
diff --git a/animateditems/10561.gif b/animateditems/10561.gif
new file mode 100644
index 00000000..2fc444ff
Binary files /dev/null and b/animateditems/10561.gif differ
diff --git a/animateditems/10561.png b/animateditems/10561.png
new file mode 100644
index 00000000..5f942e34
Binary files /dev/null and b/animateditems/10561.png differ
diff --git a/animateditems/10562.gif b/animateditems/10562.gif
new file mode 100644
index 00000000..5ea3e5c8
Binary files /dev/null and b/animateditems/10562.gif differ
diff --git a/animateditems/10562.png b/animateditems/10562.png
new file mode 100644
index 00000000..0dfba94d
Binary files /dev/null and b/animateditems/10562.png differ
diff --git a/animateditems/10563.gif b/animateditems/10563.gif
new file mode 100644
index 00000000..771a4928
Binary files /dev/null and b/animateditems/10563.gif differ
diff --git a/animateditems/10563.png b/animateditems/10563.png
new file mode 100644
index 00000000..99c8d0ad
Binary files /dev/null and b/animateditems/10563.png differ
diff --git a/animateditems/10564.gif b/animateditems/10564.gif
new file mode 100644
index 00000000..0d4b7dff
Binary files /dev/null and b/animateditems/10564.gif differ
diff --git a/animateditems/10564.png b/animateditems/10564.png
new file mode 100644
index 00000000..94b64e0e
Binary files /dev/null and b/animateditems/10564.png differ
diff --git a/animateditems/10565.gif b/animateditems/10565.gif
new file mode 100644
index 00000000..270edd9d
Binary files /dev/null and b/animateditems/10565.gif differ
diff --git a/animateditems/10565.png b/animateditems/10565.png
new file mode 100644
index 00000000..9c87c4b4
Binary files /dev/null and b/animateditems/10565.png differ
diff --git a/animateditems/10566.gif b/animateditems/10566.gif
new file mode 100644
index 00000000..be58fd43
Binary files /dev/null and b/animateditems/10566.gif differ
diff --git a/animateditems/10566.png b/animateditems/10566.png
new file mode 100644
index 00000000..3f19bf86
Binary files /dev/null and b/animateditems/10566.png differ
diff --git a/animateditems/10567.gif b/animateditems/10567.gif
new file mode 100644
index 00000000..9e1ae565
Binary files /dev/null and b/animateditems/10567.gif differ
diff --git a/animateditems/10567.png b/animateditems/10567.png
new file mode 100644
index 00000000..46437d51
Binary files /dev/null and b/animateditems/10567.png differ
diff --git a/animateditems/10568.gif b/animateditems/10568.gif
new file mode 100644
index 00000000..ea9984ad
Binary files /dev/null and b/animateditems/10568.gif differ
diff --git a/animateditems/10568.png b/animateditems/10568.png
new file mode 100644
index 00000000..cd864c1d
Binary files /dev/null and b/animateditems/10568.png differ
diff --git a/animateditems/10569.gif b/animateditems/10569.gif
new file mode 100644
index 00000000..63a6259d
Binary files /dev/null and b/animateditems/10569.gif differ
diff --git a/animateditems/10569.png b/animateditems/10569.png
new file mode 100644
index 00000000..27128721
Binary files /dev/null and b/animateditems/10569.png differ
diff --git a/animateditems/10570.gif b/animateditems/10570.gif
new file mode 100644
index 00000000..72d04f64
Binary files /dev/null and b/animateditems/10570.gif differ
diff --git a/animateditems/10570.png b/animateditems/10570.png
new file mode 100644
index 00000000..fa3072be
Binary files /dev/null and b/animateditems/10570.png differ
diff --git a/animateditems/10571.gif b/animateditems/10571.gif
new file mode 100644
index 00000000..05313ddf
Binary files /dev/null and b/animateditems/10571.gif differ
diff --git a/animateditems/10571.png b/animateditems/10571.png
new file mode 100644
index 00000000..546954d6
Binary files /dev/null and b/animateditems/10571.png differ
diff --git a/animateditems/10572.gif b/animateditems/10572.gif
new file mode 100644
index 00000000..b338a4ac
Binary files /dev/null and b/animateditems/10572.gif differ
diff --git a/animateditems/10572.png b/animateditems/10572.png
new file mode 100644
index 00000000..eb1c120e
Binary files /dev/null and b/animateditems/10572.png differ
diff --git a/animateditems/10573.gif b/animateditems/10573.gif
new file mode 100644
index 00000000..491a03b6
Binary files /dev/null and b/animateditems/10573.gif differ
diff --git a/animateditems/10573.png b/animateditems/10573.png
new file mode 100644
index 00000000..d4930c32
Binary files /dev/null and b/animateditems/10573.png differ
diff --git a/animateditems/10574.gif b/animateditems/10574.gif
new file mode 100644
index 00000000..653c27f1
Binary files /dev/null and b/animateditems/10574.gif differ
diff --git a/animateditems/10574.png b/animateditems/10574.png
new file mode 100644
index 00000000..d158a85d
Binary files /dev/null and b/animateditems/10574.png differ
diff --git a/animateditems/10575.gif b/animateditems/10575.gif
new file mode 100644
index 00000000..a9203f84
Binary files /dev/null and b/animateditems/10575.gif differ
diff --git a/animateditems/10575.png b/animateditems/10575.png
new file mode 100644
index 00000000..37b0f79b
Binary files /dev/null and b/animateditems/10575.png differ
diff --git a/animateditems/10576.gif b/animateditems/10576.gif
new file mode 100644
index 00000000..8e76f4da
Binary files /dev/null and b/animateditems/10576.gif differ
diff --git a/animateditems/10576.png b/animateditems/10576.png
new file mode 100644
index 00000000..f76a1a9c
Binary files /dev/null and b/animateditems/10576.png differ
diff --git a/animateditems/10577.gif b/animateditems/10577.gif
new file mode 100644
index 00000000..95b03fe2
Binary files /dev/null and b/animateditems/10577.gif differ
diff --git a/animateditems/10577.png b/animateditems/10577.png
new file mode 100644
index 00000000..909c7553
Binary files /dev/null and b/animateditems/10577.png differ
diff --git a/animateditems/10578.gif b/animateditems/10578.gif
new file mode 100644
index 00000000..ce0e8514
Binary files /dev/null and b/animateditems/10578.gif differ
diff --git a/animateditems/10578.png b/animateditems/10578.png
new file mode 100644
index 00000000..fa4fe49e
Binary files /dev/null and b/animateditems/10578.png differ
diff --git a/animateditems/10579.gif b/animateditems/10579.gif
new file mode 100644
index 00000000..1672dc60
Binary files /dev/null and b/animateditems/10579.gif differ
diff --git a/animateditems/10579.png b/animateditems/10579.png
new file mode 100644
index 00000000..e3e2dade
Binary files /dev/null and b/animateditems/10579.png differ
diff --git a/animateditems/10580.gif b/animateditems/10580.gif
new file mode 100644
index 00000000..d76c1dab
Binary files /dev/null and b/animateditems/10580.gif differ
diff --git a/animateditems/10580.png b/animateditems/10580.png
new file mode 100644
index 00000000..a9d64b2d
Binary files /dev/null and b/animateditems/10580.png differ
diff --git a/animateditems/10581.gif b/animateditems/10581.gif
new file mode 100644
index 00000000..500a507c
Binary files /dev/null and b/animateditems/10581.gif differ
diff --git a/animateditems/10581.png b/animateditems/10581.png
new file mode 100644
index 00000000..5210cff9
Binary files /dev/null and b/animateditems/10581.png differ
diff --git a/animateditems/10582.gif b/animateditems/10582.gif
new file mode 100644
index 00000000..a08172a4
Binary files /dev/null and b/animateditems/10582.gif differ
diff --git a/animateditems/10582.png b/animateditems/10582.png
new file mode 100644
index 00000000..325fa015
Binary files /dev/null and b/animateditems/10582.png differ
diff --git a/animateditems/10583.gif b/animateditems/10583.gif
new file mode 100644
index 00000000..cdc35f9a
Binary files /dev/null and b/animateditems/10583.gif differ
diff --git a/animateditems/10583.png b/animateditems/10583.png
new file mode 100644
index 00000000..e0875af3
Binary files /dev/null and b/animateditems/10583.png differ
diff --git a/animateditems/10584.gif b/animateditems/10584.gif
new file mode 100644
index 00000000..5b8ca7d2
Binary files /dev/null and b/animateditems/10584.gif differ
diff --git a/animateditems/10584.png b/animateditems/10584.png
new file mode 100644
index 00000000..d195c492
Binary files /dev/null and b/animateditems/10584.png differ
diff --git a/animateditems/10585.gif b/animateditems/10585.gif
new file mode 100644
index 00000000..87faab3d
Binary files /dev/null and b/animateditems/10585.gif differ
diff --git a/animateditems/10585.png b/animateditems/10585.png
new file mode 100644
index 00000000..fba57462
Binary files /dev/null and b/animateditems/10585.png differ
diff --git a/animateditems/10600.gif b/animateditems/10600.gif
new file mode 100644
index 00000000..bdae9d99
Binary files /dev/null and b/animateditems/10600.gif differ
diff --git a/animateditems/10600.png b/animateditems/10600.png
new file mode 100644
index 00000000..78cac9a4
Binary files /dev/null and b/animateditems/10600.png differ
diff --git a/animateditems/10601.gif b/animateditems/10601.gif
new file mode 100644
index 00000000..0127bcd5
Binary files /dev/null and b/animateditems/10601.gif differ
diff --git a/animateditems/10601.png b/animateditems/10601.png
new file mode 100644
index 00000000..80963733
Binary files /dev/null and b/animateditems/10601.png differ
diff --git a/animateditems/10602.gif b/animateditems/10602.gif
new file mode 100644
index 00000000..ca1c6a28
Binary files /dev/null and b/animateditems/10602.gif differ
diff --git a/animateditems/10602.png b/animateditems/10602.png
new file mode 100644
index 00000000..230e67d6
Binary files /dev/null and b/animateditems/10602.png differ
diff --git a/animateditems/10603.gif b/animateditems/10603.gif
new file mode 100644
index 00000000..d6286c31
Binary files /dev/null and b/animateditems/10603.gif differ
diff --git a/animateditems/10603.png b/animateditems/10603.png
new file mode 100644
index 00000000..a270ebe5
Binary files /dev/null and b/animateditems/10603.png differ
diff --git a/animateditems/10605.gif b/animateditems/10605.gif
new file mode 100644
index 00000000..5a433aad
Binary files /dev/null and b/animateditems/10605.gif differ
diff --git a/animateditems/10605.png b/animateditems/10605.png
new file mode 100644
index 00000000..caa38c2f
Binary files /dev/null and b/animateditems/10605.png differ
diff --git a/animateditems/10606.gif b/animateditems/10606.gif
new file mode 100644
index 00000000..0fcdee7e
Binary files /dev/null and b/animateditems/10606.gif differ
diff --git a/animateditems/10606.png b/animateditems/10606.png
new file mode 100644
index 00000000..34f927f2
Binary files /dev/null and b/animateditems/10606.png differ
diff --git a/animateditems/10607.gif b/animateditems/10607.gif
new file mode 100644
index 00000000..72a96b35
Binary files /dev/null and b/animateditems/10607.gif differ
diff --git a/animateditems/10607.png b/animateditems/10607.png
new file mode 100644
index 00000000..19ebaa3a
Binary files /dev/null and b/animateditems/10607.png differ
diff --git a/animateditems/10608.gif b/animateditems/10608.gif
new file mode 100644
index 00000000..d7fa42f5
Binary files /dev/null and b/animateditems/10608.gif differ
diff --git a/animateditems/10608.png b/animateditems/10608.png
new file mode 100644
index 00000000..7e1ee8ec
Binary files /dev/null and b/animateditems/10608.png differ
diff --git a/animateditems/10609.gif b/animateditems/10609.gif
new file mode 100644
index 00000000..135ca491
Binary files /dev/null and b/animateditems/10609.gif differ
diff --git a/animateditems/10609.png b/animateditems/10609.png
new file mode 100644
index 00000000..a1c95746
Binary files /dev/null and b/animateditems/10609.png differ
diff --git a/animateditems/10610.gif b/animateditems/10610.gif
new file mode 100644
index 00000000..c822d5cd
Binary files /dev/null and b/animateditems/10610.gif differ
diff --git a/animateditems/10610.png b/animateditems/10610.png
new file mode 100644
index 00000000..bd64b2a3
Binary files /dev/null and b/animateditems/10610.png differ
diff --git a/animateditems/10611.gif b/animateditems/10611.gif
new file mode 100644
index 00000000..da00fa7e
Binary files /dev/null and b/animateditems/10611.gif differ
diff --git a/animateditems/10611.png b/animateditems/10611.png
new file mode 100644
index 00000000..2f8cc110
Binary files /dev/null and b/animateditems/10611.png differ
diff --git a/animateditems/10613.gif b/animateditems/10613.gif
new file mode 100644
index 00000000..1ad470e0
Binary files /dev/null and b/animateditems/10613.gif differ
diff --git a/animateditems/10613.png b/animateditems/10613.png
new file mode 100644
index 00000000..7ade7da7
Binary files /dev/null and b/animateditems/10613.png differ
diff --git a/animateditems/10614.gif b/animateditems/10614.gif
new file mode 100644
index 00000000..3368212c
Binary files /dev/null and b/animateditems/10614.gif differ
diff --git a/animateditems/10614.png b/animateditems/10614.png
new file mode 100644
index 00000000..a60389c7
Binary files /dev/null and b/animateditems/10614.png differ
diff --git a/animateditems/10615.gif b/animateditems/10615.gif
new file mode 100644
index 00000000..707a7e9a
Binary files /dev/null and b/animateditems/10615.gif differ
diff --git a/animateditems/10615.png b/animateditems/10615.png
new file mode 100644
index 00000000..2358bc72
Binary files /dev/null and b/animateditems/10615.png differ
diff --git a/animateditems/10616.gif b/animateditems/10616.gif
new file mode 100644
index 00000000..c733a446
Binary files /dev/null and b/animateditems/10616.gif differ
diff --git a/animateditems/10616.png b/animateditems/10616.png
new file mode 100644
index 00000000..8c8af3ea
Binary files /dev/null and b/animateditems/10616.png differ
diff --git a/animateditems/10719.gif b/animateditems/10719.gif
new file mode 100644
index 00000000..dd104771
Binary files /dev/null and b/animateditems/10719.gif differ
diff --git a/animateditems/10719.png b/animateditems/10719.png
new file mode 100644
index 00000000..b95b71bd
Binary files /dev/null and b/animateditems/10719.png differ
diff --git a/animateditems/10720.gif b/animateditems/10720.gif
new file mode 100644
index 00000000..dd104771
Binary files /dev/null and b/animateditems/10720.gif differ
diff --git a/animateditems/10720.png b/animateditems/10720.png
new file mode 100644
index 00000000..b95b71bd
Binary files /dev/null and b/animateditems/10720.png differ
diff --git a/animateditems/10760.gif b/animateditems/10760.gif
new file mode 100644
index 00000000..2bf189a8
Binary files /dev/null and b/animateditems/10760.gif differ
diff --git a/animateditems/10760.png b/animateditems/10760.png
new file mode 100644
index 00000000..031835fd
Binary files /dev/null and b/animateditems/10760.png differ
diff --git a/animateditems/10926.gif b/animateditems/10926.gif
new file mode 100644
index 00000000..b3098019
Binary files /dev/null and b/animateditems/10926.gif differ
diff --git a/animateditems/10926.png b/animateditems/10926.png
new file mode 100644
index 00000000..5fd14479
Binary files /dev/null and b/animateditems/10926.png differ
diff --git a/animateditems/10928.gif b/animateditems/10928.gif
new file mode 100644
index 00000000..9ed975ff
Binary files /dev/null and b/animateditems/10928.gif differ
diff --git a/animateditems/10928.png b/animateditems/10928.png
new file mode 100644
index 00000000..d512fe6e
Binary files /dev/null and b/animateditems/10928.png differ
diff --git a/animateditems/10942.gif b/animateditems/10942.gif
new file mode 100644
index 00000000..4e145003
Binary files /dev/null and b/animateditems/10942.gif differ
diff --git a/animateditems/10942.png b/animateditems/10942.png
new file mode 100644
index 00000000..2f399850
Binary files /dev/null and b/animateditems/10942.png differ
diff --git a/animateditems/10943.gif b/animateditems/10943.gif
new file mode 100644
index 00000000..246bc0d4
Binary files /dev/null and b/animateditems/10943.gif differ
diff --git a/animateditems/10943.png b/animateditems/10943.png
new file mode 100644
index 00000000..3ae5a757
Binary files /dev/null and b/animateditems/10943.png differ
diff --git a/animateditems/10944.gif b/animateditems/10944.gif
new file mode 100644
index 00000000..e08dc5f5
Binary files /dev/null and b/animateditems/10944.gif differ
diff --git a/animateditems/10944.png b/animateditems/10944.png
new file mode 100644
index 00000000..5c200bdd
Binary files /dev/null and b/animateditems/10944.png differ
diff --git a/animateditems/10945.gif b/animateditems/10945.gif
new file mode 100644
index 00000000..bd1f3d10
Binary files /dev/null and b/animateditems/10945.gif differ
diff --git a/animateditems/10945.png b/animateditems/10945.png
new file mode 100644
index 00000000..b58c0fb2
Binary files /dev/null and b/animateditems/10945.png differ
diff --git a/animateditems/11076.gif b/animateditems/11076.gif
new file mode 100644
index 00000000..15575dbb
Binary files /dev/null and b/animateditems/11076.gif differ
diff --git a/animateditems/11076.png b/animateditems/11076.png
new file mode 100644
index 00000000..61fa063c
Binary files /dev/null and b/animateditems/11076.png differ
diff --git a/animateditems/11100.gif b/animateditems/11100.gif
new file mode 100644
index 00000000..2bf189a8
Binary files /dev/null and b/animateditems/11100.gif differ
diff --git a/animateditems/11100.png b/animateditems/11100.png
new file mode 100644
index 00000000..031835fd
Binary files /dev/null and b/animateditems/11100.png differ
diff --git a/animateditems/11101.gif b/animateditems/11101.gif
new file mode 100644
index 00000000..77b5e8b6
Binary files /dev/null and b/animateditems/11101.gif differ
diff --git a/animateditems/11101.png b/animateditems/11101.png
new file mode 100644
index 00000000..29fc788c
Binary files /dev/null and b/animateditems/11101.png differ
diff --git a/animateditems/11106.gif b/animateditems/11106.gif
new file mode 100644
index 00000000..9ef95d07
Binary files /dev/null and b/animateditems/11106.gif differ
diff --git a/animateditems/11106.png b/animateditems/11106.png
new file mode 100644
index 00000000..3e4cd915
Binary files /dev/null and b/animateditems/11106.png differ
diff --git a/animateditems/11113.gif b/animateditems/11113.gif
new file mode 100644
index 00000000..9bf2febb
Binary files /dev/null and b/animateditems/11113.gif differ
diff --git a/animateditems/11113.png b/animateditems/11113.png
new file mode 100644
index 00000000..59343c50
Binary files /dev/null and b/animateditems/11113.png differ
diff --git a/animateditems/11115.gif b/animateditems/11115.gif
new file mode 100644
index 00000000..99d88e6c
Binary files /dev/null and b/animateditems/11115.gif differ
diff --git a/animateditems/11115.png b/animateditems/11115.png
new file mode 100644
index 00000000..71958882
Binary files /dev/null and b/animateditems/11115.png differ
diff --git a/animateditems/11116.gif b/animateditems/11116.gif
new file mode 100644
index 00000000..819c4735
Binary files /dev/null and b/animateditems/11116.gif differ
diff --git a/animateditems/11116.png b/animateditems/11116.png
new file mode 100644
index 00000000..f7d2f203
Binary files /dev/null and b/animateditems/11116.png differ
diff --git a/animateditems/11117.gif b/animateditems/11117.gif
new file mode 100644
index 00000000..b41dd339
Binary files /dev/null and b/animateditems/11117.gif differ
diff --git a/animateditems/11117.png b/animateditems/11117.png
new file mode 100644
index 00000000..572f0f18
Binary files /dev/null and b/animateditems/11117.png differ
diff --git a/animateditems/11118.gif b/animateditems/11118.gif
new file mode 100644
index 00000000..331632b8
Binary files /dev/null and b/animateditems/11118.gif differ
diff --git a/animateditems/11118.png b/animateditems/11118.png
new file mode 100644
index 00000000..2bc7a08d
Binary files /dev/null and b/animateditems/11118.png differ
diff --git a/animateditems/11119.gif b/animateditems/11119.gif
new file mode 100644
index 00000000..bcd76714
Binary files /dev/null and b/animateditems/11119.gif differ
diff --git a/animateditems/11119.png b/animateditems/11119.png
new file mode 100644
index 00000000..7cdd50fb
Binary files /dev/null and b/animateditems/11119.png differ
diff --git a/animateditems/11124.gif b/animateditems/11124.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/11124.gif differ
diff --git a/animateditems/11124.png b/animateditems/11124.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/11124.png differ
diff --git a/animateditems/11126.gif b/animateditems/11126.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/11126.gif differ
diff --git a/animateditems/11126.png b/animateditems/11126.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/11126.png differ
diff --git a/animateditems/11133.gif b/animateditems/11133.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/11133.gif differ
diff --git a/animateditems/11133.png b/animateditems/11133.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/11133.png differ
diff --git a/animateditems/11134.gif b/animateditems/11134.gif
new file mode 100644
index 00000000..dc2ded85
Binary files /dev/null and b/animateditems/11134.gif differ
diff --git a/animateditems/11134.png b/animateditems/11134.png
new file mode 100644
index 00000000..8e57c56e
Binary files /dev/null and b/animateditems/11134.png differ
diff --git a/animateditems/11135.gif b/animateditems/11135.gif
new file mode 100644
index 00000000..d319cb70
Binary files /dev/null and b/animateditems/11135.gif differ
diff --git a/animateditems/11135.png b/animateditems/11135.png
new file mode 100644
index 00000000..df77d1f5
Binary files /dev/null and b/animateditems/11135.png differ
diff --git a/animateditems/11136.gif b/animateditems/11136.gif
new file mode 100644
index 00000000..06116fd2
Binary files /dev/null and b/animateditems/11136.gif differ
diff --git a/animateditems/11136.png b/animateditems/11136.png
new file mode 100644
index 00000000..f35202bc
Binary files /dev/null and b/animateditems/11136.png differ
diff --git a/animateditems/11144.gif b/animateditems/11144.gif
new file mode 100644
index 00000000..4ead438c
Binary files /dev/null and b/animateditems/11144.gif differ
diff --git a/animateditems/11144.png b/animateditems/11144.png
new file mode 100644
index 00000000..bb65e19d
Binary files /dev/null and b/animateditems/11144.png differ
diff --git a/animateditems/11161.gif b/animateditems/11161.gif
new file mode 100644
index 00000000..04ba7a4a
Binary files /dev/null and b/animateditems/11161.gif differ
diff --git a/animateditems/11161.png b/animateditems/11161.png
new file mode 100644
index 00000000..b3b6f6f3
Binary files /dev/null and b/animateditems/11161.png differ
diff --git a/animateditems/11164.gif b/animateditems/11164.gif
new file mode 100644
index 00000000..60419127
Binary files /dev/null and b/animateditems/11164.gif differ
diff --git a/animateditems/11164.png b/animateditems/11164.png
new file mode 100644
index 00000000..fa4eecee
Binary files /dev/null and b/animateditems/11164.png differ
diff --git a/animateditems/11189.gif b/animateditems/11189.gif
new file mode 100644
index 00000000..2177ac3a
Binary files /dev/null and b/animateditems/11189.gif differ
diff --git a/animateditems/11189.png b/animateditems/11189.png
new file mode 100644
index 00000000..085fee23
Binary files /dev/null and b/animateditems/11189.png differ
diff --git a/animateditems/11190.gif b/animateditems/11190.gif
new file mode 100644
index 00000000..f863f255
Binary files /dev/null and b/animateditems/11190.gif differ
diff --git a/animateditems/11190.png b/animateditems/11190.png
new file mode 100644
index 00000000..ad35051b
Binary files /dev/null and b/animateditems/11190.png differ
diff --git a/animateditems/11191.gif b/animateditems/11191.gif
new file mode 100644
index 00000000..557a547d
Binary files /dev/null and b/animateditems/11191.gif differ
diff --git a/animateditems/11191.png b/animateditems/11191.png
new file mode 100644
index 00000000..7568b169
Binary files /dev/null and b/animateditems/11191.png differ
diff --git a/animateditems/11192.gif b/animateditems/11192.gif
new file mode 100644
index 00000000..0fdb98d8
Binary files /dev/null and b/animateditems/11192.gif differ
diff --git a/animateditems/11192.png b/animateditems/11192.png
new file mode 100644
index 00000000..9d3189bc
Binary files /dev/null and b/animateditems/11192.png differ
diff --git a/animateditems/11193.gif b/animateditems/11193.gif
new file mode 100644
index 00000000..bf986430
Binary files /dev/null and b/animateditems/11193.gif differ
diff --git a/animateditems/11193.png b/animateditems/11193.png
new file mode 100644
index 00000000..e317a3c5
Binary files /dev/null and b/animateditems/11193.png differ
diff --git a/animateditems/11194.gif b/animateditems/11194.gif
new file mode 100644
index 00000000..53c99a5e
Binary files /dev/null and b/animateditems/11194.gif differ
diff --git a/animateditems/11194.png b/animateditems/11194.png
new file mode 100644
index 00000000..bfa93ddb
Binary files /dev/null and b/animateditems/11194.png differ
diff --git a/animateditems/11195.gif b/animateditems/11195.gif
new file mode 100644
index 00000000..a2aa0149
Binary files /dev/null and b/animateditems/11195.gif differ
diff --git a/animateditems/11195.png b/animateditems/11195.png
new file mode 100644
index 00000000..7cec43bb
Binary files /dev/null and b/animateditems/11195.png differ
diff --git a/animateditems/11196.gif b/animateditems/11196.gif
new file mode 100644
index 00000000..eeadea54
Binary files /dev/null and b/animateditems/11196.gif differ
diff --git a/animateditems/11196.png b/animateditems/11196.png
new file mode 100644
index 00000000..26bf5e5e
Binary files /dev/null and b/animateditems/11196.png differ
diff --git a/animateditems/11197.gif b/animateditems/11197.gif
new file mode 100644
index 00000000..f647457c
Binary files /dev/null and b/animateditems/11197.gif differ
diff --git a/animateditems/11197.png b/animateditems/11197.png
new file mode 100644
index 00000000..7316a00b
Binary files /dev/null and b/animateditems/11197.png differ
diff --git a/animateditems/11198.gif b/animateditems/11198.gif
new file mode 100644
index 00000000..347e6175
Binary files /dev/null and b/animateditems/11198.gif differ
diff --git a/animateditems/11198.png b/animateditems/11198.png
new file mode 100644
index 00000000..1970eb3e
Binary files /dev/null and b/animateditems/11198.png differ
diff --git a/animateditems/11199.gif b/animateditems/11199.gif
new file mode 100644
index 00000000..f0ac1417
Binary files /dev/null and b/animateditems/11199.gif differ
diff --git a/animateditems/11199.png b/animateditems/11199.png
new file mode 100644
index 00000000..cf56eabb
Binary files /dev/null and b/animateditems/11199.png differ
diff --git a/animateditems/11200.gif b/animateditems/11200.gif
new file mode 100644
index 00000000..7672b087
Binary files /dev/null and b/animateditems/11200.gif differ
diff --git a/animateditems/11200.png b/animateditems/11200.png
new file mode 100644
index 00000000..0a3d2947
Binary files /dev/null and b/animateditems/11200.png differ
diff --git a/animateditems/11205.gif b/animateditems/11205.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/11205.gif differ
diff --git a/animateditems/11205.png b/animateditems/11205.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/11205.png differ
diff --git a/animateditems/11206.gif b/animateditems/11206.gif
new file mode 100644
index 00000000..5e81706f
Binary files /dev/null and b/animateditems/11206.gif differ
diff --git a/animateditems/11206.png b/animateditems/11206.png
new file mode 100644
index 00000000..6a0e6edc
Binary files /dev/null and b/animateditems/11206.png differ
diff --git a/animateditems/11207.gif b/animateditems/11207.gif
new file mode 100644
index 00000000..a79c1333
Binary files /dev/null and b/animateditems/11207.gif differ
diff --git a/animateditems/11207.png b/animateditems/11207.png
new file mode 100644
index 00000000..a752a34f
Binary files /dev/null and b/animateditems/11207.png differ
diff --git a/animateditems/11208.gif b/animateditems/11208.gif
new file mode 100644
index 00000000..839ba3af
Binary files /dev/null and b/animateditems/11208.gif differ
diff --git a/animateditems/11208.png b/animateditems/11208.png
new file mode 100644
index 00000000..4b598f2e
Binary files /dev/null and b/animateditems/11208.png differ
diff --git a/animateditems/11209.gif b/animateditems/11209.gif
new file mode 100644
index 00000000..94bd3a27
Binary files /dev/null and b/animateditems/11209.gif differ
diff --git a/animateditems/11209.png b/animateditems/11209.png
new file mode 100644
index 00000000..76088b89
Binary files /dev/null and b/animateditems/11209.png differ
diff --git a/animateditems/11210.gif b/animateditems/11210.gif
new file mode 100644
index 00000000..cbcc99f2
Binary files /dev/null and b/animateditems/11210.gif differ
diff --git a/animateditems/11210.png b/animateditems/11210.png
new file mode 100644
index 00000000..815910ff
Binary files /dev/null and b/animateditems/11210.png differ
diff --git a/animateditems/11211.gif b/animateditems/11211.gif
new file mode 100644
index 00000000..a9c19870
Binary files /dev/null and b/animateditems/11211.gif differ
diff --git a/animateditems/11211.png b/animateditems/11211.png
new file mode 100644
index 00000000..0678b97c
Binary files /dev/null and b/animateditems/11211.png differ
diff --git a/animateditems/11212.gif b/animateditems/11212.gif
new file mode 100644
index 00000000..f30be0e9
Binary files /dev/null and b/animateditems/11212.gif differ
diff --git a/animateditems/11212.png b/animateditems/11212.png
new file mode 100644
index 00000000..19ca71f0
Binary files /dev/null and b/animateditems/11212.png differ
diff --git a/animateditems/11213.gif b/animateditems/11213.gif
new file mode 100644
index 00000000..45627902
Binary files /dev/null and b/animateditems/11213.gif differ
diff --git a/animateditems/11213.png b/animateditems/11213.png
new file mode 100644
index 00000000..413362b9
Binary files /dev/null and b/animateditems/11213.png differ
diff --git a/animateditems/11214.gif b/animateditems/11214.gif
new file mode 100644
index 00000000..935e655d
Binary files /dev/null and b/animateditems/11214.gif differ
diff --git a/animateditems/11214.png b/animateditems/11214.png
new file mode 100644
index 00000000..1d97afc5
Binary files /dev/null and b/animateditems/11214.png differ
diff --git a/animateditems/11215.gif b/animateditems/11215.gif
new file mode 100644
index 00000000..ca40c81a
Binary files /dev/null and b/animateditems/11215.gif differ
diff --git a/animateditems/11215.png b/animateditems/11215.png
new file mode 100644
index 00000000..c0404518
Binary files /dev/null and b/animateditems/11215.png differ
diff --git a/animateditems/11216.gif b/animateditems/11216.gif
new file mode 100644
index 00000000..ed90f6a4
Binary files /dev/null and b/animateditems/11216.gif differ
diff --git a/animateditems/11216.png b/animateditems/11216.png
new file mode 100644
index 00000000..68abd9f7
Binary files /dev/null and b/animateditems/11216.png differ
diff --git a/animateditems/11217.gif b/animateditems/11217.gif
new file mode 100644
index 00000000..05d41db1
Binary files /dev/null and b/animateditems/11217.gif differ
diff --git a/animateditems/11217.png b/animateditems/11217.png
new file mode 100644
index 00000000..605eca8f
Binary files /dev/null and b/animateditems/11217.png differ
diff --git a/animateditems/11218.gif b/animateditems/11218.gif
new file mode 100644
index 00000000..21678c90
Binary files /dev/null and b/animateditems/11218.gif differ
diff --git a/animateditems/11218.png b/animateditems/11218.png
new file mode 100644
index 00000000..12f4a410
Binary files /dev/null and b/animateditems/11218.png differ
diff --git a/animateditems/11219.gif b/animateditems/11219.gif
new file mode 100644
index 00000000..dfde41d4
Binary files /dev/null and b/animateditems/11219.gif differ
diff --git a/animateditems/11219.png b/animateditems/11219.png
new file mode 100644
index 00000000..2b2eacd8
Binary files /dev/null and b/animateditems/11219.png differ
diff --git a/animateditems/11220.gif b/animateditems/11220.gif
new file mode 100644
index 00000000..e903d817
Binary files /dev/null and b/animateditems/11220.gif differ
diff --git a/animateditems/11220.png b/animateditems/11220.png
new file mode 100644
index 00000000..43ad0618
Binary files /dev/null and b/animateditems/11220.png differ
diff --git a/animateditems/11221.gif b/animateditems/11221.gif
new file mode 100644
index 00000000..9c0b4c7a
Binary files /dev/null and b/animateditems/11221.gif differ
diff --git a/animateditems/11221.png b/animateditems/11221.png
new file mode 100644
index 00000000..357a62c1
Binary files /dev/null and b/animateditems/11221.png differ
diff --git a/animateditems/11222.gif b/animateditems/11222.gif
new file mode 100644
index 00000000..2a21b70f
Binary files /dev/null and b/animateditems/11222.gif differ
diff --git a/animateditems/11222.png b/animateditems/11222.png
new file mode 100644
index 00000000..16e1856a
Binary files /dev/null and b/animateditems/11222.png differ
diff --git a/animateditems/11223.gif b/animateditems/11223.gif
new file mode 100644
index 00000000..54c469c9
Binary files /dev/null and b/animateditems/11223.gif differ
diff --git a/animateditems/11223.png b/animateditems/11223.png
new file mode 100644
index 00000000..180ef496
Binary files /dev/null and b/animateditems/11223.png differ
diff --git a/animateditems/11224.gif b/animateditems/11224.gif
new file mode 100644
index 00000000..e4fd93af
Binary files /dev/null and b/animateditems/11224.gif differ
diff --git a/animateditems/11224.png b/animateditems/11224.png
new file mode 100644
index 00000000..50aada27
Binary files /dev/null and b/animateditems/11224.png differ
diff --git a/animateditems/11225.gif b/animateditems/11225.gif
new file mode 100644
index 00000000..efcd64af
Binary files /dev/null and b/animateditems/11225.gif differ
diff --git a/animateditems/11225.png b/animateditems/11225.png
new file mode 100644
index 00000000..5b5d744a
Binary files /dev/null and b/animateditems/11225.png differ
diff --git a/animateditems/11226.gif b/animateditems/11226.gif
new file mode 100644
index 00000000..9455349f
Binary files /dev/null and b/animateditems/11226.gif differ
diff --git a/animateditems/11226.png b/animateditems/11226.png
new file mode 100644
index 00000000..1318b329
Binary files /dev/null and b/animateditems/11226.png differ
diff --git a/animateditems/11227.gif b/animateditems/11227.gif
new file mode 100644
index 00000000..eead2ca0
Binary files /dev/null and b/animateditems/11227.gif differ
diff --git a/animateditems/11227.png b/animateditems/11227.png
new file mode 100644
index 00000000..b80cd741
Binary files /dev/null and b/animateditems/11227.png differ
diff --git a/animateditems/11228.gif b/animateditems/11228.gif
new file mode 100644
index 00000000..e1529ea1
Binary files /dev/null and b/animateditems/11228.gif differ
diff --git a/animateditems/11228.png b/animateditems/11228.png
new file mode 100644
index 00000000..82167232
Binary files /dev/null and b/animateditems/11228.png differ
diff --git a/animateditems/11229.gif b/animateditems/11229.gif
new file mode 100644
index 00000000..87ab9851
Binary files /dev/null and b/animateditems/11229.gif differ
diff --git a/animateditems/11229.png b/animateditems/11229.png
new file mode 100644
index 00000000..9ee5073a
Binary files /dev/null and b/animateditems/11229.png differ
diff --git a/animateditems/11230.gif b/animateditems/11230.gif
new file mode 100644
index 00000000..2ddbe22a
Binary files /dev/null and b/animateditems/11230.gif differ
diff --git a/animateditems/11230.png b/animateditems/11230.png
new file mode 100644
index 00000000..f81ac402
Binary files /dev/null and b/animateditems/11230.png differ
diff --git a/animateditems/11231.gif b/animateditems/11231.gif
new file mode 100644
index 00000000..77846e45
Binary files /dev/null and b/animateditems/11231.gif differ
diff --git a/animateditems/11231.png b/animateditems/11231.png
new file mode 100644
index 00000000..5c058bf9
Binary files /dev/null and b/animateditems/11231.png differ
diff --git a/animateditems/11232.gif b/animateditems/11232.gif
new file mode 100644
index 00000000..bd655660
Binary files /dev/null and b/animateditems/11232.gif differ
diff --git a/animateditems/11232.png b/animateditems/11232.png
new file mode 100644
index 00000000..fc93d6e8
Binary files /dev/null and b/animateditems/11232.png differ
diff --git a/animateditems/11233.gif b/animateditems/11233.gif
new file mode 100644
index 00000000..8ac707e4
Binary files /dev/null and b/animateditems/11233.gif differ
diff --git a/animateditems/11233.png b/animateditems/11233.png
new file mode 100644
index 00000000..cf8de5a0
Binary files /dev/null and b/animateditems/11233.png differ
diff --git a/animateditems/11234.gif b/animateditems/11234.gif
new file mode 100644
index 00000000..7e685406
Binary files /dev/null and b/animateditems/11234.gif differ
diff --git a/animateditems/11234.png b/animateditems/11234.png
new file mode 100644
index 00000000..8f81d6f2
Binary files /dev/null and b/animateditems/11234.png differ
diff --git a/animateditems/11235.gif b/animateditems/11235.gif
new file mode 100644
index 00000000..be06cc0d
Binary files /dev/null and b/animateditems/11235.gif differ
diff --git a/animateditems/11235.png b/animateditems/11235.png
new file mode 100644
index 00000000..ed3a336d
Binary files /dev/null and b/animateditems/11235.png differ
diff --git a/animateditems/11236.gif b/animateditems/11236.gif
new file mode 100644
index 00000000..2d9f4e89
Binary files /dev/null and b/animateditems/11236.gif differ
diff --git a/animateditems/11236.png b/animateditems/11236.png
new file mode 100644
index 00000000..b1e63080
Binary files /dev/null and b/animateditems/11236.png differ
diff --git a/animateditems/11237.gif b/animateditems/11237.gif
new file mode 100644
index 00000000..c4cdaf6c
Binary files /dev/null and b/animateditems/11237.gif differ
diff --git a/animateditems/11237.png b/animateditems/11237.png
new file mode 100644
index 00000000..c6a9193e
Binary files /dev/null and b/animateditems/11237.png differ
diff --git a/animateditems/11238.gif b/animateditems/11238.gif
new file mode 100644
index 00000000..806ed879
Binary files /dev/null and b/animateditems/11238.gif differ
diff --git a/animateditems/11238.png b/animateditems/11238.png
new file mode 100644
index 00000000..af646e84
Binary files /dev/null and b/animateditems/11238.png differ
diff --git a/animateditems/11240.gif b/animateditems/11240.gif
new file mode 100644
index 00000000..1f96663e
Binary files /dev/null and b/animateditems/11240.gif differ
diff --git a/animateditems/11240.png b/animateditems/11240.png
new file mode 100644
index 00000000..c4276874
Binary files /dev/null and b/animateditems/11240.png differ
diff --git a/animateditems/11241.gif b/animateditems/11241.gif
new file mode 100644
index 00000000..3b0aaba8
Binary files /dev/null and b/animateditems/11241.gif differ
diff --git a/animateditems/11241.png b/animateditems/11241.png
new file mode 100644
index 00000000..60bfe178
Binary files /dev/null and b/animateditems/11241.png differ
diff --git a/animateditems/11242.gif b/animateditems/11242.gif
new file mode 100644
index 00000000..811c3f89
Binary files /dev/null and b/animateditems/11242.gif differ
diff --git a/animateditems/11242.png b/animateditems/11242.png
new file mode 100644
index 00000000..6f8a19f6
Binary files /dev/null and b/animateditems/11242.png differ
diff --git a/animateditems/11243.gif b/animateditems/11243.gif
new file mode 100644
index 00000000..faaafb66
Binary files /dev/null and b/animateditems/11243.gif differ
diff --git a/animateditems/11243.png b/animateditems/11243.png
new file mode 100644
index 00000000..228ed151
Binary files /dev/null and b/animateditems/11243.png differ
diff --git a/animateditems/11244.gif b/animateditems/11244.gif
new file mode 100644
index 00000000..26ac819c
Binary files /dev/null and b/animateditems/11244.gif differ
diff --git a/animateditems/11244.png b/animateditems/11244.png
new file mode 100644
index 00000000..70ea7ccf
Binary files /dev/null and b/animateditems/11244.png differ
diff --git a/animateditems/11245.gif b/animateditems/11245.gif
new file mode 100644
index 00000000..31c7cd38
Binary files /dev/null and b/animateditems/11245.gif differ
diff --git a/animateditems/11245.png b/animateditems/11245.png
new file mode 100644
index 00000000..b1313154
Binary files /dev/null and b/animateditems/11245.png differ
diff --git a/animateditems/11246.gif b/animateditems/11246.gif
new file mode 100644
index 00000000..e31db025
Binary files /dev/null and b/animateditems/11246.gif differ
diff --git a/animateditems/11246.png b/animateditems/11246.png
new file mode 100644
index 00000000..aa510996
Binary files /dev/null and b/animateditems/11246.png differ
diff --git a/animateditems/11247.gif b/animateditems/11247.gif
new file mode 100644
index 00000000..c2c47a2a
Binary files /dev/null and b/animateditems/11247.gif differ
diff --git a/animateditems/11247.png b/animateditems/11247.png
new file mode 100644
index 00000000..9e595722
Binary files /dev/null and b/animateditems/11247.png differ
diff --git a/animateditems/11248.gif b/animateditems/11248.gif
new file mode 100644
index 00000000..ef901e83
Binary files /dev/null and b/animateditems/11248.gif differ
diff --git a/animateditems/11248.png b/animateditems/11248.png
new file mode 100644
index 00000000..3e180539
Binary files /dev/null and b/animateditems/11248.png differ
diff --git a/animateditems/11249.gif b/animateditems/11249.gif
new file mode 100644
index 00000000..72478a4d
Binary files /dev/null and b/animateditems/11249.gif differ
diff --git a/animateditems/11249.png b/animateditems/11249.png
new file mode 100644
index 00000000..23c2241a
Binary files /dev/null and b/animateditems/11249.png differ
diff --git a/animateditems/11251.gif b/animateditems/11251.gif
new file mode 100644
index 00000000..57695773
Binary files /dev/null and b/animateditems/11251.gif differ
diff --git a/animateditems/11251.png b/animateditems/11251.png
new file mode 100644
index 00000000..08832b67
Binary files /dev/null and b/animateditems/11251.png differ
diff --git a/animateditems/11252.gif b/animateditems/11252.gif
new file mode 100644
index 00000000..9e6c4af3
Binary files /dev/null and b/animateditems/11252.gif differ
diff --git a/animateditems/11252.png b/animateditems/11252.png
new file mode 100644
index 00000000..403e0afa
Binary files /dev/null and b/animateditems/11252.png differ
diff --git a/animateditems/11255.gif b/animateditems/11255.gif
new file mode 100644
index 00000000..a5de2dd8
Binary files /dev/null and b/animateditems/11255.gif differ
diff --git a/animateditems/11255.png b/animateditems/11255.png
new file mode 100644
index 00000000..d4a7c916
Binary files /dev/null and b/animateditems/11255.png differ
diff --git a/animateditems/11256.gif b/animateditems/11256.gif
new file mode 100644
index 00000000..7fb56ea8
Binary files /dev/null and b/animateditems/11256.gif differ
diff --git a/animateditems/11256.png b/animateditems/11256.png
new file mode 100644
index 00000000..8ef50e75
Binary files /dev/null and b/animateditems/11256.png differ
diff --git a/animateditems/11258.gif b/animateditems/11258.gif
new file mode 100644
index 00000000..33cfcee0
Binary files /dev/null and b/animateditems/11258.gif differ
diff --git a/animateditems/11258.png b/animateditems/11258.png
new file mode 100644
index 00000000..205854a5
Binary files /dev/null and b/animateditems/11258.png differ
diff --git a/animateditems/11259.gif b/animateditems/11259.gif
new file mode 100644
index 00000000..9ba2cc62
Binary files /dev/null and b/animateditems/11259.gif differ
diff --git a/animateditems/11259.png b/animateditems/11259.png
new file mode 100644
index 00000000..d38053c9
Binary files /dev/null and b/animateditems/11259.png differ
diff --git a/animateditems/11260.gif b/animateditems/11260.gif
new file mode 100644
index 00000000..09ffbbf3
Binary files /dev/null and b/animateditems/11260.gif differ
diff --git a/animateditems/11260.png b/animateditems/11260.png
new file mode 100644
index 00000000..4c3ff598
Binary files /dev/null and b/animateditems/11260.png differ
diff --git a/animateditems/11261.gif b/animateditems/11261.gif
new file mode 100644
index 00000000..037ba0d8
Binary files /dev/null and b/animateditems/11261.gif differ
diff --git a/animateditems/11261.png b/animateditems/11261.png
new file mode 100644
index 00000000..6e91e207
Binary files /dev/null and b/animateditems/11261.png differ
diff --git a/animateditems/11262.gif b/animateditems/11262.gif
new file mode 100644
index 00000000..6c23b2b2
Binary files /dev/null and b/animateditems/11262.gif differ
diff --git a/animateditems/11262.png b/animateditems/11262.png
new file mode 100644
index 00000000..42d358e1
Binary files /dev/null and b/animateditems/11262.png differ
diff --git a/animateditems/11263.gif b/animateditems/11263.gif
new file mode 100644
index 00000000..f56be230
Binary files /dev/null and b/animateditems/11263.gif differ
diff --git a/animateditems/11263.png b/animateditems/11263.png
new file mode 100644
index 00000000..3c6b4ea4
Binary files /dev/null and b/animateditems/11263.png differ
diff --git a/animateditems/11264.gif b/animateditems/11264.gif
new file mode 100644
index 00000000..1d348d87
Binary files /dev/null and b/animateditems/11264.gif differ
diff --git a/animateditems/11264.png b/animateditems/11264.png
new file mode 100644
index 00000000..d10fef80
Binary files /dev/null and b/animateditems/11264.png differ
diff --git a/animateditems/11301.gif b/animateditems/11301.gif
new file mode 100644
index 00000000..b651882f
Binary files /dev/null and b/animateditems/11301.gif differ
diff --git a/animateditems/11301.png b/animateditems/11301.png
new file mode 100644
index 00000000..c78434e0
Binary files /dev/null and b/animateditems/11301.png differ
diff --git a/animateditems/11302.gif b/animateditems/11302.gif
new file mode 100644
index 00000000..cf9b8687
Binary files /dev/null and b/animateditems/11302.gif differ
diff --git a/animateditems/11302.png b/animateditems/11302.png
new file mode 100644
index 00000000..adb7ec09
Binary files /dev/null and b/animateditems/11302.png differ
diff --git a/animateditems/11303.gif b/animateditems/11303.gif
new file mode 100644
index 00000000..17082336
Binary files /dev/null and b/animateditems/11303.gif differ
diff --git a/animateditems/11303.png b/animateditems/11303.png
new file mode 100644
index 00000000..b4752a9e
Binary files /dev/null and b/animateditems/11303.png differ
diff --git a/animateditems/11304.gif b/animateditems/11304.gif
new file mode 100644
index 00000000..1c1be37b
Binary files /dev/null and b/animateditems/11304.gif differ
diff --git a/animateditems/11304.png b/animateditems/11304.png
new file mode 100644
index 00000000..8cd20e5b
Binary files /dev/null and b/animateditems/11304.png differ
diff --git a/animateditems/11305.gif b/animateditems/11305.gif
new file mode 100644
index 00000000..1668998f
Binary files /dev/null and b/animateditems/11305.gif differ
diff --git a/animateditems/11305.png b/animateditems/11305.png
new file mode 100644
index 00000000..85739586
Binary files /dev/null and b/animateditems/11305.png differ
diff --git a/animateditems/11306.gif b/animateditems/11306.gif
new file mode 100644
index 00000000..34d21cb3
Binary files /dev/null and b/animateditems/11306.gif differ
diff --git a/animateditems/11306.png b/animateditems/11306.png
new file mode 100644
index 00000000..f146cc43
Binary files /dev/null and b/animateditems/11306.png differ
diff --git a/animateditems/11307.gif b/animateditems/11307.gif
new file mode 100644
index 00000000..988ecc37
Binary files /dev/null and b/animateditems/11307.gif differ
diff --git a/animateditems/11307.png b/animateditems/11307.png
new file mode 100644
index 00000000..5822cd0f
Binary files /dev/null and b/animateditems/11307.png differ
diff --git a/animateditems/11308.gif b/animateditems/11308.gif
new file mode 100644
index 00000000..d8793bee
Binary files /dev/null and b/animateditems/11308.gif differ
diff --git a/animateditems/11308.png b/animateditems/11308.png
new file mode 100644
index 00000000..befe9d0c
Binary files /dev/null and b/animateditems/11308.png differ
diff --git a/animateditems/11309.gif b/animateditems/11309.gif
new file mode 100644
index 00000000..782c6979
Binary files /dev/null and b/animateditems/11309.gif differ
diff --git a/animateditems/11309.png b/animateditems/11309.png
new file mode 100644
index 00000000..9b93976f
Binary files /dev/null and b/animateditems/11309.png differ
diff --git a/animateditems/11314.gif b/animateditems/11314.gif
new file mode 100644
index 00000000..42133d95
Binary files /dev/null and b/animateditems/11314.gif differ
diff --git a/animateditems/11314.png b/animateditems/11314.png
new file mode 100644
index 00000000..940a1aa2
Binary files /dev/null and b/animateditems/11314.png differ
diff --git a/animateditems/11315.gif b/animateditems/11315.gif
new file mode 100644
index 00000000..006dd7fa
Binary files /dev/null and b/animateditems/11315.gif differ
diff --git a/animateditems/11315.png b/animateditems/11315.png
new file mode 100644
index 00000000..2322c03f
Binary files /dev/null and b/animateditems/11315.png differ
diff --git a/animateditems/11321.gif b/animateditems/11321.gif
new file mode 100644
index 00000000..bf1a708d
Binary files /dev/null and b/animateditems/11321.gif differ
diff --git a/animateditems/11321.png b/animateditems/11321.png
new file mode 100644
index 00000000..c8541fd0
Binary files /dev/null and b/animateditems/11321.png differ
diff --git a/animateditems/11322.gif b/animateditems/11322.gif
new file mode 100644
index 00000000..db1ea86c
Binary files /dev/null and b/animateditems/11322.gif differ
diff --git a/animateditems/11322.png b/animateditems/11322.png
new file mode 100644
index 00000000..908cc37f
Binary files /dev/null and b/animateditems/11322.png differ
diff --git a/animateditems/11323.gif b/animateditems/11323.gif
new file mode 100644
index 00000000..a87aa9b9
Binary files /dev/null and b/animateditems/11323.gif differ
diff --git a/animateditems/11323.png b/animateditems/11323.png
new file mode 100644
index 00000000..e4839d8b
Binary files /dev/null and b/animateditems/11323.png differ
diff --git a/animateditems/11324.gif b/animateditems/11324.gif
new file mode 100644
index 00000000..cdf6ff22
Binary files /dev/null and b/animateditems/11324.gif differ
diff --git a/animateditems/11324.png b/animateditems/11324.png
new file mode 100644
index 00000000..8cc1288b
Binary files /dev/null and b/animateditems/11324.png differ
diff --git a/animateditems/11325.gif b/animateditems/11325.gif
new file mode 100644
index 00000000..8ec337e1
Binary files /dev/null and b/animateditems/11325.gif differ
diff --git a/animateditems/11325.png b/animateditems/11325.png
new file mode 100644
index 00000000..89ceac8d
Binary files /dev/null and b/animateditems/11325.png differ
diff --git a/animateditems/11326.gif b/animateditems/11326.gif
new file mode 100644
index 00000000..5f3d4d99
Binary files /dev/null and b/animateditems/11326.gif differ
diff --git a/animateditems/11326.png b/animateditems/11326.png
new file mode 100644
index 00000000..52da096b
Binary files /dev/null and b/animateditems/11326.png differ
diff --git a/animateditems/11327.gif b/animateditems/11327.gif
new file mode 100644
index 00000000..665d102f
Binary files /dev/null and b/animateditems/11327.gif differ
diff --git a/animateditems/11327.png b/animateditems/11327.png
new file mode 100644
index 00000000..57fa6302
Binary files /dev/null and b/animateditems/11327.png differ
diff --git a/animateditems/11328.gif b/animateditems/11328.gif
new file mode 100644
index 00000000..b2a84dab
Binary files /dev/null and b/animateditems/11328.gif differ
diff --git a/animateditems/11328.png b/animateditems/11328.png
new file mode 100644
index 00000000..fec950ca
Binary files /dev/null and b/animateditems/11328.png differ
diff --git a/animateditems/11329.gif b/animateditems/11329.gif
new file mode 100644
index 00000000..b8a1558f
Binary files /dev/null and b/animateditems/11329.gif differ
diff --git a/animateditems/11329.png b/animateditems/11329.png
new file mode 100644
index 00000000..cedbfc8d
Binary files /dev/null and b/animateditems/11329.png differ
diff --git a/animateditems/11330.gif b/animateditems/11330.gif
new file mode 100644
index 00000000..38db9a2c
Binary files /dev/null and b/animateditems/11330.gif differ
diff --git a/animateditems/11330.png b/animateditems/11330.png
new file mode 100644
index 00000000..16772705
Binary files /dev/null and b/animateditems/11330.png differ
diff --git a/animateditems/11331.gif b/animateditems/11331.gif
new file mode 100644
index 00000000..eeb73c09
Binary files /dev/null and b/animateditems/11331.gif differ
diff --git a/animateditems/11331.png b/animateditems/11331.png
new file mode 100644
index 00000000..94612646
Binary files /dev/null and b/animateditems/11331.png differ
diff --git a/animateditems/11332.gif b/animateditems/11332.gif
new file mode 100644
index 00000000..3ad46926
Binary files /dev/null and b/animateditems/11332.gif differ
diff --git a/animateditems/11332.png b/animateditems/11332.png
new file mode 100644
index 00000000..81fcfc9c
Binary files /dev/null and b/animateditems/11332.png differ
diff --git a/animateditems/11333.gif b/animateditems/11333.gif
new file mode 100644
index 00000000..dc1a1f6b
Binary files /dev/null and b/animateditems/11333.gif differ
diff --git a/animateditems/11333.png b/animateditems/11333.png
new file mode 100644
index 00000000..9a66c79c
Binary files /dev/null and b/animateditems/11333.png differ
diff --git a/animateditems/11334.gif b/animateditems/11334.gif
new file mode 100644
index 00000000..5865ee3a
Binary files /dev/null and b/animateditems/11334.gif differ
diff --git a/animateditems/11334.png b/animateditems/11334.png
new file mode 100644
index 00000000..bef2cacf
Binary files /dev/null and b/animateditems/11334.png differ
diff --git a/animateditems/11335.gif b/animateditems/11335.gif
new file mode 100644
index 00000000..42c8cc03
Binary files /dev/null and b/animateditems/11335.gif differ
diff --git a/animateditems/11335.png b/animateditems/11335.png
new file mode 100644
index 00000000..a4666f55
Binary files /dev/null and b/animateditems/11335.png differ
diff --git a/animateditems/11336.gif b/animateditems/11336.gif
new file mode 100644
index 00000000..23b9f561
Binary files /dev/null and b/animateditems/11336.gif differ
diff --git a/animateditems/11336.png b/animateditems/11336.png
new file mode 100644
index 00000000..71074bba
Binary files /dev/null and b/animateditems/11336.png differ
diff --git a/animateditems/11337.gif b/animateditems/11337.gif
new file mode 100644
index 00000000..a4535327
Binary files /dev/null and b/animateditems/11337.gif differ
diff --git a/animateditems/11337.png b/animateditems/11337.png
new file mode 100644
index 00000000..eaa5d437
Binary files /dev/null and b/animateditems/11337.png differ
diff --git a/animateditems/11338.gif b/animateditems/11338.gif
new file mode 100644
index 00000000..14c89be4
Binary files /dev/null and b/animateditems/11338.gif differ
diff --git a/animateditems/11338.png b/animateditems/11338.png
new file mode 100644
index 00000000..12000c7d
Binary files /dev/null and b/animateditems/11338.png differ
diff --git a/animateditems/11339.gif b/animateditems/11339.gif
new file mode 100644
index 00000000..6c7f5dac
Binary files /dev/null and b/animateditems/11339.gif differ
diff --git a/animateditems/11339.png b/animateditems/11339.png
new file mode 100644
index 00000000..40d6fed8
Binary files /dev/null and b/animateditems/11339.png differ
diff --git a/animateditems/11340.gif b/animateditems/11340.gif
new file mode 100644
index 00000000..375c3952
Binary files /dev/null and b/animateditems/11340.gif differ
diff --git a/animateditems/11340.png b/animateditems/11340.png
new file mode 100644
index 00000000..ff1a05f2
Binary files /dev/null and b/animateditems/11340.png differ
diff --git a/animateditems/11341.gif b/animateditems/11341.gif
new file mode 100644
index 00000000..ab282ffe
Binary files /dev/null and b/animateditems/11341.gif differ
diff --git a/animateditems/11341.png b/animateditems/11341.png
new file mode 100644
index 00000000..b9d4d34a
Binary files /dev/null and b/animateditems/11341.png differ
diff --git a/animateditems/11342.gif b/animateditems/11342.gif
new file mode 100644
index 00000000..1b13883c
Binary files /dev/null and b/animateditems/11342.gif differ
diff --git a/animateditems/11342.png b/animateditems/11342.png
new file mode 100644
index 00000000..c5d99065
Binary files /dev/null and b/animateditems/11342.png differ
diff --git a/animateditems/11343.gif b/animateditems/11343.gif
new file mode 100644
index 00000000..764eff46
Binary files /dev/null and b/animateditems/11343.gif differ
diff --git a/animateditems/11343.png b/animateditems/11343.png
new file mode 100644
index 00000000..35b45980
Binary files /dev/null and b/animateditems/11343.png differ
diff --git a/animateditems/11344.gif b/animateditems/11344.gif
new file mode 100644
index 00000000..15b9d2e2
Binary files /dev/null and b/animateditems/11344.gif differ
diff --git a/animateditems/11344.png b/animateditems/11344.png
new file mode 100644
index 00000000..9c7adf3a
Binary files /dev/null and b/animateditems/11344.png differ
diff --git a/animateditems/11345.gif b/animateditems/11345.gif
new file mode 100644
index 00000000..4d9aaa22
Binary files /dev/null and b/animateditems/11345.gif differ
diff --git a/animateditems/11345.png b/animateditems/11345.png
new file mode 100644
index 00000000..8ec0902f
Binary files /dev/null and b/animateditems/11345.png differ
diff --git a/animateditems/11346.gif b/animateditems/11346.gif
new file mode 100644
index 00000000..c3a55c2d
Binary files /dev/null and b/animateditems/11346.gif differ
diff --git a/animateditems/11346.png b/animateditems/11346.png
new file mode 100644
index 00000000..ef56da63
Binary files /dev/null and b/animateditems/11346.png differ
diff --git a/animateditems/11355.gif b/animateditems/11355.gif
new file mode 100644
index 00000000..71746fb6
Binary files /dev/null and b/animateditems/11355.gif differ
diff --git a/animateditems/11355.png b/animateditems/11355.png
new file mode 100644
index 00000000..f214da60
Binary files /dev/null and b/animateditems/11355.png differ
diff --git a/animateditems/11356.gif b/animateditems/11356.gif
new file mode 100644
index 00000000..196a5720
Binary files /dev/null and b/animateditems/11356.gif differ
diff --git a/animateditems/11356.png b/animateditems/11356.png
new file mode 100644
index 00000000..968125ba
Binary files /dev/null and b/animateditems/11356.png differ
diff --git a/animateditems/11357.gif b/animateditems/11357.gif
new file mode 100644
index 00000000..842ed6b1
Binary files /dev/null and b/animateditems/11357.gif differ
diff --git a/animateditems/11357.png b/animateditems/11357.png
new file mode 100644
index 00000000..a35fa2c5
Binary files /dev/null and b/animateditems/11357.png differ
diff --git a/animateditems/11358.gif b/animateditems/11358.gif
new file mode 100644
index 00000000..b6aa8f3e
Binary files /dev/null and b/animateditems/11358.gif differ
diff --git a/animateditems/11358.png b/animateditems/11358.png
new file mode 100644
index 00000000..0b1dced6
Binary files /dev/null and b/animateditems/11358.png differ
diff --git a/animateditems/11359.gif b/animateditems/11359.gif
new file mode 100644
index 00000000..a1b14d68
Binary files /dev/null and b/animateditems/11359.gif differ
diff --git a/animateditems/11359.png b/animateditems/11359.png
new file mode 100644
index 00000000..af771517
Binary files /dev/null and b/animateditems/11359.png differ
diff --git a/animateditems/11361.gif b/animateditems/11361.gif
new file mode 100644
index 00000000..640f1b60
Binary files /dev/null and b/animateditems/11361.gif differ
diff --git a/animateditems/11361.png b/animateditems/11361.png
new file mode 100644
index 00000000..7d49d0b6
Binary files /dev/null and b/animateditems/11361.png differ
diff --git a/animateditems/11366.gif b/animateditems/11366.gif
new file mode 100644
index 00000000..26c616f5
Binary files /dev/null and b/animateditems/11366.gif differ
diff --git a/animateditems/11366.png b/animateditems/11366.png
new file mode 100644
index 00000000..75cbf26d
Binary files /dev/null and b/animateditems/11366.png differ
diff --git a/animateditems/11367.gif b/animateditems/11367.gif
new file mode 100644
index 00000000..8f98d1c4
Binary files /dev/null and b/animateditems/11367.gif differ
diff --git a/animateditems/11367.png b/animateditems/11367.png
new file mode 100644
index 00000000..ecefcbc2
Binary files /dev/null and b/animateditems/11367.png differ
diff --git a/animateditems/11368.gif b/animateditems/11368.gif
new file mode 100644
index 00000000..4be48264
Binary files /dev/null and b/animateditems/11368.gif differ
diff --git a/animateditems/11368.png b/animateditems/11368.png
new file mode 100644
index 00000000..83e3aa6a
Binary files /dev/null and b/animateditems/11368.png differ
diff --git a/animateditems/11369.gif b/animateditems/11369.gif
new file mode 100644
index 00000000..06bcd9fa
Binary files /dev/null and b/animateditems/11369.gif differ
diff --git a/animateditems/11369.png b/animateditems/11369.png
new file mode 100644
index 00000000..55d3e96a
Binary files /dev/null and b/animateditems/11369.png differ
diff --git a/animateditems/11370.gif b/animateditems/11370.gif
new file mode 100644
index 00000000..86fbea47
Binary files /dev/null and b/animateditems/11370.gif differ
diff --git a/animateditems/11370.png b/animateditems/11370.png
new file mode 100644
index 00000000..b04bf25e
Binary files /dev/null and b/animateditems/11370.png differ
diff --git a/animateditems/11371.gif b/animateditems/11371.gif
new file mode 100644
index 00000000..874b814e
Binary files /dev/null and b/animateditems/11371.gif differ
diff --git a/animateditems/11371.png b/animateditems/11371.png
new file mode 100644
index 00000000..474ebac5
Binary files /dev/null and b/animateditems/11371.png differ
diff --git a/animateditems/11372.gif b/animateditems/11372.gif
new file mode 100644
index 00000000..d7f7f1b4
Binary files /dev/null and b/animateditems/11372.gif differ
diff --git a/animateditems/11372.png b/animateditems/11372.png
new file mode 100644
index 00000000..bc109fb3
Binary files /dev/null and b/animateditems/11372.png differ
diff --git a/animateditems/11373.gif b/animateditems/11373.gif
new file mode 100644
index 00000000..431506b7
Binary files /dev/null and b/animateditems/11373.gif differ
diff --git a/animateditems/11373.png b/animateditems/11373.png
new file mode 100644
index 00000000..b7ab659e
Binary files /dev/null and b/animateditems/11373.png differ
diff --git a/animateditems/11374.gif b/animateditems/11374.gif
new file mode 100644
index 00000000..ba31b311
Binary files /dev/null and b/animateditems/11374.gif differ
diff --git a/animateditems/11374.png b/animateditems/11374.png
new file mode 100644
index 00000000..599904b7
Binary files /dev/null and b/animateditems/11374.png differ
diff --git a/animateditems/11393.gif b/animateditems/11393.gif
new file mode 100644
index 00000000..2cde9479
Binary files /dev/null and b/animateditems/11393.gif differ
diff --git a/animateditems/11393.png b/animateditems/11393.png
new file mode 100644
index 00000000..c202e987
Binary files /dev/null and b/animateditems/11393.png differ
diff --git a/animateditems/11394.gif b/animateditems/11394.gif
new file mode 100644
index 00000000..ba1eec6f
Binary files /dev/null and b/animateditems/11394.gif differ
diff --git a/animateditems/11394.png b/animateditems/11394.png
new file mode 100644
index 00000000..34a59549
Binary files /dev/null and b/animateditems/11394.png differ
diff --git a/animateditems/11395.gif b/animateditems/11395.gif
new file mode 100644
index 00000000..adba452b
Binary files /dev/null and b/animateditems/11395.gif differ
diff --git a/animateditems/11395.png b/animateditems/11395.png
new file mode 100644
index 00000000..6431c7c2
Binary files /dev/null and b/animateditems/11395.png differ
diff --git a/animateditems/11396.gif b/animateditems/11396.gif
new file mode 100644
index 00000000..5da48e47
Binary files /dev/null and b/animateditems/11396.gif differ
diff --git a/animateditems/11396.png b/animateditems/11396.png
new file mode 100644
index 00000000..1909fab4
Binary files /dev/null and b/animateditems/11396.png differ
diff --git a/animateditems/11397.gif b/animateditems/11397.gif
new file mode 100644
index 00000000..6b851909
Binary files /dev/null and b/animateditems/11397.gif differ
diff --git a/animateditems/11397.png b/animateditems/11397.png
new file mode 100644
index 00000000..985ea885
Binary files /dev/null and b/animateditems/11397.png differ
diff --git a/animateditems/11398.gif b/animateditems/11398.gif
new file mode 100644
index 00000000..a220507a
Binary files /dev/null and b/animateditems/11398.gif differ
diff --git a/animateditems/11398.png b/animateditems/11398.png
new file mode 100644
index 00000000..7f95680b
Binary files /dev/null and b/animateditems/11398.png differ
diff --git a/animateditems/11399.gif b/animateditems/11399.gif
new file mode 100644
index 00000000..c330eff5
Binary files /dev/null and b/animateditems/11399.gif differ
diff --git a/animateditems/11399.png b/animateditems/11399.png
new file mode 100644
index 00000000..4dc478d0
Binary files /dev/null and b/animateditems/11399.png differ
diff --git a/animateditems/11400.gif b/animateditems/11400.gif
new file mode 100644
index 00000000..d294dbcd
Binary files /dev/null and b/animateditems/11400.gif differ
diff --git a/animateditems/11400.png b/animateditems/11400.png
new file mode 100644
index 00000000..f11975c7
Binary files /dev/null and b/animateditems/11400.png differ
diff --git a/animateditems/11401.gif b/animateditems/11401.gif
new file mode 100644
index 00000000..6236385a
Binary files /dev/null and b/animateditems/11401.gif differ
diff --git a/animateditems/11401.png b/animateditems/11401.png
new file mode 100644
index 00000000..3d38c6e7
Binary files /dev/null and b/animateditems/11401.png differ
diff --git a/animateditems/11402.gif b/animateditems/11402.gif
new file mode 100644
index 00000000..6236385a
Binary files /dev/null and b/animateditems/11402.gif differ
diff --git a/animateditems/11402.png b/animateditems/11402.png
new file mode 100644
index 00000000..3d38c6e7
Binary files /dev/null and b/animateditems/11402.png differ
diff --git a/animateditems/11409.gif b/animateditems/11409.gif
new file mode 100644
index 00000000..2d2ce6ba
Binary files /dev/null and b/animateditems/11409.gif differ
diff --git a/animateditems/11409.png b/animateditems/11409.png
new file mode 100644
index 00000000..728f282a
Binary files /dev/null and b/animateditems/11409.png differ
diff --git a/animateditems/11421.gif b/animateditems/11421.gif
new file mode 100644
index 00000000..7ac23d6c
Binary files /dev/null and b/animateditems/11421.gif differ
diff --git a/animateditems/11421.png b/animateditems/11421.png
new file mode 100644
index 00000000..0fd9517f
Binary files /dev/null and b/animateditems/11421.png differ
diff --git a/animateditems/11422.gif b/animateditems/11422.gif
new file mode 100644
index 00000000..66cd15a4
Binary files /dev/null and b/animateditems/11422.gif differ
diff --git a/animateditems/11422.png b/animateditems/11422.png
new file mode 100644
index 00000000..3cf2c232
Binary files /dev/null and b/animateditems/11422.png differ
diff --git a/animateditems/11423.gif b/animateditems/11423.gif
new file mode 100644
index 00000000..fbd7a98c
Binary files /dev/null and b/animateditems/11423.gif differ
diff --git a/animateditems/11423.png b/animateditems/11423.png
new file mode 100644
index 00000000..0cd85361
Binary files /dev/null and b/animateditems/11423.png differ
diff --git a/animateditems/11424.gif b/animateditems/11424.gif
new file mode 100644
index 00000000..10c4e16a
Binary files /dev/null and b/animateditems/11424.gif differ
diff --git a/animateditems/11424.png b/animateditems/11424.png
new file mode 100644
index 00000000..20afca8a
Binary files /dev/null and b/animateditems/11424.png differ
diff --git a/animateditems/11425.gif b/animateditems/11425.gif
new file mode 100644
index 00000000..e13bb812
Binary files /dev/null and b/animateditems/11425.gif differ
diff --git a/animateditems/11425.png b/animateditems/11425.png
new file mode 100644
index 00000000..32fe22e2
Binary files /dev/null and b/animateditems/11425.png differ
diff --git a/animateditems/11426.gif b/animateditems/11426.gif
new file mode 100644
index 00000000..3304fa63
Binary files /dev/null and b/animateditems/11426.gif differ
diff --git a/animateditems/11426.png b/animateditems/11426.png
new file mode 100644
index 00000000..26e283a3
Binary files /dev/null and b/animateditems/11426.png differ
diff --git a/animateditems/11427.gif b/animateditems/11427.gif
new file mode 100644
index 00000000..86b0b946
Binary files /dev/null and b/animateditems/11427.gif differ
diff --git a/animateditems/11427.png b/animateditems/11427.png
new file mode 100644
index 00000000..32e30dcf
Binary files /dev/null and b/animateditems/11427.png differ
diff --git a/animateditems/11428.gif b/animateditems/11428.gif
new file mode 100644
index 00000000..f12fe3d4
Binary files /dev/null and b/animateditems/11428.gif differ
diff --git a/animateditems/11428.png b/animateditems/11428.png
new file mode 100644
index 00000000..d96befcd
Binary files /dev/null and b/animateditems/11428.png differ
diff --git a/animateditems/11429.gif b/animateditems/11429.gif
new file mode 100644
index 00000000..d91a11ee
Binary files /dev/null and b/animateditems/11429.gif differ
diff --git a/animateditems/11429.png b/animateditems/11429.png
new file mode 100644
index 00000000..d6258136
Binary files /dev/null and b/animateditems/11429.png differ
diff --git a/animateditems/11754.gif b/animateditems/11754.gif
new file mode 100644
index 00000000..bbb7a7cf
Binary files /dev/null and b/animateditems/11754.gif differ
diff --git a/animateditems/11754.png b/animateditems/11754.png
new file mode 100644
index 00000000..3ae179e1
Binary files /dev/null and b/animateditems/11754.png differ
diff --git a/animateditems/11755.gif b/animateditems/11755.gif
new file mode 100644
index 00000000..bbb7a7cf
Binary files /dev/null and b/animateditems/11755.gif differ
diff --git a/animateditems/11755.png b/animateditems/11755.png
new file mode 100644
index 00000000..3ae179e1
Binary files /dev/null and b/animateditems/11755.png differ
diff --git a/animateditems/11756.gif b/animateditems/11756.gif
new file mode 100644
index 00000000..6723b3bc
Binary files /dev/null and b/animateditems/11756.gif differ
diff --git a/animateditems/11756.png b/animateditems/11756.png
new file mode 100644
index 00000000..e7f60ecc
Binary files /dev/null and b/animateditems/11756.png differ
diff --git a/animateditems/11757.gif b/animateditems/11757.gif
new file mode 100644
index 00000000..6723b3bc
Binary files /dev/null and b/animateditems/11757.gif differ
diff --git a/animateditems/11757.png b/animateditems/11757.png
new file mode 100644
index 00000000..e7f60ecc
Binary files /dev/null and b/animateditems/11757.png differ
diff --git a/animateditems/11773.gif b/animateditems/11773.gif
new file mode 100644
index 00000000..8dbe8a9b
Binary files /dev/null and b/animateditems/11773.gif differ
diff --git a/animateditems/11773.png b/animateditems/11773.png
new file mode 100644
index 00000000..cc384a2c
Binary files /dev/null and b/animateditems/11773.png differ
diff --git a/animateditems/11774.gif b/animateditems/11774.gif
new file mode 100644
index 00000000..8dbe8a9b
Binary files /dev/null and b/animateditems/11774.gif differ
diff --git a/animateditems/11774.png b/animateditems/11774.png
new file mode 100644
index 00000000..cc384a2c
Binary files /dev/null and b/animateditems/11774.png differ
diff --git a/animateditems/12284.gif b/animateditems/12284.gif
new file mode 100644
index 00000000..04c8b0e8
Binary files /dev/null and b/animateditems/12284.gif differ
diff --git a/animateditems/12284.png b/animateditems/12284.png
new file mode 100644
index 00000000..561625e3
Binary files /dev/null and b/animateditems/12284.png differ
diff --git a/animateditems/12285.gif b/animateditems/12285.gif
new file mode 100644
index 00000000..b5f6fa34
Binary files /dev/null and b/animateditems/12285.gif differ
diff --git a/animateditems/12285.png b/animateditems/12285.png
new file mode 100644
index 00000000..dcf35674
Binary files /dev/null and b/animateditems/12285.png differ
diff --git a/animateditems/12287.gif b/animateditems/12287.gif
new file mode 100644
index 00000000..b176cfa6
Binary files /dev/null and b/animateditems/12287.gif differ
diff --git a/animateditems/12287.png b/animateditems/12287.png
new file mode 100644
index 00000000..504bab65
Binary files /dev/null and b/animateditems/12287.png differ
diff --git a/animateditems/12289.gif b/animateditems/12289.gif
new file mode 100644
index 00000000..3da70ae1
Binary files /dev/null and b/animateditems/12289.gif differ
diff --git a/animateditems/12289.png b/animateditems/12289.png
new file mode 100644
index 00000000..add281e1
Binary files /dev/null and b/animateditems/12289.png differ
diff --git a/animateditems/12290.gif b/animateditems/12290.gif
new file mode 100644
index 00000000..367eeeb3
Binary files /dev/null and b/animateditems/12290.gif differ
diff --git a/animateditems/12290.png b/animateditems/12290.png
new file mode 100644
index 00000000..2668b249
Binary files /dev/null and b/animateditems/12290.png differ
diff --git a/animateditems/12295.gif b/animateditems/12295.gif
new file mode 100644
index 00000000..660c1b21
Binary files /dev/null and b/animateditems/12295.gif differ
diff --git a/animateditems/12295.png b/animateditems/12295.png
new file mode 100644
index 00000000..05ddca9a
Binary files /dev/null and b/animateditems/12295.png differ
diff --git a/animateditems/12297.gif b/animateditems/12297.gif
new file mode 100644
index 00000000..fcf77860
Binary files /dev/null and b/animateditems/12297.gif differ
diff --git a/animateditems/12297.png b/animateditems/12297.png
new file mode 100644
index 00000000..0405808c
Binary files /dev/null and b/animateditems/12297.png differ
diff --git a/animateditems/12300.gif b/animateditems/12300.gif
new file mode 100644
index 00000000..7ec98a40
Binary files /dev/null and b/animateditems/12300.gif differ
diff --git a/animateditems/12300.png b/animateditems/12300.png
new file mode 100644
index 00000000..0ecb6f8b
Binary files /dev/null and b/animateditems/12300.png differ
diff --git a/animateditems/12303.gif b/animateditems/12303.gif
new file mode 100644
index 00000000..0de8f440
Binary files /dev/null and b/animateditems/12303.gif differ
diff --git a/animateditems/12303.png b/animateditems/12303.png
new file mode 100644
index 00000000..11a56afc
Binary files /dev/null and b/animateditems/12303.png differ
diff --git a/animateditems/12318.gif b/animateditems/12318.gif
new file mode 100644
index 00000000..b33791d1
Binary files /dev/null and b/animateditems/12318.gif differ
diff --git a/animateditems/12318.png b/animateditems/12318.png
new file mode 100644
index 00000000..e8883bef
Binary files /dev/null and b/animateditems/12318.png differ
diff --git a/animateditems/12320.gif b/animateditems/12320.gif
new file mode 100644
index 00000000..2bf189a8
Binary files /dev/null and b/animateditems/12320.gif differ
diff --git a/animateditems/12320.png b/animateditems/12320.png
new file mode 100644
index 00000000..031835fd
Binary files /dev/null and b/animateditems/12320.png differ
diff --git a/animateditems/12323.gif b/animateditems/12323.gif
new file mode 100644
index 00000000..612e3df1
Binary files /dev/null and b/animateditems/12323.gif differ
diff --git a/animateditems/12323.png b/animateditems/12323.png
new file mode 100644
index 00000000..2438a385
Binary files /dev/null and b/animateditems/12323.png differ
diff --git a/animateditems/12324.gif b/animateditems/12324.gif
new file mode 100644
index 00000000..469273e5
Binary files /dev/null and b/animateditems/12324.gif differ
diff --git a/animateditems/12324.png b/animateditems/12324.png
new file mode 100644
index 00000000..ebcb0c52
Binary files /dev/null and b/animateditems/12324.png differ
diff --git a/animateditems/12325.gif b/animateditems/12325.gif
new file mode 100644
index 00000000..94951008
Binary files /dev/null and b/animateditems/12325.gif differ
diff --git a/animateditems/12325.png b/animateditems/12325.png
new file mode 100644
index 00000000..0b045514
Binary files /dev/null and b/animateditems/12325.png differ
diff --git a/animateditems/12326.gif b/animateditems/12326.gif
new file mode 100644
index 00000000..27646521
Binary files /dev/null and b/animateditems/12326.gif differ
diff --git a/animateditems/12326.png b/animateditems/12326.png
new file mode 100644
index 00000000..da26a6a9
Binary files /dev/null and b/animateditems/12326.png differ
diff --git a/animateditems/12327.gif b/animateditems/12327.gif
new file mode 100644
index 00000000..b33791d1
Binary files /dev/null and b/animateditems/12327.gif differ
diff --git a/animateditems/12327.png b/animateditems/12327.png
new file mode 100644
index 00000000..e8883bef
Binary files /dev/null and b/animateditems/12327.png differ
diff --git a/animateditems/12328.gif b/animateditems/12328.gif
new file mode 100644
index 00000000..3ed621eb
Binary files /dev/null and b/animateditems/12328.gif differ
diff --git a/animateditems/12328.png b/animateditems/12328.png
new file mode 100644
index 00000000..5e33ec7d
Binary files /dev/null and b/animateditems/12328.png differ
diff --git a/animateditems/12382.gif b/animateditems/12382.gif
new file mode 100644
index 00000000..1ad470e0
Binary files /dev/null and b/animateditems/12382.gif differ
diff --git a/animateditems/12382.png b/animateditems/12382.png
new file mode 100644
index 00000000..7ade7da7
Binary files /dev/null and b/animateditems/12382.png differ
diff --git a/animateditems/12399.gif b/animateditems/12399.gif
new file mode 100644
index 00000000..d10ab55d
Binary files /dev/null and b/animateditems/12399.gif differ
diff --git a/animateditems/12399.png b/animateditems/12399.png
new file mode 100644
index 00000000..b8e39e06
Binary files /dev/null and b/animateditems/12399.png differ
diff --git a/animateditems/12400.gif b/animateditems/12400.gif
new file mode 100644
index 00000000..74948ec9
Binary files /dev/null and b/animateditems/12400.gif differ
diff --git a/animateditems/12400.png b/animateditems/12400.png
new file mode 100644
index 00000000..2436f3fa
Binary files /dev/null and b/animateditems/12400.png differ
diff --git a/animateditems/12401.gif b/animateditems/12401.gif
new file mode 100644
index 00000000..a7520547
Binary files /dev/null and b/animateditems/12401.gif differ
diff --git a/animateditems/12401.png b/animateditems/12401.png
new file mode 100644
index 00000000..414b9f01
Binary files /dev/null and b/animateditems/12401.png differ
diff --git a/animateditems/12402.gif b/animateditems/12402.gif
new file mode 100644
index 00000000..7344b0b6
Binary files /dev/null and b/animateditems/12402.gif differ
diff --git a/animateditems/12402.png b/animateditems/12402.png
new file mode 100644
index 00000000..b07cde67
Binary files /dev/null and b/animateditems/12402.png differ
diff --git a/animateditems/12403.gif b/animateditems/12403.gif
new file mode 100644
index 00000000..daa52912
Binary files /dev/null and b/animateditems/12403.gif differ
diff --git a/animateditems/12403.png b/animateditems/12403.png
new file mode 100644
index 00000000..1785bf3c
Binary files /dev/null and b/animateditems/12403.png differ
diff --git a/animateditems/12404.gif b/animateditems/12404.gif
new file mode 100644
index 00000000..eec91a7c
Binary files /dev/null and b/animateditems/12404.gif differ
diff --git a/animateditems/12404.png b/animateditems/12404.png
new file mode 100644
index 00000000..89ef20a1
Binary files /dev/null and b/animateditems/12404.png differ
diff --git a/animateditems/12405.gif b/animateditems/12405.gif
new file mode 100644
index 00000000..817507f3
Binary files /dev/null and b/animateditems/12405.gif differ
diff --git a/animateditems/12405.png b/animateditems/12405.png
new file mode 100644
index 00000000..94e47ad2
Binary files /dev/null and b/animateditems/12405.png differ
diff --git a/animateditems/12406.gif b/animateditems/12406.gif
new file mode 100644
index 00000000..9cfcd4c9
Binary files /dev/null and b/animateditems/12406.gif differ
diff --git a/animateditems/12406.png b/animateditems/12406.png
new file mode 100644
index 00000000..30e4c798
Binary files /dev/null and b/animateditems/12406.png differ
diff --git a/animateditems/12407.gif b/animateditems/12407.gif
new file mode 100644
index 00000000..2e84f1bf
Binary files /dev/null and b/animateditems/12407.gif differ
diff --git a/animateditems/12407.png b/animateditems/12407.png
new file mode 100644
index 00000000..7848734c
Binary files /dev/null and b/animateditems/12407.png differ
diff --git a/animateditems/12408.gif b/animateditems/12408.gif
new file mode 100644
index 00000000..92264eb5
Binary files /dev/null and b/animateditems/12408.gif differ
diff --git a/animateditems/12408.png b/animateditems/12408.png
new file mode 100644
index 00000000..d391c864
Binary files /dev/null and b/animateditems/12408.png differ
diff --git a/animateditems/12409.gif b/animateditems/12409.gif
new file mode 100644
index 00000000..305e44e0
Binary files /dev/null and b/animateditems/12409.gif differ
diff --git a/animateditems/12409.png b/animateditems/12409.png
new file mode 100644
index 00000000..f4c274e3
Binary files /dev/null and b/animateditems/12409.png differ
diff --git a/animateditems/12410.gif b/animateditems/12410.gif
new file mode 100644
index 00000000..500bdf00
Binary files /dev/null and b/animateditems/12410.gif differ
diff --git a/animateditems/12410.png b/animateditems/12410.png
new file mode 100644
index 00000000..36dfd52a
Binary files /dev/null and b/animateditems/12410.png differ
diff --git a/animateditems/12411.gif b/animateditems/12411.gif
new file mode 100644
index 00000000..304d6762
Binary files /dev/null and b/animateditems/12411.gif differ
diff --git a/animateditems/12411.png b/animateditems/12411.png
new file mode 100644
index 00000000..bcd1a4c4
Binary files /dev/null and b/animateditems/12411.png differ
diff --git a/animateditems/12412.gif b/animateditems/12412.gif
new file mode 100644
index 00000000..a75ec9c6
Binary files /dev/null and b/animateditems/12412.gif differ
diff --git a/animateditems/12412.png b/animateditems/12412.png
new file mode 100644
index 00000000..c20c5e1f
Binary files /dev/null and b/animateditems/12412.png differ
diff --git a/animateditems/12413.gif b/animateditems/12413.gif
new file mode 100644
index 00000000..fd70e19e
Binary files /dev/null and b/animateditems/12413.gif differ
diff --git a/animateditems/12413.png b/animateditems/12413.png
new file mode 100644
index 00000000..99040a68
Binary files /dev/null and b/animateditems/12413.png differ
diff --git a/animateditems/12414.gif b/animateditems/12414.gif
new file mode 100644
index 00000000..e4df2aaa
Binary files /dev/null and b/animateditems/12414.gif differ
diff --git a/animateditems/12414.png b/animateditems/12414.png
new file mode 100644
index 00000000..b38d2f0e
Binary files /dev/null and b/animateditems/12414.png differ
diff --git a/animateditems/12415.gif b/animateditems/12415.gif
new file mode 100644
index 00000000..01102616
Binary files /dev/null and b/animateditems/12415.gif differ
diff --git a/animateditems/12415.png b/animateditems/12415.png
new file mode 100644
index 00000000..d07ef767
Binary files /dev/null and b/animateditems/12415.png differ
diff --git a/animateditems/12416.gif b/animateditems/12416.gif
new file mode 100644
index 00000000..6d33fd77
Binary files /dev/null and b/animateditems/12416.gif differ
diff --git a/animateditems/12416.png b/animateditems/12416.png
new file mode 100644
index 00000000..5b4a7a5d
Binary files /dev/null and b/animateditems/12416.png differ
diff --git a/animateditems/12417.gif b/animateditems/12417.gif
new file mode 100644
index 00000000..16134675
Binary files /dev/null and b/animateditems/12417.gif differ
diff --git a/animateditems/12417.png b/animateditems/12417.png
new file mode 100644
index 00000000..1f89fef4
Binary files /dev/null and b/animateditems/12417.png differ
diff --git a/animateditems/12418.gif b/animateditems/12418.gif
new file mode 100644
index 00000000..ebccfd1b
Binary files /dev/null and b/animateditems/12418.gif differ
diff --git a/animateditems/12418.png b/animateditems/12418.png
new file mode 100644
index 00000000..a076b712
Binary files /dev/null and b/animateditems/12418.png differ
diff --git a/animateditems/12419.gif b/animateditems/12419.gif
new file mode 100644
index 00000000..456fb1f4
Binary files /dev/null and b/animateditems/12419.gif differ
diff --git a/animateditems/12419.png b/animateditems/12419.png
new file mode 100644
index 00000000..4d3d6ed3
Binary files /dev/null and b/animateditems/12419.png differ
diff --git a/animateditems/12420.gif b/animateditems/12420.gif
new file mode 100644
index 00000000..95156d47
Binary files /dev/null and b/animateditems/12420.gif differ
diff --git a/animateditems/12420.png b/animateditems/12420.png
new file mode 100644
index 00000000..fc6817a2
Binary files /dev/null and b/animateditems/12420.png differ
diff --git a/animateditems/12421.gif b/animateditems/12421.gif
new file mode 100644
index 00000000..9eda53f4
Binary files /dev/null and b/animateditems/12421.gif differ
diff --git a/animateditems/12421.png b/animateditems/12421.png
new file mode 100644
index 00000000..be78ca9c
Binary files /dev/null and b/animateditems/12421.png differ
diff --git a/animateditems/12422.gif b/animateditems/12422.gif
new file mode 100644
index 00000000..10a35eb9
Binary files /dev/null and b/animateditems/12422.gif differ
diff --git a/animateditems/12422.png b/animateditems/12422.png
new file mode 100644
index 00000000..b537dbde
Binary files /dev/null and b/animateditems/12422.png differ
diff --git a/animateditems/12423.gif b/animateditems/12423.gif
new file mode 100644
index 00000000..16e2900e
Binary files /dev/null and b/animateditems/12423.gif differ
diff --git a/animateditems/12423.png b/animateditems/12423.png
new file mode 100644
index 00000000..7cabe597
Binary files /dev/null and b/animateditems/12423.png differ
diff --git a/animateditems/12424.gif b/animateditems/12424.gif
new file mode 100644
index 00000000..ecc5618a
Binary files /dev/null and b/animateditems/12424.gif differ
diff --git a/animateditems/12424.png b/animateditems/12424.png
new file mode 100644
index 00000000..cc3b94d8
Binary files /dev/null and b/animateditems/12424.png differ
diff --git a/animateditems/12425.gif b/animateditems/12425.gif
new file mode 100644
index 00000000..908f41bd
Binary files /dev/null and b/animateditems/12425.gif differ
diff --git a/animateditems/12425.png b/animateditems/12425.png
new file mode 100644
index 00000000..8b084910
Binary files /dev/null and b/animateditems/12425.png differ
diff --git a/animateditems/12426.gif b/animateditems/12426.gif
new file mode 100644
index 00000000..175781f2
Binary files /dev/null and b/animateditems/12426.gif differ
diff --git a/animateditems/12426.png b/animateditems/12426.png
new file mode 100644
index 00000000..9a8fd806
Binary files /dev/null and b/animateditems/12426.png differ
diff --git a/animateditems/12427.gif b/animateditems/12427.gif
new file mode 100644
index 00000000..51509216
Binary files /dev/null and b/animateditems/12427.gif differ
diff --git a/animateditems/12427.png b/animateditems/12427.png
new file mode 100644
index 00000000..248b6240
Binary files /dev/null and b/animateditems/12427.png differ
diff --git a/animateditems/12428.gif b/animateditems/12428.gif
new file mode 100644
index 00000000..2ee57d73
Binary files /dev/null and b/animateditems/12428.gif differ
diff --git a/animateditems/12428.png b/animateditems/12428.png
new file mode 100644
index 00000000..8d95d834
Binary files /dev/null and b/animateditems/12428.png differ
diff --git a/animateditems/12429.gif b/animateditems/12429.gif
new file mode 100644
index 00000000..0d86bf5d
Binary files /dev/null and b/animateditems/12429.gif differ
diff --git a/animateditems/12429.png b/animateditems/12429.png
new file mode 100644
index 00000000..a0aefad4
Binary files /dev/null and b/animateditems/12429.png differ
diff --git a/animateditems/12430.gif b/animateditems/12430.gif
new file mode 100644
index 00000000..249e6e80
Binary files /dev/null and b/animateditems/12430.gif differ
diff --git a/animateditems/12430.png b/animateditems/12430.png
new file mode 100644
index 00000000..9a53be52
Binary files /dev/null and b/animateditems/12430.png differ
diff --git a/animateditems/12431.gif b/animateditems/12431.gif
new file mode 100644
index 00000000..a09613f6
Binary files /dev/null and b/animateditems/12431.gif differ
diff --git a/animateditems/12431.png b/animateditems/12431.png
new file mode 100644
index 00000000..35466dc4
Binary files /dev/null and b/animateditems/12431.png differ
diff --git a/animateditems/12432.gif b/animateditems/12432.gif
new file mode 100644
index 00000000..224aa0f5
Binary files /dev/null and b/animateditems/12432.gif differ
diff --git a/animateditems/12432.png b/animateditems/12432.png
new file mode 100644
index 00000000..db2f83cc
Binary files /dev/null and b/animateditems/12432.png differ
diff --git a/animateditems/12433.gif b/animateditems/12433.gif
new file mode 100644
index 00000000..84e61c6c
Binary files /dev/null and b/animateditems/12433.gif differ
diff --git a/animateditems/12433.png b/animateditems/12433.png
new file mode 100644
index 00000000..94524117
Binary files /dev/null and b/animateditems/12433.png differ
diff --git a/animateditems/12434.gif b/animateditems/12434.gif
new file mode 100644
index 00000000..0c7a2521
Binary files /dev/null and b/animateditems/12434.gif differ
diff --git a/animateditems/12434.png b/animateditems/12434.png
new file mode 100644
index 00000000..78e48187
Binary files /dev/null and b/animateditems/12434.png differ
diff --git a/animateditems/12435.gif b/animateditems/12435.gif
new file mode 100644
index 00000000..2c3697f7
Binary files /dev/null and b/animateditems/12435.gif differ
diff --git a/animateditems/12435.png b/animateditems/12435.png
new file mode 100644
index 00000000..64946f38
Binary files /dev/null and b/animateditems/12435.png differ
diff --git a/animateditems/12436.gif b/animateditems/12436.gif
new file mode 100644
index 00000000..29a7e42a
Binary files /dev/null and b/animateditems/12436.gif differ
diff --git a/animateditems/12436.png b/animateditems/12436.png
new file mode 100644
index 00000000..a045c3cb
Binary files /dev/null and b/animateditems/12436.png differ
diff --git a/animateditems/12437.gif b/animateditems/12437.gif
new file mode 100644
index 00000000..5d6f7df3
Binary files /dev/null and b/animateditems/12437.gif differ
diff --git a/animateditems/12437.png b/animateditems/12437.png
new file mode 100644
index 00000000..fe33b1ce
Binary files /dev/null and b/animateditems/12437.png differ
diff --git a/animateditems/12438.gif b/animateditems/12438.gif
new file mode 100644
index 00000000..970f8e05
Binary files /dev/null and b/animateditems/12438.gif differ
diff --git a/animateditems/12438.png b/animateditems/12438.png
new file mode 100644
index 00000000..d1986263
Binary files /dev/null and b/animateditems/12438.png differ
diff --git a/animateditems/12439.gif b/animateditems/12439.gif
new file mode 100644
index 00000000..0f4d4709
Binary files /dev/null and b/animateditems/12439.gif differ
diff --git a/animateditems/12439.png b/animateditems/12439.png
new file mode 100644
index 00000000..56dcb71b
Binary files /dev/null and b/animateditems/12439.png differ
diff --git a/animateditems/12440.gif b/animateditems/12440.gif
new file mode 100644
index 00000000..83ab666f
Binary files /dev/null and b/animateditems/12440.gif differ
diff --git a/animateditems/12440.png b/animateditems/12440.png
new file mode 100644
index 00000000..3a2e380d
Binary files /dev/null and b/animateditems/12440.png differ
diff --git a/animateditems/12441.gif b/animateditems/12441.gif
new file mode 100644
index 00000000..eed2a63c
Binary files /dev/null and b/animateditems/12441.gif differ
diff --git a/animateditems/12441.png b/animateditems/12441.png
new file mode 100644
index 00000000..31c90b96
Binary files /dev/null and b/animateditems/12441.png differ
diff --git a/animateditems/12442.gif b/animateditems/12442.gif
new file mode 100644
index 00000000..92a9491a
Binary files /dev/null and b/animateditems/12442.gif differ
diff --git a/animateditems/12442.png b/animateditems/12442.png
new file mode 100644
index 00000000..22494949
Binary files /dev/null and b/animateditems/12442.png differ
diff --git a/animateditems/12443.gif b/animateditems/12443.gif
new file mode 100644
index 00000000..09f4139f
Binary files /dev/null and b/animateditems/12443.gif differ
diff --git a/animateditems/12443.png b/animateditems/12443.png
new file mode 100644
index 00000000..aa414830
Binary files /dev/null and b/animateditems/12443.png differ
diff --git a/animateditems/12444.gif b/animateditems/12444.gif
new file mode 100644
index 00000000..0190edb6
Binary files /dev/null and b/animateditems/12444.gif differ
diff --git a/animateditems/12444.png b/animateditems/12444.png
new file mode 100644
index 00000000..150abc21
Binary files /dev/null and b/animateditems/12444.png differ
diff --git a/animateditems/12445.gif b/animateditems/12445.gif
new file mode 100644
index 00000000..d5c20b1f
Binary files /dev/null and b/animateditems/12445.gif differ
diff --git a/animateditems/12445.png b/animateditems/12445.png
new file mode 100644
index 00000000..33c3b2a2
Binary files /dev/null and b/animateditems/12445.png differ
diff --git a/animateditems/12446.gif b/animateditems/12446.gif
new file mode 100644
index 00000000..45beba87
Binary files /dev/null and b/animateditems/12446.gif differ
diff --git a/animateditems/12446.png b/animateditems/12446.png
new file mode 100644
index 00000000..05c19003
Binary files /dev/null and b/animateditems/12446.png differ
diff --git a/animateditems/12447.gif b/animateditems/12447.gif
new file mode 100644
index 00000000..0ec1263f
Binary files /dev/null and b/animateditems/12447.gif differ
diff --git a/animateditems/12447.png b/animateditems/12447.png
new file mode 100644
index 00000000..3b6e579b
Binary files /dev/null and b/animateditems/12447.png differ
diff --git a/animateditems/12448.gif b/animateditems/12448.gif
new file mode 100644
index 00000000..987c2637
Binary files /dev/null and b/animateditems/12448.gif differ
diff --git a/animateditems/12448.png b/animateditems/12448.png
new file mode 100644
index 00000000..d932ba99
Binary files /dev/null and b/animateditems/12448.png differ
diff --git a/animateditems/12449.gif b/animateditems/12449.gif
new file mode 100644
index 00000000..70dc8982
Binary files /dev/null and b/animateditems/12449.gif differ
diff --git a/animateditems/12449.png b/animateditems/12449.png
new file mode 100644
index 00000000..9bbb87ec
Binary files /dev/null and b/animateditems/12449.png differ
diff --git a/animateditems/12466.gif b/animateditems/12466.gif
new file mode 100644
index 00000000..7174bff4
Binary files /dev/null and b/animateditems/12466.gif differ
diff --git a/animateditems/12466.png b/animateditems/12466.png
new file mode 100644
index 00000000..3b0aeb16
Binary files /dev/null and b/animateditems/12466.png differ
diff --git a/animateditems/12467.gif b/animateditems/12467.gif
new file mode 100644
index 00000000..3ef54da0
Binary files /dev/null and b/animateditems/12467.gif differ
diff --git a/animateditems/12467.png b/animateditems/12467.png
new file mode 100644
index 00000000..c3657c04
Binary files /dev/null and b/animateditems/12467.png differ
diff --git a/animateditems/12468.gif b/animateditems/12468.gif
new file mode 100644
index 00000000..d460b61c
Binary files /dev/null and b/animateditems/12468.gif differ
diff --git a/animateditems/12468.png b/animateditems/12468.png
new file mode 100644
index 00000000..44c36618
Binary files /dev/null and b/animateditems/12468.png differ
diff --git a/animateditems/12469.gif b/animateditems/12469.gif
new file mode 100644
index 00000000..715104f2
Binary files /dev/null and b/animateditems/12469.gif differ
diff --git a/animateditems/12469.png b/animateditems/12469.png
new file mode 100644
index 00000000..450edfbb
Binary files /dev/null and b/animateditems/12469.png differ
diff --git a/animateditems/12470.gif b/animateditems/12470.gif
new file mode 100644
index 00000000..7496fa79
Binary files /dev/null and b/animateditems/12470.gif differ
diff --git a/animateditems/12470.png b/animateditems/12470.png
new file mode 100644
index 00000000..63daf2af
Binary files /dev/null and b/animateditems/12470.png differ
diff --git a/animateditems/12471.gif b/animateditems/12471.gif
new file mode 100644
index 00000000..82306edd
Binary files /dev/null and b/animateditems/12471.gif differ
diff --git a/animateditems/12471.png b/animateditems/12471.png
new file mode 100644
index 00000000..e3a3484c
Binary files /dev/null and b/animateditems/12471.png differ
diff --git a/animateditems/12495.gif b/animateditems/12495.gif
new file mode 100644
index 00000000..86d25f8f
Binary files /dev/null and b/animateditems/12495.gif differ
diff --git a/animateditems/12495.png b/animateditems/12495.png
new file mode 100644
index 00000000..bfdfebeb
Binary files /dev/null and b/animateditems/12495.png differ
diff --git a/animateditems/12497.gif b/animateditems/12497.gif
new file mode 100644
index 00000000..4938b483
Binary files /dev/null and b/animateditems/12497.gif differ
diff --git a/animateditems/12497.png b/animateditems/12497.png
new file mode 100644
index 00000000..552778fc
Binary files /dev/null and b/animateditems/12497.png differ
diff --git a/animateditems/12498.gif b/animateditems/12498.gif
new file mode 100644
index 00000000..9d72bb11
Binary files /dev/null and b/animateditems/12498.gif differ
diff --git a/animateditems/12498.png b/animateditems/12498.png
new file mode 100644
index 00000000..4ca36075
Binary files /dev/null and b/animateditems/12498.png differ
diff --git a/animateditems/12499.gif b/animateditems/12499.gif
new file mode 100644
index 00000000..9d72bb11
Binary files /dev/null and b/animateditems/12499.gif differ
diff --git a/animateditems/12499.png b/animateditems/12499.png
new file mode 100644
index 00000000..4ca36075
Binary files /dev/null and b/animateditems/12499.png differ
diff --git a/animateditems/12500.gif b/animateditems/12500.gif
new file mode 100644
index 00000000..77b5e8b6
Binary files /dev/null and b/animateditems/12500.gif differ
diff --git a/animateditems/12500.png b/animateditems/12500.png
new file mode 100644
index 00000000..29fc788c
Binary files /dev/null and b/animateditems/12500.png differ
diff --git a/animateditems/12501.gif b/animateditems/12501.gif
new file mode 100644
index 00000000..8996d08a
Binary files /dev/null and b/animateditems/12501.gif differ
diff --git a/animateditems/12501.png b/animateditems/12501.png
new file mode 100644
index 00000000..d0a42a04
Binary files /dev/null and b/animateditems/12501.png differ
diff --git a/animateditems/12502.gif b/animateditems/12502.gif
new file mode 100644
index 00000000..4cfa0076
Binary files /dev/null and b/animateditems/12502.gif differ
diff --git a/animateditems/12502.png b/animateditems/12502.png
new file mode 100644
index 00000000..cc148e85
Binary files /dev/null and b/animateditems/12502.png differ
diff --git a/animateditems/12503.gif b/animateditems/12503.gif
new file mode 100644
index 00000000..f6adf4d6
Binary files /dev/null and b/animateditems/12503.gif differ
diff --git a/animateditems/12503.png b/animateditems/12503.png
new file mode 100644
index 00000000..88ad490a
Binary files /dev/null and b/animateditems/12503.png differ
diff --git a/animateditems/12504.gif b/animateditems/12504.gif
new file mode 100644
index 00000000..9b3d45e4
Binary files /dev/null and b/animateditems/12504.gif differ
diff --git a/animateditems/12504.png b/animateditems/12504.png
new file mode 100644
index 00000000..0a0e8ce5
Binary files /dev/null and b/animateditems/12504.png differ
diff --git a/animateditems/12505.gif b/animateditems/12505.gif
new file mode 100644
index 00000000..f751bc76
Binary files /dev/null and b/animateditems/12505.gif differ
diff --git a/animateditems/12505.png b/animateditems/12505.png
new file mode 100644
index 00000000..41f12dcb
Binary files /dev/null and b/animateditems/12505.png differ
diff --git a/animateditems/12506.gif b/animateditems/12506.gif
new file mode 100644
index 00000000..ca614db9
Binary files /dev/null and b/animateditems/12506.gif differ
diff --git a/animateditems/12506.png b/animateditems/12506.png
new file mode 100644
index 00000000..aba9bc64
Binary files /dev/null and b/animateditems/12506.png differ
diff --git a/animateditems/12507.gif b/animateditems/12507.gif
new file mode 100644
index 00000000..c9d70309
Binary files /dev/null and b/animateditems/12507.gif differ
diff --git a/animateditems/12507.png b/animateditems/12507.png
new file mode 100644
index 00000000..e336eb4c
Binary files /dev/null and b/animateditems/12507.png differ
diff --git a/animateditems/12508.gif b/animateditems/12508.gif
new file mode 100644
index 00000000..b80295d4
Binary files /dev/null and b/animateditems/12508.gif differ
diff --git a/animateditems/12508.png b/animateditems/12508.png
new file mode 100644
index 00000000..593301b6
Binary files /dev/null and b/animateditems/12508.png differ
diff --git a/animateditems/12540.gif b/animateditems/12540.gif
new file mode 100644
index 00000000..ebbbef07
Binary files /dev/null and b/animateditems/12540.gif differ
diff --git a/animateditems/12540.png b/animateditems/12540.png
new file mode 100644
index 00000000..f9c57e14
Binary files /dev/null and b/animateditems/12540.png differ
diff --git a/animateditems/12541.gif b/animateditems/12541.gif
new file mode 100644
index 00000000..94597cc8
Binary files /dev/null and b/animateditems/12541.gif differ
diff --git a/animateditems/12541.png b/animateditems/12541.png
new file mode 100644
index 00000000..c7bdc57e
Binary files /dev/null and b/animateditems/12541.png differ
diff --git a/animateditems/12542.gif b/animateditems/12542.gif
new file mode 100644
index 00000000..ec539038
Binary files /dev/null and b/animateditems/12542.gif differ
diff --git a/animateditems/12542.png b/animateditems/12542.png
new file mode 100644
index 00000000..c0849e47
Binary files /dev/null and b/animateditems/12542.png differ
diff --git a/animateditems/12543.gif b/animateditems/12543.gif
new file mode 100644
index 00000000..797c074b
Binary files /dev/null and b/animateditems/12543.gif differ
diff --git a/animateditems/12543.png b/animateditems/12543.png
new file mode 100644
index 00000000..4f1b2a98
Binary files /dev/null and b/animateditems/12543.png differ
diff --git a/animateditems/12544.gif b/animateditems/12544.gif
new file mode 100644
index 00000000..5e82d6e3
Binary files /dev/null and b/animateditems/12544.gif differ
diff --git a/animateditems/12544.png b/animateditems/12544.png
new file mode 100644
index 00000000..1e1b7005
Binary files /dev/null and b/animateditems/12544.png differ
diff --git a/animateditems/12559.gif b/animateditems/12559.gif
new file mode 100644
index 00000000..a995bd07
Binary files /dev/null and b/animateditems/12559.gif differ
diff --git a/animateditems/12559.png b/animateditems/12559.png
new file mode 100644
index 00000000..a7fba73f
Binary files /dev/null and b/animateditems/12559.png differ
diff --git a/animateditems/12560.gif b/animateditems/12560.gif
new file mode 100644
index 00000000..dffe66e5
Binary files /dev/null and b/animateditems/12560.gif differ
diff --git a/animateditems/12560.png b/animateditems/12560.png
new file mode 100644
index 00000000..7aff905f
Binary files /dev/null and b/animateditems/12560.png differ
diff --git a/animateditems/12561.gif b/animateditems/12561.gif
new file mode 100644
index 00000000..0125154b
Binary files /dev/null and b/animateditems/12561.gif differ
diff --git a/animateditems/12561.png b/animateditems/12561.png
new file mode 100644
index 00000000..fcb5e43f
Binary files /dev/null and b/animateditems/12561.png differ
diff --git a/animateditems/12562.gif b/animateditems/12562.gif
new file mode 100644
index 00000000..4bd00d5f
Binary files /dev/null and b/animateditems/12562.gif differ
diff --git a/animateditems/12562.png b/animateditems/12562.png
new file mode 100644
index 00000000..263f6fff
Binary files /dev/null and b/animateditems/12562.png differ
diff --git a/animateditems/12563.gif b/animateditems/12563.gif
new file mode 100644
index 00000000..b5e915b9
Binary files /dev/null and b/animateditems/12563.gif differ
diff --git a/animateditems/12563.png b/animateditems/12563.png
new file mode 100644
index 00000000..c502b30a
Binary files /dev/null and b/animateditems/12563.png differ
diff --git a/animateditems/12564.gif b/animateditems/12564.gif
new file mode 100644
index 00000000..c5e8259b
Binary files /dev/null and b/animateditems/12564.gif differ
diff --git a/animateditems/12564.png b/animateditems/12564.png
new file mode 100644
index 00000000..6508d9b5
Binary files /dev/null and b/animateditems/12564.png differ
diff --git a/animateditems/12565.gif b/animateditems/12565.gif
new file mode 100644
index 00000000..782ea05e
Binary files /dev/null and b/animateditems/12565.gif differ
diff --git a/animateditems/12565.png b/animateditems/12565.png
new file mode 100644
index 00000000..09919b24
Binary files /dev/null and b/animateditems/12565.png differ
diff --git a/animateditems/12566.gif b/animateditems/12566.gif
new file mode 100644
index 00000000..ac6ba288
Binary files /dev/null and b/animateditems/12566.gif differ
diff --git a/animateditems/12566.png b/animateditems/12566.png
new file mode 100644
index 00000000..f5caa79e
Binary files /dev/null and b/animateditems/12566.png differ
diff --git a/animateditems/12567.gif b/animateditems/12567.gif
new file mode 100644
index 00000000..79b5e4c4
Binary files /dev/null and b/animateditems/12567.gif differ
diff --git a/animateditems/12567.png b/animateditems/12567.png
new file mode 100644
index 00000000..1adc1a6a
Binary files /dev/null and b/animateditems/12567.png differ
diff --git a/animateditems/12568.gif b/animateditems/12568.gif
new file mode 100644
index 00000000..664790e3
Binary files /dev/null and b/animateditems/12568.gif differ
diff --git a/animateditems/12568.png b/animateditems/12568.png
new file mode 100644
index 00000000..30f9e0e7
Binary files /dev/null and b/animateditems/12568.png differ
diff --git a/animateditems/12569.gif b/animateditems/12569.gif
new file mode 100644
index 00000000..81c5c93d
Binary files /dev/null and b/animateditems/12569.gif differ
diff --git a/animateditems/12569.png b/animateditems/12569.png
new file mode 100644
index 00000000..a07ff593
Binary files /dev/null and b/animateditems/12569.png differ
diff --git a/animateditems/12570.gif b/animateditems/12570.gif
new file mode 100644
index 00000000..aa19e0c2
Binary files /dev/null and b/animateditems/12570.gif differ
diff --git a/animateditems/12570.png b/animateditems/12570.png
new file mode 100644
index 00000000..5081c199
Binary files /dev/null and b/animateditems/12570.png differ
diff --git a/animateditems/12571.gif b/animateditems/12571.gif
new file mode 100644
index 00000000..193180c5
Binary files /dev/null and b/animateditems/12571.gif differ
diff --git a/animateditems/12571.png b/animateditems/12571.png
new file mode 100644
index 00000000..bed34fce
Binary files /dev/null and b/animateditems/12571.png differ
diff --git a/animateditems/12572.gif b/animateditems/12572.gif
new file mode 100644
index 00000000..95a59eb0
Binary files /dev/null and b/animateditems/12572.gif differ
diff --git a/animateditems/12572.png b/animateditems/12572.png
new file mode 100644
index 00000000..0e00818f
Binary files /dev/null and b/animateditems/12572.png differ
diff --git a/animateditems/12573.gif b/animateditems/12573.gif
new file mode 100644
index 00000000..0ace2ab0
Binary files /dev/null and b/animateditems/12573.gif differ
diff --git a/animateditems/12573.png b/animateditems/12573.png
new file mode 100644
index 00000000..7e702f90
Binary files /dev/null and b/animateditems/12573.png differ
diff --git a/animateditems/12574.gif b/animateditems/12574.gif
new file mode 100644
index 00000000..1f50473f
Binary files /dev/null and b/animateditems/12574.gif differ
diff --git a/animateditems/12574.png b/animateditems/12574.png
new file mode 100644
index 00000000..20489506
Binary files /dev/null and b/animateditems/12574.png differ
diff --git a/animateditems/12575.gif b/animateditems/12575.gif
new file mode 100644
index 00000000..23345731
Binary files /dev/null and b/animateditems/12575.gif differ
diff --git a/animateditems/12575.png b/animateditems/12575.png
new file mode 100644
index 00000000..d092eec3
Binary files /dev/null and b/animateditems/12575.png differ
diff --git a/animateditems/12576.gif b/animateditems/12576.gif
new file mode 100644
index 00000000..0e419abc
Binary files /dev/null and b/animateditems/12576.gif differ
diff --git a/animateditems/12576.png b/animateditems/12576.png
new file mode 100644
index 00000000..16825d90
Binary files /dev/null and b/animateditems/12576.png differ
diff --git a/animateditems/12577.gif b/animateditems/12577.gif
new file mode 100644
index 00000000..071e5b8d
Binary files /dev/null and b/animateditems/12577.gif differ
diff --git a/animateditems/12577.png b/animateditems/12577.png
new file mode 100644
index 00000000..67004cf1
Binary files /dev/null and b/animateditems/12577.png differ
diff --git a/animateditems/12578.gif b/animateditems/12578.gif
new file mode 100644
index 00000000..9e2d1a42
Binary files /dev/null and b/animateditems/12578.gif differ
diff --git a/animateditems/12578.png b/animateditems/12578.png
new file mode 100644
index 00000000..1f82f41c
Binary files /dev/null and b/animateditems/12578.png differ
diff --git a/animateditems/12579.gif b/animateditems/12579.gif
new file mode 100644
index 00000000..8391793a
Binary files /dev/null and b/animateditems/12579.gif differ
diff --git a/animateditems/12579.png b/animateditems/12579.png
new file mode 100644
index 00000000..0f246da2
Binary files /dev/null and b/animateditems/12579.png differ
diff --git a/animateditems/12580.gif b/animateditems/12580.gif
new file mode 100644
index 00000000..c99b2067
Binary files /dev/null and b/animateditems/12580.gif differ
diff --git a/animateditems/12580.png b/animateditems/12580.png
new file mode 100644
index 00000000..9d805232
Binary files /dev/null and b/animateditems/12580.png differ
diff --git a/animateditems/12581.gif b/animateditems/12581.gif
new file mode 100644
index 00000000..dd99ccbf
Binary files /dev/null and b/animateditems/12581.gif differ
diff --git a/animateditems/12581.png b/animateditems/12581.png
new file mode 100644
index 00000000..73e03b33
Binary files /dev/null and b/animateditems/12581.png differ
diff --git a/animateditems/12582.gif b/animateditems/12582.gif
new file mode 100644
index 00000000..179e5c0c
Binary files /dev/null and b/animateditems/12582.gif differ
diff --git a/animateditems/12582.png b/animateditems/12582.png
new file mode 100644
index 00000000..8db755eb
Binary files /dev/null and b/animateditems/12582.png differ
diff --git a/animateditems/12583.gif b/animateditems/12583.gif
new file mode 100644
index 00000000..7568825f
Binary files /dev/null and b/animateditems/12583.gif differ
diff --git a/animateditems/12583.png b/animateditems/12583.png
new file mode 100644
index 00000000..69669b75
Binary files /dev/null and b/animateditems/12583.png differ
diff --git a/animateditems/12584.gif b/animateditems/12584.gif
new file mode 100644
index 00000000..a40b79be
Binary files /dev/null and b/animateditems/12584.gif differ
diff --git a/animateditems/12584.png b/animateditems/12584.png
new file mode 100644
index 00000000..6cdb9c04
Binary files /dev/null and b/animateditems/12584.png differ
diff --git a/animateditems/12585.gif b/animateditems/12585.gif
new file mode 100644
index 00000000..f9f4a791
Binary files /dev/null and b/animateditems/12585.gif differ
diff --git a/animateditems/12585.png b/animateditems/12585.png
new file mode 100644
index 00000000..c7fae2ba
Binary files /dev/null and b/animateditems/12585.png differ
diff --git a/animateditems/12586.gif b/animateditems/12586.gif
new file mode 100644
index 00000000..e6136eaf
Binary files /dev/null and b/animateditems/12586.gif differ
diff --git a/animateditems/12586.png b/animateditems/12586.png
new file mode 100644
index 00000000..aa363581
Binary files /dev/null and b/animateditems/12586.png differ
diff --git a/animateditems/12587.gif b/animateditems/12587.gif
new file mode 100644
index 00000000..964d31f1
Binary files /dev/null and b/animateditems/12587.gif differ
diff --git a/animateditems/12587.png b/animateditems/12587.png
new file mode 100644
index 00000000..2bf508b5
Binary files /dev/null and b/animateditems/12587.png differ
diff --git a/animateditems/12588.gif b/animateditems/12588.gif
new file mode 100644
index 00000000..b2e656d3
Binary files /dev/null and b/animateditems/12588.gif differ
diff --git a/animateditems/12588.png b/animateditems/12588.png
new file mode 100644
index 00000000..a67f469e
Binary files /dev/null and b/animateditems/12588.png differ
diff --git a/animateditems/12589.gif b/animateditems/12589.gif
new file mode 100644
index 00000000..4be46fde
Binary files /dev/null and b/animateditems/12589.gif differ
diff --git a/animateditems/12589.png b/animateditems/12589.png
new file mode 100644
index 00000000..bb76a738
Binary files /dev/null and b/animateditems/12589.png differ
diff --git a/animateditems/12590.gif b/animateditems/12590.gif
new file mode 100644
index 00000000..093dad20
Binary files /dev/null and b/animateditems/12590.gif differ
diff --git a/animateditems/12590.png b/animateditems/12590.png
new file mode 100644
index 00000000..c9b5f146
Binary files /dev/null and b/animateditems/12590.png differ
diff --git a/animateditems/12591.gif b/animateditems/12591.gif
new file mode 100644
index 00000000..eca5b5c9
Binary files /dev/null and b/animateditems/12591.gif differ
diff --git a/animateditems/12591.png b/animateditems/12591.png
new file mode 100644
index 00000000..725db04b
Binary files /dev/null and b/animateditems/12591.png differ
diff --git a/animateditems/12592.gif b/animateditems/12592.gif
new file mode 100644
index 00000000..fdf751e7
Binary files /dev/null and b/animateditems/12592.gif differ
diff --git a/animateditems/12592.png b/animateditems/12592.png
new file mode 100644
index 00000000..fba95fec
Binary files /dev/null and b/animateditems/12592.png differ
diff --git a/animateditems/12593.gif b/animateditems/12593.gif
new file mode 100644
index 00000000..2fc4b884
Binary files /dev/null and b/animateditems/12593.gif differ
diff --git a/animateditems/12593.png b/animateditems/12593.png
new file mode 100644
index 00000000..ba1ad825
Binary files /dev/null and b/animateditems/12593.png differ
diff --git a/animateditems/12594.gif b/animateditems/12594.gif
new file mode 100644
index 00000000..c9b8f4fd
Binary files /dev/null and b/animateditems/12594.gif differ
diff --git a/animateditems/12594.png b/animateditems/12594.png
new file mode 100644
index 00000000..eb6abcdf
Binary files /dev/null and b/animateditems/12594.png differ
diff --git a/animateditems/12595.gif b/animateditems/12595.gif
new file mode 100644
index 00000000..7e87b672
Binary files /dev/null and b/animateditems/12595.gif differ
diff --git a/animateditems/12595.png b/animateditems/12595.png
new file mode 100644
index 00000000..b8ad9593
Binary files /dev/null and b/animateditems/12595.png differ
diff --git a/animateditems/12596.gif b/animateditems/12596.gif
new file mode 100644
index 00000000..1519410d
Binary files /dev/null and b/animateditems/12596.gif differ
diff --git a/animateditems/12596.png b/animateditems/12596.png
new file mode 100644
index 00000000..6d9b410c
Binary files /dev/null and b/animateditems/12596.png differ
diff --git a/animateditems/12597.gif b/animateditems/12597.gif
new file mode 100644
index 00000000..36af6115
Binary files /dev/null and b/animateditems/12597.gif differ
diff --git a/animateditems/12597.png b/animateditems/12597.png
new file mode 100644
index 00000000..91a4127d
Binary files /dev/null and b/animateditems/12597.png differ
diff --git a/animateditems/12598.gif b/animateditems/12598.gif
new file mode 100644
index 00000000..e18ffcd9
Binary files /dev/null and b/animateditems/12598.gif differ
diff --git a/animateditems/12598.png b/animateditems/12598.png
new file mode 100644
index 00000000..d662b53d
Binary files /dev/null and b/animateditems/12598.png differ
diff --git a/animateditems/12599.gif b/animateditems/12599.gif
new file mode 100644
index 00000000..46e357e6
Binary files /dev/null and b/animateditems/12599.gif differ
diff --git a/animateditems/12599.png b/animateditems/12599.png
new file mode 100644
index 00000000..6d819710
Binary files /dev/null and b/animateditems/12599.png differ
diff --git a/animateditems/12600.gif b/animateditems/12600.gif
new file mode 100644
index 00000000..8906c2f7
Binary files /dev/null and b/animateditems/12600.gif differ
diff --git a/animateditems/12600.png b/animateditems/12600.png
new file mode 100644
index 00000000..277ec51f
Binary files /dev/null and b/animateditems/12600.png differ
diff --git a/animateditems/12601.gif b/animateditems/12601.gif
new file mode 100644
index 00000000..e8c92a9e
Binary files /dev/null and b/animateditems/12601.gif differ
diff --git a/animateditems/12601.png b/animateditems/12601.png
new file mode 100644
index 00000000..98702f50
Binary files /dev/null and b/animateditems/12601.png differ
diff --git a/animateditems/12602.gif b/animateditems/12602.gif
new file mode 100644
index 00000000..720596f3
Binary files /dev/null and b/animateditems/12602.gif differ
diff --git a/animateditems/12602.png b/animateditems/12602.png
new file mode 100644
index 00000000..8ae58cd8
Binary files /dev/null and b/animateditems/12602.png differ
diff --git a/animateditems/12603.gif b/animateditems/12603.gif
new file mode 100644
index 00000000..eec74728
Binary files /dev/null and b/animateditems/12603.gif differ
diff --git a/animateditems/12603.png b/animateditems/12603.png
new file mode 100644
index 00000000..0450d02c
Binary files /dev/null and b/animateditems/12603.png differ
diff --git a/animateditems/12604.gif b/animateditems/12604.gif
new file mode 100644
index 00000000..c2176f94
Binary files /dev/null and b/animateditems/12604.gif differ
diff --git a/animateditems/12604.png b/animateditems/12604.png
new file mode 100644
index 00000000..ecf299c4
Binary files /dev/null and b/animateditems/12604.png differ
diff --git a/animateditems/12605.gif b/animateditems/12605.gif
new file mode 100644
index 00000000..451e9654
Binary files /dev/null and b/animateditems/12605.gif differ
diff --git a/animateditems/12605.png b/animateditems/12605.png
new file mode 100644
index 00000000..6fa19594
Binary files /dev/null and b/animateditems/12605.png differ
diff --git a/animateditems/12606.gif b/animateditems/12606.gif
new file mode 100644
index 00000000..108c9c6f
Binary files /dev/null and b/animateditems/12606.gif differ
diff --git a/animateditems/12606.png b/animateditems/12606.png
new file mode 100644
index 00000000..efc38c78
Binary files /dev/null and b/animateditems/12606.png differ
diff --git a/animateditems/12607.gif b/animateditems/12607.gif
new file mode 100644
index 00000000..5e65b02d
Binary files /dev/null and b/animateditems/12607.gif differ
diff --git a/animateditems/12607.png b/animateditems/12607.png
new file mode 100644
index 00000000..208d0fb7
Binary files /dev/null and b/animateditems/12607.png differ
diff --git a/animateditems/12608.gif b/animateditems/12608.gif
new file mode 100644
index 00000000..d86c4454
Binary files /dev/null and b/animateditems/12608.gif differ
diff --git a/animateditems/12608.png b/animateditems/12608.png
new file mode 100644
index 00000000..e89b7e7b
Binary files /dev/null and b/animateditems/12608.png differ
diff --git a/animateditems/12613.gif b/animateditems/12613.gif
new file mode 100644
index 00000000..ac26eaa2
Binary files /dev/null and b/animateditems/12613.gif differ
diff --git a/animateditems/12613.png b/animateditems/12613.png
new file mode 100644
index 00000000..abd62723
Binary files /dev/null and b/animateditems/12613.png differ
diff --git a/animateditems/12614.gif b/animateditems/12614.gif
new file mode 100644
index 00000000..d9ab9b6a
Binary files /dev/null and b/animateditems/12614.gif differ
diff --git a/animateditems/12614.png b/animateditems/12614.png
new file mode 100644
index 00000000..a3cfad5b
Binary files /dev/null and b/animateditems/12614.png differ
diff --git a/animateditems/12615.gif b/animateditems/12615.gif
new file mode 100644
index 00000000..399405f0
Binary files /dev/null and b/animateditems/12615.gif differ
diff --git a/animateditems/12615.png b/animateditems/12615.png
new file mode 100644
index 00000000..a7b67a3c
Binary files /dev/null and b/animateditems/12615.png differ
diff --git a/animateditems/12616.gif b/animateditems/12616.gif
new file mode 100644
index 00000000..0a96bc45
Binary files /dev/null and b/animateditems/12616.gif differ
diff --git a/animateditems/12616.png b/animateditems/12616.png
new file mode 100644
index 00000000..c98c0ad4
Binary files /dev/null and b/animateditems/12616.png differ
diff --git a/animateditems/12617.gif b/animateditems/12617.gif
new file mode 100644
index 00000000..68d3c219
Binary files /dev/null and b/animateditems/12617.gif differ
diff --git a/animateditems/12617.png b/animateditems/12617.png
new file mode 100644
index 00000000..4a7522b7
Binary files /dev/null and b/animateditems/12617.png differ
diff --git a/animateditems/12622.gif b/animateditems/12622.gif
new file mode 100644
index 00000000..aa0a3bcd
Binary files /dev/null and b/animateditems/12622.gif differ
diff --git a/animateditems/12622.png b/animateditems/12622.png
new file mode 100644
index 00000000..205b344b
Binary files /dev/null and b/animateditems/12622.png differ
diff --git a/animateditems/12627.gif b/animateditems/12627.gif
new file mode 100644
index 00000000..f18fc108
Binary files /dev/null and b/animateditems/12627.gif differ
diff --git a/animateditems/12627.png b/animateditems/12627.png
new file mode 100644
index 00000000..cb16f516
Binary files /dev/null and b/animateditems/12627.png differ
diff --git a/animateditems/12628.gif b/animateditems/12628.gif
new file mode 100644
index 00000000..49f1c357
Binary files /dev/null and b/animateditems/12628.gif differ
diff --git a/animateditems/12628.png b/animateditems/12628.png
new file mode 100644
index 00000000..0028978a
Binary files /dev/null and b/animateditems/12628.png differ
diff --git a/animateditems/12629.gif b/animateditems/12629.gif
new file mode 100644
index 00000000..f9af731b
Binary files /dev/null and b/animateditems/12629.gif differ
diff --git a/animateditems/12629.png b/animateditems/12629.png
new file mode 100644
index 00000000..98a7f076
Binary files /dev/null and b/animateditems/12629.png differ
diff --git a/animateditems/12630.gif b/animateditems/12630.gif
new file mode 100644
index 00000000..8ea8119c
Binary files /dev/null and b/animateditems/12630.gif differ
diff --git a/animateditems/12630.png b/animateditems/12630.png
new file mode 100644
index 00000000..765aa428
Binary files /dev/null and b/animateditems/12630.png differ
diff --git a/animateditems/12635.gif b/animateditems/12635.gif
new file mode 100644
index 00000000..ac33712d
Binary files /dev/null and b/animateditems/12635.gif differ
diff --git a/animateditems/12635.png b/animateditems/12635.png
new file mode 100644
index 00000000..4caa446e
Binary files /dev/null and b/animateditems/12635.png differ
diff --git a/animateditems/12636.gif b/animateditems/12636.gif
new file mode 100644
index 00000000..a71397f9
Binary files /dev/null and b/animateditems/12636.gif differ
diff --git a/animateditems/12636.png b/animateditems/12636.png
new file mode 100644
index 00000000..ea9f5ff2
Binary files /dev/null and b/animateditems/12636.png differ
diff --git a/animateditems/12637.gif b/animateditems/12637.gif
new file mode 100644
index 00000000..43a638a0
Binary files /dev/null and b/animateditems/12637.gif differ
diff --git a/animateditems/12637.png b/animateditems/12637.png
new file mode 100644
index 00000000..feb71ec1
Binary files /dev/null and b/animateditems/12637.png differ
diff --git a/animateditems/12638.gif b/animateditems/12638.gif
new file mode 100644
index 00000000..99a145b5
Binary files /dev/null and b/animateditems/12638.gif differ
diff --git a/animateditems/12638.png b/animateditems/12638.png
new file mode 100644
index 00000000..4181e7df
Binary files /dev/null and b/animateditems/12638.png differ
diff --git a/animateditems/12639.gif b/animateditems/12639.gif
new file mode 100644
index 00000000..8ff2012e
Binary files /dev/null and b/animateditems/12639.gif differ
diff --git a/animateditems/12639.png b/animateditems/12639.png
new file mode 100644
index 00000000..cc513ec1
Binary files /dev/null and b/animateditems/12639.png differ
diff --git a/animateditems/12640.gif b/animateditems/12640.gif
new file mode 100644
index 00000000..afc7cdc1
Binary files /dev/null and b/animateditems/12640.gif differ
diff --git a/animateditems/12640.png b/animateditems/12640.png
new file mode 100644
index 00000000..9cccca53
Binary files /dev/null and b/animateditems/12640.png differ
diff --git a/animateditems/12641.gif b/animateditems/12641.gif
new file mode 100644
index 00000000..1abeb91b
Binary files /dev/null and b/animateditems/12641.gif differ
diff --git a/animateditems/12641.png b/animateditems/12641.png
new file mode 100644
index 00000000..c8c687d8
Binary files /dev/null and b/animateditems/12641.png differ
diff --git a/animateditems/12642.gif b/animateditems/12642.gif
new file mode 100644
index 00000000..8f423a67
Binary files /dev/null and b/animateditems/12642.gif differ
diff --git a/animateditems/12642.png b/animateditems/12642.png
new file mode 100644
index 00000000..b1fa1de1
Binary files /dev/null and b/animateditems/12642.png differ
diff --git a/animateditems/12643.gif b/animateditems/12643.gif
new file mode 100644
index 00000000..bd4e57ad
Binary files /dev/null and b/animateditems/12643.gif differ
diff --git a/animateditems/12643.png b/animateditems/12643.png
new file mode 100644
index 00000000..84c64bef
Binary files /dev/null and b/animateditems/12643.png differ
diff --git a/animateditems/12644.gif b/animateditems/12644.gif
new file mode 100644
index 00000000..86a9302d
Binary files /dev/null and b/animateditems/12644.gif differ
diff --git a/animateditems/12644.png b/animateditems/12644.png
new file mode 100644
index 00000000..3453cc95
Binary files /dev/null and b/animateditems/12644.png differ
diff --git a/animateditems/12645.gif b/animateditems/12645.gif
new file mode 100644
index 00000000..6c70a3b8
Binary files /dev/null and b/animateditems/12645.gif differ
diff --git a/animateditems/12645.png b/animateditems/12645.png
new file mode 100644
index 00000000..40551745
Binary files /dev/null and b/animateditems/12645.png differ
diff --git a/animateditems/12646.gif b/animateditems/12646.gif
new file mode 100644
index 00000000..58b31a9a
Binary files /dev/null and b/animateditems/12646.gif differ
diff --git a/animateditems/12646.png b/animateditems/12646.png
new file mode 100644
index 00000000..51a09c18
Binary files /dev/null and b/animateditems/12646.png differ
diff --git a/animateditems/12647.gif b/animateditems/12647.gif
new file mode 100644
index 00000000..123d9c4c
Binary files /dev/null and b/animateditems/12647.gif differ
diff --git a/animateditems/12647.png b/animateditems/12647.png
new file mode 100644
index 00000000..6863c56c
Binary files /dev/null and b/animateditems/12647.png differ
diff --git a/animateditems/12648.gif b/animateditems/12648.gif
new file mode 100644
index 00000000..52a8f1b2
Binary files /dev/null and b/animateditems/12648.gif differ
diff --git a/animateditems/12648.png b/animateditems/12648.png
new file mode 100644
index 00000000..c6fe53a3
Binary files /dev/null and b/animateditems/12648.png differ
diff --git a/animateditems/12649.gif b/animateditems/12649.gif
new file mode 100644
index 00000000..0d15cb68
Binary files /dev/null and b/animateditems/12649.gif differ
diff --git a/animateditems/12649.png b/animateditems/12649.png
new file mode 100644
index 00000000..288eed17
Binary files /dev/null and b/animateditems/12649.png differ
diff --git a/animateditems/12650.gif b/animateditems/12650.gif
new file mode 100644
index 00000000..84453cf5
Binary files /dev/null and b/animateditems/12650.gif differ
diff --git a/animateditems/12650.png b/animateditems/12650.png
new file mode 100644
index 00000000..633ee58f
Binary files /dev/null and b/animateditems/12650.png differ
diff --git a/animateditems/12651.gif b/animateditems/12651.gif
new file mode 100644
index 00000000..58a909b3
Binary files /dev/null and b/animateditems/12651.gif differ
diff --git a/animateditems/12651.png b/animateditems/12651.png
new file mode 100644
index 00000000..880828c5
Binary files /dev/null and b/animateditems/12651.png differ
diff --git a/animateditems/12654.gif b/animateditems/12654.gif
new file mode 100644
index 00000000..070d47df
Binary files /dev/null and b/animateditems/12654.gif differ
diff --git a/animateditems/12654.png b/animateditems/12654.png
new file mode 100644
index 00000000..34d4896f
Binary files /dev/null and b/animateditems/12654.png differ
diff --git a/animateditems/12655.gif b/animateditems/12655.gif
new file mode 100644
index 00000000..0c37a837
Binary files /dev/null and b/animateditems/12655.gif differ
diff --git a/animateditems/12655.png b/animateditems/12655.png
new file mode 100644
index 00000000..20d2ee2d
Binary files /dev/null and b/animateditems/12655.png differ
diff --git a/animateditems/12656.gif b/animateditems/12656.gif
new file mode 100644
index 00000000..f00431a1
Binary files /dev/null and b/animateditems/12656.gif differ
diff --git a/animateditems/12656.png b/animateditems/12656.png
new file mode 100644
index 00000000..1f1c7f9a
Binary files /dev/null and b/animateditems/12656.png differ
diff --git a/animateditems/12657.gif b/animateditems/12657.gif
new file mode 100644
index 00000000..5b0c6fda
Binary files /dev/null and b/animateditems/12657.gif differ
diff --git a/animateditems/12657.png b/animateditems/12657.png
new file mode 100644
index 00000000..61e3572c
Binary files /dev/null and b/animateditems/12657.png differ
diff --git a/animateditems/12658.gif b/animateditems/12658.gif
new file mode 100644
index 00000000..76afdfa0
Binary files /dev/null and b/animateditems/12658.gif differ
diff --git a/animateditems/12658.png b/animateditems/12658.png
new file mode 100644
index 00000000..39c26b60
Binary files /dev/null and b/animateditems/12658.png differ
diff --git a/animateditems/12659.gif b/animateditems/12659.gif
new file mode 100644
index 00000000..38f55383
Binary files /dev/null and b/animateditems/12659.gif differ
diff --git a/animateditems/12659.png b/animateditems/12659.png
new file mode 100644
index 00000000..e3d39b44
Binary files /dev/null and b/animateditems/12659.png differ
diff --git a/animateditems/12660.gif b/animateditems/12660.gif
new file mode 100644
index 00000000..529a1b8c
Binary files /dev/null and b/animateditems/12660.gif differ
diff --git a/animateditems/12660.png b/animateditems/12660.png
new file mode 100644
index 00000000..72abc755
Binary files /dev/null and b/animateditems/12660.png differ
diff --git a/animateditems/12662.gif b/animateditems/12662.gif
new file mode 100644
index 00000000..763923e9
Binary files /dev/null and b/animateditems/12662.gif differ
diff --git a/animateditems/12662.png b/animateditems/12662.png
new file mode 100644
index 00000000..6fa12084
Binary files /dev/null and b/animateditems/12662.png differ
diff --git a/animateditems/12663.gif b/animateditems/12663.gif
new file mode 100644
index 00000000..7ed2760a
Binary files /dev/null and b/animateditems/12663.gif differ
diff --git a/animateditems/12663.png b/animateditems/12663.png
new file mode 100644
index 00000000..4dc7e026
Binary files /dev/null and b/animateditems/12663.png differ
diff --git a/animateditems/12666.gif b/animateditems/12666.gif
new file mode 100644
index 00000000..9d83b60d
Binary files /dev/null and b/animateditems/12666.gif differ
diff --git a/animateditems/12666.png b/animateditems/12666.png
new file mode 100644
index 00000000..3bad1f43
Binary files /dev/null and b/animateditems/12666.png differ
diff --git a/animateditems/12667.gif b/animateditems/12667.gif
new file mode 100644
index 00000000..94009047
Binary files /dev/null and b/animateditems/12667.gif differ
diff --git a/animateditems/12667.png b/animateditems/12667.png
new file mode 100644
index 00000000..3282e696
Binary files /dev/null and b/animateditems/12667.png differ
diff --git a/animateditems/12668.gif b/animateditems/12668.gif
new file mode 100644
index 00000000..94009047
Binary files /dev/null and b/animateditems/12668.gif differ
diff --git a/animateditems/12668.png b/animateditems/12668.png
new file mode 100644
index 00000000..3282e696
Binary files /dev/null and b/animateditems/12668.png differ
diff --git a/animateditems/12670.gif b/animateditems/12670.gif
new file mode 100644
index 00000000..512c16ba
Binary files /dev/null and b/animateditems/12670.gif differ
diff --git a/animateditems/12670.png b/animateditems/12670.png
new file mode 100644
index 00000000..da708ca7
Binary files /dev/null and b/animateditems/12670.png differ
diff --git a/animateditems/12671.gif b/animateditems/12671.gif
new file mode 100644
index 00000000..56b33af5
Binary files /dev/null and b/animateditems/12671.gif differ
diff --git a/animateditems/12671.png b/animateditems/12671.png
new file mode 100644
index 00000000..4a8b524d
Binary files /dev/null and b/animateditems/12671.png differ
diff --git a/animateditems/12680.gif b/animateditems/12680.gif
new file mode 100644
index 00000000..f131a5e3
Binary files /dev/null and b/animateditems/12680.gif differ
diff --git a/animateditems/12680.png b/animateditems/12680.png
new file mode 100644
index 00000000..929b3f0a
Binary files /dev/null and b/animateditems/12680.png differ
diff --git a/animateditems/1293.gif b/animateditems/1293.gif
new file mode 100644
index 00000000..f4f535a3
Binary files /dev/null and b/animateditems/1293.gif differ
diff --git a/animateditems/1293.png b/animateditems/1293.png
new file mode 100644
index 00000000..b8f966e5
Binary files /dev/null and b/animateditems/1293.png differ
diff --git a/animateditems/1294.gif b/animateditems/1294.gif
new file mode 100644
index 00000000..77a7f1d1
Binary files /dev/null and b/animateditems/1294.gif differ
diff --git a/animateditems/1294.png b/animateditems/1294.png
new file mode 100644
index 00000000..a2c3b323
Binary files /dev/null and b/animateditems/1294.png differ
diff --git a/animateditems/1295.gif b/animateditems/1295.gif
new file mode 100644
index 00000000..5233a8a0
Binary files /dev/null and b/animateditems/1295.gif differ
diff --git a/animateditems/1295.png b/animateditems/1295.png
new file mode 100644
index 00000000..010f3c83
Binary files /dev/null and b/animateditems/1295.png differ
diff --git a/animateditems/12969.gif b/animateditems/12969.gif
new file mode 100644
index 00000000..2511fb16
Binary files /dev/null and b/animateditems/12969.gif differ
diff --git a/animateditems/12969.png b/animateditems/12969.png
new file mode 100644
index 00000000..835ff91f
Binary files /dev/null and b/animateditems/12969.png differ
diff --git a/animateditems/13026.gif b/animateditems/13026.gif
new file mode 100644
index 00000000..229f0855
Binary files /dev/null and b/animateditems/13026.gif differ
diff --git a/animateditems/13026.png b/animateditems/13026.png
new file mode 100644
index 00000000..0b42e785
Binary files /dev/null and b/animateditems/13026.png differ
diff --git a/animateditems/13027.gif b/animateditems/13027.gif
new file mode 100644
index 00000000..45cf766f
Binary files /dev/null and b/animateditems/13027.gif differ
diff --git a/animateditems/13027.png b/animateditems/13027.png
new file mode 100644
index 00000000..424f6e5b
Binary files /dev/null and b/animateditems/13027.png differ
diff --git a/animateditems/13028.gif b/animateditems/13028.gif
new file mode 100644
index 00000000..4bbc4d90
Binary files /dev/null and b/animateditems/13028.gif differ
diff --git a/animateditems/13028.png b/animateditems/13028.png
new file mode 100644
index 00000000..3bedb5fa
Binary files /dev/null and b/animateditems/13028.png differ
diff --git a/animateditems/13029.gif b/animateditems/13029.gif
new file mode 100644
index 00000000..4bbc4d90
Binary files /dev/null and b/animateditems/13029.gif differ
diff --git a/animateditems/13029.png b/animateditems/13029.png
new file mode 100644
index 00000000..3bedb5fa
Binary files /dev/null and b/animateditems/13029.png differ
diff --git a/animateditems/13030.gif b/animateditems/13030.gif
new file mode 100644
index 00000000..9ccddcca
Binary files /dev/null and b/animateditems/13030.gif differ
diff --git a/animateditems/13030.png b/animateditems/13030.png
new file mode 100644
index 00000000..8e253a37
Binary files /dev/null and b/animateditems/13030.png differ
diff --git a/animateditems/13031.gif b/animateditems/13031.gif
new file mode 100644
index 00000000..9ccddcca
Binary files /dev/null and b/animateditems/13031.gif differ
diff --git a/animateditems/13031.png b/animateditems/13031.png
new file mode 100644
index 00000000..8e253a37
Binary files /dev/null and b/animateditems/13031.png differ
diff --git a/animateditems/13032.gif b/animateditems/13032.gif
new file mode 100644
index 00000000..b8a79f6e
Binary files /dev/null and b/animateditems/13032.gif differ
diff --git a/animateditems/13032.png b/animateditems/13032.png
new file mode 100644
index 00000000..c7b72006
Binary files /dev/null and b/animateditems/13032.png differ
diff --git a/animateditems/13033.gif b/animateditems/13033.gif
new file mode 100644
index 00000000..d973f001
Binary files /dev/null and b/animateditems/13033.gif differ
diff --git a/animateditems/13033.png b/animateditems/13033.png
new file mode 100644
index 00000000..09f9fb21
Binary files /dev/null and b/animateditems/13033.png differ
diff --git a/animateditems/13044.gif b/animateditems/13044.gif
new file mode 100644
index 00000000..fde9fc8a
Binary files /dev/null and b/animateditems/13044.gif differ
diff --git a/animateditems/13044.png b/animateditems/13044.png
new file mode 100644
index 00000000..30389134
Binary files /dev/null and b/animateditems/13044.png differ
diff --git a/animateditems/13110.gif b/animateditems/13110.gif
new file mode 100644
index 00000000..d41ba8c8
Binary files /dev/null and b/animateditems/13110.gif differ
diff --git a/animateditems/13110.png b/animateditems/13110.png
new file mode 100644
index 00000000..e1451df5
Binary files /dev/null and b/animateditems/13110.png differ
diff --git a/animateditems/13115.gif b/animateditems/13115.gif
new file mode 100644
index 00000000..0daf02b4
Binary files /dev/null and b/animateditems/13115.gif differ
diff --git a/animateditems/13115.png b/animateditems/13115.png
new file mode 100644
index 00000000..f95aeb71
Binary files /dev/null and b/animateditems/13115.png differ
diff --git a/animateditems/13130.gif b/animateditems/13130.gif
new file mode 100644
index 00000000..a70eff34
Binary files /dev/null and b/animateditems/13130.gif differ
diff --git a/animateditems/13130.png b/animateditems/13130.png
new file mode 100644
index 00000000..24321966
Binary files /dev/null and b/animateditems/13130.png differ
diff --git a/animateditems/13131.gif b/animateditems/13131.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13131.gif differ
diff --git a/animateditems/13131.png b/animateditems/13131.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13131.png differ
diff --git a/animateditems/13132.gif b/animateditems/13132.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13132.gif differ
diff --git a/animateditems/13132.png b/animateditems/13132.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13132.png differ
diff --git a/animateditems/13133.gif b/animateditems/13133.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13133.gif differ
diff --git a/animateditems/13133.png b/animateditems/13133.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13133.png differ
diff --git a/animateditems/13134.gif b/animateditems/13134.gif
new file mode 100644
index 00000000..795575f4
Binary files /dev/null and b/animateditems/13134.gif differ
diff --git a/animateditems/13134.png b/animateditems/13134.png
new file mode 100644
index 00000000..2bfb83d3
Binary files /dev/null and b/animateditems/13134.png differ
diff --git a/animateditems/13135.gif b/animateditems/13135.gif
new file mode 100644
index 00000000..01997a84
Binary files /dev/null and b/animateditems/13135.gif differ
diff --git a/animateditems/13135.png b/animateditems/13135.png
new file mode 100644
index 00000000..75ede290
Binary files /dev/null and b/animateditems/13135.png differ
diff --git a/animateditems/13136.gif b/animateditems/13136.gif
new file mode 100644
index 00000000..cd5039e4
Binary files /dev/null and b/animateditems/13136.gif differ
diff --git a/animateditems/13136.png b/animateditems/13136.png
new file mode 100644
index 00000000..3ea038d6
Binary files /dev/null and b/animateditems/13136.png differ
diff --git a/animateditems/13137.gif b/animateditems/13137.gif
new file mode 100644
index 00000000..de426907
Binary files /dev/null and b/animateditems/13137.gif differ
diff --git a/animateditems/13137.png b/animateditems/13137.png
new file mode 100644
index 00000000..844f1721
Binary files /dev/null and b/animateditems/13137.png differ
diff --git a/animateditems/13138.gif b/animateditems/13138.gif
new file mode 100644
index 00000000..d542f103
Binary files /dev/null and b/animateditems/13138.gif differ
diff --git a/animateditems/13138.png b/animateditems/13138.png
new file mode 100644
index 00000000..2ff16c84
Binary files /dev/null and b/animateditems/13138.png differ
diff --git a/animateditems/13139.gif b/animateditems/13139.gif
new file mode 100644
index 00000000..bedcdc2b
Binary files /dev/null and b/animateditems/13139.gif differ
diff --git a/animateditems/13139.png b/animateditems/13139.png
new file mode 100644
index 00000000..4adcf341
Binary files /dev/null and b/animateditems/13139.png differ
diff --git a/animateditems/13140.gif b/animateditems/13140.gif
new file mode 100644
index 00000000..fe4f3607
Binary files /dev/null and b/animateditems/13140.gif differ
diff --git a/animateditems/13140.png b/animateditems/13140.png
new file mode 100644
index 00000000..f2928cff
Binary files /dev/null and b/animateditems/13140.png differ
diff --git a/animateditems/13141.gif b/animateditems/13141.gif
new file mode 100644
index 00000000..b49b34fb
Binary files /dev/null and b/animateditems/13141.gif differ
diff --git a/animateditems/13141.png b/animateditems/13141.png
new file mode 100644
index 00000000..37afcb75
Binary files /dev/null and b/animateditems/13141.png differ
diff --git a/animateditems/13142.gif b/animateditems/13142.gif
new file mode 100644
index 00000000..159be831
Binary files /dev/null and b/animateditems/13142.gif differ
diff --git a/animateditems/13142.png b/animateditems/13142.png
new file mode 100644
index 00000000..d9424a8b
Binary files /dev/null and b/animateditems/13142.png differ
diff --git a/animateditems/13158.gif b/animateditems/13158.gif
new file mode 100644
index 00000000..7202a7d8
Binary files /dev/null and b/animateditems/13158.gif differ
diff --git a/animateditems/13158.png b/animateditems/13158.png
new file mode 100644
index 00000000..3dc03a79
Binary files /dev/null and b/animateditems/13158.png differ
diff --git a/animateditems/13159.gif b/animateditems/13159.gif
new file mode 100644
index 00000000..60be54fd
Binary files /dev/null and b/animateditems/13159.gif differ
diff --git a/animateditems/13159.png b/animateditems/13159.png
new file mode 100644
index 00000000..205bb0eb
Binary files /dev/null and b/animateditems/13159.png differ
diff --git a/animateditems/13160.gif b/animateditems/13160.gif
new file mode 100644
index 00000000..88f5f2f3
Binary files /dev/null and b/animateditems/13160.gif differ
diff --git a/animateditems/13160.png b/animateditems/13160.png
new file mode 100644
index 00000000..0ac80b9e
Binary files /dev/null and b/animateditems/13160.png differ
diff --git a/animateditems/13161.gif b/animateditems/13161.gif
new file mode 100644
index 00000000..88f5f2f3
Binary files /dev/null and b/animateditems/13161.gif differ
diff --git a/animateditems/13161.png b/animateditems/13161.png
new file mode 100644
index 00000000..0ac80b9e
Binary files /dev/null and b/animateditems/13161.png differ
diff --git a/animateditems/13162.gif b/animateditems/13162.gif
new file mode 100644
index 00000000..fca4f516
Binary files /dev/null and b/animateditems/13162.gif differ
diff --git a/animateditems/13162.png b/animateditems/13162.png
new file mode 100644
index 00000000..5ad67ba4
Binary files /dev/null and b/animateditems/13162.png differ
diff --git a/animateditems/13165.gif b/animateditems/13165.gif
new file mode 100644
index 00000000..c929e220
Binary files /dev/null and b/animateditems/13165.gif differ
diff --git a/animateditems/13165.png b/animateditems/13165.png
new file mode 100644
index 00000000..53e27b3c
Binary files /dev/null and b/animateditems/13165.png differ
diff --git a/animateditems/13166.gif b/animateditems/13166.gif
new file mode 100644
index 00000000..c97a4f9e
Binary files /dev/null and b/animateditems/13166.gif differ
diff --git a/animateditems/13166.png b/animateditems/13166.png
new file mode 100644
index 00000000..411a5a7a
Binary files /dev/null and b/animateditems/13166.png differ
diff --git a/animateditems/13167.gif b/animateditems/13167.gif
new file mode 100644
index 00000000..d01f5dda
Binary files /dev/null and b/animateditems/13167.gif differ
diff --git a/animateditems/13167.png b/animateditems/13167.png
new file mode 100644
index 00000000..db928610
Binary files /dev/null and b/animateditems/13167.png differ
diff --git a/animateditems/13168.gif b/animateditems/13168.gif
new file mode 100644
index 00000000..4cbdd323
Binary files /dev/null and b/animateditems/13168.gif differ
diff --git a/animateditems/13168.png b/animateditems/13168.png
new file mode 100644
index 00000000..f0fa3473
Binary files /dev/null and b/animateditems/13168.png differ
diff --git a/animateditems/13169.gif b/animateditems/13169.gif
new file mode 100644
index 00000000..340e2a1f
Binary files /dev/null and b/animateditems/13169.gif differ
diff --git a/animateditems/13169.png b/animateditems/13169.png
new file mode 100644
index 00000000..3774ba23
Binary files /dev/null and b/animateditems/13169.png differ
diff --git a/animateditems/13173.gif b/animateditems/13173.gif
new file mode 100644
index 00000000..7a848f43
Binary files /dev/null and b/animateditems/13173.gif differ
diff --git a/animateditems/13173.png b/animateditems/13173.png
new file mode 100644
index 00000000..bcec9539
Binary files /dev/null and b/animateditems/13173.png differ
diff --git a/animateditems/13191.gif b/animateditems/13191.gif
new file mode 100644
index 00000000..2db57763
Binary files /dev/null and b/animateditems/13191.gif differ
diff --git a/animateditems/13191.png b/animateditems/13191.png
new file mode 100644
index 00000000..0ae26117
Binary files /dev/null and b/animateditems/13191.png differ
diff --git a/animateditems/13192.gif b/animateditems/13192.gif
new file mode 100644
index 00000000..fc6dbc3c
Binary files /dev/null and b/animateditems/13192.gif differ
diff --git a/animateditems/13192.png b/animateditems/13192.png
new file mode 100644
index 00000000..cde31dcd
Binary files /dev/null and b/animateditems/13192.png differ
diff --git a/animateditems/13193.gif b/animateditems/13193.gif
new file mode 100644
index 00000000..84d7b972
Binary files /dev/null and b/animateditems/13193.gif differ
diff --git a/animateditems/13193.png b/animateditems/13193.png
new file mode 100644
index 00000000..9cd88fdf
Binary files /dev/null and b/animateditems/13193.png differ
diff --git a/animateditems/13194.gif b/animateditems/13194.gif
new file mode 100644
index 00000000..02c5c5fb
Binary files /dev/null and b/animateditems/13194.gif differ
diff --git a/animateditems/13194.png b/animateditems/13194.png
new file mode 100644
index 00000000..530e523d
Binary files /dev/null and b/animateditems/13194.png differ
diff --git a/animateditems/13195.gif b/animateditems/13195.gif
new file mode 100644
index 00000000..80b1b119
Binary files /dev/null and b/animateditems/13195.gif differ
diff --git a/animateditems/13195.png b/animateditems/13195.png
new file mode 100644
index 00000000..1a01737d
Binary files /dev/null and b/animateditems/13195.png differ
diff --git a/animateditems/13196.gif b/animateditems/13196.gif
new file mode 100644
index 00000000..2b14b046
Binary files /dev/null and b/animateditems/13196.gif differ
diff --git a/animateditems/13196.png b/animateditems/13196.png
new file mode 100644
index 00000000..a397c94b
Binary files /dev/null and b/animateditems/13196.png differ
diff --git a/animateditems/13197.gif b/animateditems/13197.gif
new file mode 100644
index 00000000..84c7c9da
Binary files /dev/null and b/animateditems/13197.gif differ
diff --git a/animateditems/13197.png b/animateditems/13197.png
new file mode 100644
index 00000000..63a4201d
Binary files /dev/null and b/animateditems/13197.png differ
diff --git a/animateditems/13198.gif b/animateditems/13198.gif
new file mode 100644
index 00000000..97129a3b
Binary files /dev/null and b/animateditems/13198.gif differ
diff --git a/animateditems/13198.png b/animateditems/13198.png
new file mode 100644
index 00000000..64871801
Binary files /dev/null and b/animateditems/13198.png differ
diff --git a/animateditems/13213.gif b/animateditems/13213.gif
new file mode 100644
index 00000000..3801b119
Binary files /dev/null and b/animateditems/13213.gif differ
diff --git a/animateditems/13213.png b/animateditems/13213.png
new file mode 100644
index 00000000..715ef66f
Binary files /dev/null and b/animateditems/13213.png differ
diff --git a/animateditems/13214.gif b/animateditems/13214.gif
new file mode 100644
index 00000000..9178c126
Binary files /dev/null and b/animateditems/13214.gif differ
diff --git a/animateditems/13214.png b/animateditems/13214.png
new file mode 100644
index 00000000..b1d35908
Binary files /dev/null and b/animateditems/13214.png differ
diff --git a/animateditems/13215.gif b/animateditems/13215.gif
new file mode 100644
index 00000000..4308b2ac
Binary files /dev/null and b/animateditems/13215.gif differ
diff --git a/animateditems/13215.png b/animateditems/13215.png
new file mode 100644
index 00000000..6806909f
Binary files /dev/null and b/animateditems/13215.png differ
diff --git a/animateditems/13216.gif b/animateditems/13216.gif
new file mode 100644
index 00000000..36b71bb1
Binary files /dev/null and b/animateditems/13216.gif differ
diff --git a/animateditems/13216.png b/animateditems/13216.png
new file mode 100644
index 00000000..f9223b64
Binary files /dev/null and b/animateditems/13216.png differ
diff --git a/animateditems/13217.gif b/animateditems/13217.gif
new file mode 100644
index 00000000..75b3ff4c
Binary files /dev/null and b/animateditems/13217.gif differ
diff --git a/animateditems/13217.png b/animateditems/13217.png
new file mode 100644
index 00000000..45ec19d0
Binary files /dev/null and b/animateditems/13217.png differ
diff --git a/animateditems/13218.gif b/animateditems/13218.gif
new file mode 100644
index 00000000..df9875d1
Binary files /dev/null and b/animateditems/13218.gif differ
diff --git a/animateditems/13218.png b/animateditems/13218.png
new file mode 100644
index 00000000..ccf6555a
Binary files /dev/null and b/animateditems/13218.png differ
diff --git a/animateditems/13219.gif b/animateditems/13219.gif
new file mode 100644
index 00000000..6603d52a
Binary files /dev/null and b/animateditems/13219.gif differ
diff --git a/animateditems/13219.png b/animateditems/13219.png
new file mode 100644
index 00000000..101dc63d
Binary files /dev/null and b/animateditems/13219.png differ
diff --git a/animateditems/13220.gif b/animateditems/13220.gif
new file mode 100644
index 00000000..b4af7483
Binary files /dev/null and b/animateditems/13220.gif differ
diff --git a/animateditems/13220.png b/animateditems/13220.png
new file mode 100644
index 00000000..a5c19dd7
Binary files /dev/null and b/animateditems/13220.png differ
diff --git a/animateditems/13221.gif b/animateditems/13221.gif
new file mode 100644
index 00000000..43a128be
Binary files /dev/null and b/animateditems/13221.gif differ
diff --git a/animateditems/13221.png b/animateditems/13221.png
new file mode 100644
index 00000000..cd39fbc5
Binary files /dev/null and b/animateditems/13221.png differ
diff --git a/animateditems/13222.gif b/animateditems/13222.gif
new file mode 100644
index 00000000..8744e5cc
Binary files /dev/null and b/animateditems/13222.gif differ
diff --git a/animateditems/13222.png b/animateditems/13222.png
new file mode 100644
index 00000000..3b63d2e2
Binary files /dev/null and b/animateditems/13222.png differ
diff --git a/animateditems/13224.gif b/animateditems/13224.gif
new file mode 100644
index 00000000..c6e3a8fa
Binary files /dev/null and b/animateditems/13224.gif differ
diff --git a/animateditems/13224.png b/animateditems/13224.png
new file mode 100644
index 00000000..d0fdf769
Binary files /dev/null and b/animateditems/13224.png differ
diff --git a/animateditems/13233.gif b/animateditems/13233.gif
new file mode 100644
index 00000000..33e0ca63
Binary files /dev/null and b/animateditems/13233.gif differ
diff --git a/animateditems/13233.png b/animateditems/13233.png
new file mode 100644
index 00000000..0ecd8f13
Binary files /dev/null and b/animateditems/13233.png differ
diff --git a/animateditems/13234.gif b/animateditems/13234.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13234.gif differ
diff --git a/animateditems/13234.png b/animateditems/13234.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13234.png differ
diff --git a/animateditems/13235.gif b/animateditems/13235.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13235.gif differ
diff --git a/animateditems/13235.png b/animateditems/13235.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13235.png differ
diff --git a/animateditems/13238.gif b/animateditems/13238.gif
new file mode 100644
index 00000000..0c76bd0e
Binary files /dev/null and b/animateditems/13238.gif differ
diff --git a/animateditems/13238.png b/animateditems/13238.png
new file mode 100644
index 00000000..828619ff
Binary files /dev/null and b/animateditems/13238.png differ
diff --git a/animateditems/13239.gif b/animateditems/13239.gif
new file mode 100644
index 00000000..5efc1a5f
Binary files /dev/null and b/animateditems/13239.gif differ
diff --git a/animateditems/13239.png b/animateditems/13239.png
new file mode 100644
index 00000000..9d3b9d82
Binary files /dev/null and b/animateditems/13239.png differ
diff --git a/animateditems/13246.gif b/animateditems/13246.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13246.gif differ
diff --git a/animateditems/13246.png b/animateditems/13246.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13246.png differ
diff --git a/animateditems/13247.gif b/animateditems/13247.gif
new file mode 100644
index 00000000..040cf926
Binary files /dev/null and b/animateditems/13247.gif differ
diff --git a/animateditems/13247.png b/animateditems/13247.png
new file mode 100644
index 00000000..328f67fb
Binary files /dev/null and b/animateditems/13247.png differ
diff --git a/animateditems/13248.gif b/animateditems/13248.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13248.gif differ
diff --git a/animateditems/13248.png b/animateditems/13248.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13248.png differ
diff --git a/animateditems/13262.gif b/animateditems/13262.gif
new file mode 100644
index 00000000..337bfbdc
Binary files /dev/null and b/animateditems/13262.gif differ
diff --git a/animateditems/13262.png b/animateditems/13262.png
new file mode 100644
index 00000000..1981539f
Binary files /dev/null and b/animateditems/13262.png differ
diff --git a/animateditems/13269.gif b/animateditems/13269.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13269.gif differ
diff --git a/animateditems/13269.png b/animateditems/13269.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13269.png differ
diff --git a/animateditems/13270.gif b/animateditems/13270.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13270.gif differ
diff --git a/animateditems/13270.png b/animateditems/13270.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13270.png differ
diff --git a/animateditems/13271.gif b/animateditems/13271.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13271.gif differ
diff --git a/animateditems/13271.png b/animateditems/13271.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13271.png differ
diff --git a/animateditems/13281.gif b/animateditems/13281.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13281.gif differ
diff --git a/animateditems/13281.png b/animateditems/13281.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13281.png differ
diff --git a/animateditems/13282.gif b/animateditems/13282.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13282.gif differ
diff --git a/animateditems/13282.png b/animateditems/13282.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13282.png differ
diff --git a/animateditems/13283.gif b/animateditems/13283.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13283.gif differ
diff --git a/animateditems/13283.png b/animateditems/13283.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13283.png differ
diff --git a/animateditems/13284.gif b/animateditems/13284.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13284.gif differ
diff --git a/animateditems/13284.png b/animateditems/13284.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13284.png differ
diff --git a/animateditems/13285.gif b/animateditems/13285.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13285.gif differ
diff --git a/animateditems/13285.png b/animateditems/13285.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13285.png differ
diff --git a/animateditems/13287.gif b/animateditems/13287.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13287.gif differ
diff --git a/animateditems/13287.png b/animateditems/13287.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13287.png differ
diff --git a/animateditems/13290.gif b/animateditems/13290.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13290.gif differ
diff --git a/animateditems/13290.png b/animateditems/13290.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13290.png differ
diff --git a/animateditems/13291.gif b/animateditems/13291.gif
new file mode 100644
index 00000000..600c50d8
Binary files /dev/null and b/animateditems/13291.gif differ
diff --git a/animateditems/13291.png b/animateditems/13291.png
new file mode 100644
index 00000000..2adff6c1
Binary files /dev/null and b/animateditems/13291.png differ
diff --git a/animateditems/13292.gif b/animateditems/13292.gif
new file mode 100644
index 00000000..27fee94c
Binary files /dev/null and b/animateditems/13292.gif differ
diff --git a/animateditems/13292.png b/animateditems/13292.png
new file mode 100644
index 00000000..a9eb621a
Binary files /dev/null and b/animateditems/13292.png differ
diff --git a/animateditems/13293.gif b/animateditems/13293.gif
new file mode 100644
index 00000000..a0c57972
Binary files /dev/null and b/animateditems/13293.gif differ
diff --git a/animateditems/13293.png b/animateditems/13293.png
new file mode 100644
index 00000000..69ca0fd3
Binary files /dev/null and b/animateditems/13293.png differ
diff --git a/animateditems/13294.gif b/animateditems/13294.gif
new file mode 100644
index 00000000..559313a5
Binary files /dev/null and b/animateditems/13294.gif differ
diff --git a/animateditems/13294.png b/animateditems/13294.png
new file mode 100644
index 00000000..54abe14f
Binary files /dev/null and b/animateditems/13294.png differ
diff --git a/animateditems/13295.gif b/animateditems/13295.gif
new file mode 100644
index 00000000..0eaade7f
Binary files /dev/null and b/animateditems/13295.gif differ
diff --git a/animateditems/13295.png b/animateditems/13295.png
new file mode 100644
index 00000000..6b615905
Binary files /dev/null and b/animateditems/13295.png differ
diff --git a/animateditems/13296.gif b/animateditems/13296.gif
new file mode 100644
index 00000000..05e55975
Binary files /dev/null and b/animateditems/13296.gif differ
diff --git a/animateditems/13296.png b/animateditems/13296.png
new file mode 100644
index 00000000..ee03a443
Binary files /dev/null and b/animateditems/13296.png differ
diff --git a/animateditems/13297.gif b/animateditems/13297.gif
new file mode 100644
index 00000000..552feeeb
Binary files /dev/null and b/animateditems/13297.gif differ
diff --git a/animateditems/13297.png b/animateditems/13297.png
new file mode 100644
index 00000000..514aa88e
Binary files /dev/null and b/animateditems/13297.png differ
diff --git a/animateditems/13298.gif b/animateditems/13298.gif
new file mode 100644
index 00000000..ed164994
Binary files /dev/null and b/animateditems/13298.gif differ
diff --git a/animateditems/13298.png b/animateditems/13298.png
new file mode 100644
index 00000000..3fa87861
Binary files /dev/null and b/animateditems/13298.png differ
diff --git a/animateditems/13299.gif b/animateditems/13299.gif
new file mode 100644
index 00000000..0646b1fe
Binary files /dev/null and b/animateditems/13299.gif differ
diff --git a/animateditems/13299.png b/animateditems/13299.png
new file mode 100644
index 00000000..48165cdb
Binary files /dev/null and b/animateditems/13299.png differ
diff --git a/animateditems/13300.gif b/animateditems/13300.gif
new file mode 100644
index 00000000..0de6280b
Binary files /dev/null and b/animateditems/13300.gif differ
diff --git a/animateditems/13300.png b/animateditems/13300.png
new file mode 100644
index 00000000..15dc651f
Binary files /dev/null and b/animateditems/13300.png differ
diff --git a/animateditems/13301.gif b/animateditems/13301.gif
new file mode 100644
index 00000000..58f77984
Binary files /dev/null and b/animateditems/13301.gif differ
diff --git a/animateditems/13301.png b/animateditems/13301.png
new file mode 100644
index 00000000..57e9147b
Binary files /dev/null and b/animateditems/13301.png differ
diff --git a/animateditems/13302.gif b/animateditems/13302.gif
new file mode 100644
index 00000000..510ebb0b
Binary files /dev/null and b/animateditems/13302.gif differ
diff --git a/animateditems/13302.png b/animateditems/13302.png
new file mode 100644
index 00000000..c7c699fb
Binary files /dev/null and b/animateditems/13302.png differ
diff --git a/animateditems/13303.gif b/animateditems/13303.gif
new file mode 100644
index 00000000..53626cd2
Binary files /dev/null and b/animateditems/13303.gif differ
diff --git a/animateditems/13303.png b/animateditems/13303.png
new file mode 100644
index 00000000..7f65a3e3
Binary files /dev/null and b/animateditems/13303.png differ
diff --git a/animateditems/13304.gif b/animateditems/13304.gif
new file mode 100644
index 00000000..da0c9ae4
Binary files /dev/null and b/animateditems/13304.gif differ
diff --git a/animateditems/13304.png b/animateditems/13304.png
new file mode 100644
index 00000000..f4110692
Binary files /dev/null and b/animateditems/13304.png differ
diff --git a/animateditems/13305.gif b/animateditems/13305.gif
new file mode 100644
index 00000000..3f6f9294
Binary files /dev/null and b/animateditems/13305.gif differ
diff --git a/animateditems/13305.png b/animateditems/13305.png
new file mode 100644
index 00000000..dda27e49
Binary files /dev/null and b/animateditems/13305.png differ
diff --git a/animateditems/13307.gif b/animateditems/13307.gif
new file mode 100644
index 00000000..f494f25b
Binary files /dev/null and b/animateditems/13307.gif differ
diff --git a/animateditems/13307.png b/animateditems/13307.png
new file mode 100644
index 00000000..4306f11c
Binary files /dev/null and b/animateditems/13307.png differ
diff --git a/animateditems/13332.gif b/animateditems/13332.gif
new file mode 100644
index 00000000..1942e4cd
Binary files /dev/null and b/animateditems/13332.gif differ
diff --git a/animateditems/13332.png b/animateditems/13332.png
new file mode 100644
index 00000000..3c5ea1b7
Binary files /dev/null and b/animateditems/13332.png differ
diff --git a/animateditems/13333.gif b/animateditems/13333.gif
new file mode 100644
index 00000000..5cd10386
Binary files /dev/null and b/animateditems/13333.gif differ
diff --git a/animateditems/13333.png b/animateditems/13333.png
new file mode 100644
index 00000000..737240ad
Binary files /dev/null and b/animateditems/13333.png differ
diff --git a/animateditems/13472.gif b/animateditems/13472.gif
new file mode 100644
index 00000000..30b50ce7
Binary files /dev/null and b/animateditems/13472.gif differ
diff --git a/animateditems/13472.png b/animateditems/13472.png
new file mode 100644
index 00000000..10831319
Binary files /dev/null and b/animateditems/13472.png differ
diff --git a/animateditems/13498.gif b/animateditems/13498.gif
new file mode 100644
index 00000000..fd46ad2a
Binary files /dev/null and b/animateditems/13498.gif differ
diff --git a/animateditems/13498.png b/animateditems/13498.png
new file mode 100644
index 00000000..aca16277
Binary files /dev/null and b/animateditems/13498.png differ
diff --git a/animateditems/13499.gif b/animateditems/13499.gif
new file mode 100644
index 00000000..a824b8e9
Binary files /dev/null and b/animateditems/13499.gif differ
diff --git a/animateditems/13499.png b/animateditems/13499.png
new file mode 100644
index 00000000..7407c8b2
Binary files /dev/null and b/animateditems/13499.png differ
diff --git a/animateditems/13506.gif b/animateditems/13506.gif
new file mode 100644
index 00000000..6790050c
Binary files /dev/null and b/animateditems/13506.gif differ
diff --git a/animateditems/13506.png b/animateditems/13506.png
new file mode 100644
index 00000000..67e89b4b
Binary files /dev/null and b/animateditems/13506.png differ
diff --git a/animateditems/13508.gif b/animateditems/13508.gif
new file mode 100644
index 00000000..adc7948f
Binary files /dev/null and b/animateditems/13508.gif differ
diff --git a/animateditems/13508.png b/animateditems/13508.png
new file mode 100644
index 00000000..53c10af8
Binary files /dev/null and b/animateditems/13508.png differ
diff --git a/animateditems/13529.gif b/animateditems/13529.gif
new file mode 100644
index 00000000..bc6b32a1
Binary files /dev/null and b/animateditems/13529.gif differ
diff --git a/animateditems/13529.png b/animateditems/13529.png
new file mode 100644
index 00000000..73046521
Binary files /dev/null and b/animateditems/13529.png differ
diff --git a/animateditems/13530.gif b/animateditems/13530.gif
new file mode 100644
index 00000000..956ffe4f
Binary files /dev/null and b/animateditems/13530.gif differ
diff --git a/animateditems/13530.png b/animateditems/13530.png
new file mode 100644
index 00000000..b597b1f5
Binary files /dev/null and b/animateditems/13530.png differ
diff --git a/animateditems/13531.gif b/animateditems/13531.gif
new file mode 100644
index 00000000..908e13d4
Binary files /dev/null and b/animateditems/13531.gif differ
diff --git a/animateditems/13531.png b/animateditems/13531.png
new file mode 100644
index 00000000..687aeda4
Binary files /dev/null and b/animateditems/13531.png differ
diff --git a/animateditems/13532.gif b/animateditems/13532.gif
new file mode 100644
index 00000000..d9914bcc
Binary files /dev/null and b/animateditems/13532.gif differ
diff --git a/animateditems/13532.png b/animateditems/13532.png
new file mode 100644
index 00000000..ef2a0769
Binary files /dev/null and b/animateditems/13532.png differ
diff --git a/animateditems/13533.gif b/animateditems/13533.gif
new file mode 100644
index 00000000..2b663866
Binary files /dev/null and b/animateditems/13533.gif differ
diff --git a/animateditems/13533.png b/animateditems/13533.png
new file mode 100644
index 00000000..3f1c5247
Binary files /dev/null and b/animateditems/13533.png differ
diff --git a/animateditems/13534.gif b/animateditems/13534.gif
new file mode 100644
index 00000000..dfbdbca4
Binary files /dev/null and b/animateditems/13534.gif differ
diff --git a/animateditems/13534.png b/animateditems/13534.png
new file mode 100644
index 00000000..87e51cc8
Binary files /dev/null and b/animateditems/13534.png differ
diff --git a/animateditems/13535.gif b/animateditems/13535.gif
new file mode 100644
index 00000000..97ddc490
Binary files /dev/null and b/animateditems/13535.gif differ
diff --git a/animateditems/13535.png b/animateditems/13535.png
new file mode 100644
index 00000000..b2bdc361
Binary files /dev/null and b/animateditems/13535.png differ
diff --git a/animateditems/13536.gif b/animateditems/13536.gif
new file mode 100644
index 00000000..d8babd66
Binary files /dev/null and b/animateditems/13536.gif differ
diff --git a/animateditems/13536.png b/animateditems/13536.png
new file mode 100644
index 00000000..bfd08c73
Binary files /dev/null and b/animateditems/13536.png differ
diff --git a/animateditems/13537.gif b/animateditems/13537.gif
new file mode 100644
index 00000000..5f04f58d
Binary files /dev/null and b/animateditems/13537.gif differ
diff --git a/animateditems/13537.png b/animateditems/13537.png
new file mode 100644
index 00000000..b981cb91
Binary files /dev/null and b/animateditems/13537.png differ
diff --git a/animateditems/13538.gif b/animateditems/13538.gif
new file mode 100644
index 00000000..77291cae
Binary files /dev/null and b/animateditems/13538.gif differ
diff --git a/animateditems/13538.png b/animateditems/13538.png
new file mode 100644
index 00000000..7b20a4cb
Binary files /dev/null and b/animateditems/13538.png differ
diff --git a/animateditems/13539.gif b/animateditems/13539.gif
new file mode 100644
index 00000000..83bfbb9e
Binary files /dev/null and b/animateditems/13539.gif differ
diff --git a/animateditems/13539.png b/animateditems/13539.png
new file mode 100644
index 00000000..8cda1637
Binary files /dev/null and b/animateditems/13539.png differ
diff --git a/animateditems/13540.gif b/animateditems/13540.gif
new file mode 100644
index 00000000..4aa6dd7e
Binary files /dev/null and b/animateditems/13540.gif differ
diff --git a/animateditems/13540.png b/animateditems/13540.png
new file mode 100644
index 00000000..869a0ca2
Binary files /dev/null and b/animateditems/13540.png differ
diff --git a/animateditems/13541.gif b/animateditems/13541.gif
new file mode 100644
index 00000000..773f79d2
Binary files /dev/null and b/animateditems/13541.gif differ
diff --git a/animateditems/13541.png b/animateditems/13541.png
new file mode 100644
index 00000000..6d08a355
Binary files /dev/null and b/animateditems/13541.png differ
diff --git a/animateditems/13542.gif b/animateditems/13542.gif
new file mode 100644
index 00000000..40e1a786
Binary files /dev/null and b/animateditems/13542.gif differ
diff --git a/animateditems/13542.png b/animateditems/13542.png
new file mode 100644
index 00000000..43ea32fb
Binary files /dev/null and b/animateditems/13542.png differ
diff --git a/animateditems/13543.gif b/animateditems/13543.gif
new file mode 100644
index 00000000..e52a01f0
Binary files /dev/null and b/animateditems/13543.gif differ
diff --git a/animateditems/13543.png b/animateditems/13543.png
new file mode 100644
index 00000000..63f1f2ec
Binary files /dev/null and b/animateditems/13543.png differ
diff --git a/animateditems/13544.gif b/animateditems/13544.gif
new file mode 100644
index 00000000..78f1182a
Binary files /dev/null and b/animateditems/13544.gif differ
diff --git a/animateditems/13544.png b/animateditems/13544.png
new file mode 100644
index 00000000..ffa8fe69
Binary files /dev/null and b/animateditems/13544.png differ
diff --git a/animateditems/13545.gif b/animateditems/13545.gif
new file mode 100644
index 00000000..3b92f644
Binary files /dev/null and b/animateditems/13545.gif differ
diff --git a/animateditems/13545.png b/animateditems/13545.png
new file mode 100644
index 00000000..9ab07ddb
Binary files /dev/null and b/animateditems/13545.png differ
diff --git a/animateditems/13546.gif b/animateditems/13546.gif
new file mode 100644
index 00000000..59bea70e
Binary files /dev/null and b/animateditems/13546.gif differ
diff --git a/animateditems/13546.png b/animateditems/13546.png
new file mode 100644
index 00000000..10a018c2
Binary files /dev/null and b/animateditems/13546.png differ
diff --git a/animateditems/13559.gif b/animateditems/13559.gif
new file mode 100644
index 00000000..91528afd
Binary files /dev/null and b/animateditems/13559.gif differ
diff --git a/animateditems/13559.png b/animateditems/13559.png
new file mode 100644
index 00000000..cc6a6539
Binary files /dev/null and b/animateditems/13559.png differ
diff --git a/animateditems/13560.gif b/animateditems/13560.gif
new file mode 100644
index 00000000..60b05d7c
Binary files /dev/null and b/animateditems/13560.gif differ
diff --git a/animateditems/13560.png b/animateditems/13560.png
new file mode 100644
index 00000000..1a06bfcc
Binary files /dev/null and b/animateditems/13560.png differ
diff --git a/animateditems/13561.gif b/animateditems/13561.gif
new file mode 100644
index 00000000..ba1eec6f
Binary files /dev/null and b/animateditems/13561.gif differ
diff --git a/animateditems/13561.png b/animateditems/13561.png
new file mode 100644
index 00000000..34a59549
Binary files /dev/null and b/animateditems/13561.png differ
diff --git a/animateditems/13564.gif b/animateditems/13564.gif
new file mode 100644
index 00000000..c929e220
Binary files /dev/null and b/animateditems/13564.gif differ
diff --git a/animateditems/13564.png b/animateditems/13564.png
new file mode 100644
index 00000000..53e27b3c
Binary files /dev/null and b/animateditems/13564.png differ
diff --git a/animateditems/13565.gif b/animateditems/13565.gif
new file mode 100644
index 00000000..4cbdd323
Binary files /dev/null and b/animateditems/13565.gif differ
diff --git a/animateditems/13565.png b/animateditems/13565.png
new file mode 100644
index 00000000..f0fa3473
Binary files /dev/null and b/animateditems/13565.png differ
diff --git a/animateditems/13566.gif b/animateditems/13566.gif
new file mode 100644
index 00000000..d01f5dda
Binary files /dev/null and b/animateditems/13566.gif differ
diff --git a/animateditems/13566.png b/animateditems/13566.png
new file mode 100644
index 00000000..db928610
Binary files /dev/null and b/animateditems/13566.png differ
diff --git a/animateditems/13567.gif b/animateditems/13567.gif
new file mode 100644
index 00000000..c97a4f9e
Binary files /dev/null and b/animateditems/13567.gif differ
diff --git a/animateditems/13567.png b/animateditems/13567.png
new file mode 100644
index 00000000..411a5a7a
Binary files /dev/null and b/animateditems/13567.png differ
diff --git a/animateditems/13568.gif b/animateditems/13568.gif
new file mode 100644
index 00000000..d01f5dda
Binary files /dev/null and b/animateditems/13568.gif differ
diff --git a/animateditems/13568.png b/animateditems/13568.png
new file mode 100644
index 00000000..db928610
Binary files /dev/null and b/animateditems/13568.png differ
diff --git a/animateditems/13569.gif b/animateditems/13569.gif
new file mode 100644
index 00000000..340e2a1f
Binary files /dev/null and b/animateditems/13569.gif differ
diff --git a/animateditems/13569.png b/animateditems/13569.png
new file mode 100644
index 00000000..3774ba23
Binary files /dev/null and b/animateditems/13569.png differ
diff --git a/animateditems/13570.gif b/animateditems/13570.gif
new file mode 100644
index 00000000..4cbdd323
Binary files /dev/null and b/animateditems/13570.gif differ
diff --git a/animateditems/13570.png b/animateditems/13570.png
new file mode 100644
index 00000000..f0fa3473
Binary files /dev/null and b/animateditems/13570.png differ
diff --git a/animateditems/13571.gif b/animateditems/13571.gif
new file mode 100644
index 00000000..09dbc13b
Binary files /dev/null and b/animateditems/13571.gif differ
diff --git a/animateditems/13571.png b/animateditems/13571.png
new file mode 100644
index 00000000..adf74876
Binary files /dev/null and b/animateditems/13571.png differ
diff --git a/animateditems/13578.gif b/animateditems/13578.gif
new file mode 100644
index 00000000..3b618054
Binary files /dev/null and b/animateditems/13578.gif differ
diff --git a/animateditems/13578.png b/animateditems/13578.png
new file mode 100644
index 00000000..572e6288
Binary files /dev/null and b/animateditems/13578.png differ
diff --git a/animateditems/13580.gif b/animateditems/13580.gif
new file mode 100644
index 00000000..9d72bb11
Binary files /dev/null and b/animateditems/13580.gif differ
diff --git a/animateditems/13580.png b/animateditems/13580.png
new file mode 100644
index 00000000..4ca36075
Binary files /dev/null and b/animateditems/13580.png differ
diff --git a/animateditems/13581.gif b/animateditems/13581.gif
new file mode 100644
index 00000000..91528afd
Binary files /dev/null and b/animateditems/13581.gif differ
diff --git a/animateditems/13581.png b/animateditems/13581.png
new file mode 100644
index 00000000..cc6a6539
Binary files /dev/null and b/animateditems/13581.png differ
diff --git a/animateditems/13582.gif b/animateditems/13582.gif
new file mode 100644
index 00000000..4cbdd323
Binary files /dev/null and b/animateditems/13582.gif differ
diff --git a/animateditems/13582.png b/animateditems/13582.png
new file mode 100644
index 00000000..f0fa3473
Binary files /dev/null and b/animateditems/13582.png differ
diff --git a/animateditems/13601.gif b/animateditems/13601.gif
new file mode 100644
index 00000000..295e9c28
Binary files /dev/null and b/animateditems/13601.gif differ
diff --git a/animateditems/13601.png b/animateditems/13601.png
new file mode 100644
index 00000000..ac90194f
Binary files /dev/null and b/animateditems/13601.png differ
diff --git a/animateditems/13602.gif b/animateditems/13602.gif
new file mode 100644
index 00000000..fd92928f
Binary files /dev/null and b/animateditems/13602.gif differ
diff --git a/animateditems/13602.png b/animateditems/13602.png
new file mode 100644
index 00000000..ddb396c5
Binary files /dev/null and b/animateditems/13602.png differ
diff --git a/animateditems/13633.gif b/animateditems/13633.gif
new file mode 100644
index 00000000..8d5838fd
Binary files /dev/null and b/animateditems/13633.gif differ
diff --git a/animateditems/13633.png b/animateditems/13633.png
new file mode 100644
index 00000000..64f937fd
Binary files /dev/null and b/animateditems/13633.png differ
diff --git a/animateditems/13670.gif b/animateditems/13670.gif
new file mode 100644
index 00000000..070d47df
Binary files /dev/null and b/animateditems/13670.gif differ
diff --git a/animateditems/13670.png b/animateditems/13670.png
new file mode 100644
index 00000000..34d4896f
Binary files /dev/null and b/animateditems/13670.png differ
diff --git a/animateditems/13735.gif b/animateditems/13735.gif
new file mode 100644
index 00000000..82d3e510
Binary files /dev/null and b/animateditems/13735.gif differ
diff --git a/animateditems/13735.png b/animateditems/13735.png
new file mode 100644
index 00000000..411fd536
Binary files /dev/null and b/animateditems/13735.png differ
diff --git a/animateditems/13739.gif b/animateditems/13739.gif
new file mode 100644
index 00000000..e1d3e18b
Binary files /dev/null and b/animateditems/13739.gif differ
diff --git a/animateditems/13739.png b/animateditems/13739.png
new file mode 100644
index 00000000..ef400ef7
Binary files /dev/null and b/animateditems/13739.png differ
diff --git a/animateditems/13756.gif b/animateditems/13756.gif
new file mode 100644
index 00000000..ada03020
Binary files /dev/null and b/animateditems/13756.gif differ
diff --git a/animateditems/13756.png b/animateditems/13756.png
new file mode 100644
index 00000000..ecd22965
Binary files /dev/null and b/animateditems/13756.png differ
diff --git a/animateditems/13757.gif b/animateditems/13757.gif
new file mode 100644
index 00000000..8f43f380
Binary files /dev/null and b/animateditems/13757.gif differ
diff --git a/animateditems/13757.png b/animateditems/13757.png
new file mode 100644
index 00000000..a7a6e277
Binary files /dev/null and b/animateditems/13757.png differ
diff --git a/animateditems/13758.gif b/animateditems/13758.gif
new file mode 100644
index 00000000..4b7eb3a3
Binary files /dev/null and b/animateditems/13758.gif differ
diff --git a/animateditems/13758.png b/animateditems/13758.png
new file mode 100644
index 00000000..dae5b363
Binary files /dev/null and b/animateditems/13758.png differ
diff --git a/animateditems/13759.gif b/animateditems/13759.gif
new file mode 100644
index 00000000..4b90e0bc
Binary files /dev/null and b/animateditems/13759.gif differ
diff --git a/animateditems/13759.png b/animateditems/13759.png
new file mode 100644
index 00000000..7867f401
Binary files /dev/null and b/animateditems/13759.png differ
diff --git a/animateditems/13760.gif b/animateditems/13760.gif
new file mode 100644
index 00000000..8dea5029
Binary files /dev/null and b/animateditems/13760.gif differ
diff --git a/animateditems/13760.png b/animateditems/13760.png
new file mode 100644
index 00000000..2bb47b3a
Binary files /dev/null and b/animateditems/13760.png differ
diff --git a/animateditems/13774.gif b/animateditems/13774.gif
new file mode 100644
index 00000000..8c3d21e6
Binary files /dev/null and b/animateditems/13774.gif differ
diff --git a/animateditems/13774.png b/animateditems/13774.png
new file mode 100644
index 00000000..edbbd283
Binary files /dev/null and b/animateditems/13774.png differ
diff --git a/animateditems/13825.gif b/animateditems/13825.gif
new file mode 100644
index 00000000..a2c7a9cf
Binary files /dev/null and b/animateditems/13825.gif differ
diff --git a/animateditems/13825.png b/animateditems/13825.png
new file mode 100644
index 00000000..3aeafd4a
Binary files /dev/null and b/animateditems/13825.png differ
diff --git a/animateditems/13826.gif b/animateditems/13826.gif
new file mode 100644
index 00000000..a2c7a9cf
Binary files /dev/null and b/animateditems/13826.gif differ
diff --git a/animateditems/13826.png b/animateditems/13826.png
new file mode 100644
index 00000000..3aeafd4a
Binary files /dev/null and b/animateditems/13826.png differ
diff --git a/animateditems/13827.gif b/animateditems/13827.gif
new file mode 100644
index 00000000..ab84d220
Binary files /dev/null and b/animateditems/13827.gif differ
diff --git a/animateditems/13827.png b/animateditems/13827.png
new file mode 100644
index 00000000..7ccb089c
Binary files /dev/null and b/animateditems/13827.png differ
diff --git a/animateditems/13828.gif b/animateditems/13828.gif
new file mode 100644
index 00000000..4de49ef8
Binary files /dev/null and b/animateditems/13828.gif differ
diff --git a/animateditems/13828.png b/animateditems/13828.png
new file mode 100644
index 00000000..83474433
Binary files /dev/null and b/animateditems/13828.png differ
diff --git a/animateditems/13829.gif b/animateditems/13829.gif
new file mode 100644
index 00000000..7b01a402
Binary files /dev/null and b/animateditems/13829.gif differ
diff --git a/animateditems/13829.png b/animateditems/13829.png
new file mode 100644
index 00000000..556ff4cd
Binary files /dev/null and b/animateditems/13829.png differ
diff --git a/animateditems/13830.gif b/animateditems/13830.gif
new file mode 100644
index 00000000..abfffb5d
Binary files /dev/null and b/animateditems/13830.gif differ
diff --git a/animateditems/13830.png b/animateditems/13830.png
new file mode 100644
index 00000000..f8db3abd
Binary files /dev/null and b/animateditems/13830.png differ
diff --git a/animateditems/13831.gif b/animateditems/13831.gif
new file mode 100644
index 00000000..05e4b868
Binary files /dev/null and b/animateditems/13831.gif differ
diff --git a/animateditems/13831.png b/animateditems/13831.png
new file mode 100644
index 00000000..cf654070
Binary files /dev/null and b/animateditems/13831.png differ
diff --git a/animateditems/13838.gif b/animateditems/13838.gif
new file mode 100644
index 00000000..c35e58de
Binary files /dev/null and b/animateditems/13838.gif differ
diff --git a/animateditems/13838.png b/animateditems/13838.png
new file mode 100644
index 00000000..aa3575e1
Binary files /dev/null and b/animateditems/13838.png differ
diff --git a/animateditems/13864.gif b/animateditems/13864.gif
new file mode 100644
index 00000000..339871cd
Binary files /dev/null and b/animateditems/13864.gif differ
diff --git a/animateditems/13864.png b/animateditems/13864.png
new file mode 100644
index 00000000..27c60c30
Binary files /dev/null and b/animateditems/13864.png differ
diff --git a/animateditems/13866.gif b/animateditems/13866.gif
new file mode 100644
index 00000000..3e853f0c
Binary files /dev/null and b/animateditems/13866.gif differ
diff --git a/animateditems/13866.png b/animateditems/13866.png
new file mode 100644
index 00000000..7cab67ea
Binary files /dev/null and b/animateditems/13866.png differ
diff --git a/animateditems/13870.gif b/animateditems/13870.gif
new file mode 100644
index 00000000..b922360e
Binary files /dev/null and b/animateditems/13870.gif differ
diff --git a/animateditems/13870.png b/animateditems/13870.png
new file mode 100644
index 00000000..86e05235
Binary files /dev/null and b/animateditems/13870.png differ
diff --git a/animateditems/13871.gif b/animateditems/13871.gif
new file mode 100644
index 00000000..e0110839
Binary files /dev/null and b/animateditems/13871.gif differ
diff --git a/animateditems/13871.png b/animateditems/13871.png
new file mode 100644
index 00000000..7cda7289
Binary files /dev/null and b/animateditems/13871.png differ
diff --git a/animateditems/13872.gif b/animateditems/13872.gif
new file mode 100644
index 00000000..cb197c94
Binary files /dev/null and b/animateditems/13872.gif differ
diff --git a/animateditems/13872.png b/animateditems/13872.png
new file mode 100644
index 00000000..113de236
Binary files /dev/null and b/animateditems/13872.png differ
diff --git a/animateditems/13873.gif b/animateditems/13873.gif
new file mode 100644
index 00000000..20df9916
Binary files /dev/null and b/animateditems/13873.gif differ
diff --git a/animateditems/13873.png b/animateditems/13873.png
new file mode 100644
index 00000000..08397800
Binary files /dev/null and b/animateditems/13873.png differ
diff --git a/animateditems/13875.gif b/animateditems/13875.gif
new file mode 100644
index 00000000..bbdf3df7
Binary files /dev/null and b/animateditems/13875.gif differ
diff --git a/animateditems/13875.png b/animateditems/13875.png
new file mode 100644
index 00000000..e35f240a
Binary files /dev/null and b/animateditems/13875.png differ
diff --git a/animateditems/13876.gif b/animateditems/13876.gif
new file mode 100644
index 00000000..79faaaa5
Binary files /dev/null and b/animateditems/13876.gif differ
diff --git a/animateditems/13876.png b/animateditems/13876.png
new file mode 100644
index 00000000..de56a024
Binary files /dev/null and b/animateditems/13876.png differ
diff --git a/animateditems/13877.gif b/animateditems/13877.gif
new file mode 100644
index 00000000..114394c2
Binary files /dev/null and b/animateditems/13877.gif differ
diff --git a/animateditems/13877.png b/animateditems/13877.png
new file mode 100644
index 00000000..09d314f2
Binary files /dev/null and b/animateditems/13877.png differ
diff --git a/animateditems/13879.gif b/animateditems/13879.gif
new file mode 100644
index 00000000..44529cc0
Binary files /dev/null and b/animateditems/13879.gif differ
diff --git a/animateditems/13879.png b/animateditems/13879.png
new file mode 100644
index 00000000..c306d85f
Binary files /dev/null and b/animateditems/13879.png differ
diff --git a/animateditems/13880.gif b/animateditems/13880.gif
new file mode 100644
index 00000000..1c987ab3
Binary files /dev/null and b/animateditems/13880.gif differ
diff --git a/animateditems/13880.png b/animateditems/13880.png
new file mode 100644
index 00000000..53b0d63c
Binary files /dev/null and b/animateditems/13880.png differ
diff --git a/animateditems/13881.gif b/animateditems/13881.gif
new file mode 100644
index 00000000..a0685906
Binary files /dev/null and b/animateditems/13881.gif differ
diff --git a/animateditems/13881.png b/animateditems/13881.png
new file mode 100644
index 00000000..d5230f96
Binary files /dev/null and b/animateditems/13881.png differ
diff --git a/animateditems/13923.gif b/animateditems/13923.gif
new file mode 100644
index 00000000..2bf189a8
Binary files /dev/null and b/animateditems/13923.gif differ
diff --git a/animateditems/13923.png b/animateditems/13923.png
new file mode 100644
index 00000000..031835fd
Binary files /dev/null and b/animateditems/13923.png differ
diff --git a/animateditems/13924.gif b/animateditems/13924.gif
new file mode 100644
index 00000000..5da48e47
Binary files /dev/null and b/animateditems/13924.gif differ
diff --git a/animateditems/13924.png b/animateditems/13924.png
new file mode 100644
index 00000000..1909fab4
Binary files /dev/null and b/animateditems/13924.png differ
diff --git a/animateditems/13925.gif b/animateditems/13925.gif
new file mode 100644
index 00000000..632ee86c
Binary files /dev/null and b/animateditems/13925.gif differ
diff --git a/animateditems/13925.png b/animateditems/13925.png
new file mode 100644
index 00000000..b03599d9
Binary files /dev/null and b/animateditems/13925.png differ
diff --git a/animateditems/13926.gif b/animateditems/13926.gif
new file mode 100644
index 00000000..58fadf54
Binary files /dev/null and b/animateditems/13926.gif differ
diff --git a/animateditems/13926.png b/animateditems/13926.png
new file mode 100644
index 00000000..a1a2849f
Binary files /dev/null and b/animateditems/13926.png differ
diff --git a/animateditems/13927.gif b/animateditems/13927.gif
new file mode 100644
index 00000000..3610df96
Binary files /dev/null and b/animateditems/13927.gif differ
diff --git a/animateditems/13927.png b/animateditems/13927.png
new file mode 100644
index 00000000..0347dd8e
Binary files /dev/null and b/animateditems/13927.png differ
diff --git a/animateditems/13928.gif b/animateditems/13928.gif
new file mode 100644
index 00000000..e3066938
Binary files /dev/null and b/animateditems/13928.gif differ
diff --git a/animateditems/13928.png b/animateditems/13928.png
new file mode 100644
index 00000000..7887c7d2
Binary files /dev/null and b/animateditems/13928.png differ
diff --git a/animateditems/13933.gif b/animateditems/13933.gif
new file mode 100644
index 00000000..f0703608
Binary files /dev/null and b/animateditems/13933.gif differ
diff --git a/animateditems/13933.png b/animateditems/13933.png
new file mode 100644
index 00000000..11c4730a
Binary files /dev/null and b/animateditems/13933.png differ
diff --git a/animateditems/13938.gif b/animateditems/13938.gif
new file mode 100644
index 00000000..10b9ce32
Binary files /dev/null and b/animateditems/13938.gif differ
diff --git a/animateditems/13938.png b/animateditems/13938.png
new file mode 100644
index 00000000..3c7de0a3
Binary files /dev/null and b/animateditems/13938.png differ
diff --git a/animateditems/13939.gif b/animateditems/13939.gif
new file mode 100644
index 00000000..c75231fc
Binary files /dev/null and b/animateditems/13939.gif differ
diff --git a/animateditems/13939.png b/animateditems/13939.png
new file mode 100644
index 00000000..f84399a8
Binary files /dev/null and b/animateditems/13939.png differ
diff --git a/animateditems/13940.gif b/animateditems/13940.gif
new file mode 100644
index 00000000..ce5649c2
Binary files /dev/null and b/animateditems/13940.gif differ
diff --git a/animateditems/13940.png b/animateditems/13940.png
new file mode 100644
index 00000000..add9596a
Binary files /dev/null and b/animateditems/13940.png differ
diff --git a/animateditems/13941.gif b/animateditems/13941.gif
new file mode 100644
index 00000000..8aa2f9ca
Binary files /dev/null and b/animateditems/13941.gif differ
diff --git a/animateditems/13941.png b/animateditems/13941.png
new file mode 100644
index 00000000..0b5b7766
Binary files /dev/null and b/animateditems/13941.png differ
diff --git a/animateditems/13942.gif b/animateditems/13942.gif
new file mode 100644
index 00000000..eda1e5e7
Binary files /dev/null and b/animateditems/13942.gif differ
diff --git a/animateditems/13942.png b/animateditems/13942.png
new file mode 100644
index 00000000..e4f04307
Binary files /dev/null and b/animateditems/13942.png differ
diff --git a/animateditems/13943.gif b/animateditems/13943.gif
new file mode 100644
index 00000000..149d9eb1
Binary files /dev/null and b/animateditems/13943.gif differ
diff --git a/animateditems/13943.png b/animateditems/13943.png
new file mode 100644
index 00000000..bb54fe89
Binary files /dev/null and b/animateditems/13943.png differ
diff --git a/animateditems/13944.gif b/animateditems/13944.gif
new file mode 100644
index 00000000..9f0b1cf2
Binary files /dev/null and b/animateditems/13944.gif differ
diff --git a/animateditems/13944.png b/animateditems/13944.png
new file mode 100644
index 00000000..6e88c2b3
Binary files /dev/null and b/animateditems/13944.png differ
diff --git a/animateditems/13946.gif b/animateditems/13946.gif
new file mode 100644
index 00000000..eb814591
Binary files /dev/null and b/animateditems/13946.gif differ
diff --git a/animateditems/13946.png b/animateditems/13946.png
new file mode 100644
index 00000000..b3b7712e
Binary files /dev/null and b/animateditems/13946.png differ
diff --git a/animateditems/13947.gif b/animateditems/13947.gif
new file mode 100644
index 00000000..eb814591
Binary files /dev/null and b/animateditems/13947.gif differ
diff --git a/animateditems/13947.png b/animateditems/13947.png
new file mode 100644
index 00000000..b3b7712e
Binary files /dev/null and b/animateditems/13947.png differ
diff --git a/animateditems/13948.gif b/animateditems/13948.gif
new file mode 100644
index 00000000..f5dfe12e
Binary files /dev/null and b/animateditems/13948.gif differ
diff --git a/animateditems/13948.png b/animateditems/13948.png
new file mode 100644
index 00000000..5517ed04
Binary files /dev/null and b/animateditems/13948.png differ
diff --git a/animateditems/13949.gif b/animateditems/13949.gif
new file mode 100644
index 00000000..f5dfe12e
Binary files /dev/null and b/animateditems/13949.gif differ
diff --git a/animateditems/13949.png b/animateditems/13949.png
new file mode 100644
index 00000000..5517ed04
Binary files /dev/null and b/animateditems/13949.png differ
diff --git a/animateditems/13950.gif b/animateditems/13950.gif
new file mode 100644
index 00000000..3c7f4b0e
Binary files /dev/null and b/animateditems/13950.gif differ
diff --git a/animateditems/13950.png b/animateditems/13950.png
new file mode 100644
index 00000000..a050472d
Binary files /dev/null and b/animateditems/13950.png differ
diff --git a/animateditems/13951.gif b/animateditems/13951.gif
new file mode 100644
index 00000000..fc189857
Binary files /dev/null and b/animateditems/13951.gif differ
diff --git a/animateditems/13951.png b/animateditems/13951.png
new file mode 100644
index 00000000..c126e407
Binary files /dev/null and b/animateditems/13951.png differ
diff --git a/animateditems/13954.gif b/animateditems/13954.gif
new file mode 100644
index 00000000..1f6f0df3
Binary files /dev/null and b/animateditems/13954.gif differ
diff --git a/animateditems/13954.png b/animateditems/13954.png
new file mode 100644
index 00000000..ab9d766e
Binary files /dev/null and b/animateditems/13954.png differ
diff --git a/animateditems/13982.gif b/animateditems/13982.gif
new file mode 100644
index 00000000..2e9bee12
Binary files /dev/null and b/animateditems/13982.gif differ
diff --git a/animateditems/13982.png b/animateditems/13982.png
new file mode 100644
index 00000000..93c5d4d7
Binary files /dev/null and b/animateditems/13982.png differ
diff --git a/animateditems/13983.gif b/animateditems/13983.gif
new file mode 100644
index 00000000..60b05d7c
Binary files /dev/null and b/animateditems/13983.gif differ
diff --git a/animateditems/13983.png b/animateditems/13983.png
new file mode 100644
index 00000000..1a06bfcc
Binary files /dev/null and b/animateditems/13983.png differ
diff --git a/animateditems/14320.gif b/animateditems/14320.gif
new file mode 100644
index 00000000..2bf189a8
Binary files /dev/null and b/animateditems/14320.gif differ
diff --git a/animateditems/14320.png b/animateditems/14320.png
new file mode 100644
index 00000000..031835fd
Binary files /dev/null and b/animateditems/14320.png differ
diff --git a/animateditems/14321.gif b/animateditems/14321.gif
new file mode 100644
index 00000000..69d95c38
Binary files /dev/null and b/animateditems/14321.gif differ
diff --git a/animateditems/14321.png b/animateditems/14321.png
new file mode 100644
index 00000000..a63f7982
Binary files /dev/null and b/animateditems/14321.png differ
diff --git a/animateditems/14322.gif b/animateditems/14322.gif
new file mode 100644
index 00000000..b3098019
Binary files /dev/null and b/animateditems/14322.gif differ
diff --git a/animateditems/14322.png b/animateditems/14322.png
new file mode 100644
index 00000000..5fd14479
Binary files /dev/null and b/animateditems/14322.png differ
diff --git a/animateditems/14323.gif b/animateditems/14323.gif
new file mode 100644
index 00000000..2bf189a8
Binary files /dev/null and b/animateditems/14323.gif differ
diff --git a/animateditems/14323.png b/animateditems/14323.png
new file mode 100644
index 00000000..031835fd
Binary files /dev/null and b/animateditems/14323.png differ
diff --git a/animateditems/14324.gif b/animateditems/14324.gif
new file mode 100644
index 00000000..2cfe00a7
Binary files /dev/null and b/animateditems/14324.gif differ
diff --git a/animateditems/14324.png b/animateditems/14324.png
new file mode 100644
index 00000000..b4f0a8b2
Binary files /dev/null and b/animateditems/14324.png differ
diff --git a/animateditems/14325.gif b/animateditems/14325.gif
new file mode 100644
index 00000000..6f92e520
Binary files /dev/null and b/animateditems/14325.gif differ
diff --git a/animateditems/14325.png b/animateditems/14325.png
new file mode 100644
index 00000000..82dc0b3b
Binary files /dev/null and b/animateditems/14325.png differ
diff --git a/animateditems/14326.gif b/animateditems/14326.gif
new file mode 100644
index 00000000..2db57763
Binary files /dev/null and b/animateditems/14326.gif differ
diff --git a/animateditems/14326.png b/animateditems/14326.png
new file mode 100644
index 00000000..0ae26117
Binary files /dev/null and b/animateditems/14326.png differ
diff --git a/animateditems/14327.gif b/animateditems/14327.gif
new file mode 100644
index 00000000..042e90da
Binary files /dev/null and b/animateditems/14327.gif differ
diff --git a/animateditems/14327.png b/animateditems/14327.png
new file mode 100644
index 00000000..cd64721f
Binary files /dev/null and b/animateditems/14327.png differ
diff --git a/animateditems/14328.gif b/animateditems/14328.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/14328.gif differ
diff --git a/animateditems/14328.png b/animateditems/14328.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/14328.png differ
diff --git a/animateditems/14329.gif b/animateditems/14329.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/14329.gif differ
diff --git a/animateditems/14329.png b/animateditems/14329.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/14329.png differ
diff --git a/animateditems/14330.gif b/animateditems/14330.gif
new file mode 100644
index 00000000..070d47df
Binary files /dev/null and b/animateditems/14330.gif differ
diff --git a/animateditems/14330.png b/animateditems/14330.png
new file mode 100644
index 00000000..34d4896f
Binary files /dev/null and b/animateditems/14330.png differ
diff --git a/animateditems/14331.gif b/animateditems/14331.gif
new file mode 100644
index 00000000..c54feb2f
Binary files /dev/null and b/animateditems/14331.gif differ
diff --git a/animateditems/14331.png b/animateditems/14331.png
new file mode 100644
index 00000000..7e5edef2
Binary files /dev/null and b/animateditems/14331.png differ
diff --git a/animateditems/14332.gif b/animateditems/14332.gif
new file mode 100644
index 00000000..ef7fddc1
Binary files /dev/null and b/animateditems/14332.gif differ
diff --git a/animateditems/14332.png b/animateditems/14332.png
new file mode 100644
index 00000000..abce4bc4
Binary files /dev/null and b/animateditems/14332.png differ
diff --git a/animateditems/14333.gif b/animateditems/14333.gif
new file mode 100644
index 00000000..60e4641e
Binary files /dev/null and b/animateditems/14333.gif differ
diff --git a/animateditems/14333.png b/animateditems/14333.png
new file mode 100644
index 00000000..2af55ec4
Binary files /dev/null and b/animateditems/14333.png differ
diff --git a/animateditems/14334.gif b/animateditems/14334.gif
new file mode 100644
index 00000000..a824b8e9
Binary files /dev/null and b/animateditems/14334.gif differ
diff --git a/animateditems/14334.png b/animateditems/14334.png
new file mode 100644
index 00000000..7407c8b2
Binary files /dev/null and b/animateditems/14334.png differ
diff --git a/animateditems/14335.gif b/animateditems/14335.gif
new file mode 100644
index 00000000..2db57763
Binary files /dev/null and b/animateditems/14335.gif differ
diff --git a/animateditems/14335.png b/animateditems/14335.png
new file mode 100644
index 00000000..0ae26117
Binary files /dev/null and b/animateditems/14335.png differ
diff --git a/animateditems/14336.gif b/animateditems/14336.gif
new file mode 100644
index 00000000..dc1aa5c8
Binary files /dev/null and b/animateditems/14336.gif differ
diff --git a/animateditems/14336.png b/animateditems/14336.png
new file mode 100644
index 00000000..c809e709
Binary files /dev/null and b/animateditems/14336.png differ
diff --git a/animateditems/14337.gif b/animateditems/14337.gif
new file mode 100644
index 00000000..88133e15
Binary files /dev/null and b/animateditems/14337.gif differ
diff --git a/animateditems/14337.png b/animateditems/14337.png
new file mode 100644
index 00000000..7b6f7cad
Binary files /dev/null and b/animateditems/14337.png differ
diff --git a/animateditems/14338.gif b/animateditems/14338.gif
new file mode 100644
index 00000000..fbdd18df
Binary files /dev/null and b/animateditems/14338.gif differ
diff --git a/animateditems/14338.png b/animateditems/14338.png
new file mode 100644
index 00000000..d1a5c80a
Binary files /dev/null and b/animateditems/14338.png differ
diff --git a/animateditems/14339.gif b/animateditems/14339.gif
new file mode 100644
index 00000000..dc1aa5c8
Binary files /dev/null and b/animateditems/14339.gif differ
diff --git a/animateditems/14339.png b/animateditems/14339.png
new file mode 100644
index 00000000..c809e709
Binary files /dev/null and b/animateditems/14339.png differ
diff --git a/animateditems/14340.gif b/animateditems/14340.gif
new file mode 100644
index 00000000..4da629ad
Binary files /dev/null and b/animateditems/14340.gif differ
diff --git a/animateditems/14340.png b/animateditems/14340.png
new file mode 100644
index 00000000..5a8b0e84
Binary files /dev/null and b/animateditems/14340.png differ
diff --git a/animateditems/14341.gif b/animateditems/14341.gif
new file mode 100644
index 00000000..3bbfa719
Binary files /dev/null and b/animateditems/14341.gif differ
diff --git a/animateditems/14341.png b/animateditems/14341.png
new file mode 100644
index 00000000..a689206c
Binary files /dev/null and b/animateditems/14341.png differ
diff --git a/animateditems/14342.gif b/animateditems/14342.gif
new file mode 100644
index 00000000..84100058
Binary files /dev/null and b/animateditems/14342.gif differ
diff --git a/animateditems/14342.png b/animateditems/14342.png
new file mode 100644
index 00000000..25b1bd7a
Binary files /dev/null and b/animateditems/14342.png differ
diff --git a/animateditems/14343.gif b/animateditems/14343.gif
new file mode 100644
index 00000000..10da3fd4
Binary files /dev/null and b/animateditems/14343.gif differ
diff --git a/animateditems/14343.png b/animateditems/14343.png
new file mode 100644
index 00000000..000e39db
Binary files /dev/null and b/animateditems/14343.png differ
diff --git a/animateditems/14344.gif b/animateditems/14344.gif
new file mode 100644
index 00000000..6c7fc0be
Binary files /dev/null and b/animateditems/14344.gif differ
diff --git a/animateditems/14344.png b/animateditems/14344.png
new file mode 100644
index 00000000..957026ba
Binary files /dev/null and b/animateditems/14344.png differ
diff --git a/animateditems/14345.gif b/animateditems/14345.gif
new file mode 100644
index 00000000..165a3d92
Binary files /dev/null and b/animateditems/14345.gif differ
diff --git a/animateditems/14345.png b/animateditems/14345.png
new file mode 100644
index 00000000..764dfc75
Binary files /dev/null and b/animateditems/14345.png differ
diff --git a/animateditems/14346.gif b/animateditems/14346.gif
new file mode 100644
index 00000000..0c37a837
Binary files /dev/null and b/animateditems/14346.gif differ
diff --git a/animateditems/14346.png b/animateditems/14346.png
new file mode 100644
index 00000000..20d2ee2d
Binary files /dev/null and b/animateditems/14346.png differ
diff --git a/animateditems/14347.gif b/animateditems/14347.gif
new file mode 100644
index 00000000..dc1aa5c8
Binary files /dev/null and b/animateditems/14347.gif differ
diff --git a/animateditems/14347.png b/animateditems/14347.png
new file mode 100644
index 00000000..c809e709
Binary files /dev/null and b/animateditems/14347.png differ
diff --git a/animateditems/14348.gif b/animateditems/14348.gif
new file mode 100644
index 00000000..905c698c
Binary files /dev/null and b/animateditems/14348.gif differ
diff --git a/animateditems/14348.png b/animateditems/14348.png
new file mode 100644
index 00000000..9de4d7ab
Binary files /dev/null and b/animateditems/14348.png differ
diff --git a/animateditems/14349.gif b/animateditems/14349.gif
new file mode 100644
index 00000000..ced4c57d
Binary files /dev/null and b/animateditems/14349.gif differ
diff --git a/animateditems/14349.png b/animateditems/14349.png
new file mode 100644
index 00000000..fed7b724
Binary files /dev/null and b/animateditems/14349.png differ
diff --git a/animateditems/14350.gif b/animateditems/14350.gif
new file mode 100644
index 00000000..d1bc2f83
Binary files /dev/null and b/animateditems/14350.gif differ
diff --git a/animateditems/14350.png b/animateditems/14350.png
new file mode 100644
index 00000000..ec319e2a
Binary files /dev/null and b/animateditems/14350.png differ
diff --git a/animateditems/14351.gif b/animateditems/14351.gif
new file mode 100644
index 00000000..e29974f4
Binary files /dev/null and b/animateditems/14351.gif differ
diff --git a/animateditems/14351.png b/animateditems/14351.png
new file mode 100644
index 00000000..0b32a0d8
Binary files /dev/null and b/animateditems/14351.png differ
diff --git a/animateditems/14352.gif b/animateditems/14352.gif
new file mode 100644
index 00000000..a4f00779
Binary files /dev/null and b/animateditems/14352.gif differ
diff --git a/animateditems/14352.png b/animateditems/14352.png
new file mode 100644
index 00000000..bdd6b2de
Binary files /dev/null and b/animateditems/14352.png differ
diff --git a/animateditems/14353.gif b/animateditems/14353.gif
new file mode 100644
index 00000000..b2cbdcfb
Binary files /dev/null and b/animateditems/14353.gif differ
diff --git a/animateditems/14353.png b/animateditems/14353.png
new file mode 100644
index 00000000..55ab832d
Binary files /dev/null and b/animateditems/14353.png differ
diff --git a/animateditems/14354.gif b/animateditems/14354.gif
new file mode 100644
index 00000000..77b5e8b6
Binary files /dev/null and b/animateditems/14354.gif differ
diff --git a/animateditems/14354.png b/animateditems/14354.png
new file mode 100644
index 00000000..29fc788c
Binary files /dev/null and b/animateditems/14354.png differ
diff --git a/animateditems/14903.gif b/animateditems/14903.gif
new file mode 100644
index 00000000..18f3b909
Binary files /dev/null and b/animateditems/14903.gif differ
diff --git a/animateditems/14903.png b/animateditems/14903.png
new file mode 100644
index 00000000..24f284b4
Binary files /dev/null and b/animateditems/14903.png differ
diff --git a/animateditems/15271.gif b/animateditems/15271.gif
new file mode 100644
index 00000000..0f9fc5bb
Binary files /dev/null and b/animateditems/15271.gif differ
diff --git a/animateditems/15271.png b/animateditems/15271.png
new file mode 100644
index 00000000..13f6a8d2
Binary files /dev/null and b/animateditems/15271.png differ
diff --git a/animateditems/15384.gif b/animateditems/15384.gif
new file mode 100644
index 00000000..9938e3bb
Binary files /dev/null and b/animateditems/15384.gif differ
diff --git a/animateditems/15384.png b/animateditems/15384.png
new file mode 100644
index 00000000..e39481bf
Binary files /dev/null and b/animateditems/15384.png differ
diff --git a/animateditems/15389.gif b/animateditems/15389.gif
new file mode 100644
index 00000000..a70eff34
Binary files /dev/null and b/animateditems/15389.gif differ
diff --git a/animateditems/15389.png b/animateditems/15389.png
new file mode 100644
index 00000000..24321966
Binary files /dev/null and b/animateditems/15389.png differ
diff --git a/animateditems/15390.gif b/animateditems/15390.gif
new file mode 100644
index 00000000..bda1c215
Binary files /dev/null and b/animateditems/15390.gif differ
diff --git a/animateditems/15390.png b/animateditems/15390.png
new file mode 100644
index 00000000..31ec326d
Binary files /dev/null and b/animateditems/15390.png differ
diff --git a/animateditems/15400.gif b/animateditems/15400.gif
new file mode 100644
index 00000000..f6cebe3c
Binary files /dev/null and b/animateditems/15400.gif differ
diff --git a/animateditems/15400.png b/animateditems/15400.png
new file mode 100644
index 00000000..21dc60fd
Binary files /dev/null and b/animateditems/15400.png differ
diff --git a/animateditems/15403.gif b/animateditems/15403.gif
new file mode 100644
index 00000000..10e80376
Binary files /dev/null and b/animateditems/15403.gif differ
diff --git a/animateditems/15403.png b/animateditems/15403.png
new file mode 100644
index 00000000..72b24142
Binary files /dev/null and b/animateditems/15403.png differ
diff --git a/animateditems/15404.gif b/animateditems/15404.gif
new file mode 100644
index 00000000..3b7b3da1
Binary files /dev/null and b/animateditems/15404.gif differ
diff --git a/animateditems/15404.png b/animateditems/15404.png
new file mode 100644
index 00000000..ca6597e0
Binary files /dev/null and b/animateditems/15404.png differ
diff --git a/animateditems/15405.gif b/animateditems/15405.gif
new file mode 100644
index 00000000..7f8f3aed
Binary files /dev/null and b/animateditems/15405.gif differ
diff --git a/animateditems/15405.png b/animateditems/15405.png
new file mode 100644
index 00000000..0f62cc35
Binary files /dev/null and b/animateditems/15405.png differ
diff --git a/animateditems/15406.gif b/animateditems/15406.gif
new file mode 100644
index 00000000..339e6670
Binary files /dev/null and b/animateditems/15406.gif differ
diff --git a/animateditems/15406.png b/animateditems/15406.png
new file mode 100644
index 00000000..b2ec00b2
Binary files /dev/null and b/animateditems/15406.png differ
diff --git a/animateditems/15407.gif b/animateditems/15407.gif
new file mode 100644
index 00000000..0b415797
Binary files /dev/null and b/animateditems/15407.gif differ
diff --git a/animateditems/15407.png b/animateditems/15407.png
new file mode 100644
index 00000000..d01f574e
Binary files /dev/null and b/animateditems/15407.png differ
diff --git a/animateditems/15408.gif b/animateditems/15408.gif
new file mode 100644
index 00000000..3b27efb2
Binary files /dev/null and b/animateditems/15408.gif differ
diff --git a/animateditems/15408.png b/animateditems/15408.png
new file mode 100644
index 00000000..a6987884
Binary files /dev/null and b/animateditems/15408.png differ
diff --git a/animateditems/15409.gif b/animateditems/15409.gif
new file mode 100644
index 00000000..fed79d7e
Binary files /dev/null and b/animateditems/15409.gif differ
diff --git a/animateditems/15409.png b/animateditems/15409.png
new file mode 100644
index 00000000..66768c82
Binary files /dev/null and b/animateditems/15409.png differ
diff --git a/animateditems/15410.gif b/animateditems/15410.gif
new file mode 100644
index 00000000..5e538437
Binary files /dev/null and b/animateditems/15410.gif differ
diff --git a/animateditems/15410.png b/animateditems/15410.png
new file mode 100644
index 00000000..df208b14
Binary files /dev/null and b/animateditems/15410.png differ
diff --git a/animateditems/15411.gif b/animateditems/15411.gif
new file mode 100644
index 00000000..29dd0fec
Binary files /dev/null and b/animateditems/15411.gif differ
diff --git a/animateditems/15411.png b/animateditems/15411.png
new file mode 100644
index 00000000..134f3a72
Binary files /dev/null and b/animateditems/15411.png differ
diff --git a/animateditems/15412.gif b/animateditems/15412.gif
new file mode 100644
index 00000000..5478fe72
Binary files /dev/null and b/animateditems/15412.gif differ
diff --git a/animateditems/15412.png b/animateditems/15412.png
new file mode 100644
index 00000000..396e67a6
Binary files /dev/null and b/animateditems/15412.png differ
diff --git a/animateditems/15413.gif b/animateditems/15413.gif
new file mode 100644
index 00000000..e032cee6
Binary files /dev/null and b/animateditems/15413.gif differ
diff --git a/animateditems/15413.png b/animateditems/15413.png
new file mode 100644
index 00000000..f88a2708
Binary files /dev/null and b/animateditems/15413.png differ
diff --git a/animateditems/15414.gif b/animateditems/15414.gif
new file mode 100644
index 00000000..f4fff2f0
Binary files /dev/null and b/animateditems/15414.gif differ
diff --git a/animateditems/15414.png b/animateditems/15414.png
new file mode 100644
index 00000000..6762fbf5
Binary files /dev/null and b/animateditems/15414.png differ
diff --git a/animateditems/15421.gif b/animateditems/15421.gif
new file mode 100644
index 00000000..cbbec66d
Binary files /dev/null and b/animateditems/15421.gif differ
diff --git a/animateditems/15421.png b/animateditems/15421.png
new file mode 100644
index 00000000..000ac075
Binary files /dev/null and b/animateditems/15421.png differ
diff --git a/animateditems/15422.gif b/animateditems/15422.gif
new file mode 100644
index 00000000..14595623
Binary files /dev/null and b/animateditems/15422.gif differ
diff --git a/animateditems/15422.png b/animateditems/15422.png
new file mode 100644
index 00000000..e062247b
Binary files /dev/null and b/animateditems/15422.png differ
diff --git a/animateditems/15423.gif b/animateditems/15423.gif
new file mode 100644
index 00000000..b2e416c2
Binary files /dev/null and b/animateditems/15423.gif differ
diff --git a/animateditems/15423.png b/animateditems/15423.png
new file mode 100644
index 00000000..afc60bf7
Binary files /dev/null and b/animateditems/15423.png differ
diff --git a/animateditems/15424.gif b/animateditems/15424.gif
new file mode 100644
index 00000000..a1effdaa
Binary files /dev/null and b/animateditems/15424.gif differ
diff --git a/animateditems/15424.png b/animateditems/15424.png
new file mode 100644
index 00000000..ab6c3b0b
Binary files /dev/null and b/animateditems/15424.png differ
diff --git a/animateditems/15425.gif b/animateditems/15425.gif
new file mode 100644
index 00000000..1e85eed4
Binary files /dev/null and b/animateditems/15425.gif differ
diff --git a/animateditems/15425.png b/animateditems/15425.png
new file mode 100644
index 00000000..fc8e4b4b
Binary files /dev/null and b/animateditems/15425.png differ
diff --git a/animateditems/15426.gif b/animateditems/15426.gif
new file mode 100644
index 00000000..715f731d
Binary files /dev/null and b/animateditems/15426.gif differ
diff --git a/animateditems/15426.png b/animateditems/15426.png
new file mode 100644
index 00000000..ccd7a36a
Binary files /dev/null and b/animateditems/15426.png differ
diff --git a/animateditems/15427.gif b/animateditems/15427.gif
new file mode 100644
index 00000000..cf66b598
Binary files /dev/null and b/animateditems/15427.gif differ
diff --git a/animateditems/15427.png b/animateditems/15427.png
new file mode 100644
index 00000000..d805f6a9
Binary files /dev/null and b/animateditems/15427.png differ
diff --git a/animateditems/15428.gif b/animateditems/15428.gif
new file mode 100644
index 00000000..b227e45d
Binary files /dev/null and b/animateditems/15428.gif differ
diff --git a/animateditems/15428.png b/animateditems/15428.png
new file mode 100644
index 00000000..6ab7ee3e
Binary files /dev/null and b/animateditems/15428.png differ
diff --git a/animateditems/15429.gif b/animateditems/15429.gif
new file mode 100644
index 00000000..5c425c8c
Binary files /dev/null and b/animateditems/15429.gif differ
diff --git a/animateditems/15429.png b/animateditems/15429.png
new file mode 100644
index 00000000..fd1cb7da
Binary files /dev/null and b/animateditems/15429.png differ
diff --git a/animateditems/15430.gif b/animateditems/15430.gif
new file mode 100644
index 00000000..aab4af98
Binary files /dev/null and b/animateditems/15430.gif differ
diff --git a/animateditems/15430.png b/animateditems/15430.png
new file mode 100644
index 00000000..1fb26242
Binary files /dev/null and b/animateditems/15430.png differ
diff --git a/animateditems/15431.gif b/animateditems/15431.gif
new file mode 100644
index 00000000..d30c1f22
Binary files /dev/null and b/animateditems/15431.gif differ
diff --git a/animateditems/15431.png b/animateditems/15431.png
new file mode 100644
index 00000000..94a6f8d7
Binary files /dev/null and b/animateditems/15431.png differ
diff --git a/animateditems/15432.gif b/animateditems/15432.gif
new file mode 100644
index 00000000..c05c9c43
Binary files /dev/null and b/animateditems/15432.gif differ
diff --git a/animateditems/15432.png b/animateditems/15432.png
new file mode 100644
index 00000000..3663e926
Binary files /dev/null and b/animateditems/15432.png differ
diff --git a/animateditems/15433.gif b/animateditems/15433.gif
new file mode 100644
index 00000000..3e9a0252
Binary files /dev/null and b/animateditems/15433.gif differ
diff --git a/animateditems/15433.png b/animateditems/15433.png
new file mode 100644
index 00000000..d0f9f20c
Binary files /dev/null and b/animateditems/15433.png differ
diff --git a/animateditems/15434.gif b/animateditems/15434.gif
new file mode 100644
index 00000000..33dad715
Binary files /dev/null and b/animateditems/15434.gif differ
diff --git a/animateditems/15434.png b/animateditems/15434.png
new file mode 100644
index 00000000..64101f34
Binary files /dev/null and b/animateditems/15434.png differ
diff --git a/animateditems/15435.gif b/animateditems/15435.gif
new file mode 100644
index 00000000..6b794aaf
Binary files /dev/null and b/animateditems/15435.gif differ
diff --git a/animateditems/15435.png b/animateditems/15435.png
new file mode 100644
index 00000000..2749056e
Binary files /dev/null and b/animateditems/15435.png differ
diff --git a/animateditems/15436.gif b/animateditems/15436.gif
new file mode 100644
index 00000000..1f472bea
Binary files /dev/null and b/animateditems/15436.gif differ
diff --git a/animateditems/15436.png b/animateditems/15436.png
new file mode 100644
index 00000000..8e22ae59
Binary files /dev/null and b/animateditems/15436.png differ
diff --git a/animateditems/15437.gif b/animateditems/15437.gif
new file mode 100644
index 00000000..8b6c5844
Binary files /dev/null and b/animateditems/15437.gif differ
diff --git a/animateditems/15437.png b/animateditems/15437.png
new file mode 100644
index 00000000..16d6d069
Binary files /dev/null and b/animateditems/15437.png differ
diff --git a/animateditems/15438.gif b/animateditems/15438.gif
new file mode 100644
index 00000000..51999398
Binary files /dev/null and b/animateditems/15438.gif differ
diff --git a/animateditems/15438.png b/animateditems/15438.png
new file mode 100644
index 00000000..48c279b1
Binary files /dev/null and b/animateditems/15438.png differ
diff --git a/animateditems/15439.gif b/animateditems/15439.gif
new file mode 100644
index 00000000..9826f822
Binary files /dev/null and b/animateditems/15439.gif differ
diff --git a/animateditems/15439.png b/animateditems/15439.png
new file mode 100644
index 00000000..4df47ef5
Binary files /dev/null and b/animateditems/15439.png differ
diff --git a/animateditems/15440.gif b/animateditems/15440.gif
new file mode 100644
index 00000000..b7ba6c09
Binary files /dev/null and b/animateditems/15440.gif differ
diff --git a/animateditems/15440.png b/animateditems/15440.png
new file mode 100644
index 00000000..378acea5
Binary files /dev/null and b/animateditems/15440.png differ
diff --git a/animateditems/15441.gif b/animateditems/15441.gif
new file mode 100644
index 00000000..c431f502
Binary files /dev/null and b/animateditems/15441.gif differ
diff --git a/animateditems/15441.png b/animateditems/15441.png
new file mode 100644
index 00000000..1a068a75
Binary files /dev/null and b/animateditems/15441.png differ
diff --git a/animateditems/15442.gif b/animateditems/15442.gif
new file mode 100644
index 00000000..d97ae86c
Binary files /dev/null and b/animateditems/15442.gif differ
diff --git a/animateditems/15442.png b/animateditems/15442.png
new file mode 100644
index 00000000..cb4e201a
Binary files /dev/null and b/animateditems/15442.png differ
diff --git a/animateditems/15443.gif b/animateditems/15443.gif
new file mode 100644
index 00000000..d97ae86c
Binary files /dev/null and b/animateditems/15443.gif differ
diff --git a/animateditems/15443.png b/animateditems/15443.png
new file mode 100644
index 00000000..cb4e201a
Binary files /dev/null and b/animateditems/15443.png differ
diff --git a/animateditems/15444.gif b/animateditems/15444.gif
new file mode 100644
index 00000000..889f5413
Binary files /dev/null and b/animateditems/15444.gif differ
diff --git a/animateditems/15444.png b/animateditems/15444.png
new file mode 100644
index 00000000..27f9e6b2
Binary files /dev/null and b/animateditems/15444.png differ
diff --git a/animateditems/15445.gif b/animateditems/15445.gif
new file mode 100644
index 00000000..89a6df14
Binary files /dev/null and b/animateditems/15445.gif differ
diff --git a/animateditems/15445.png b/animateditems/15445.png
new file mode 100644
index 00000000..6826f8d1
Binary files /dev/null and b/animateditems/15445.png differ
diff --git a/animateditems/15446.gif b/animateditems/15446.gif
new file mode 100644
index 00000000..3a2985ab
Binary files /dev/null and b/animateditems/15446.gif differ
diff --git a/animateditems/15446.png b/animateditems/15446.png
new file mode 100644
index 00000000..7b9444d7
Binary files /dev/null and b/animateditems/15446.png differ
diff --git a/animateditems/15447.gif b/animateditems/15447.gif
new file mode 100644
index 00000000..c16960b4
Binary files /dev/null and b/animateditems/15447.gif differ
diff --git a/animateditems/15447.png b/animateditems/15447.png
new file mode 100644
index 00000000..8bb66737
Binary files /dev/null and b/animateditems/15447.png differ
diff --git a/animateditems/15448.gif b/animateditems/15448.gif
new file mode 100644
index 00000000..c3081f8d
Binary files /dev/null and b/animateditems/15448.gif differ
diff --git a/animateditems/15448.png b/animateditems/15448.png
new file mode 100644
index 00000000..7634e124
Binary files /dev/null and b/animateditems/15448.png differ
diff --git a/animateditems/15449.gif b/animateditems/15449.gif
new file mode 100644
index 00000000..4febdace
Binary files /dev/null and b/animateditems/15449.gif differ
diff --git a/animateditems/15449.png b/animateditems/15449.png
new file mode 100644
index 00000000..be5207c7
Binary files /dev/null and b/animateditems/15449.png differ
diff --git a/animateditems/15450.gif b/animateditems/15450.gif
new file mode 100644
index 00000000..8881593c
Binary files /dev/null and b/animateditems/15450.gif differ
diff --git a/animateditems/15450.png b/animateditems/15450.png
new file mode 100644
index 00000000..116c3419
Binary files /dev/null and b/animateditems/15450.png differ
diff --git a/animateditems/15451.gif b/animateditems/15451.gif
new file mode 100644
index 00000000..39e90e67
Binary files /dev/null and b/animateditems/15451.gif differ
diff --git a/animateditems/15451.png b/animateditems/15451.png
new file mode 100644
index 00000000..5c7cf893
Binary files /dev/null and b/animateditems/15451.png differ
diff --git a/animateditems/15452.gif b/animateditems/15452.gif
new file mode 100644
index 00000000..51007bc1
Binary files /dev/null and b/animateditems/15452.gif differ
diff --git a/animateditems/15452.png b/animateditems/15452.png
new file mode 100644
index 00000000..d25e5d63
Binary files /dev/null and b/animateditems/15452.png differ
diff --git a/animateditems/15453.gif b/animateditems/15453.gif
new file mode 100644
index 00000000..cef843cc
Binary files /dev/null and b/animateditems/15453.gif differ
diff --git a/animateditems/15453.png b/animateditems/15453.png
new file mode 100644
index 00000000..262e5143
Binary files /dev/null and b/animateditems/15453.png differ
diff --git a/animateditems/15454.gif b/animateditems/15454.gif
new file mode 100644
index 00000000..c35f1e9f
Binary files /dev/null and b/animateditems/15454.gif differ
diff --git a/animateditems/15454.png b/animateditems/15454.png
new file mode 100644
index 00000000..782b3dda
Binary files /dev/null and b/animateditems/15454.png differ
diff --git a/animateditems/15455.gif b/animateditems/15455.gif
new file mode 100644
index 00000000..da5d2f39
Binary files /dev/null and b/animateditems/15455.gif differ
diff --git a/animateditems/15455.png b/animateditems/15455.png
new file mode 100644
index 00000000..9420d110
Binary files /dev/null and b/animateditems/15455.png differ
diff --git a/animateditems/15462.gif b/animateditems/15462.gif
new file mode 100644
index 00000000..d431bd4a
Binary files /dev/null and b/animateditems/15462.gif differ
diff --git a/animateditems/15462.png b/animateditems/15462.png
new file mode 100644
index 00000000..04663bec
Binary files /dev/null and b/animateditems/15462.png differ
diff --git a/animateditems/15463.gif b/animateditems/15463.gif
new file mode 100644
index 00000000..b3098019
Binary files /dev/null and b/animateditems/15463.gif differ
diff --git a/animateditems/15463.png b/animateditems/15463.png
new file mode 100644
index 00000000..5fd14479
Binary files /dev/null and b/animateditems/15463.png differ
diff --git a/animateditems/15464.gif b/animateditems/15464.gif
new file mode 100644
index 00000000..2bf189a8
Binary files /dev/null and b/animateditems/15464.gif differ
diff --git a/animateditems/15464.png b/animateditems/15464.png
new file mode 100644
index 00000000..031835fd
Binary files /dev/null and b/animateditems/15464.png differ
diff --git a/animateditems/15465.gif b/animateditems/15465.gif
new file mode 100644
index 00000000..9d8f3e1f
Binary files /dev/null and b/animateditems/15465.gif differ
diff --git a/animateditems/15465.png b/animateditems/15465.png
new file mode 100644
index 00000000..be312de6
Binary files /dev/null and b/animateditems/15465.png differ
diff --git a/animateditems/15466.gif b/animateditems/15466.gif
new file mode 100644
index 00000000..1cf1eb43
Binary files /dev/null and b/animateditems/15466.gif differ
diff --git a/animateditems/15466.png b/animateditems/15466.png
new file mode 100644
index 00000000..fb6d546f
Binary files /dev/null and b/animateditems/15466.png differ
diff --git a/animateditems/15479.gif b/animateditems/15479.gif
new file mode 100644
index 00000000..51e5f350
Binary files /dev/null and b/animateditems/15479.gif differ
diff --git a/animateditems/15479.png b/animateditems/15479.png
new file mode 100644
index 00000000..7a08e320
Binary files /dev/null and b/animateditems/15479.png differ
diff --git a/animateditems/15480.gif b/animateditems/15480.gif
new file mode 100644
index 00000000..1621b660
Binary files /dev/null and b/animateditems/15480.gif differ
diff --git a/animateditems/15480.png b/animateditems/15480.png
new file mode 100644
index 00000000..1bb1766f
Binary files /dev/null and b/animateditems/15480.png differ
diff --git a/animateditems/15481.gif b/animateditems/15481.gif
new file mode 100644
index 00000000..59251cd6
Binary files /dev/null and b/animateditems/15481.gif differ
diff --git a/animateditems/15481.png b/animateditems/15481.png
new file mode 100644
index 00000000..1b1c1cfd
Binary files /dev/null and b/animateditems/15481.png differ
diff --git a/animateditems/15482.gif b/animateditems/15482.gif
new file mode 100644
index 00000000..219ca194
Binary files /dev/null and b/animateditems/15482.gif differ
diff --git a/animateditems/15482.png b/animateditems/15482.png
new file mode 100644
index 00000000..d986dbf6
Binary files /dev/null and b/animateditems/15482.png differ
diff --git a/animateditems/15483.gif b/animateditems/15483.gif
new file mode 100644
index 00000000..ed295452
Binary files /dev/null and b/animateditems/15483.gif differ
diff --git a/animateditems/15483.png b/animateditems/15483.png
new file mode 100644
index 00000000..3a75034f
Binary files /dev/null and b/animateditems/15483.png differ
diff --git a/animateditems/15484.gif b/animateditems/15484.gif
new file mode 100644
index 00000000..437cf891
Binary files /dev/null and b/animateditems/15484.gif differ
diff --git a/animateditems/15484.png b/animateditems/15484.png
new file mode 100644
index 00000000..689a3836
Binary files /dev/null and b/animateditems/15484.png differ
diff --git a/animateditems/15485.gif b/animateditems/15485.gif
new file mode 100644
index 00000000..ffbe3fcd
Binary files /dev/null and b/animateditems/15485.gif differ
diff --git a/animateditems/15485.png b/animateditems/15485.png
new file mode 100644
index 00000000..a80a198a
Binary files /dev/null and b/animateditems/15485.png differ
diff --git a/animateditems/15486.gif b/animateditems/15486.gif
new file mode 100644
index 00000000..e631b840
Binary files /dev/null and b/animateditems/15486.gif differ
diff --git a/animateditems/15486.png b/animateditems/15486.png
new file mode 100644
index 00000000..c3209347
Binary files /dev/null and b/animateditems/15486.png differ
diff --git a/animateditems/15487.gif b/animateditems/15487.gif
new file mode 100644
index 00000000..6c2be875
Binary files /dev/null and b/animateditems/15487.gif differ
diff --git a/animateditems/15487.png b/animateditems/15487.png
new file mode 100644
index 00000000..5445ba41
Binary files /dev/null and b/animateditems/15487.png differ
diff --git a/animateditems/15488.gif b/animateditems/15488.gif
new file mode 100644
index 00000000..75a21d9e
Binary files /dev/null and b/animateditems/15488.gif differ
diff --git a/animateditems/15488.png b/animateditems/15488.png
new file mode 100644
index 00000000..b597f63b
Binary files /dev/null and b/animateditems/15488.png differ
diff --git a/animateditems/15489.gif b/animateditems/15489.gif
new file mode 100644
index 00000000..c116e7b9
Binary files /dev/null and b/animateditems/15489.gif differ
diff --git a/animateditems/15489.png b/animateditems/15489.png
new file mode 100644
index 00000000..a2076240
Binary files /dev/null and b/animateditems/15489.png differ
diff --git a/animateditems/15490.gif b/animateditems/15490.gif
new file mode 100644
index 00000000..a5cf6e0d
Binary files /dev/null and b/animateditems/15490.gif differ
diff --git a/animateditems/15490.png b/animateditems/15490.png
new file mode 100644
index 00000000..34451ead
Binary files /dev/null and b/animateditems/15490.png differ
diff --git a/animateditems/15491.gif b/animateditems/15491.gif
new file mode 100644
index 00000000..6c107128
Binary files /dev/null and b/animateditems/15491.gif differ
diff --git a/animateditems/15491.png b/animateditems/15491.png
new file mode 100644
index 00000000..d0348de0
Binary files /dev/null and b/animateditems/15491.png differ
diff --git a/animateditems/15492.gif b/animateditems/15492.gif
new file mode 100644
index 00000000..cc5e89d1
Binary files /dev/null and b/animateditems/15492.gif differ
diff --git a/animateditems/15492.png b/animateditems/15492.png
new file mode 100644
index 00000000..4fa2867c
Binary files /dev/null and b/animateditems/15492.png differ
diff --git a/animateditems/15515.gif b/animateditems/15515.gif
new file mode 100644
index 00000000..9334a3d6
Binary files /dev/null and b/animateditems/15515.gif differ
diff --git a/animateditems/15515.png b/animateditems/15515.png
new file mode 100644
index 00000000..954bc419
Binary files /dev/null and b/animateditems/15515.png differ
diff --git a/animateditems/15545.gif b/animateditems/15545.gif
new file mode 100644
index 00000000..e0e777e7
Binary files /dev/null and b/animateditems/15545.gif differ
diff --git a/animateditems/15545.png b/animateditems/15545.png
new file mode 100644
index 00000000..38ef2ee1
Binary files /dev/null and b/animateditems/15545.png differ
diff --git a/animateditems/15546.gif b/animateditems/15546.gif
new file mode 100644
index 00000000..f1ea1928
Binary files /dev/null and b/animateditems/15546.gif differ
diff --git a/animateditems/15546.png b/animateditems/15546.png
new file mode 100644
index 00000000..98b5bba5
Binary files /dev/null and b/animateditems/15546.png differ
diff --git a/animateditems/15556.gif b/animateditems/15556.gif
new file mode 100644
index 00000000..9ae43c65
Binary files /dev/null and b/animateditems/15556.gif differ
diff --git a/animateditems/15556.png b/animateditems/15556.png
new file mode 100644
index 00000000..fc329642
Binary files /dev/null and b/animateditems/15556.png differ
diff --git a/animateditems/15559.gif b/animateditems/15559.gif
new file mode 100644
index 00000000..8ecfed02
Binary files /dev/null and b/animateditems/15559.gif differ
diff --git a/animateditems/15559.png b/animateditems/15559.png
new file mode 100644
index 00000000..fb6d796e
Binary files /dev/null and b/animateditems/15559.png differ
diff --git a/animateditems/15565.gif b/animateditems/15565.gif
new file mode 100644
index 00000000..ed142e4a
Binary files /dev/null and b/animateditems/15565.gif differ
diff --git a/animateditems/15565.png b/animateditems/15565.png
new file mode 100644
index 00000000..82428747
Binary files /dev/null and b/animateditems/15565.png differ
diff --git a/animateditems/15568.gif b/animateditems/15568.gif
new file mode 100644
index 00000000..60419127
Binary files /dev/null and b/animateditems/15568.gif differ
diff --git a/animateditems/15568.png b/animateditems/15568.png
new file mode 100644
index 00000000..fa4eecee
Binary files /dev/null and b/animateditems/15568.png differ
diff --git a/animateditems/15572.gif b/animateditems/15572.gif
new file mode 100644
index 00000000..36676c31
Binary files /dev/null and b/animateditems/15572.gif differ
diff --git a/animateditems/15572.png b/animateditems/15572.png
new file mode 100644
index 00000000..de0e10e9
Binary files /dev/null and b/animateditems/15572.png differ
diff --git a/animateditems/15573.gif b/animateditems/15573.gif
new file mode 100644
index 00000000..ed38e0e9
Binary files /dev/null and b/animateditems/15573.gif differ
diff --git a/animateditems/15573.png b/animateditems/15573.png
new file mode 100644
index 00000000..47cfd4b9
Binary files /dev/null and b/animateditems/15573.png differ
diff --git a/animateditems/15574.gif b/animateditems/15574.gif
new file mode 100644
index 00000000..3046196d
Binary files /dev/null and b/animateditems/15574.gif differ
diff --git a/animateditems/15574.png b/animateditems/15574.png
new file mode 100644
index 00000000..814b6b78
Binary files /dev/null and b/animateditems/15574.png differ
diff --git a/animateditems/15575.gif b/animateditems/15575.gif
new file mode 100644
index 00000000..0169f32f
Binary files /dev/null and b/animateditems/15575.gif differ
diff --git a/animateditems/15575.png b/animateditems/15575.png
new file mode 100644
index 00000000..da34518b
Binary files /dev/null and b/animateditems/15575.png differ
diff --git a/animateditems/15576.gif b/animateditems/15576.gif
new file mode 100644
index 00000000..3f20d3b8
Binary files /dev/null and b/animateditems/15576.gif differ
diff --git a/animateditems/15576.png b/animateditems/15576.png
new file mode 100644
index 00000000..5a145b65
Binary files /dev/null and b/animateditems/15576.png differ
diff --git a/animateditems/15619.gif b/animateditems/15619.gif
new file mode 100644
index 00000000..83157881
Binary files /dev/null and b/animateditems/15619.gif differ
diff --git a/animateditems/15619.png b/animateditems/15619.png
new file mode 100644
index 00000000..3bcca37a
Binary files /dev/null and b/animateditems/15619.png differ
diff --git a/animateditems/15620.gif b/animateditems/15620.gif
new file mode 100644
index 00000000..d75c0b8e
Binary files /dev/null and b/animateditems/15620.gif differ
diff --git a/animateditems/15620.png b/animateditems/15620.png
new file mode 100644
index 00000000..881cf48e
Binary files /dev/null and b/animateditems/15620.png differ
diff --git a/animateditems/15621.gif b/animateditems/15621.gif
new file mode 100644
index 00000000..e34b119c
Binary files /dev/null and b/animateditems/15621.gif differ
diff --git a/animateditems/15621.png b/animateditems/15621.png
new file mode 100644
index 00000000..b376f72d
Binary files /dev/null and b/animateditems/15621.png differ
diff --git a/animateditems/15622.gif b/animateditems/15622.gif
new file mode 100644
index 00000000..e6fafd64
Binary files /dev/null and b/animateditems/15622.gif differ
diff --git a/animateditems/15622.png b/animateditems/15622.png
new file mode 100644
index 00000000..5ee2c05a
Binary files /dev/null and b/animateditems/15622.png differ
diff --git a/animateditems/15638.gif b/animateditems/15638.gif
new file mode 100644
index 00000000..579fadb8
Binary files /dev/null and b/animateditems/15638.gif differ
diff --git a/animateditems/15638.png b/animateditems/15638.png
new file mode 100644
index 00000000..56dee36d
Binary files /dev/null and b/animateditems/15638.png differ
diff --git a/animateditems/15639.gif b/animateditems/15639.gif
new file mode 100644
index 00000000..f8aeaa92
Binary files /dev/null and b/animateditems/15639.gif differ
diff --git a/animateditems/15639.png b/animateditems/15639.png
new file mode 100644
index 00000000..9c0d97ad
Binary files /dev/null and b/animateditems/15639.png differ
diff --git a/animateditems/15643.gif b/animateditems/15643.gif
new file mode 100644
index 00000000..fadb9633
Binary files /dev/null and b/animateditems/15643.gif differ
diff --git a/animateditems/15643.png b/animateditems/15643.png
new file mode 100644
index 00000000..c383cfb8
Binary files /dev/null and b/animateditems/15643.png differ
diff --git a/animateditems/15644.gif b/animateditems/15644.gif
new file mode 100644
index 00000000..d15b6b83
Binary files /dev/null and b/animateditems/15644.gif differ
diff --git a/animateditems/15644.png b/animateditems/15644.png
new file mode 100644
index 00000000..9a0b231f
Binary files /dev/null and b/animateditems/15644.png differ
diff --git a/animateditems/15645.gif b/animateditems/15645.gif
new file mode 100644
index 00000000..d4da8c72
Binary files /dev/null and b/animateditems/15645.gif differ
diff --git a/animateditems/15645.png b/animateditems/15645.png
new file mode 100644
index 00000000..872d27c0
Binary files /dev/null and b/animateditems/15645.png differ
diff --git a/animateditems/15646.gif b/animateditems/15646.gif
new file mode 100644
index 00000000..ab92ce1e
Binary files /dev/null and b/animateditems/15646.gif differ
diff --git a/animateditems/15646.png b/animateditems/15646.png
new file mode 100644
index 00000000..f6ddd487
Binary files /dev/null and b/animateditems/15646.png differ
diff --git a/animateditems/15647.gif b/animateditems/15647.gif
new file mode 100644
index 00000000..4c59a6e3
Binary files /dev/null and b/animateditems/15647.gif differ
diff --git a/animateditems/15647.png b/animateditems/15647.png
new file mode 100644
index 00000000..9ae55160
Binary files /dev/null and b/animateditems/15647.png differ
diff --git a/animateditems/15648.gif b/animateditems/15648.gif
new file mode 100644
index 00000000..8a875b0c
Binary files /dev/null and b/animateditems/15648.gif differ
diff --git a/animateditems/15648.png b/animateditems/15648.png
new file mode 100644
index 00000000..41731295
Binary files /dev/null and b/animateditems/15648.png differ
diff --git a/animateditems/15649.gif b/animateditems/15649.gif
new file mode 100644
index 00000000..22a24b4c
Binary files /dev/null and b/animateditems/15649.gif differ
diff --git a/animateditems/15649.png b/animateditems/15649.png
new file mode 100644
index 00000000..0f0d22b8
Binary files /dev/null and b/animateditems/15649.png differ
diff --git a/animateditems/15650.gif b/animateditems/15650.gif
new file mode 100644
index 00000000..c54feb2f
Binary files /dev/null and b/animateditems/15650.gif differ
diff --git a/animateditems/15650.png b/animateditems/15650.png
new file mode 100644
index 00000000..7e5edef2
Binary files /dev/null and b/animateditems/15650.png differ
diff --git a/animateditems/15651.gif b/animateditems/15651.gif
new file mode 100644
index 00000000..3b27efb2
Binary files /dev/null and b/animateditems/15651.gif differ
diff --git a/animateditems/15651.png b/animateditems/15651.png
new file mode 100644
index 00000000..a6987884
Binary files /dev/null and b/animateditems/15651.png differ
diff --git a/animateditems/16003.gif b/animateditems/16003.gif
new file mode 100644
index 00000000..27abb587
Binary files /dev/null and b/animateditems/16003.gif differ
diff --git a/animateditems/16003.png b/animateditems/16003.png
new file mode 100644
index 00000000..8839e020
Binary files /dev/null and b/animateditems/16003.png differ
diff --git a/animateditems/16004.gif b/animateditems/16004.gif
new file mode 100644
index 00000000..74161f2b
Binary files /dev/null and b/animateditems/16004.gif differ
diff --git a/animateditems/16004.png b/animateditems/16004.png
new file mode 100644
index 00000000..ea04cdeb
Binary files /dev/null and b/animateditems/16004.png differ
diff --git a/animateditems/16005.gif b/animateditems/16005.gif
new file mode 100644
index 00000000..74161f2b
Binary files /dev/null and b/animateditems/16005.gif differ
diff --git a/animateditems/16005.png b/animateditems/16005.png
new file mode 100644
index 00000000..ea04cdeb
Binary files /dev/null and b/animateditems/16005.png differ
diff --git a/animateditems/16006.gif b/animateditems/16006.gif
new file mode 100644
index 00000000..74161f2b
Binary files /dev/null and b/animateditems/16006.gif differ
diff --git a/animateditems/16006.png b/animateditems/16006.png
new file mode 100644
index 00000000..ea04cdeb
Binary files /dev/null and b/animateditems/16006.png differ
diff --git a/animateditems/16007.gif b/animateditems/16007.gif
new file mode 100644
index 00000000..3b4da94f
Binary files /dev/null and b/animateditems/16007.gif differ
diff --git a/animateditems/16007.png b/animateditems/16007.png
new file mode 100644
index 00000000..99ab2a4d
Binary files /dev/null and b/animateditems/16007.png differ
diff --git a/animateditems/16008.gif b/animateditems/16008.gif
new file mode 100644
index 00000000..dd278814
Binary files /dev/null and b/animateditems/16008.gif differ
diff --git a/animateditems/16008.png b/animateditems/16008.png
new file mode 100644
index 00000000..89c8cf5d
Binary files /dev/null and b/animateditems/16008.png differ
diff --git a/animateditems/16009.gif b/animateditems/16009.gif
new file mode 100644
index 00000000..dd278814
Binary files /dev/null and b/animateditems/16009.gif differ
diff --git a/animateditems/16009.png b/animateditems/16009.png
new file mode 100644
index 00000000..89c8cf5d
Binary files /dev/null and b/animateditems/16009.png differ
diff --git a/animateditems/16010.gif b/animateditems/16010.gif
new file mode 100644
index 00000000..dd278814
Binary files /dev/null and b/animateditems/16010.gif differ
diff --git a/animateditems/16010.png b/animateditems/16010.png
new file mode 100644
index 00000000..89c8cf5d
Binary files /dev/null and b/animateditems/16010.png differ
diff --git a/animateditems/16011.gif b/animateditems/16011.gif
new file mode 100644
index 00000000..dd278814
Binary files /dev/null and b/animateditems/16011.gif differ
diff --git a/animateditems/16011.png b/animateditems/16011.png
new file mode 100644
index 00000000..89c8cf5d
Binary files /dev/null and b/animateditems/16011.png differ
diff --git a/animateditems/16012.gif b/animateditems/16012.gif
new file mode 100644
index 00000000..dd278814
Binary files /dev/null and b/animateditems/16012.gif differ
diff --git a/animateditems/16012.png b/animateditems/16012.png
new file mode 100644
index 00000000..89c8cf5d
Binary files /dev/null and b/animateditems/16012.png differ
diff --git a/animateditems/16013.gif b/animateditems/16013.gif
new file mode 100644
index 00000000..dd278814
Binary files /dev/null and b/animateditems/16013.gif differ
diff --git a/animateditems/16013.png b/animateditems/16013.png
new file mode 100644
index 00000000..89c8cf5d
Binary files /dev/null and b/animateditems/16013.png differ
diff --git a/animateditems/16014.gif b/animateditems/16014.gif
new file mode 100644
index 00000000..e9bcd124
Binary files /dev/null and b/animateditems/16014.gif differ
diff --git a/animateditems/16014.png b/animateditems/16014.png
new file mode 100644
index 00000000..5fe199e0
Binary files /dev/null and b/animateditems/16014.png differ
diff --git a/animateditems/16015.gif b/animateditems/16015.gif
new file mode 100644
index 00000000..ebfeebce
Binary files /dev/null and b/animateditems/16015.gif differ
diff --git a/animateditems/16015.png b/animateditems/16015.png
new file mode 100644
index 00000000..7ca8739a
Binary files /dev/null and b/animateditems/16015.png differ
diff --git a/animateditems/16016.gif b/animateditems/16016.gif
new file mode 100644
index 00000000..5b6477d6
Binary files /dev/null and b/animateditems/16016.gif differ
diff --git a/animateditems/16016.png b/animateditems/16016.png
new file mode 100644
index 00000000..7023c6de
Binary files /dev/null and b/animateditems/16016.png differ
diff --git a/animateditems/16017.gif b/animateditems/16017.gif
new file mode 100644
index 00000000..b352186f
Binary files /dev/null and b/animateditems/16017.gif differ
diff --git a/animateditems/16017.png b/animateditems/16017.png
new file mode 100644
index 00000000..549372a8
Binary files /dev/null and b/animateditems/16017.png differ
diff --git a/animateditems/16018.gif b/animateditems/16018.gif
new file mode 100644
index 00000000..c617b6a7
Binary files /dev/null and b/animateditems/16018.gif differ
diff --git a/animateditems/16018.png b/animateditems/16018.png
new file mode 100644
index 00000000..93d1fa02
Binary files /dev/null and b/animateditems/16018.png differ
diff --git a/animateditems/16019.gif b/animateditems/16019.gif
new file mode 100644
index 00000000..7fa74c66
Binary files /dev/null and b/animateditems/16019.gif differ
diff --git a/animateditems/16019.png b/animateditems/16019.png
new file mode 100644
index 00000000..7a7a743f
Binary files /dev/null and b/animateditems/16019.png differ
diff --git a/animateditems/16020.gif b/animateditems/16020.gif
new file mode 100644
index 00000000..7c2fcb45
Binary files /dev/null and b/animateditems/16020.gif differ
diff --git a/animateditems/16020.png b/animateditems/16020.png
new file mode 100644
index 00000000..1e3f2ba1
Binary files /dev/null and b/animateditems/16020.png differ
diff --git a/animateditems/16021.gif b/animateditems/16021.gif
new file mode 100644
index 00000000..d7fb082c
Binary files /dev/null and b/animateditems/16021.gif differ
diff --git a/animateditems/16021.png b/animateditems/16021.png
new file mode 100644
index 00000000..814ac8c1
Binary files /dev/null and b/animateditems/16021.png differ
diff --git a/animateditems/16022.gif b/animateditems/16022.gif
new file mode 100644
index 00000000..07c0f223
Binary files /dev/null and b/animateditems/16022.gif differ
diff --git a/animateditems/16022.png b/animateditems/16022.png
new file mode 100644
index 00000000..206fe8d2
Binary files /dev/null and b/animateditems/16022.png differ
diff --git a/animateditems/16023.gif b/animateditems/16023.gif
new file mode 100644
index 00000000..b9e448a9
Binary files /dev/null and b/animateditems/16023.gif differ
diff --git a/animateditems/16023.png b/animateditems/16023.png
new file mode 100644
index 00000000..c0c452be
Binary files /dev/null and b/animateditems/16023.png differ
diff --git a/animateditems/16024.gif b/animateditems/16024.gif
new file mode 100644
index 00000000..00910881
Binary files /dev/null and b/animateditems/16024.gif differ
diff --git a/animateditems/16024.png b/animateditems/16024.png
new file mode 100644
index 00000000..2e04a0ec
Binary files /dev/null and b/animateditems/16024.png differ
diff --git a/animateditems/16025.gif b/animateditems/16025.gif
new file mode 100644
index 00000000..351ebea1
Binary files /dev/null and b/animateditems/16025.gif differ
diff --git a/animateditems/16025.png b/animateditems/16025.png
new file mode 100644
index 00000000..1657354d
Binary files /dev/null and b/animateditems/16025.png differ
diff --git a/animateditems/16026.gif b/animateditems/16026.gif
new file mode 100644
index 00000000..55414f9f
Binary files /dev/null and b/animateditems/16026.gif differ
diff --git a/animateditems/16026.png b/animateditems/16026.png
new file mode 100644
index 00000000..32434d6e
Binary files /dev/null and b/animateditems/16026.png differ
diff --git a/animateditems/16027.gif b/animateditems/16027.gif
new file mode 100644
index 00000000..fa0a6371
Binary files /dev/null and b/animateditems/16027.gif differ
diff --git a/animateditems/16027.png b/animateditems/16027.png
new file mode 100644
index 00000000..91d07dad
Binary files /dev/null and b/animateditems/16027.png differ
diff --git a/animateditems/16028.gif b/animateditems/16028.gif
new file mode 100644
index 00000000..2849e49b
Binary files /dev/null and b/animateditems/16028.gif differ
diff --git a/animateditems/16028.png b/animateditems/16028.png
new file mode 100644
index 00000000..81c77167
Binary files /dev/null and b/animateditems/16028.png differ
diff --git a/animateditems/16029.gif b/animateditems/16029.gif
new file mode 100644
index 00000000..9d0b1302
Binary files /dev/null and b/animateditems/16029.gif differ
diff --git a/animateditems/16029.png b/animateditems/16029.png
new file mode 100644
index 00000000..c961c8fb
Binary files /dev/null and b/animateditems/16029.png differ
diff --git a/animateditems/16030.gif b/animateditems/16030.gif
new file mode 100644
index 00000000..ac94c241
Binary files /dev/null and b/animateditems/16030.gif differ
diff --git a/animateditems/16030.png b/animateditems/16030.png
new file mode 100644
index 00000000..ff600ee8
Binary files /dev/null and b/animateditems/16030.png differ
diff --git a/animateditems/16031.gif b/animateditems/16031.gif
new file mode 100644
index 00000000..7b1af42e
Binary files /dev/null and b/animateditems/16031.gif differ
diff --git a/animateditems/16031.png b/animateditems/16031.png
new file mode 100644
index 00000000..5944857a
Binary files /dev/null and b/animateditems/16031.png differ
diff --git a/animateditems/16075.gif b/animateditems/16075.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/16075.gif differ
diff --git a/animateditems/16075.png b/animateditems/16075.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/16075.png differ
diff --git a/animateditems/16094.gif b/animateditems/16094.gif
new file mode 100644
index 00000000..ae27c5b2
Binary files /dev/null and b/animateditems/16094.gif differ
diff --git a/animateditems/16094.png b/animateditems/16094.png
new file mode 100644
index 00000000..edc3f4a2
Binary files /dev/null and b/animateditems/16094.png differ
diff --git a/animateditems/16096.gif b/animateditems/16096.gif
new file mode 100644
index 00000000..8bf166f7
Binary files /dev/null and b/animateditems/16096.gif differ
diff --git a/animateditems/16096.png b/animateditems/16096.png
new file mode 100644
index 00000000..67531065
Binary files /dev/null and b/animateditems/16096.png differ
diff --git a/animateditems/16099.gif b/animateditems/16099.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/16099.gif differ
diff --git a/animateditems/16099.png b/animateditems/16099.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/16099.png differ
diff --git a/animateditems/16101.gif b/animateditems/16101.gif
new file mode 100644
index 00000000..d712f75e
Binary files /dev/null and b/animateditems/16101.gif differ
diff --git a/animateditems/16101.png b/animateditems/16101.png
new file mode 100644
index 00000000..36447420
Binary files /dev/null and b/animateditems/16101.png differ
diff --git a/animateditems/16102.gif b/animateditems/16102.gif
new file mode 100644
index 00000000..2c8de33c
Binary files /dev/null and b/animateditems/16102.gif differ
diff --git a/animateditems/16102.png b/animateditems/16102.png
new file mode 100644
index 00000000..afe355d7
Binary files /dev/null and b/animateditems/16102.png differ
diff --git a/animateditems/16103.gif b/animateditems/16103.gif
new file mode 100644
index 00000000..041973e9
Binary files /dev/null and b/animateditems/16103.gif differ
diff --git a/animateditems/16103.png b/animateditems/16103.png
new file mode 100644
index 00000000..816b3a18
Binary files /dev/null and b/animateditems/16103.png differ
diff --git a/animateditems/16104.gif b/animateditems/16104.gif
new file mode 100644
index 00000000..5ef12376
Binary files /dev/null and b/animateditems/16104.gif differ
diff --git a/animateditems/16104.png b/animateditems/16104.png
new file mode 100644
index 00000000..5d937d11
Binary files /dev/null and b/animateditems/16104.png differ
diff --git a/animateditems/16105.gif b/animateditems/16105.gif
new file mode 100644
index 00000000..5336bb4a
Binary files /dev/null and b/animateditems/16105.gif differ
diff --git a/animateditems/16105.png b/animateditems/16105.png
new file mode 100644
index 00000000..d30303b8
Binary files /dev/null and b/animateditems/16105.png differ
diff --git a/animateditems/16106.gif b/animateditems/16106.gif
new file mode 100644
index 00000000..5336bb4a
Binary files /dev/null and b/animateditems/16106.gif differ
diff --git a/animateditems/16106.png b/animateditems/16106.png
new file mode 100644
index 00000000..d30303b8
Binary files /dev/null and b/animateditems/16106.png differ
diff --git a/animateditems/16107.gif b/animateditems/16107.gif
new file mode 100644
index 00000000..738a3bf4
Binary files /dev/null and b/animateditems/16107.gif differ
diff --git a/animateditems/16107.png b/animateditems/16107.png
new file mode 100644
index 00000000..0bfe7fd5
Binary files /dev/null and b/animateditems/16107.png differ
diff --git a/animateditems/16108.gif b/animateditems/16108.gif
new file mode 100644
index 00000000..738a3bf4
Binary files /dev/null and b/animateditems/16108.gif differ
diff --git a/animateditems/16108.png b/animateditems/16108.png
new file mode 100644
index 00000000..0bfe7fd5
Binary files /dev/null and b/animateditems/16108.png differ
diff --git a/animateditems/16109.gif b/animateditems/16109.gif
new file mode 100644
index 00000000..1d3742bb
Binary files /dev/null and b/animateditems/16109.gif differ
diff --git a/animateditems/16109.png b/animateditems/16109.png
new file mode 100644
index 00000000..fc91afc0
Binary files /dev/null and b/animateditems/16109.png differ
diff --git a/animateditems/16110.gif b/animateditems/16110.gif
new file mode 100644
index 00000000..1d3742bb
Binary files /dev/null and b/animateditems/16110.gif differ
diff --git a/animateditems/16110.png b/animateditems/16110.png
new file mode 100644
index 00000000..fc91afc0
Binary files /dev/null and b/animateditems/16110.png differ
diff --git a/animateditems/16111.gif b/animateditems/16111.gif
new file mode 100644
index 00000000..ed773cc0
Binary files /dev/null and b/animateditems/16111.gif differ
diff --git a/animateditems/16111.png b/animateditems/16111.png
new file mode 100644
index 00000000..998d5667
Binary files /dev/null and b/animateditems/16111.png differ
diff --git a/animateditems/16112.gif b/animateditems/16112.gif
new file mode 100644
index 00000000..5e472566
Binary files /dev/null and b/animateditems/16112.gif differ
diff --git a/animateditems/16112.png b/animateditems/16112.png
new file mode 100644
index 00000000..559ab91e
Binary files /dev/null and b/animateditems/16112.png differ
diff --git a/animateditems/16619.gif b/animateditems/16619.gif
new file mode 100644
index 00000000..c1872bd9
Binary files /dev/null and b/animateditems/16619.gif differ
diff --git a/animateditems/16619.png b/animateditems/16619.png
new file mode 100644
index 00000000..8a4a0802
Binary files /dev/null and b/animateditems/16619.png differ
diff --git a/animateditems/16620.gif b/animateditems/16620.gif
new file mode 100644
index 00000000..0eb90c6c
Binary files /dev/null and b/animateditems/16620.gif differ
diff --git a/animateditems/16620.png b/animateditems/16620.png
new file mode 100644
index 00000000..83040bed
Binary files /dev/null and b/animateditems/16620.png differ
diff --git a/animateditems/16621.gif b/animateditems/16621.gif
new file mode 100644
index 00000000..0eb90c6c
Binary files /dev/null and b/animateditems/16621.gif differ
diff --git a/animateditems/16621.png b/animateditems/16621.png
new file mode 100644
index 00000000..83040bed
Binary files /dev/null and b/animateditems/16621.png differ
diff --git a/animateditems/1678.gif b/animateditems/1678.gif
new file mode 100644
index 00000000..03c9b050
Binary files /dev/null and b/animateditems/1678.gif differ
diff --git a/animateditems/1678.png b/animateditems/1678.png
new file mode 100644
index 00000000..1109a17c
Binary files /dev/null and b/animateditems/1678.png differ
diff --git a/animateditems/1679.gif b/animateditems/1679.gif
new file mode 100644
index 00000000..a006bebd
Binary files /dev/null and b/animateditems/1679.gif differ
diff --git a/animateditems/1679.png b/animateditems/1679.png
new file mode 100644
index 00000000..90af90fd
Binary files /dev/null and b/animateditems/1679.png differ
diff --git a/animateditems/1680.gif b/animateditems/1680.gif
new file mode 100644
index 00000000..7241ff5c
Binary files /dev/null and b/animateditems/1680.gif differ
diff --git a/animateditems/1680.png b/animateditems/1680.png
new file mode 100644
index 00000000..2b85d136
Binary files /dev/null and b/animateditems/1680.png differ
diff --git a/animateditems/1681.gif b/animateditems/1681.gif
new file mode 100644
index 00000000..b115a6c5
Binary files /dev/null and b/animateditems/1681.gif differ
diff --git a/animateditems/1681.png b/animateditems/1681.png
new file mode 100644
index 00000000..adefa850
Binary files /dev/null and b/animateditems/1681.png differ
diff --git a/animateditems/1682.gif b/animateditems/1682.gif
new file mode 100644
index 00000000..ec69bbf1
Binary files /dev/null and b/animateditems/1682.gif differ
diff --git a/animateditems/1682.png b/animateditems/1682.png
new file mode 100644
index 00000000..dac30481
Binary files /dev/null and b/animateditems/1682.png differ
diff --git a/animateditems/1683.gif b/animateditems/1683.gif
new file mode 100644
index 00000000..44f211c3
Binary files /dev/null and b/animateditems/1683.gif differ
diff --git a/animateditems/1683.png b/animateditems/1683.png
new file mode 100644
index 00000000..3c1eb865
Binary files /dev/null and b/animateditems/1683.png differ
diff --git a/animateditems/1684.gif b/animateditems/1684.gif
new file mode 100644
index 00000000..bd4828f1
Binary files /dev/null and b/animateditems/1684.gif differ
diff --git a/animateditems/1684.png b/animateditems/1684.png
new file mode 100644
index 00000000..fe28b817
Binary files /dev/null and b/animateditems/1684.png differ
diff --git a/animateditems/1685.gif b/animateditems/1685.gif
new file mode 100644
index 00000000..0e463472
Binary files /dev/null and b/animateditems/1685.gif differ
diff --git a/animateditems/1685.png b/animateditems/1685.png
new file mode 100644
index 00000000..9d6fe756
Binary files /dev/null and b/animateditems/1685.png differ
diff --git a/animateditems/1686.gif b/animateditems/1686.gif
new file mode 100644
index 00000000..575030d8
Binary files /dev/null and b/animateditems/1686.gif differ
diff --git a/animateditems/1686.png b/animateditems/1686.png
new file mode 100644
index 00000000..344b39bd
Binary files /dev/null and b/animateditems/1686.png differ
diff --git a/animateditems/1687.gif b/animateditems/1687.gif
new file mode 100644
index 00000000..266b662b
Binary files /dev/null and b/animateditems/1687.gif differ
diff --git a/animateditems/1687.png b/animateditems/1687.png
new file mode 100644
index 00000000..e1e32ed2
Binary files /dev/null and b/animateditems/1687.png differ
diff --git a/animateditems/1688.gif b/animateditems/1688.gif
new file mode 100644
index 00000000..79b5e8f1
Binary files /dev/null and b/animateditems/1688.gif differ
diff --git a/animateditems/1688.png b/animateditems/1688.png
new file mode 100644
index 00000000..d4dd991f
Binary files /dev/null and b/animateditems/1688.png differ
diff --git a/animateditems/1689.gif b/animateditems/1689.gif
new file mode 100644
index 00000000..0858f3ce
Binary files /dev/null and b/animateditems/1689.gif differ
diff --git a/animateditems/1689.png b/animateditems/1689.png
new file mode 100644
index 00000000..465eed54
Binary files /dev/null and b/animateditems/1689.png differ
diff --git a/animateditems/1690.gif b/animateditems/1690.gif
new file mode 100644
index 00000000..3642cc00
Binary files /dev/null and b/animateditems/1690.gif differ
diff --git a/animateditems/1690.png b/animateditems/1690.png
new file mode 100644
index 00000000..72a36303
Binary files /dev/null and b/animateditems/1690.png differ
diff --git a/animateditems/1691.gif b/animateditems/1691.gif
new file mode 100644
index 00000000..04acd7cb
Binary files /dev/null and b/animateditems/1691.gif differ
diff --git a/animateditems/1691.png b/animateditems/1691.png
new file mode 100644
index 00000000..4b99a33b
Binary files /dev/null and b/animateditems/1691.png differ
diff --git a/animateditems/1692.gif b/animateditems/1692.gif
new file mode 100644
index 00000000..42341610
Binary files /dev/null and b/animateditems/1692.gif differ
diff --git a/animateditems/1692.png b/animateditems/1692.png
new file mode 100644
index 00000000..79800d28
Binary files /dev/null and b/animateditems/1692.png differ
diff --git a/animateditems/1693.gif b/animateditems/1693.gif
new file mode 100644
index 00000000..da5d4739
Binary files /dev/null and b/animateditems/1693.gif differ
diff --git a/animateditems/1693.png b/animateditems/1693.png
new file mode 100644
index 00000000..171f0803
Binary files /dev/null and b/animateditems/1693.png differ
diff --git a/animateditems/1738.gif b/animateditems/1738.gif
new file mode 100644
index 00000000..707a7e9a
Binary files /dev/null and b/animateditems/1738.gif differ
diff --git a/animateditems/1738.png b/animateditems/1738.png
new file mode 100644
index 00000000..2358bc72
Binary files /dev/null and b/animateditems/1738.png differ
diff --git a/animateditems/1739.gif b/animateditems/1739.gif
new file mode 100644
index 00000000..60419127
Binary files /dev/null and b/animateditems/1739.gif differ
diff --git a/animateditems/1739.png b/animateditems/1739.png
new file mode 100644
index 00000000..fa4eecee
Binary files /dev/null and b/animateditems/1739.png differ
diff --git a/animateditems/1740.gif b/animateditems/1740.gif
new file mode 100644
index 00000000..f7ce47fb
Binary files /dev/null and b/animateditems/1740.gif differ
diff --git a/animateditems/1740.png b/animateditems/1740.png
new file mode 100644
index 00000000..39a7a375
Binary files /dev/null and b/animateditems/1740.png differ
diff --git a/animateditems/1741.gif b/animateditems/1741.gif
new file mode 100644
index 00000000..5f5dc4dd
Binary files /dev/null and b/animateditems/1741.gif differ
diff --git a/animateditems/1741.png b/animateditems/1741.png
new file mode 100644
index 00000000..3266c3d5
Binary files /dev/null and b/animateditems/1741.png differ
diff --git a/animateditems/1746.gif b/animateditems/1746.gif
new file mode 100644
index 00000000..408a835f
Binary files /dev/null and b/animateditems/1746.gif differ
diff --git a/animateditems/1746.png b/animateditems/1746.png
new file mode 100644
index 00000000..4d3f2c76
Binary files /dev/null and b/animateditems/1746.png differ
diff --git a/animateditems/1747.gif b/animateditems/1747.gif
new file mode 100644
index 00000000..ed6b9362
Binary files /dev/null and b/animateditems/1747.gif differ
diff --git a/animateditems/1747.png b/animateditems/1747.png
new file mode 100644
index 00000000..597e8c58
Binary files /dev/null and b/animateditems/1747.png differ
diff --git a/animateditems/1748.gif b/animateditems/1748.gif
new file mode 100644
index 00000000..c4baa37f
Binary files /dev/null and b/animateditems/1748.gif differ
diff --git a/animateditems/1748.png b/animateditems/1748.png
new file mode 100644
index 00000000..1549cb3a
Binary files /dev/null and b/animateditems/1748.png differ
diff --git a/animateditems/1749.gif b/animateditems/1749.gif
new file mode 100644
index 00000000..322b05d7
Binary files /dev/null and b/animateditems/1749.gif differ
diff --git a/animateditems/1749.png b/animateditems/1749.png
new file mode 100644
index 00000000..018565ab
Binary files /dev/null and b/animateditems/1749.png differ
diff --git a/animateditems/18213.gif b/animateditems/18213.gif
new file mode 100644
index 00000000..6206cee7
Binary files /dev/null and b/animateditems/18213.gif differ
diff --git a/animateditems/18213.png b/animateditems/18213.png
new file mode 100644
index 00000000..95ca8992
Binary files /dev/null and b/animateditems/18213.png differ
diff --git a/animateditems/18214.gif b/animateditems/18214.gif
new file mode 100644
index 00000000..5cd10386
Binary files /dev/null and b/animateditems/18214.gif differ
diff --git a/animateditems/18214.png b/animateditems/18214.png
new file mode 100644
index 00000000..737240ad
Binary files /dev/null and b/animateditems/18214.png differ
diff --git a/animateditems/18215.gif b/animateditems/18215.gif
new file mode 100644
index 00000000..67b8d150
Binary files /dev/null and b/animateditems/18215.gif differ
diff --git a/animateditems/18215.png b/animateditems/18215.png
new file mode 100644
index 00000000..0d6c51cc
Binary files /dev/null and b/animateditems/18215.png differ
diff --git a/animateditems/18216.gif b/animateditems/18216.gif
new file mode 100644
index 00000000..44bded4b
Binary files /dev/null and b/animateditems/18216.gif differ
diff --git a/animateditems/18216.png b/animateditems/18216.png
new file mode 100644
index 00000000..9a846c03
Binary files /dev/null and b/animateditems/18216.png differ
diff --git a/animateditems/18219.gif b/animateditems/18219.gif
new file mode 100644
index 00000000..2ce346a9
Binary files /dev/null and b/animateditems/18219.gif differ
diff --git a/animateditems/18219.png b/animateditems/18219.png
new file mode 100644
index 00000000..bc3dbde4
Binary files /dev/null and b/animateditems/18219.png differ
diff --git a/animateditems/18304.gif b/animateditems/18304.gif
new file mode 100644
index 00000000..e455e302
Binary files /dev/null and b/animateditems/18304.gif differ
diff --git a/animateditems/18304.png b/animateditems/18304.png
new file mode 100644
index 00000000..8baf3511
Binary files /dev/null and b/animateditems/18304.png differ
diff --git a/animateditems/18305.gif b/animateditems/18305.gif
new file mode 100644
index 00000000..46af737f
Binary files /dev/null and b/animateditems/18305.gif differ
diff --git a/animateditems/18305.png b/animateditems/18305.png
new file mode 100644
index 00000000..7566316d
Binary files /dev/null and b/animateditems/18305.png differ
diff --git a/animateditems/18306.gif b/animateditems/18306.gif
new file mode 100644
index 00000000..f6f4be95
Binary files /dev/null and b/animateditems/18306.gif differ
diff --git a/animateditems/18306.png b/animateditems/18306.png
new file mode 100644
index 00000000..07bfbacc
Binary files /dev/null and b/animateditems/18306.png differ
diff --git a/animateditems/18312.gif b/animateditems/18312.gif
new file mode 100644
index 00000000..9788f65b
Binary files /dev/null and b/animateditems/18312.gif differ
diff --git a/animateditems/18312.png b/animateditems/18312.png
new file mode 100644
index 00000000..d64a53df
Binary files /dev/null and b/animateditems/18312.png differ
diff --git a/animateditems/18313.gif b/animateditems/18313.gif
new file mode 100644
index 00000000..fc16469a
Binary files /dev/null and b/animateditems/18313.gif differ
diff --git a/animateditems/18313.png b/animateditems/18313.png
new file mode 100644
index 00000000..71a36934
Binary files /dev/null and b/animateditems/18313.png differ
diff --git a/animateditems/18314.gif b/animateditems/18314.gif
new file mode 100644
index 00000000..9788f65b
Binary files /dev/null and b/animateditems/18314.gif differ
diff --git a/animateditems/18314.png b/animateditems/18314.png
new file mode 100644
index 00000000..d64a53df
Binary files /dev/null and b/animateditems/18314.png differ
diff --git a/animateditems/18315.gif b/animateditems/18315.gif
new file mode 100644
index 00000000..9788f65b
Binary files /dev/null and b/animateditems/18315.gif differ
diff --git a/animateditems/18315.png b/animateditems/18315.png
new file mode 100644
index 00000000..d64a53df
Binary files /dev/null and b/animateditems/18315.png differ
diff --git a/animateditems/18316.gif b/animateditems/18316.gif
new file mode 100644
index 00000000..9788f65b
Binary files /dev/null and b/animateditems/18316.gif differ
diff --git a/animateditems/18316.png b/animateditems/18316.png
new file mode 100644
index 00000000..d64a53df
Binary files /dev/null and b/animateditems/18316.png differ
diff --git a/animateditems/18317.gif b/animateditems/18317.gif
new file mode 100644
index 00000000..9788f65b
Binary files /dev/null and b/animateditems/18317.gif differ
diff --git a/animateditems/18317.png b/animateditems/18317.png
new file mode 100644
index 00000000..d64a53df
Binary files /dev/null and b/animateditems/18317.png differ
diff --git a/animateditems/18318.gif b/animateditems/18318.gif
new file mode 100644
index 00000000..9788f65b
Binary files /dev/null and b/animateditems/18318.gif differ
diff --git a/animateditems/18318.png b/animateditems/18318.png
new file mode 100644
index 00000000..d64a53df
Binary files /dev/null and b/animateditems/18318.png differ
diff --git a/animateditems/18319.gif b/animateditems/18319.gif
new file mode 100644
index 00000000..9788f65b
Binary files /dev/null and b/animateditems/18319.gif differ
diff --git a/animateditems/18319.png b/animateditems/18319.png
new file mode 100644
index 00000000..d64a53df
Binary files /dev/null and b/animateditems/18319.png differ
diff --git a/animateditems/18328.gif b/animateditems/18328.gif
new file mode 100644
index 00000000..abffab75
Binary files /dev/null and b/animateditems/18328.gif differ
diff --git a/animateditems/18328.png b/animateditems/18328.png
new file mode 100644
index 00000000..b629b269
Binary files /dev/null and b/animateditems/18328.png differ
diff --git a/animateditems/18329.gif b/animateditems/18329.gif
new file mode 100644
index 00000000..abffab75
Binary files /dev/null and b/animateditems/18329.gif differ
diff --git a/animateditems/18329.png b/animateditems/18329.png
new file mode 100644
index 00000000..b629b269
Binary files /dev/null and b/animateditems/18329.png differ
diff --git a/animateditems/18330.gif b/animateditems/18330.gif
new file mode 100644
index 00000000..abffab75
Binary files /dev/null and b/animateditems/18330.gif differ
diff --git a/animateditems/18330.png b/animateditems/18330.png
new file mode 100644
index 00000000..b629b269
Binary files /dev/null and b/animateditems/18330.png differ
diff --git a/animateditems/18331.gif b/animateditems/18331.gif
new file mode 100644
index 00000000..abffab75
Binary files /dev/null and b/animateditems/18331.gif differ
diff --git a/animateditems/18331.png b/animateditems/18331.png
new file mode 100644
index 00000000..b629b269
Binary files /dev/null and b/animateditems/18331.png differ
diff --git a/animateditems/18332.gif b/animateditems/18332.gif
new file mode 100644
index 00000000..abffab75
Binary files /dev/null and b/animateditems/18332.gif differ
diff --git a/animateditems/18332.png b/animateditems/18332.png
new file mode 100644
index 00000000..b629b269
Binary files /dev/null and b/animateditems/18332.png differ
diff --git a/animateditems/18337.gif b/animateditems/18337.gif
new file mode 100644
index 00000000..d9551c4b
Binary files /dev/null and b/animateditems/18337.gif differ
diff --git a/animateditems/18337.png b/animateditems/18337.png
new file mode 100644
index 00000000..905f03d3
Binary files /dev/null and b/animateditems/18337.png differ
diff --git a/animateditems/18339.gif b/animateditems/18339.gif
new file mode 100644
index 00000000..f82859ff
Binary files /dev/null and b/animateditems/18339.gif differ
diff --git a/animateditems/18339.png b/animateditems/18339.png
new file mode 100644
index 00000000..9232e1d8
Binary files /dev/null and b/animateditems/18339.png differ
diff --git a/animateditems/18343.gif b/animateditems/18343.gif
new file mode 100644
index 00000000..c546c052
Binary files /dev/null and b/animateditems/18343.gif differ
diff --git a/animateditems/18343.png b/animateditems/18343.png
new file mode 100644
index 00000000..b32a1dfb
Binary files /dev/null and b/animateditems/18343.png differ
diff --git a/animateditems/18344.gif b/animateditems/18344.gif
new file mode 100644
index 00000000..4786c86f
Binary files /dev/null and b/animateditems/18344.gif differ
diff --git a/animateditems/18344.png b/animateditems/18344.png
new file mode 100644
index 00000000..3273d597
Binary files /dev/null and b/animateditems/18344.png differ
diff --git a/animateditems/18388.gif b/animateditems/18388.gif
new file mode 100644
index 00000000..2181a876
Binary files /dev/null and b/animateditems/18388.gif differ
diff --git a/animateditems/18388.png b/animateditems/18388.png
new file mode 100644
index 00000000..001d28e7
Binary files /dev/null and b/animateditems/18388.png differ
diff --git a/animateditems/18389.gif b/animateditems/18389.gif
new file mode 100644
index 00000000..3c717bc1
Binary files /dev/null and b/animateditems/18389.gif differ
diff --git a/animateditems/18389.png b/animateditems/18389.png
new file mode 100644
index 00000000..e857742d
Binary files /dev/null and b/animateditems/18389.png differ
diff --git a/animateditems/18390.gif b/animateditems/18390.gif
new file mode 100644
index 00000000..46f3d193
Binary files /dev/null and b/animateditems/18390.gif differ
diff --git a/animateditems/18390.png b/animateditems/18390.png
new file mode 100644
index 00000000..8e246dfd
Binary files /dev/null and b/animateditems/18390.png differ
diff --git a/animateditems/18391.gif b/animateditems/18391.gif
new file mode 100644
index 00000000..ef1834d8
Binary files /dev/null and b/animateditems/18391.gif differ
diff --git a/animateditems/18391.png b/animateditems/18391.png
new file mode 100644
index 00000000..86837e2f
Binary files /dev/null and b/animateditems/18391.png differ
diff --git a/animateditems/18392.gif b/animateditems/18392.gif
new file mode 100644
index 00000000..03a828dd
Binary files /dev/null and b/animateditems/18392.gif differ
diff --git a/animateditems/18392.png b/animateditems/18392.png
new file mode 100644
index 00000000..ac3e7d02
Binary files /dev/null and b/animateditems/18392.png differ
diff --git a/animateditems/18393.gif b/animateditems/18393.gif
new file mode 100644
index 00000000..2f09f72d
Binary files /dev/null and b/animateditems/18393.gif differ
diff --git a/animateditems/18393.png b/animateditems/18393.png
new file mode 100644
index 00000000..8685778d
Binary files /dev/null and b/animateditems/18393.png differ
diff --git a/animateditems/18394.gif b/animateditems/18394.gif
new file mode 100644
index 00000000..dac85ffa
Binary files /dev/null and b/animateditems/18394.gif differ
diff --git a/animateditems/18394.png b/animateditems/18394.png
new file mode 100644
index 00000000..686eb874
Binary files /dev/null and b/animateditems/18394.png differ
diff --git a/animateditems/18395.gif b/animateditems/18395.gif
new file mode 100644
index 00000000..a89bb9d5
Binary files /dev/null and b/animateditems/18395.gif differ
diff --git a/animateditems/18395.png b/animateditems/18395.png
new file mode 100644
index 00000000..509e2c7f
Binary files /dev/null and b/animateditems/18395.png differ
diff --git a/animateditems/18396.gif b/animateditems/18396.gif
new file mode 100644
index 00000000..380d96fc
Binary files /dev/null and b/animateditems/18396.gif differ
diff --git a/animateditems/18396.png b/animateditems/18396.png
new file mode 100644
index 00000000..31193040
Binary files /dev/null and b/animateditems/18396.png differ
diff --git a/animateditems/18397.gif b/animateditems/18397.gif
new file mode 100644
index 00000000..15fbacf2
Binary files /dev/null and b/animateditems/18397.gif differ
diff --git a/animateditems/18397.png b/animateditems/18397.png
new file mode 100644
index 00000000..d3143d58
Binary files /dev/null and b/animateditems/18397.png differ
diff --git a/animateditems/18398.gif b/animateditems/18398.gif
new file mode 100644
index 00000000..b435558f
Binary files /dev/null and b/animateditems/18398.gif differ
diff --git a/animateditems/18398.png b/animateditems/18398.png
new file mode 100644
index 00000000..3ff0d472
Binary files /dev/null and b/animateditems/18398.png differ
diff --git a/animateditems/18399.gif b/animateditems/18399.gif
new file mode 100644
index 00000000..160edd81
Binary files /dev/null and b/animateditems/18399.gif differ
diff --git a/animateditems/18399.png b/animateditems/18399.png
new file mode 100644
index 00000000..cde91ae9
Binary files /dev/null and b/animateditems/18399.png differ
diff --git a/animateditems/18400.gif b/animateditems/18400.gif
new file mode 100644
index 00000000..28263cd6
Binary files /dev/null and b/animateditems/18400.gif differ
diff --git a/animateditems/18400.png b/animateditems/18400.png
new file mode 100644
index 00000000..e3399a12
Binary files /dev/null and b/animateditems/18400.png differ
diff --git a/animateditems/18401.gif b/animateditems/18401.gif
new file mode 100644
index 00000000..7fad3a3f
Binary files /dev/null and b/animateditems/18401.gif differ
diff --git a/animateditems/18401.png b/animateditems/18401.png
new file mode 100644
index 00000000..3952f56d
Binary files /dev/null and b/animateditems/18401.png differ
diff --git a/animateditems/18402.gif b/animateditems/18402.gif
new file mode 100644
index 00000000..ab4499d7
Binary files /dev/null and b/animateditems/18402.gif differ
diff --git a/animateditems/18402.png b/animateditems/18402.png
new file mode 100644
index 00000000..1b396837
Binary files /dev/null and b/animateditems/18402.png differ
diff --git a/animateditems/18403.gif b/animateditems/18403.gif
new file mode 100644
index 00000000..453549b5
Binary files /dev/null and b/animateditems/18403.gif differ
diff --git a/animateditems/18403.png b/animateditems/18403.png
new file mode 100644
index 00000000..3cf22b46
Binary files /dev/null and b/animateditems/18403.png differ
diff --git a/animateditems/18404.gif b/animateditems/18404.gif
new file mode 100644
index 00000000..2ed299ec
Binary files /dev/null and b/animateditems/18404.gif differ
diff --git a/animateditems/18404.png b/animateditems/18404.png
new file mode 100644
index 00000000..51eb1b46
Binary files /dev/null and b/animateditems/18404.png differ
diff --git a/animateditems/18405.gif b/animateditems/18405.gif
new file mode 100644
index 00000000..adb96ea4
Binary files /dev/null and b/animateditems/18405.gif differ
diff --git a/animateditems/18405.png b/animateditems/18405.png
new file mode 100644
index 00000000..42096256
Binary files /dev/null and b/animateditems/18405.png differ
diff --git a/animateditems/18406.gif b/animateditems/18406.gif
new file mode 100644
index 00000000..afa99812
Binary files /dev/null and b/animateditems/18406.gif differ
diff --git a/animateditems/18406.png b/animateditems/18406.png
new file mode 100644
index 00000000..63f1baeb
Binary files /dev/null and b/animateditems/18406.png differ
diff --git a/animateditems/18407.gif b/animateditems/18407.gif
new file mode 100644
index 00000000..5ec7e6f7
Binary files /dev/null and b/animateditems/18407.gif differ
diff --git a/animateditems/18407.png b/animateditems/18407.png
new file mode 100644
index 00000000..a2edfab4
Binary files /dev/null and b/animateditems/18407.png differ
diff --git a/animateditems/18408.gif b/animateditems/18408.gif
new file mode 100644
index 00000000..a9cbf194
Binary files /dev/null and b/animateditems/18408.gif differ
diff --git a/animateditems/18408.png b/animateditems/18408.png
new file mode 100644
index 00000000..03f6846e
Binary files /dev/null and b/animateditems/18408.png differ
diff --git a/animateditems/18409.gif b/animateditems/18409.gif
new file mode 100644
index 00000000..c3d57c15
Binary files /dev/null and b/animateditems/18409.gif differ
diff --git a/animateditems/18409.png b/animateditems/18409.png
new file mode 100644
index 00000000..dacb3c04
Binary files /dev/null and b/animateditems/18409.png differ
diff --git a/animateditems/18410.gif b/animateditems/18410.gif
new file mode 100644
index 00000000..c46be5c3
Binary files /dev/null and b/animateditems/18410.gif differ
diff --git a/animateditems/18410.png b/animateditems/18410.png
new file mode 100644
index 00000000..24fe1c1a
Binary files /dev/null and b/animateditems/18410.png differ
diff --git a/animateditems/18411.gif b/animateditems/18411.gif
new file mode 100644
index 00000000..a9bf829c
Binary files /dev/null and b/animateditems/18411.gif differ
diff --git a/animateditems/18411.png b/animateditems/18411.png
new file mode 100644
index 00000000..2a536cc1
Binary files /dev/null and b/animateditems/18411.png differ
diff --git a/animateditems/18412.gif b/animateditems/18412.gif
new file mode 100644
index 00000000..7fab06b9
Binary files /dev/null and b/animateditems/18412.gif differ
diff --git a/animateditems/18412.png b/animateditems/18412.png
new file mode 100644
index 00000000..66ee2646
Binary files /dev/null and b/animateditems/18412.png differ
diff --git a/animateditems/18413.gif b/animateditems/18413.gif
new file mode 100644
index 00000000..9116d0aa
Binary files /dev/null and b/animateditems/18413.gif differ
diff --git a/animateditems/18413.png b/animateditems/18413.png
new file mode 100644
index 00000000..a82370e2
Binary files /dev/null and b/animateditems/18413.png differ
diff --git a/animateditems/18414.gif b/animateditems/18414.gif
new file mode 100644
index 00000000..6a6f144d
Binary files /dev/null and b/animateditems/18414.gif differ
diff --git a/animateditems/18414.png b/animateditems/18414.png
new file mode 100644
index 00000000..e552b89a
Binary files /dev/null and b/animateditems/18414.png differ
diff --git a/animateditems/18415.gif b/animateditems/18415.gif
new file mode 100644
index 00000000..ee6265aa
Binary files /dev/null and b/animateditems/18415.gif differ
diff --git a/animateditems/18415.png b/animateditems/18415.png
new file mode 100644
index 00000000..c128db71
Binary files /dev/null and b/animateditems/18415.png differ
diff --git a/animateditems/18416.gif b/animateditems/18416.gif
new file mode 100644
index 00000000..8b7f7896
Binary files /dev/null and b/animateditems/18416.gif differ
diff --git a/animateditems/18416.png b/animateditems/18416.png
new file mode 100644
index 00000000..2aa5b301
Binary files /dev/null and b/animateditems/18416.png differ
diff --git a/animateditems/18417.gif b/animateditems/18417.gif
new file mode 100644
index 00000000..7e38c120
Binary files /dev/null and b/animateditems/18417.gif differ
diff --git a/animateditems/18417.png b/animateditems/18417.png
new file mode 100644
index 00000000..4d2bf9fb
Binary files /dev/null and b/animateditems/18417.png differ
diff --git a/animateditems/18418.gif b/animateditems/18418.gif
new file mode 100644
index 00000000..81524799
Binary files /dev/null and b/animateditems/18418.gif differ
diff --git a/animateditems/18418.png b/animateditems/18418.png
new file mode 100644
index 00000000..f484521c
Binary files /dev/null and b/animateditems/18418.png differ
diff --git a/animateditems/18419.gif b/animateditems/18419.gif
new file mode 100644
index 00000000..c4238735
Binary files /dev/null and b/animateditems/18419.gif differ
diff --git a/animateditems/18419.png b/animateditems/18419.png
new file mode 100644
index 00000000..93c58bfe
Binary files /dev/null and b/animateditems/18419.png differ
diff --git a/animateditems/18420.gif b/animateditems/18420.gif
new file mode 100644
index 00000000..628fa14e
Binary files /dev/null and b/animateditems/18420.gif differ
diff --git a/animateditems/18420.png b/animateditems/18420.png
new file mode 100644
index 00000000..4127e479
Binary files /dev/null and b/animateditems/18420.png differ
diff --git a/animateditems/18421.gif b/animateditems/18421.gif
new file mode 100644
index 00000000..4059b315
Binary files /dev/null and b/animateditems/18421.gif differ
diff --git a/animateditems/18421.png b/animateditems/18421.png
new file mode 100644
index 00000000..78826492
Binary files /dev/null and b/animateditems/18421.png differ
diff --git a/animateditems/18422.gif b/animateditems/18422.gif
new file mode 100644
index 00000000..471e39bd
Binary files /dev/null and b/animateditems/18422.gif differ
diff --git a/animateditems/18422.png b/animateditems/18422.png
new file mode 100644
index 00000000..0d76cdc2
Binary files /dev/null and b/animateditems/18422.png differ
diff --git a/animateditems/18423.gif b/animateditems/18423.gif
new file mode 100644
index 00000000..360c46cd
Binary files /dev/null and b/animateditems/18423.gif differ
diff --git a/animateditems/18423.png b/animateditems/18423.png
new file mode 100644
index 00000000..a521342d
Binary files /dev/null and b/animateditems/18423.png differ
diff --git a/animateditems/18424.gif b/animateditems/18424.gif
new file mode 100644
index 00000000..a2506e13
Binary files /dev/null and b/animateditems/18424.gif differ
diff --git a/animateditems/18424.png b/animateditems/18424.png
new file mode 100644
index 00000000..cf643076
Binary files /dev/null and b/animateditems/18424.png differ
diff --git a/animateditems/18425.gif b/animateditems/18425.gif
new file mode 100644
index 00000000..d293cccc
Binary files /dev/null and b/animateditems/18425.gif differ
diff --git a/animateditems/18425.png b/animateditems/18425.png
new file mode 100644
index 00000000..3e651ee7
Binary files /dev/null and b/animateditems/18425.png differ
diff --git a/animateditems/18426.gif b/animateditems/18426.gif
new file mode 100644
index 00000000..dd3c3be8
Binary files /dev/null and b/animateditems/18426.gif differ
diff --git a/animateditems/18426.png b/animateditems/18426.png
new file mode 100644
index 00000000..28d8ece9
Binary files /dev/null and b/animateditems/18426.png differ
diff --git a/animateditems/18427.gif b/animateditems/18427.gif
new file mode 100644
index 00000000..9ffd9998
Binary files /dev/null and b/animateditems/18427.gif differ
diff --git a/animateditems/18427.png b/animateditems/18427.png
new file mode 100644
index 00000000..5735fc46
Binary files /dev/null and b/animateditems/18427.png differ
diff --git a/animateditems/18428.gif b/animateditems/18428.gif
new file mode 100644
index 00000000..020dd0c2
Binary files /dev/null and b/animateditems/18428.gif differ
diff --git a/animateditems/18428.png b/animateditems/18428.png
new file mode 100644
index 00000000..b9a8637f
Binary files /dev/null and b/animateditems/18428.png differ
diff --git a/animateditems/18429.gif b/animateditems/18429.gif
new file mode 100644
index 00000000..66d8300d
Binary files /dev/null and b/animateditems/18429.gif differ
diff --git a/animateditems/18429.png b/animateditems/18429.png
new file mode 100644
index 00000000..6a898345
Binary files /dev/null and b/animateditems/18429.png differ
diff --git a/animateditems/18430.gif b/animateditems/18430.gif
new file mode 100644
index 00000000..03446d23
Binary files /dev/null and b/animateditems/18430.gif differ
diff --git a/animateditems/18430.png b/animateditems/18430.png
new file mode 100644
index 00000000..a2dbd54e
Binary files /dev/null and b/animateditems/18430.png differ
diff --git a/animateditems/18431.gif b/animateditems/18431.gif
new file mode 100644
index 00000000..a678ceb7
Binary files /dev/null and b/animateditems/18431.gif differ
diff --git a/animateditems/18431.png b/animateditems/18431.png
new file mode 100644
index 00000000..296fd1d2
Binary files /dev/null and b/animateditems/18431.png differ
diff --git a/animateditems/18432.gif b/animateditems/18432.gif
new file mode 100644
index 00000000..779b8387
Binary files /dev/null and b/animateditems/18432.gif differ
diff --git a/animateditems/18432.png b/animateditems/18432.png
new file mode 100644
index 00000000..6058b95b
Binary files /dev/null and b/animateditems/18432.png differ
diff --git a/animateditems/18433.gif b/animateditems/18433.gif
new file mode 100644
index 00000000..25d2f432
Binary files /dev/null and b/animateditems/18433.gif differ
diff --git a/animateditems/18433.png b/animateditems/18433.png
new file mode 100644
index 00000000..db06c44c
Binary files /dev/null and b/animateditems/18433.png differ
diff --git a/animateditems/18434.gif b/animateditems/18434.gif
new file mode 100644
index 00000000..f20f80b4
Binary files /dev/null and b/animateditems/18434.gif differ
diff --git a/animateditems/18434.png b/animateditems/18434.png
new file mode 100644
index 00000000..04c4525a
Binary files /dev/null and b/animateditems/18434.png differ
diff --git a/animateditems/18435.gif b/animateditems/18435.gif
new file mode 100644
index 00000000..318f0b29
Binary files /dev/null and b/animateditems/18435.gif differ
diff --git a/animateditems/18435.png b/animateditems/18435.png
new file mode 100644
index 00000000..b3a70739
Binary files /dev/null and b/animateditems/18435.png differ
diff --git a/animateditems/18436.gif b/animateditems/18436.gif
new file mode 100644
index 00000000..0ee546bd
Binary files /dev/null and b/animateditems/18436.gif differ
diff --git a/animateditems/18436.png b/animateditems/18436.png
new file mode 100644
index 00000000..c37e2f4e
Binary files /dev/null and b/animateditems/18436.png differ
diff --git a/animateditems/18437.gif b/animateditems/18437.gif
new file mode 100644
index 00000000..5fcd42e5
Binary files /dev/null and b/animateditems/18437.gif differ
diff --git a/animateditems/18437.png b/animateditems/18437.png
new file mode 100644
index 00000000..133f6d04
Binary files /dev/null and b/animateditems/18437.png differ
diff --git a/animateditems/18447.gif b/animateditems/18447.gif
new file mode 100644
index 00000000..96004365
Binary files /dev/null and b/animateditems/18447.gif differ
diff --git a/animateditems/18447.png b/animateditems/18447.png
new file mode 100644
index 00000000..b347bb2b
Binary files /dev/null and b/animateditems/18447.png differ
diff --git a/animateditems/18448.gif b/animateditems/18448.gif
new file mode 100644
index 00000000..6fbf1fd1
Binary files /dev/null and b/animateditems/18448.gif differ
diff --git a/animateditems/18448.png b/animateditems/18448.png
new file mode 100644
index 00000000..d3cf11ef
Binary files /dev/null and b/animateditems/18448.png differ
diff --git a/animateditems/18449.gif b/animateditems/18449.gif
new file mode 100644
index 00000000..c4bee399
Binary files /dev/null and b/animateditems/18449.gif differ
diff --git a/animateditems/18449.png b/animateditems/18449.png
new file mode 100644
index 00000000..bbddfd6a
Binary files /dev/null and b/animateditems/18449.png differ
diff --git a/animateditems/1845.gif b/animateditems/1845.gif
new file mode 100644
index 00000000..a43f5465
Binary files /dev/null and b/animateditems/1845.gif differ
diff --git a/animateditems/1845.png b/animateditems/1845.png
new file mode 100644
index 00000000..c3e791b0
Binary files /dev/null and b/animateditems/1845.png differ
diff --git a/animateditems/18450.gif b/animateditems/18450.gif
new file mode 100644
index 00000000..9b311bbc
Binary files /dev/null and b/animateditems/18450.gif differ
diff --git a/animateditems/18450.png b/animateditems/18450.png
new file mode 100644
index 00000000..63e54c8a
Binary files /dev/null and b/animateditems/18450.png differ
diff --git a/animateditems/18451.gif b/animateditems/18451.gif
new file mode 100644
index 00000000..7c31ee2f
Binary files /dev/null and b/animateditems/18451.gif differ
diff --git a/animateditems/18451.png b/animateditems/18451.png
new file mode 100644
index 00000000..2f39b045
Binary files /dev/null and b/animateditems/18451.png differ
diff --git a/animateditems/18452.gif b/animateditems/18452.gif
new file mode 100644
index 00000000..fab78314
Binary files /dev/null and b/animateditems/18452.gif differ
diff --git a/animateditems/18452.png b/animateditems/18452.png
new file mode 100644
index 00000000..8768d2c9
Binary files /dev/null and b/animateditems/18452.png differ
diff --git a/animateditems/18453.gif b/animateditems/18453.gif
new file mode 100644
index 00000000..9b311b3e
Binary files /dev/null and b/animateditems/18453.gif differ
diff --git a/animateditems/18453.png b/animateditems/18453.png
new file mode 100644
index 00000000..291709da
Binary files /dev/null and b/animateditems/18453.png differ
diff --git a/animateditems/18454.gif b/animateditems/18454.gif
new file mode 100644
index 00000000..c212431d
Binary files /dev/null and b/animateditems/18454.gif differ
diff --git a/animateditems/18454.png b/animateditems/18454.png
new file mode 100644
index 00000000..4cf23aa8
Binary files /dev/null and b/animateditems/18454.png differ
diff --git a/animateditems/18455.gif b/animateditems/18455.gif
new file mode 100644
index 00000000..f82859ff
Binary files /dev/null and b/animateditems/18455.gif differ
diff --git a/animateditems/18455.png b/animateditems/18455.png
new file mode 100644
index 00000000..9232e1d8
Binary files /dev/null and b/animateditems/18455.png differ
diff --git a/animateditems/18456.gif b/animateditems/18456.gif
new file mode 100644
index 00000000..4786c86f
Binary files /dev/null and b/animateditems/18456.gif differ
diff --git a/animateditems/18456.png b/animateditems/18456.png
new file mode 100644
index 00000000..3273d597
Binary files /dev/null and b/animateditems/18456.png differ
diff --git a/animateditems/18457.gif b/animateditems/18457.gif
new file mode 100644
index 00000000..5f4d4800
Binary files /dev/null and b/animateditems/18457.gif differ
diff --git a/animateditems/18457.png b/animateditems/18457.png
new file mode 100644
index 00000000..2650ca7a
Binary files /dev/null and b/animateditems/18457.png differ
diff --git a/animateditems/18465.gif b/animateditems/18465.gif
new file mode 100644
index 00000000..ad36adab
Binary files /dev/null and b/animateditems/18465.gif differ
diff --git a/animateditems/18465.png b/animateditems/18465.png
new file mode 100644
index 00000000..6963ea2d
Binary files /dev/null and b/animateditems/18465.png differ
diff --git a/animateditems/1848.gif b/animateditems/1848.gif
new file mode 100644
index 00000000..174671c4
Binary files /dev/null and b/animateditems/1848.gif differ
diff --git a/animateditems/1848.png b/animateditems/1848.png
new file mode 100644
index 00000000..55cb47b5
Binary files /dev/null and b/animateditems/1848.png differ
diff --git a/animateditems/18495.gif b/animateditems/18495.gif
new file mode 100644
index 00000000..ac46f901
Binary files /dev/null and b/animateditems/18495.gif differ
diff --git a/animateditems/18495.png b/animateditems/18495.png
new file mode 100644
index 00000000..976de2bb
Binary files /dev/null and b/animateditems/18495.png differ
diff --git a/animateditems/18496.gif b/animateditems/18496.gif
new file mode 100644
index 00000000..ced6856a
Binary files /dev/null and b/animateditems/18496.gif differ
diff --git a/animateditems/18496.png b/animateditems/18496.png
new file mode 100644
index 00000000..cd0a7c21
Binary files /dev/null and b/animateditems/18496.png differ
diff --git a/animateditems/18497.gif b/animateditems/18497.gif
new file mode 100644
index 00000000..b68b99bd
Binary files /dev/null and b/animateditems/18497.gif differ
diff --git a/animateditems/18497.png b/animateditems/18497.png
new file mode 100644
index 00000000..cd6f6438
Binary files /dev/null and b/animateditems/18497.png differ
diff --git a/animateditems/18498.gif b/animateditems/18498.gif
new file mode 100644
index 00000000..65522cd0
Binary files /dev/null and b/animateditems/18498.gif differ
diff --git a/animateditems/18498.png b/animateditems/18498.png
new file mode 100644
index 00000000..3a4d52db
Binary files /dev/null and b/animateditems/18498.png differ
diff --git a/animateditems/18499.gif b/animateditems/18499.gif
new file mode 100644
index 00000000..d61012ed
Binary files /dev/null and b/animateditems/18499.gif differ
diff --git a/animateditems/18499.png b/animateditems/18499.png
new file mode 100644
index 00000000..3b96c2d0
Binary files /dev/null and b/animateditems/18499.png differ
diff --git a/animateditems/18500.gif b/animateditems/18500.gif
new file mode 100644
index 00000000..fd46f27a
Binary files /dev/null and b/animateditems/18500.gif differ
diff --git a/animateditems/18500.png b/animateditems/18500.png
new file mode 100644
index 00000000..fd5cf3a5
Binary files /dev/null and b/animateditems/18500.png differ
diff --git a/animateditems/18501.gif b/animateditems/18501.gif
new file mode 100644
index 00000000..a3ac7508
Binary files /dev/null and b/animateditems/18501.gif differ
diff --git a/animateditems/18501.png b/animateditems/18501.png
new file mode 100644
index 00000000..a59ccccf
Binary files /dev/null and b/animateditems/18501.png differ
diff --git a/animateditems/18502.gif b/animateditems/18502.gif
new file mode 100644
index 00000000..fed31a14
Binary files /dev/null and b/animateditems/18502.gif differ
diff --git a/animateditems/18502.png b/animateditems/18502.png
new file mode 100644
index 00000000..ea226627
Binary files /dev/null and b/animateditems/18502.png differ
diff --git a/animateditems/18503.gif b/animateditems/18503.gif
new file mode 100644
index 00000000..e18be3e1
Binary files /dev/null and b/animateditems/18503.gif differ
diff --git a/animateditems/18503.png b/animateditems/18503.png
new file mode 100644
index 00000000..a2a220c5
Binary files /dev/null and b/animateditems/18503.png differ
diff --git a/animateditems/18504.gif b/animateditems/18504.gif
new file mode 100644
index 00000000..5f4002fd
Binary files /dev/null and b/animateditems/18504.gif differ
diff --git a/animateditems/18504.png b/animateditems/18504.png
new file mode 100644
index 00000000..65a7bb28
Binary files /dev/null and b/animateditems/18504.png differ
diff --git a/animateditems/18505.gif b/animateditems/18505.gif
new file mode 100644
index 00000000..17583ce5
Binary files /dev/null and b/animateditems/18505.gif differ
diff --git a/animateditems/18505.png b/animateditems/18505.png
new file mode 100644
index 00000000..7d0734e1
Binary files /dev/null and b/animateditems/18505.png differ
diff --git a/animateditems/18506.gif b/animateditems/18506.gif
new file mode 100644
index 00000000..da533e90
Binary files /dev/null and b/animateditems/18506.gif differ
diff --git a/animateditems/18506.png b/animateditems/18506.png
new file mode 100644
index 00000000..7829179f
Binary files /dev/null and b/animateditems/18506.png differ
diff --git a/animateditems/18507.gif b/animateditems/18507.gif
new file mode 100644
index 00000000..7e759884
Binary files /dev/null and b/animateditems/18507.gif differ
diff --git a/animateditems/18507.png b/animateditems/18507.png
new file mode 100644
index 00000000..24919512
Binary files /dev/null and b/animateditems/18507.png differ
diff --git a/animateditems/18508.gif b/animateditems/18508.gif
new file mode 100644
index 00000000..6ae74dc5
Binary files /dev/null and b/animateditems/18508.gif differ
diff --git a/animateditems/18508.png b/animateditems/18508.png
new file mode 100644
index 00000000..5a05ac03
Binary files /dev/null and b/animateditems/18508.png differ
diff --git a/animateditems/18509.gif b/animateditems/18509.gif
new file mode 100644
index 00000000..d3f3b1ba
Binary files /dev/null and b/animateditems/18509.gif differ
diff --git a/animateditems/18509.png b/animateditems/18509.png
new file mode 100644
index 00000000..a9dbcba9
Binary files /dev/null and b/animateditems/18509.png differ
diff --git a/animateditems/1851.gif b/animateditems/1851.gif
new file mode 100644
index 00000000..38777a70
Binary files /dev/null and b/animateditems/1851.gif differ
diff --git a/animateditems/1851.png b/animateditems/1851.png
new file mode 100644
index 00000000..e7e94652
Binary files /dev/null and b/animateditems/1851.png differ
diff --git a/animateditems/18511.gif b/animateditems/18511.gif
new file mode 100644
index 00000000..fb6e7a80
Binary files /dev/null and b/animateditems/18511.gif differ
diff --git a/animateditems/18511.png b/animateditems/18511.png
new file mode 100644
index 00000000..208171ad
Binary files /dev/null and b/animateditems/18511.png differ
diff --git a/animateditems/18516.gif b/animateditems/18516.gif
new file mode 100644
index 00000000..78067bd6
Binary files /dev/null and b/animateditems/18516.gif differ
diff --git a/animateditems/18516.png b/animateditems/18516.png
new file mode 100644
index 00000000..d35fc516
Binary files /dev/null and b/animateditems/18516.png differ
diff --git a/animateditems/18517.gif b/animateditems/18517.gif
new file mode 100644
index 00000000..bd1f3d10
Binary files /dev/null and b/animateditems/18517.gif differ
diff --git a/animateditems/18517.png b/animateditems/18517.png
new file mode 100644
index 00000000..b58c0fb2
Binary files /dev/null and b/animateditems/18517.png differ
diff --git a/animateditems/18518.gif b/animateditems/18518.gif
new file mode 100644
index 00000000..bd1f3d10
Binary files /dev/null and b/animateditems/18518.gif differ
diff --git a/animateditems/18518.png b/animateditems/18518.png
new file mode 100644
index 00000000..b58c0fb2
Binary files /dev/null and b/animateditems/18518.png differ
diff --git a/animateditems/18519.gif b/animateditems/18519.gif
new file mode 100644
index 00000000..bd1f3d10
Binary files /dev/null and b/animateditems/18519.gif differ
diff --git a/animateditems/18519.png b/animateditems/18519.png
new file mode 100644
index 00000000..b58c0fb2
Binary files /dev/null and b/animateditems/18519.png differ
diff --git a/animateditems/1852.gif b/animateditems/1852.gif
new file mode 100644
index 00000000..10f18b6d
Binary files /dev/null and b/animateditems/1852.gif differ
diff --git a/animateditems/1852.png b/animateditems/1852.png
new file mode 100644
index 00000000..dddf5396
Binary files /dev/null and b/animateditems/1852.png differ
diff --git a/animateditems/18520.gif b/animateditems/18520.gif
new file mode 100644
index 00000000..bd1f3d10
Binary files /dev/null and b/animateditems/18520.gif differ
diff --git a/animateditems/18520.png b/animateditems/18520.png
new file mode 100644
index 00000000..b58c0fb2
Binary files /dev/null and b/animateditems/18520.png differ
diff --git a/animateditems/18521.gif b/animateditems/18521.gif
new file mode 100644
index 00000000..bd1f3d10
Binary files /dev/null and b/animateditems/18521.gif differ
diff --git a/animateditems/18521.png b/animateditems/18521.png
new file mode 100644
index 00000000..b58c0fb2
Binary files /dev/null and b/animateditems/18521.png differ
diff --git a/animateditems/18522.gif b/animateditems/18522.gif
new file mode 100644
index 00000000..bd1f3d10
Binary files /dev/null and b/animateditems/18522.gif differ
diff --git a/animateditems/18522.png b/animateditems/18522.png
new file mode 100644
index 00000000..b58c0fb2
Binary files /dev/null and b/animateditems/18522.png differ
diff --git a/animateditems/18526.gif b/animateditems/18526.gif
new file mode 100644
index 00000000..a9e1c79a
Binary files /dev/null and b/animateditems/18526.gif differ
diff --git a/animateditems/18526.png b/animateditems/18526.png
new file mode 100644
index 00000000..7285a225
Binary files /dev/null and b/animateditems/18526.png differ
diff --git a/animateditems/18527.gif b/animateditems/18527.gif
new file mode 100644
index 00000000..a9e1c79a
Binary files /dev/null and b/animateditems/18527.gif differ
diff --git a/animateditems/18527.png b/animateditems/18527.png
new file mode 100644
index 00000000..7285a225
Binary files /dev/null and b/animateditems/18527.png differ
diff --git a/animateditems/18528.gif b/animateditems/18528.gif
new file mode 100644
index 00000000..05014e27
Binary files /dev/null and b/animateditems/18528.gif differ
diff --git a/animateditems/18528.png b/animateditems/18528.png
new file mode 100644
index 00000000..8b2e346e
Binary files /dev/null and b/animateditems/18528.png differ
diff --git a/animateditems/1853.gif b/animateditems/1853.gif
new file mode 100644
index 00000000..1422432b
Binary files /dev/null and b/animateditems/1853.gif differ
diff --git a/animateditems/1853.png b/animateditems/1853.png
new file mode 100644
index 00000000..1c71bd25
Binary files /dev/null and b/animateditems/1853.png differ
diff --git a/animateditems/1854.gif b/animateditems/1854.gif
new file mode 100644
index 00000000..7ce7087a
Binary files /dev/null and b/animateditems/1854.gif differ
diff --git a/animateditems/1854.png b/animateditems/1854.png
new file mode 100644
index 00000000..7f20ecca
Binary files /dev/null and b/animateditems/1854.png differ
diff --git a/animateditems/18547.gif b/animateditems/18547.gif
new file mode 100644
index 00000000..2510551c
Binary files /dev/null and b/animateditems/18547.gif differ
diff --git a/animateditems/18547.png b/animateditems/18547.png
new file mode 100644
index 00000000..e3a06d79
Binary files /dev/null and b/animateditems/18547.png differ
diff --git a/animateditems/18550.gif b/animateditems/18550.gif
new file mode 100644
index 00000000..24b2289e
Binary files /dev/null and b/animateditems/18550.gif differ
diff --git a/animateditems/18550.png b/animateditems/18550.png
new file mode 100644
index 00000000..d5afc1fd
Binary files /dev/null and b/animateditems/18550.png differ
diff --git a/animateditems/18551.gif b/animateditems/18551.gif
new file mode 100644
index 00000000..04f0aa53
Binary files /dev/null and b/animateditems/18551.gif differ
diff --git a/animateditems/18551.png b/animateditems/18551.png
new file mode 100644
index 00000000..d8451a43
Binary files /dev/null and b/animateditems/18551.png differ
diff --git a/animateditems/18554.gif b/animateditems/18554.gif
new file mode 100644
index 00000000..f5c75f26
Binary files /dev/null and b/animateditems/18554.gif differ
diff --git a/animateditems/18554.png b/animateditems/18554.png
new file mode 100644
index 00000000..a4c36d22
Binary files /dev/null and b/animateditems/18554.png differ
diff --git a/animateditems/18559.gif b/animateditems/18559.gif
new file mode 100644
index 00000000..16061651
Binary files /dev/null and b/animateditems/18559.gif differ
diff --git a/animateditems/18559.png b/animateditems/18559.png
new file mode 100644
index 00000000..ac408eb5
Binary files /dev/null and b/animateditems/18559.png differ
diff --git a/animateditems/1857.gif b/animateditems/1857.gif
new file mode 100644
index 00000000..608d1f81
Binary files /dev/null and b/animateditems/1857.gif differ
diff --git a/animateditems/1857.png b/animateditems/1857.png
new file mode 100644
index 00000000..56cd4e97
Binary files /dev/null and b/animateditems/1857.png differ
diff --git a/animateditems/1860.gif b/animateditems/1860.gif
new file mode 100644
index 00000000..6b3eb28c
Binary files /dev/null and b/animateditems/1860.gif differ
diff --git a/animateditems/1860.png b/animateditems/1860.png
new file mode 100644
index 00000000..6bc9032f
Binary files /dev/null and b/animateditems/1860.png differ
diff --git a/animateditems/1863.gif b/animateditems/1863.gif
new file mode 100644
index 00000000..fc0d0461
Binary files /dev/null and b/animateditems/1863.gif differ
diff --git a/animateditems/1863.png b/animateditems/1863.png
new file mode 100644
index 00000000..406bab12
Binary files /dev/null and b/animateditems/1863.png differ
diff --git a/animateditems/1866.gif b/animateditems/1866.gif
new file mode 100644
index 00000000..15ebec52
Binary files /dev/null and b/animateditems/1866.gif differ
diff --git a/animateditems/1866.png b/animateditems/1866.png
new file mode 100644
index 00000000..58d70e4d
Binary files /dev/null and b/animateditems/1866.png differ
diff --git a/animateditems/1869.gif b/animateditems/1869.gif
new file mode 100644
index 00000000..b10d98c4
Binary files /dev/null and b/animateditems/1869.gif differ
diff --git a/animateditems/1869.png b/animateditems/1869.png
new file mode 100644
index 00000000..01b4f78d
Binary files /dev/null and b/animateditems/1869.png differ
diff --git a/animateditems/1872.gif b/animateditems/1872.gif
new file mode 100644
index 00000000..11e088a1
Binary files /dev/null and b/animateditems/1872.gif differ
diff --git a/animateditems/1872.png b/animateditems/1872.png
new file mode 100644
index 00000000..7f02c984
Binary files /dev/null and b/animateditems/1872.png differ
diff --git a/animateditems/1877.gif b/animateditems/1877.gif
new file mode 100644
index 00000000..92ad6039
Binary files /dev/null and b/animateditems/1877.gif differ
diff --git a/animateditems/1877.png b/animateditems/1877.png
new file mode 100644
index 00000000..df06c250
Binary files /dev/null and b/animateditems/1877.png differ
diff --git a/animateditems/1880.gif b/animateditems/1880.gif
new file mode 100644
index 00000000..4c384462
Binary files /dev/null and b/animateditems/1880.gif differ
diff --git a/animateditems/1880.png b/animateditems/1880.png
new file mode 100644
index 00000000..368a9af2
Binary files /dev/null and b/animateditems/1880.png differ
diff --git a/animateditems/1881.gif b/animateditems/1881.gif
new file mode 100644
index 00000000..92ad6039
Binary files /dev/null and b/animateditems/1881.gif differ
diff --git a/animateditems/1881.png b/animateditems/1881.png
new file mode 100644
index 00000000..df06c250
Binary files /dev/null and b/animateditems/1881.png differ
diff --git a/animateditems/19389.gif b/animateditems/19389.gif
new file mode 100644
index 00000000..7b01a402
Binary files /dev/null and b/animateditems/19389.gif differ
diff --git a/animateditems/19389.png b/animateditems/19389.png
new file mode 100644
index 00000000..556ff4cd
Binary files /dev/null and b/animateditems/19389.png differ
diff --git a/animateditems/19390.gif b/animateditems/19390.gif
new file mode 100644
index 00000000..fd18f721
Binary files /dev/null and b/animateditems/19390.gif differ
diff --git a/animateditems/19390.png b/animateditems/19390.png
new file mode 100644
index 00000000..978eab51
Binary files /dev/null and b/animateditems/19390.png differ
diff --git a/animateditems/19391.gif b/animateditems/19391.gif
new file mode 100644
index 00000000..4c6324a6
Binary files /dev/null and b/animateditems/19391.gif differ
diff --git a/animateditems/19391.png b/animateditems/19391.png
new file mode 100644
index 00000000..125c8c9d
Binary files /dev/null and b/animateditems/19391.png differ
diff --git a/animateditems/19392.gif b/animateditems/19392.gif
new file mode 100644
index 00000000..ce8a4619
Binary files /dev/null and b/animateditems/19392.gif differ
diff --git a/animateditems/19392.png b/animateditems/19392.png
new file mode 100644
index 00000000..fd8b91c1
Binary files /dev/null and b/animateditems/19392.png differ
diff --git a/animateditems/19393.gif b/animateditems/19393.gif
new file mode 100644
index 00000000..3f87b19b
Binary files /dev/null and b/animateditems/19393.gif differ
diff --git a/animateditems/19393.png b/animateditems/19393.png
new file mode 100644
index 00000000..d3e6086d
Binary files /dev/null and b/animateditems/19393.png differ
diff --git a/animateditems/1947.gif b/animateditems/1947.gif
new file mode 100644
index 00000000..9c75a3cc
Binary files /dev/null and b/animateditems/1947.gif differ
diff --git a/animateditems/1947.png b/animateditems/1947.png
new file mode 100644
index 00000000..8e6b10f0
Binary files /dev/null and b/animateditems/1947.png differ
diff --git a/animateditems/1948.gif b/animateditems/1948.gif
new file mode 100644
index 00000000..6f92e520
Binary files /dev/null and b/animateditems/1948.gif differ
diff --git a/animateditems/1948.png b/animateditems/1948.png
new file mode 100644
index 00000000..82dc0b3b
Binary files /dev/null and b/animateditems/1948.png differ
diff --git a/animateditems/1949.gif b/animateditems/1949.gif
new file mode 100644
index 00000000..9790d4ba
Binary files /dev/null and b/animateditems/1949.gif differ
diff --git a/animateditems/1949.png b/animateditems/1949.png
new file mode 100644
index 00000000..b30a7bb1
Binary files /dev/null and b/animateditems/1949.png differ
diff --git a/animateditems/1950.gif b/animateditems/1950.gif
new file mode 100644
index 00000000..7613c0e9
Binary files /dev/null and b/animateditems/1950.gif differ
diff --git a/animateditems/1950.png b/animateditems/1950.png
new file mode 100644
index 00000000..2af86183
Binary files /dev/null and b/animateditems/1950.png differ
diff --git a/animateditems/1951.gif b/animateditems/1951.gif
new file mode 100644
index 00000000..41c942e5
Binary files /dev/null and b/animateditems/1951.gif differ
diff --git a/animateditems/1951.png b/animateditems/1951.png
new file mode 100644
index 00000000..98193387
Binary files /dev/null and b/animateditems/1951.png differ
diff --git a/animateditems/1952.gif b/animateditems/1952.gif
new file mode 100644
index 00000000..bd1f3d10
Binary files /dev/null and b/animateditems/1952.gif differ
diff --git a/animateditems/1952.png b/animateditems/1952.png
new file mode 100644
index 00000000..b58c0fb2
Binary files /dev/null and b/animateditems/1952.png differ
diff --git a/animateditems/1953.gif b/animateditems/1953.gif
new file mode 100644
index 00000000..dc1aa5c8
Binary files /dev/null and b/animateditems/1953.gif differ
diff --git a/animateditems/1953.png b/animateditems/1953.png
new file mode 100644
index 00000000..c809e709
Binary files /dev/null and b/animateditems/1953.png differ
diff --git a/animateditems/1954.gif b/animateditems/1954.gif
new file mode 100644
index 00000000..0ecd70d7
Binary files /dev/null and b/animateditems/1954.gif differ
diff --git a/animateditems/1954.png b/animateditems/1954.png
new file mode 100644
index 00000000..e5bfa4e7
Binary files /dev/null and b/animateditems/1954.png differ
diff --git a/animateditems/1955.gif b/animateditems/1955.gif
new file mode 100644
index 00000000..0c37a837
Binary files /dev/null and b/animateditems/1955.gif differ
diff --git a/animateditems/1955.png b/animateditems/1955.png
new file mode 100644
index 00000000..20d2ee2d
Binary files /dev/null and b/animateditems/1955.png differ
diff --git a/animateditems/1956.gif b/animateditems/1956.gif
new file mode 100644
index 00000000..445c5dc2
Binary files /dev/null and b/animateditems/1956.gif differ
diff --git a/animateditems/1956.png b/animateditems/1956.png
new file mode 100644
index 00000000..57d04ebf
Binary files /dev/null and b/animateditems/1956.png differ
diff --git a/animateditems/1957.gif b/animateditems/1957.gif
new file mode 100644
index 00000000..9ed975ff
Binary files /dev/null and b/animateditems/1957.gif differ
diff --git a/animateditems/1957.png b/animateditems/1957.png
new file mode 100644
index 00000000..d512fe6e
Binary files /dev/null and b/animateditems/1957.png differ
diff --git a/animateditems/1958.gif b/animateditems/1958.gif
new file mode 100644
index 00000000..3fa9b955
Binary files /dev/null and b/animateditems/1958.gif differ
diff --git a/animateditems/1958.png b/animateditems/1958.png
new file mode 100644
index 00000000..944c953e
Binary files /dev/null and b/animateditems/1958.png differ
diff --git a/animateditems/1959.gif b/animateditems/1959.gif
new file mode 100644
index 00000000..bcc55859
Binary files /dev/null and b/animateditems/1959.gif differ
diff --git a/animateditems/1959.png b/animateditems/1959.png
new file mode 100644
index 00000000..6b76aa4c
Binary files /dev/null and b/animateditems/1959.png differ
diff --git a/animateditems/1960.gif b/animateditems/1960.gif
new file mode 100644
index 00000000..de2bc0d9
Binary files /dev/null and b/animateditems/1960.gif differ
diff --git a/animateditems/1960.png b/animateditems/1960.png
new file mode 100644
index 00000000..75aa5995
Binary files /dev/null and b/animateditems/1960.png differ
diff --git a/animateditems/1961.gif b/animateditems/1961.gif
new file mode 100644
index 00000000..56806afc
Binary files /dev/null and b/animateditems/1961.gif differ
diff --git a/animateditems/1961.png b/animateditems/1961.png
new file mode 100644
index 00000000..7f51978e
Binary files /dev/null and b/animateditems/1961.png differ
diff --git a/animateditems/1962.gif b/animateditems/1962.gif
new file mode 100644
index 00000000..1e890e0c
Binary files /dev/null and b/animateditems/1962.gif differ
diff --git a/animateditems/1962.png b/animateditems/1962.png
new file mode 100644
index 00000000..6607b863
Binary files /dev/null and b/animateditems/1962.png differ
diff --git a/animateditems/1963.gif b/animateditems/1963.gif
new file mode 100644
index 00000000..c077c039
Binary files /dev/null and b/animateditems/1963.gif differ
diff --git a/animateditems/1963.png b/animateditems/1963.png
new file mode 100644
index 00000000..ac445669
Binary files /dev/null and b/animateditems/1963.png differ
diff --git a/animateditems/1964.gif b/animateditems/1964.gif
new file mode 100644
index 00000000..dd6aab75
Binary files /dev/null and b/animateditems/1964.gif differ
diff --git a/animateditems/1964.png b/animateditems/1964.png
new file mode 100644
index 00000000..f6d4e3ff
Binary files /dev/null and b/animateditems/1964.png differ
diff --git a/animateditems/1965.gif b/animateditems/1965.gif
new file mode 100644
index 00000000..bd15acf1
Binary files /dev/null and b/animateditems/1965.gif differ
diff --git a/animateditems/1965.png b/animateditems/1965.png
new file mode 100644
index 00000000..47b61022
Binary files /dev/null and b/animateditems/1965.png differ
diff --git a/animateditems/1966.gif b/animateditems/1966.gif
new file mode 100644
index 00000000..a2ffed03
Binary files /dev/null and b/animateditems/1966.gif differ
diff --git a/animateditems/1966.png b/animateditems/1966.png
new file mode 100644
index 00000000..51fd4aee
Binary files /dev/null and b/animateditems/1966.png differ
diff --git a/animateditems/1967.gif b/animateditems/1967.gif
new file mode 100644
index 00000000..6f92e520
Binary files /dev/null and b/animateditems/1967.gif differ
diff --git a/animateditems/1967.png b/animateditems/1967.png
new file mode 100644
index 00000000..82dc0b3b
Binary files /dev/null and b/animateditems/1967.png differ
diff --git a/animateditems/1968.gif b/animateditems/1968.gif
new file mode 100644
index 00000000..bd1f3d10
Binary files /dev/null and b/animateditems/1968.gif differ
diff --git a/animateditems/1968.png b/animateditems/1968.png
new file mode 100644
index 00000000..b58c0fb2
Binary files /dev/null and b/animateditems/1968.png differ
diff --git a/animateditems/1969.gif b/animateditems/1969.gif
new file mode 100644
index 00000000..dc1aa5c8
Binary files /dev/null and b/animateditems/1969.gif differ
diff --git a/animateditems/1969.png b/animateditems/1969.png
new file mode 100644
index 00000000..c809e709
Binary files /dev/null and b/animateditems/1969.png differ
diff --git a/animateditems/1970.gif b/animateditems/1970.gif
new file mode 100644
index 00000000..65009ed5
Binary files /dev/null and b/animateditems/1970.gif differ
diff --git a/animateditems/1970.png b/animateditems/1970.png
new file mode 100644
index 00000000..217178ac
Binary files /dev/null and b/animateditems/1970.png differ
diff --git a/animateditems/1971.gif b/animateditems/1971.gif
new file mode 100644
index 00000000..7613c0e9
Binary files /dev/null and b/animateditems/1971.gif differ
diff --git a/animateditems/1971.png b/animateditems/1971.png
new file mode 100644
index 00000000..2af86183
Binary files /dev/null and b/animateditems/1971.png differ
diff --git a/animateditems/1972.gif b/animateditems/1972.gif
new file mode 100644
index 00000000..0c37a837
Binary files /dev/null and b/animateditems/1972.gif differ
diff --git a/animateditems/1972.png b/animateditems/1972.png
new file mode 100644
index 00000000..20d2ee2d
Binary files /dev/null and b/animateditems/1972.png differ
diff --git a/animateditems/1973.gif b/animateditems/1973.gif
new file mode 100644
index 00000000..3fa9b955
Binary files /dev/null and b/animateditems/1973.gif differ
diff --git a/animateditems/1973.png b/animateditems/1973.png
new file mode 100644
index 00000000..944c953e
Binary files /dev/null and b/animateditems/1973.png differ
diff --git a/animateditems/19737.gif b/animateditems/19737.gif
new file mode 100644
index 00000000..47a685c4
Binary files /dev/null and b/animateditems/19737.gif differ
diff --git a/animateditems/19737.png b/animateditems/19737.png
new file mode 100644
index 00000000..80b3cb75
Binary files /dev/null and b/animateditems/19737.png differ
diff --git a/animateditems/19738.gif b/animateditems/19738.gif
new file mode 100644
index 00000000..16944d1c
Binary files /dev/null and b/animateditems/19738.gif differ
diff --git a/animateditems/19738.png b/animateditems/19738.png
new file mode 100644
index 00000000..1ba028dd
Binary files /dev/null and b/animateditems/19738.png differ
diff --git a/animateditems/1974.gif b/animateditems/1974.gif
new file mode 100644
index 00000000..bcc55859
Binary files /dev/null and b/animateditems/1974.gif differ
diff --git a/animateditems/1974.png b/animateditems/1974.png
new file mode 100644
index 00000000..6b76aa4c
Binary files /dev/null and b/animateditems/1974.png differ
diff --git a/animateditems/19741.gif b/animateditems/19741.gif
new file mode 100644
index 00000000..55981d18
Binary files /dev/null and b/animateditems/19741.gif differ
diff --git a/animateditems/19741.png b/animateditems/19741.png
new file mode 100644
index 00000000..9cd02e65
Binary files /dev/null and b/animateditems/19741.png differ
diff --git a/animateditems/19742.gif b/animateditems/19742.gif
new file mode 100644
index 00000000..8ef9e5b9
Binary files /dev/null and b/animateditems/19742.gif differ
diff --git a/animateditems/19742.png b/animateditems/19742.png
new file mode 100644
index 00000000..ab88f9d9
Binary files /dev/null and b/animateditems/19742.png differ
diff --git a/animateditems/19743.gif b/animateditems/19743.gif
new file mode 100644
index 00000000..7b89c286
Binary files /dev/null and b/animateditems/19743.gif differ
diff --git a/animateditems/19743.png b/animateditems/19743.png
new file mode 100644
index 00000000..05cb7f5a
Binary files /dev/null and b/animateditems/19743.png differ
diff --git a/animateditems/1975.gif b/animateditems/1975.gif
new file mode 100644
index 00000000..de2bc0d9
Binary files /dev/null and b/animateditems/1975.gif differ
diff --git a/animateditems/1975.png b/animateditems/1975.png
new file mode 100644
index 00000000..75aa5995
Binary files /dev/null and b/animateditems/1975.png differ
diff --git a/animateditems/1976.gif b/animateditems/1976.gif
new file mode 100644
index 00000000..8a5d044a
Binary files /dev/null and b/animateditems/1976.gif differ
diff --git a/animateditems/1976.png b/animateditems/1976.png
new file mode 100644
index 00000000..4a52aeca
Binary files /dev/null and b/animateditems/1976.png differ
diff --git a/animateditems/1977.gif b/animateditems/1977.gif
new file mode 100644
index 00000000..1e890e0c
Binary files /dev/null and b/animateditems/1977.gif differ
diff --git a/animateditems/1977.png b/animateditems/1977.png
new file mode 100644
index 00000000..6607b863
Binary files /dev/null and b/animateditems/1977.png differ
diff --git a/animateditems/1978.gif b/animateditems/1978.gif
new file mode 100644
index 00000000..c077c039
Binary files /dev/null and b/animateditems/1978.gif differ
diff --git a/animateditems/1978.png b/animateditems/1978.png
new file mode 100644
index 00000000..ac445669
Binary files /dev/null and b/animateditems/1978.png differ
diff --git a/animateditems/1979.gif b/animateditems/1979.gif
new file mode 100644
index 00000000..dd6aab75
Binary files /dev/null and b/animateditems/1979.gif differ
diff --git a/animateditems/1979.png b/animateditems/1979.png
new file mode 100644
index 00000000..f6d4e3ff
Binary files /dev/null and b/animateditems/1979.png differ
diff --git a/animateditems/19791.gif b/animateditems/19791.gif
new file mode 100644
index 00000000..e53b0c52
Binary files /dev/null and b/animateditems/19791.gif differ
diff --git a/animateditems/19791.png b/animateditems/19791.png
new file mode 100644
index 00000000..03831588
Binary files /dev/null and b/animateditems/19791.png differ
diff --git a/animateditems/19792.gif b/animateditems/19792.gif
new file mode 100644
index 00000000..ce8a4619
Binary files /dev/null and b/animateditems/19792.gif differ
diff --git a/animateditems/19792.png b/animateditems/19792.png
new file mode 100644
index 00000000..fd8b91c1
Binary files /dev/null and b/animateditems/19792.png differ
diff --git a/animateditems/19793.gif b/animateditems/19793.gif
new file mode 100644
index 00000000..adff75d9
Binary files /dev/null and b/animateditems/19793.gif differ
diff --git a/animateditems/19793.png b/animateditems/19793.png
new file mode 100644
index 00000000..484b650a
Binary files /dev/null and b/animateditems/19793.png differ
diff --git a/animateditems/19794.gif b/animateditems/19794.gif
new file mode 100644
index 00000000..bbebddec
Binary files /dev/null and b/animateditems/19794.gif differ
diff --git a/animateditems/19794.png b/animateditems/19794.png
new file mode 100644
index 00000000..01c9fe15
Binary files /dev/null and b/animateditems/19794.png differ
diff --git a/animateditems/1980.gif b/animateditems/1980.gif
new file mode 100644
index 00000000..bd15acf1
Binary files /dev/null and b/animateditems/1980.gif differ
diff --git a/animateditems/1980.png b/animateditems/1980.png
new file mode 100644
index 00000000..47b61022
Binary files /dev/null and b/animateditems/1980.png differ
diff --git a/animateditems/1981.gif b/animateditems/1981.gif
new file mode 100644
index 00000000..a2ffed03
Binary files /dev/null and b/animateditems/1981.gif differ
diff --git a/animateditems/1981.png b/animateditems/1981.png
new file mode 100644
index 00000000..51fd4aee
Binary files /dev/null and b/animateditems/1981.png differ
diff --git a/animateditems/1982.gif b/animateditems/1982.gif
new file mode 100644
index 00000000..b62c8829
Binary files /dev/null and b/animateditems/1982.gif differ
diff --git a/animateditems/1982.png b/animateditems/1982.png
new file mode 100644
index 00000000..1c83f4e9
Binary files /dev/null and b/animateditems/1982.png differ
diff --git a/animateditems/1983.gif b/animateditems/1983.gif
new file mode 100644
index 00000000..c32d1d2b
Binary files /dev/null and b/animateditems/1983.gif differ
diff --git a/animateditems/1983.png b/animateditems/1983.png
new file mode 100644
index 00000000..07e23502
Binary files /dev/null and b/animateditems/1983.png differ
diff --git a/animateditems/1984.gif b/animateditems/1984.gif
new file mode 100644
index 00000000..0ec0aaec
Binary files /dev/null and b/animateditems/1984.gif differ
diff --git a/animateditems/1984.png b/animateditems/1984.png
new file mode 100644
index 00000000..3a61534b
Binary files /dev/null and b/animateditems/1984.png differ
diff --git a/animateditems/1985.gif b/animateditems/1985.gif
new file mode 100644
index 00000000..ef4431de
Binary files /dev/null and b/animateditems/1985.gif differ
diff --git a/animateditems/1985.png b/animateditems/1985.png
new file mode 100644
index 00000000..26f7b2ad
Binary files /dev/null and b/animateditems/1985.png differ
diff --git a/animateditems/1986.gif b/animateditems/1986.gif
new file mode 100644
index 00000000..429a8423
Binary files /dev/null and b/animateditems/1986.gif differ
diff --git a/animateditems/1986.png b/animateditems/1986.png
new file mode 100644
index 00000000..08e6f8b4
Binary files /dev/null and b/animateditems/1986.png differ
diff --git a/animateditems/1987.gif b/animateditems/1987.gif
new file mode 100644
index 00000000..070d47df
Binary files /dev/null and b/animateditems/1987.gif differ
diff --git a/animateditems/1987.png b/animateditems/1987.png
new file mode 100644
index 00000000..34d4896f
Binary files /dev/null and b/animateditems/1987.png differ
diff --git a/animateditems/1988.gif b/animateditems/1988.gif
new file mode 100644
index 00000000..d0186ac5
Binary files /dev/null and b/animateditems/1988.gif differ
diff --git a/animateditems/1988.png b/animateditems/1988.png
new file mode 100644
index 00000000..bbdbdcc9
Binary files /dev/null and b/animateditems/1988.png differ
diff --git a/animateditems/1989.gif b/animateditems/1989.gif
new file mode 100644
index 00000000..29a6c5cf
Binary files /dev/null and b/animateditems/1989.gif differ
diff --git a/animateditems/1989.png b/animateditems/1989.png
new file mode 100644
index 00000000..08f6b62d
Binary files /dev/null and b/animateditems/1989.png differ
diff --git a/animateditems/19897.gif b/animateditems/19897.gif
new file mode 100644
index 00000000..bf58a2af
Binary files /dev/null and b/animateditems/19897.gif differ
diff --git a/animateditems/19897.png b/animateditems/19897.png
new file mode 100644
index 00000000..b77b3f24
Binary files /dev/null and b/animateditems/19897.png differ
diff --git a/animateditems/1990.gif b/animateditems/1990.gif
new file mode 100644
index 00000000..fde9fc8a
Binary files /dev/null and b/animateditems/1990.gif differ
diff --git a/animateditems/1990.png b/animateditems/1990.png
new file mode 100644
index 00000000..30389134
Binary files /dev/null and b/animateditems/1990.png differ
diff --git a/animateditems/1991.gif b/animateditems/1991.gif
new file mode 100644
index 00000000..1bbf00e3
Binary files /dev/null and b/animateditems/1991.gif differ
diff --git a/animateditems/1991.png b/animateditems/1991.png
new file mode 100644
index 00000000..f3ef12cc
Binary files /dev/null and b/animateditems/1991.png differ
diff --git a/animateditems/1992.gif b/animateditems/1992.gif
new file mode 100644
index 00000000..cb87525e
Binary files /dev/null and b/animateditems/1992.gif differ
diff --git a/animateditems/1992.png b/animateditems/1992.png
new file mode 100644
index 00000000..8c58cc60
Binary files /dev/null and b/animateditems/1992.png differ
diff --git a/animateditems/1993.gif b/animateditems/1993.gif
new file mode 100644
index 00000000..7fdda10a
Binary files /dev/null and b/animateditems/1993.gif differ
diff --git a/animateditems/1993.png b/animateditems/1993.png
new file mode 100644
index 00000000..1192f90f
Binary files /dev/null and b/animateditems/1993.png differ
diff --git a/animateditems/1994.gif b/animateditems/1994.gif
new file mode 100644
index 00000000..514b482b
Binary files /dev/null and b/animateditems/1994.gif differ
diff --git a/animateditems/1994.png b/animateditems/1994.png
new file mode 100644
index 00000000..e14b3c37
Binary files /dev/null and b/animateditems/1994.png differ
diff --git a/animateditems/19948.gif b/animateditems/19948.gif
new file mode 100644
index 00000000..6e7b547b
Binary files /dev/null and b/animateditems/19948.gif differ
diff --git a/animateditems/19948.png b/animateditems/19948.png
new file mode 100644
index 00000000..4f2b4360
Binary files /dev/null and b/animateditems/19948.png differ
diff --git a/animateditems/19949.gif b/animateditems/19949.gif
new file mode 100644
index 00000000..8bf90edb
Binary files /dev/null and b/animateditems/19949.gif differ
diff --git a/animateditems/19949.png b/animateditems/19949.png
new file mode 100644
index 00000000..1636570c
Binary files /dev/null and b/animateditems/19949.png differ
diff --git a/animateditems/1995.gif b/animateditems/1995.gif
new file mode 100644
index 00000000..c7d97af8
Binary files /dev/null and b/animateditems/1995.gif differ
diff --git a/animateditems/1995.png b/animateditems/1995.png
new file mode 100644
index 00000000..b722120a
Binary files /dev/null and b/animateditems/1995.png differ
diff --git a/animateditems/19950.gif b/animateditems/19950.gif
new file mode 100644
index 00000000..462074cd
Binary files /dev/null and b/animateditems/19950.gif differ
diff --git a/animateditems/19950.png b/animateditems/19950.png
new file mode 100644
index 00000000..78634754
Binary files /dev/null and b/animateditems/19950.png differ
diff --git a/animateditems/19951.gif b/animateditems/19951.gif
new file mode 100644
index 00000000..1cf1eb43
Binary files /dev/null and b/animateditems/19951.gif differ
diff --git a/animateditems/19951.png b/animateditems/19951.png
new file mode 100644
index 00000000..fb6d546f
Binary files /dev/null and b/animateditems/19951.png differ
diff --git a/animateditems/19952.gif b/animateditems/19952.gif
new file mode 100644
index 00000000..462074cd
Binary files /dev/null and b/animateditems/19952.gif differ
diff --git a/animateditems/19952.png b/animateditems/19952.png
new file mode 100644
index 00000000..78634754
Binary files /dev/null and b/animateditems/19952.png differ
diff --git a/animateditems/19953.gif b/animateditems/19953.gif
new file mode 100644
index 00000000..462074cd
Binary files /dev/null and b/animateditems/19953.gif differ
diff --git a/animateditems/19953.png b/animateditems/19953.png
new file mode 100644
index 00000000..78634754
Binary files /dev/null and b/animateditems/19953.png differ
diff --git a/animateditems/19954.gif b/animateditems/19954.gif
new file mode 100644
index 00000000..462074cd
Binary files /dev/null and b/animateditems/19954.gif differ
diff --git a/animateditems/19954.png b/animateditems/19954.png
new file mode 100644
index 00000000..78634754
Binary files /dev/null and b/animateditems/19954.png differ
diff --git a/animateditems/19955.gif b/animateditems/19955.gif
new file mode 100644
index 00000000..462074cd
Binary files /dev/null and b/animateditems/19955.gif differ
diff --git a/animateditems/19955.png b/animateditems/19955.png
new file mode 100644
index 00000000..78634754
Binary files /dev/null and b/animateditems/19955.png differ
diff --git a/animateditems/19956.gif b/animateditems/19956.gif
new file mode 100644
index 00000000..a824b8e9
Binary files /dev/null and b/animateditems/19956.gif differ
diff --git a/animateditems/19956.png b/animateditems/19956.png
new file mode 100644
index 00000000..7407c8b2
Binary files /dev/null and b/animateditems/19956.png differ
diff --git a/animateditems/1996.gif b/animateditems/1996.gif
new file mode 100644
index 00000000..c6e3a8fa
Binary files /dev/null and b/animateditems/1996.gif differ
diff --git a/animateditems/1996.png b/animateditems/1996.png
new file mode 100644
index 00000000..d0fdf769
Binary files /dev/null and b/animateditems/1996.png differ
diff --git a/animateditems/1997.gif b/animateditems/1997.gif
new file mode 100644
index 00000000..ecf11489
Binary files /dev/null and b/animateditems/1997.gif differ
diff --git a/animateditems/1997.png b/animateditems/1997.png
new file mode 100644
index 00000000..ed664726
Binary files /dev/null and b/animateditems/1997.png differ
diff --git a/animateditems/1998.gif b/animateditems/1998.gif
new file mode 100644
index 00000000..243f8e05
Binary files /dev/null and b/animateditems/1998.gif differ
diff --git a/animateditems/1998.png b/animateditems/1998.png
new file mode 100644
index 00000000..7596416e
Binary files /dev/null and b/animateditems/1998.png differ
diff --git a/animateditems/1999.gif b/animateditems/1999.gif
new file mode 100644
index 00000000..0bcbe25b
Binary files /dev/null and b/animateditems/1999.gif differ
diff --git a/animateditems/1999.png b/animateditems/1999.png
new file mode 100644
index 00000000..b5b5509b
Binary files /dev/null and b/animateditems/1999.png differ
diff --git a/animateditems/2.gif b/animateditems/2.gif
new file mode 100644
index 00000000..3b9adb1c
Binary files /dev/null and b/animateditems/2.gif differ
diff --git a/animateditems/2000.gif b/animateditems/2000.gif
new file mode 100644
index 00000000..4de2012d
Binary files /dev/null and b/animateditems/2000.gif differ
diff --git a/animateditems/2000.png b/animateditems/2000.png
new file mode 100644
index 00000000..1dbcd152
Binary files /dev/null and b/animateditems/2000.png differ
diff --git a/animateditems/2001.gif b/animateditems/2001.gif
new file mode 100644
index 00000000..da4f5451
Binary files /dev/null and b/animateditems/2001.gif differ
diff --git a/animateditems/2001.png b/animateditems/2001.png
new file mode 100644
index 00000000..b1bc01f9
Binary files /dev/null and b/animateditems/2001.png differ
diff --git a/animateditems/2002.gif b/animateditems/2002.gif
new file mode 100644
index 00000000..df74ca42
Binary files /dev/null and b/animateditems/2002.gif differ
diff --git a/animateditems/2002.png b/animateditems/2002.png
new file mode 100644
index 00000000..5f75df42
Binary files /dev/null and b/animateditems/2002.png differ
diff --git a/animateditems/2003.gif b/animateditems/2003.gif
new file mode 100644
index 00000000..672d8d5d
Binary files /dev/null and b/animateditems/2003.gif differ
diff --git a/animateditems/2003.png b/animateditems/2003.png
new file mode 100644
index 00000000..f5563ae3
Binary files /dev/null and b/animateditems/2003.png differ
diff --git a/animateditems/2004.gif b/animateditems/2004.gif
new file mode 100644
index 00000000..3536217f
Binary files /dev/null and b/animateditems/2004.gif differ
diff --git a/animateditems/2004.png b/animateditems/2004.png
new file mode 100644
index 00000000..7a513839
Binary files /dev/null and b/animateditems/2004.png differ
diff --git a/animateditems/2005.gif b/animateditems/2005.gif
new file mode 100644
index 00000000..326a98cf
Binary files /dev/null and b/animateditems/2005.gif differ
diff --git a/animateditems/2005.png b/animateditems/2005.png
new file mode 100644
index 00000000..9771ca6c
Binary files /dev/null and b/animateditems/2005.png differ
diff --git a/animateditems/2006.gif b/animateditems/2006.gif
new file mode 100644
index 00000000..5da48e47
Binary files /dev/null and b/animateditems/2006.gif differ
diff --git a/animateditems/2006.png b/animateditems/2006.png
new file mode 100644
index 00000000..1909fab4
Binary files /dev/null and b/animateditems/2006.png differ
diff --git a/animateditems/2007.gif b/animateditems/2007.gif
new file mode 100644
index 00000000..6b851909
Binary files /dev/null and b/animateditems/2007.gif differ
diff --git a/animateditems/2007.png b/animateditems/2007.png
new file mode 100644
index 00000000..985ea885
Binary files /dev/null and b/animateditems/2007.png differ
diff --git a/animateditems/2008.gif b/animateditems/2008.gif
new file mode 100644
index 00000000..171771aa
Binary files /dev/null and b/animateditems/2008.gif differ
diff --git a/animateditems/2008.png b/animateditems/2008.png
new file mode 100644
index 00000000..c533d585
Binary files /dev/null and b/animateditems/2008.png differ
diff --git a/animateditems/20089.gif b/animateditems/20089.gif
new file mode 100644
index 00000000..7d0b7b3d
Binary files /dev/null and b/animateditems/20089.gif differ
diff --git a/animateditems/20089.png b/animateditems/20089.png
new file mode 100644
index 00000000..80822a01
Binary files /dev/null and b/animateditems/20089.png differ
diff --git a/animateditems/2009.gif b/animateditems/2009.gif
new file mode 100644
index 00000000..f5a3a91d
Binary files /dev/null and b/animateditems/2009.gif differ
diff --git a/animateditems/2009.png b/animateditems/2009.png
new file mode 100644
index 00000000..276709c7
Binary files /dev/null and b/animateditems/2009.png differ
diff --git a/animateditems/20090.gif b/animateditems/20090.gif
new file mode 100644
index 00000000..a2a3c086
Binary files /dev/null and b/animateditems/20090.gif differ
diff --git a/animateditems/20090.png b/animateditems/20090.png
new file mode 100644
index 00000000..350afd58
Binary files /dev/null and b/animateditems/20090.png differ
diff --git a/animateditems/20092.gif b/animateditems/20092.gif
new file mode 100644
index 00000000..e1305573
Binary files /dev/null and b/animateditems/20092.gif differ
diff --git a/animateditems/20092.png b/animateditems/20092.png
new file mode 100644
index 00000000..5f2fd6f8
Binary files /dev/null and b/animateditems/20092.png differ
diff --git a/animateditems/20093.gif b/animateditems/20093.gif
new file mode 100644
index 00000000..eaca2cf1
Binary files /dev/null and b/animateditems/20093.gif differ
diff --git a/animateditems/20093.png b/animateditems/20093.png
new file mode 100644
index 00000000..236f3e26
Binary files /dev/null and b/animateditems/20093.png differ
diff --git a/animateditems/20097.gif b/animateditems/20097.gif
new file mode 100644
index 00000000..61bb6ac9
Binary files /dev/null and b/animateditems/20097.gif differ
diff --git a/animateditems/20097.png b/animateditems/20097.png
new file mode 100644
index 00000000..d72190fc
Binary files /dev/null and b/animateditems/20097.png differ
diff --git a/animateditems/20098.gif b/animateditems/20098.gif
new file mode 100644
index 00000000..2027f303
Binary files /dev/null and b/animateditems/20098.gif differ
diff --git a/animateditems/20098.png b/animateditems/20098.png
new file mode 100644
index 00000000..ef5ee9f5
Binary files /dev/null and b/animateditems/20098.png differ
diff --git a/animateditems/20099.gif b/animateditems/20099.gif
new file mode 100644
index 00000000..b137fbc9
Binary files /dev/null and b/animateditems/20099.gif differ
diff --git a/animateditems/20099.png b/animateditems/20099.png
new file mode 100644
index 00000000..753d6288
Binary files /dev/null and b/animateditems/20099.png differ
diff --git a/animateditems/2010.gif b/animateditems/2010.gif
new file mode 100644
index 00000000..0cd8449e
Binary files /dev/null and b/animateditems/2010.gif differ
diff --git a/animateditems/2010.png b/animateditems/2010.png
new file mode 100644
index 00000000..6510f3af
Binary files /dev/null and b/animateditems/2010.png differ
diff --git a/animateditems/20100.gif b/animateditems/20100.gif
new file mode 100644
index 00000000..06356e38
Binary files /dev/null and b/animateditems/20100.gif differ
diff --git a/animateditems/20100.png b/animateditems/20100.png
new file mode 100644
index 00000000..6f361a9d
Binary files /dev/null and b/animateditems/20100.png differ
diff --git a/animateditems/20101.gif b/animateditems/20101.gif
new file mode 100644
index 00000000..57791852
Binary files /dev/null and b/animateditems/20101.gif differ
diff --git a/animateditems/20101.png b/animateditems/20101.png
new file mode 100644
index 00000000..d88f867d
Binary files /dev/null and b/animateditems/20101.png differ
diff --git a/animateditems/20102.gif b/animateditems/20102.gif
new file mode 100644
index 00000000..d396bd55
Binary files /dev/null and b/animateditems/20102.gif differ
diff --git a/animateditems/20102.png b/animateditems/20102.png
new file mode 100644
index 00000000..57f82983
Binary files /dev/null and b/animateditems/20102.png differ
diff --git a/animateditems/20103.gif b/animateditems/20103.gif
new file mode 100644
index 00000000..53e8a889
Binary files /dev/null and b/animateditems/20103.gif differ
diff --git a/animateditems/20103.png b/animateditems/20103.png
new file mode 100644
index 00000000..9cbe978b
Binary files /dev/null and b/animateditems/20103.png differ
diff --git a/animateditems/20104.gif b/animateditems/20104.gif
new file mode 100644
index 00000000..061f478d
Binary files /dev/null and b/animateditems/20104.gif differ
diff --git a/animateditems/20104.png b/animateditems/20104.png
new file mode 100644
index 00000000..99cf99b3
Binary files /dev/null and b/animateditems/20104.png differ
diff --git a/animateditems/20105.gif b/animateditems/20105.gif
new file mode 100644
index 00000000..16b20b70
Binary files /dev/null and b/animateditems/20105.gif differ
diff --git a/animateditems/20105.png b/animateditems/20105.png
new file mode 100644
index 00000000..40a40cd9
Binary files /dev/null and b/animateditems/20105.png differ
diff --git a/animateditems/20106.gif b/animateditems/20106.gif
new file mode 100644
index 00000000..61d90750
Binary files /dev/null and b/animateditems/20106.gif differ
diff --git a/animateditems/20106.png b/animateditems/20106.png
new file mode 100644
index 00000000..5a28439a
Binary files /dev/null and b/animateditems/20106.png differ
diff --git a/animateditems/20107.gif b/animateditems/20107.gif
new file mode 100644
index 00000000..30ea72db
Binary files /dev/null and b/animateditems/20107.gif differ
diff --git a/animateditems/20107.png b/animateditems/20107.png
new file mode 100644
index 00000000..cdf03ca4
Binary files /dev/null and b/animateditems/20107.png differ
diff --git a/animateditems/20108.gif b/animateditems/20108.gif
new file mode 100644
index 00000000..dff98c60
Binary files /dev/null and b/animateditems/20108.gif differ
diff --git a/animateditems/20108.png b/animateditems/20108.png
new file mode 100644
index 00000000..95a85301
Binary files /dev/null and b/animateditems/20108.png differ
diff --git a/animateditems/20109.gif b/animateditems/20109.gif
new file mode 100644
index 00000000..d6ec2eeb
Binary files /dev/null and b/animateditems/20109.gif differ
diff --git a/animateditems/20109.png b/animateditems/20109.png
new file mode 100644
index 00000000..4a40e876
Binary files /dev/null and b/animateditems/20109.png differ
diff --git a/animateditems/2011.gif b/animateditems/2011.gif
new file mode 100644
index 00000000..10da3fd4
Binary files /dev/null and b/animateditems/2011.gif differ
diff --git a/animateditems/2011.png b/animateditems/2011.png
new file mode 100644
index 00000000..000e39db
Binary files /dev/null and b/animateditems/2011.png differ
diff --git a/animateditems/20110.gif b/animateditems/20110.gif
new file mode 100644
index 00000000..52e86f87
Binary files /dev/null and b/animateditems/20110.gif differ
diff --git a/animateditems/20110.png b/animateditems/20110.png
new file mode 100644
index 00000000..9e7c3894
Binary files /dev/null and b/animateditems/20110.png differ
diff --git a/animateditems/20111.gif b/animateditems/20111.gif
new file mode 100644
index 00000000..c1a1cd57
Binary files /dev/null and b/animateditems/20111.gif differ
diff --git a/animateditems/20111.png b/animateditems/20111.png
new file mode 100644
index 00000000..17e14e24
Binary files /dev/null and b/animateditems/20111.png differ
diff --git a/animateditems/2012.gif b/animateditems/2012.gif
new file mode 100644
index 00000000..f831711a
Binary files /dev/null and b/animateditems/2012.gif differ
diff --git a/animateditems/2012.png b/animateditems/2012.png
new file mode 100644
index 00000000..0d9b0be1
Binary files /dev/null and b/animateditems/2012.png differ
diff --git a/animateditems/20126.gif b/animateditems/20126.gif
new file mode 100644
index 00000000..fdf61797
Binary files /dev/null and b/animateditems/20126.gif differ
diff --git a/animateditems/20126.png b/animateditems/20126.png
new file mode 100644
index 00000000..baeea9a8
Binary files /dev/null and b/animateditems/20126.png differ
diff --git a/animateditems/20127.gif b/animateditems/20127.gif
new file mode 100644
index 00000000..e6a80ec1
Binary files /dev/null and b/animateditems/20127.gif differ
diff --git a/animateditems/20127.png b/animateditems/20127.png
new file mode 100644
index 00000000..b820c0e8
Binary files /dev/null and b/animateditems/20127.png differ
diff --git a/animateditems/20128.gif b/animateditems/20128.gif
new file mode 100644
index 00000000..37f976ce
Binary files /dev/null and b/animateditems/20128.gif differ
diff --git a/animateditems/20128.png b/animateditems/20128.png
new file mode 100644
index 00000000..68163d66
Binary files /dev/null and b/animateditems/20128.png differ
diff --git a/animateditems/20129.gif b/animateditems/20129.gif
new file mode 100644
index 00000000..2bd63e43
Binary files /dev/null and b/animateditems/20129.gif differ
diff --git a/animateditems/20129.png b/animateditems/20129.png
new file mode 100644
index 00000000..edd6ef29
Binary files /dev/null and b/animateditems/20129.png differ
diff --git a/animateditems/2013.gif b/animateditems/2013.gif
new file mode 100644
index 00000000..43441b30
Binary files /dev/null and b/animateditems/2013.gif differ
diff --git a/animateditems/2013.png b/animateditems/2013.png
new file mode 100644
index 00000000..fdf09e40
Binary files /dev/null and b/animateditems/2013.png differ
diff --git a/animateditems/20130.gif b/animateditems/20130.gif
new file mode 100644
index 00000000..01d3a082
Binary files /dev/null and b/animateditems/20130.gif differ
diff --git a/animateditems/20130.png b/animateditems/20130.png
new file mode 100644
index 00000000..5136ef87
Binary files /dev/null and b/animateditems/20130.png differ
diff --git a/animateditems/20131.gif b/animateditems/20131.gif
new file mode 100644
index 00000000..eb1facd5
Binary files /dev/null and b/animateditems/20131.gif differ
diff --git a/animateditems/20131.png b/animateditems/20131.png
new file mode 100644
index 00000000..70b49c98
Binary files /dev/null and b/animateditems/20131.png differ
diff --git a/animateditems/20132.gif b/animateditems/20132.gif
new file mode 100644
index 00000000..74eb4e89
Binary files /dev/null and b/animateditems/20132.gif differ
diff --git a/animateditems/20132.png b/animateditems/20132.png
new file mode 100644
index 00000000..03bfbed6
Binary files /dev/null and b/animateditems/20132.png differ
diff --git a/animateditems/20133.gif b/animateditems/20133.gif
new file mode 100644
index 00000000..81fabe24
Binary files /dev/null and b/animateditems/20133.gif differ
diff --git a/animateditems/20133.png b/animateditems/20133.png
new file mode 100644
index 00000000..058deee3
Binary files /dev/null and b/animateditems/20133.png differ
diff --git a/animateditems/20134.gif b/animateditems/20134.gif
new file mode 100644
index 00000000..e597a77d
Binary files /dev/null and b/animateditems/20134.gif differ
diff --git a/animateditems/20134.png b/animateditems/20134.png
new file mode 100644
index 00000000..061f0632
Binary files /dev/null and b/animateditems/20134.png differ
diff --git a/animateditems/20135.gif b/animateditems/20135.gif
new file mode 100644
index 00000000..f8b0c18f
Binary files /dev/null and b/animateditems/20135.gif differ
diff --git a/animateditems/20135.png b/animateditems/20135.png
new file mode 100644
index 00000000..b6a42b44
Binary files /dev/null and b/animateditems/20135.png differ
diff --git a/animateditems/20136.gif b/animateditems/20136.gif
new file mode 100644
index 00000000..22a07b8c
Binary files /dev/null and b/animateditems/20136.gif differ
diff --git a/animateditems/20136.png b/animateditems/20136.png
new file mode 100644
index 00000000..7cbbf10d
Binary files /dev/null and b/animateditems/20136.png differ
diff --git a/animateditems/20137.gif b/animateditems/20137.gif
new file mode 100644
index 00000000..d52bf914
Binary files /dev/null and b/animateditems/20137.gif differ
diff --git a/animateditems/20137.png b/animateditems/20137.png
new file mode 100644
index 00000000..6dffe73a
Binary files /dev/null and b/animateditems/20137.png differ
diff --git a/animateditems/20138.gif b/animateditems/20138.gif
new file mode 100644
index 00000000..28c1531d
Binary files /dev/null and b/animateditems/20138.gif differ
diff --git a/animateditems/20138.png b/animateditems/20138.png
new file mode 100644
index 00000000..5394ce75
Binary files /dev/null and b/animateditems/20138.png differ
diff --git a/animateditems/20139.gif b/animateditems/20139.gif
new file mode 100644
index 00000000..036359f4
Binary files /dev/null and b/animateditems/20139.gif differ
diff --git a/animateditems/20139.png b/animateditems/20139.png
new file mode 100644
index 00000000..b0a3ad9a
Binary files /dev/null and b/animateditems/20139.png differ
diff --git a/animateditems/2014.gif b/animateditems/2014.gif
new file mode 100644
index 00000000..a220507a
Binary files /dev/null and b/animateditems/2014.gif differ
diff --git a/animateditems/2014.png b/animateditems/2014.png
new file mode 100644
index 00000000..7f95680b
Binary files /dev/null and b/animateditems/2014.png differ
diff --git a/animateditems/2015.gif b/animateditems/2015.gif
new file mode 100644
index 00000000..099cc5d8
Binary files /dev/null and b/animateditems/2015.gif differ
diff --git a/animateditems/2015.png b/animateditems/2015.png
new file mode 100644
index 00000000..917d7bd2
Binary files /dev/null and b/animateditems/2015.png differ
diff --git a/animateditems/2022.gif b/animateditems/2022.gif
new file mode 100644
index 00000000..942e35f6
Binary files /dev/null and b/animateditems/2022.gif differ
diff --git a/animateditems/2022.png b/animateditems/2022.png
new file mode 100644
index 00000000..ec3b16b1
Binary files /dev/null and b/animateditems/2022.png differ
diff --git a/animateditems/2023.gif b/animateditems/2023.gif
new file mode 100644
index 00000000..fd7c30cc
Binary files /dev/null and b/animateditems/2023.gif differ
diff --git a/animateditems/2023.png b/animateditems/2023.png
new file mode 100644
index 00000000..25147d20
Binary files /dev/null and b/animateditems/2023.png differ
diff --git a/animateditems/2024.gif b/animateditems/2024.gif
new file mode 100644
index 00000000..965b24fa
Binary files /dev/null and b/animateditems/2024.gif differ
diff --git a/animateditems/2024.png b/animateditems/2024.png
new file mode 100644
index 00000000..e985a80e
Binary files /dev/null and b/animateditems/2024.png differ
diff --git a/animateditems/20252.gif b/animateditems/20252.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/20252.gif differ
diff --git a/animateditems/20252.png b/animateditems/20252.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/20252.png differ
diff --git a/animateditems/20254.gif b/animateditems/20254.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/20254.gif differ
diff --git a/animateditems/20254.png b/animateditems/20254.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/20254.png differ
diff --git a/animateditems/20255.gif b/animateditems/20255.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/20255.gif differ
diff --git a/animateditems/20255.png b/animateditems/20255.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/20255.png differ
diff --git a/animateditems/20257.gif b/animateditems/20257.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/20257.gif differ
diff --git a/animateditems/20257.png b/animateditems/20257.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/20257.png differ
diff --git a/animateditems/2031.gif b/animateditems/2031.gif
new file mode 100644
index 00000000..62369486
Binary files /dev/null and b/animateditems/2031.gif differ
diff --git a/animateditems/2031.png b/animateditems/2031.png
new file mode 100644
index 00000000..a174c2d0
Binary files /dev/null and b/animateditems/2031.png differ
diff --git a/animateditems/2032.gif b/animateditems/2032.gif
new file mode 100644
index 00000000..1d0edfab
Binary files /dev/null and b/animateditems/2032.gif differ
diff --git a/animateditems/2032.png b/animateditems/2032.png
new file mode 100644
index 00000000..0e70d752
Binary files /dev/null and b/animateditems/2032.png differ
diff --git a/animateditems/2033.gif b/animateditems/2033.gif
new file mode 100644
index 00000000..381cd099
Binary files /dev/null and b/animateditems/2033.gif differ
diff --git a/animateditems/2033.png b/animateditems/2033.png
new file mode 100644
index 00000000..6b34307a
Binary files /dev/null and b/animateditems/2033.png differ
diff --git a/animateditems/2035.gif b/animateditems/2035.gif
new file mode 100644
index 00000000..bde2c739
Binary files /dev/null and b/animateditems/2035.gif differ
diff --git a/animateditems/2035.png b/animateditems/2035.png
new file mode 100644
index 00000000..556f951b
Binary files /dev/null and b/animateditems/2035.png differ
diff --git a/animateditems/2036.gif b/animateditems/2036.gif
new file mode 100644
index 00000000..05020aee
Binary files /dev/null and b/animateditems/2036.gif differ
diff --git a/animateditems/2036.png b/animateditems/2036.png
new file mode 100644
index 00000000..3b0b7c94
Binary files /dev/null and b/animateditems/2036.png differ
diff --git a/animateditems/2041.gif b/animateditems/2041.gif
new file mode 100644
index 00000000..47a5061d
Binary files /dev/null and b/animateditems/2041.gif differ
diff --git a/animateditems/2041.png b/animateditems/2041.png
new file mode 100644
index 00000000..a5380a3c
Binary files /dev/null and b/animateditems/2041.png differ
diff --git a/animateditems/2042.gif b/animateditems/2042.gif
new file mode 100644
index 00000000..66e3bdaa
Binary files /dev/null and b/animateditems/2042.gif differ
diff --git a/animateditems/2042.png b/animateditems/2042.png
new file mode 100644
index 00000000..ab90da47
Binary files /dev/null and b/animateditems/2042.png differ
diff --git a/animateditems/2043.gif b/animateditems/2043.gif
new file mode 100644
index 00000000..c5501c22
Binary files /dev/null and b/animateditems/2043.gif differ
diff --git a/animateditems/2043.png b/animateditems/2043.png
new file mode 100644
index 00000000..b20acdab
Binary files /dev/null and b/animateditems/2043.png differ
diff --git a/animateditems/2044.gif b/animateditems/2044.gif
new file mode 100644
index 00000000..f5cdc7b2
Binary files /dev/null and b/animateditems/2044.gif differ
diff --git a/animateditems/2044.png b/animateditems/2044.png
new file mode 100644
index 00000000..adc078f2
Binary files /dev/null and b/animateditems/2044.png differ
diff --git a/animateditems/2045.gif b/animateditems/2045.gif
new file mode 100644
index 00000000..eaf49231
Binary files /dev/null and b/animateditems/2045.gif differ
diff --git a/animateditems/2045.png b/animateditems/2045.png
new file mode 100644
index 00000000..601825d9
Binary files /dev/null and b/animateditems/2045.png differ
diff --git a/animateditems/2046.gif b/animateditems/2046.gif
new file mode 100644
index 00000000..f5cdc7b2
Binary files /dev/null and b/animateditems/2046.gif differ
diff --git a/animateditems/2046.png b/animateditems/2046.png
new file mode 100644
index 00000000..adc078f2
Binary files /dev/null and b/animateditems/2046.png differ
diff --git a/animateditems/2047.gif b/animateditems/2047.gif
new file mode 100644
index 00000000..d7827eb6
Binary files /dev/null and b/animateditems/2047.gif differ
diff --git a/animateditems/2047.png b/animateditems/2047.png
new file mode 100644
index 00000000..06a30027
Binary files /dev/null and b/animateditems/2047.png differ
diff --git a/animateditems/2048.gif b/animateditems/2048.gif
new file mode 100644
index 00000000..c4f7f6d7
Binary files /dev/null and b/animateditems/2048.gif differ
diff --git a/animateditems/2048.png b/animateditems/2048.png
new file mode 100644
index 00000000..b2462e95
Binary files /dev/null and b/animateditems/2048.png differ
diff --git a/animateditems/2049.gif b/animateditems/2049.gif
new file mode 100644
index 00000000..b85b7e21
Binary files /dev/null and b/animateditems/2049.gif differ
diff --git a/animateditems/2049.png b/animateditems/2049.png
new file mode 100644
index 00000000..40e9fdcb
Binary files /dev/null and b/animateditems/2049.png differ
diff --git a/animateditems/2050.gif b/animateditems/2050.gif
new file mode 100644
index 00000000..5f3c7f69
Binary files /dev/null and b/animateditems/2050.gif differ
diff --git a/animateditems/2050.png b/animateditems/2050.png
new file mode 100644
index 00000000..15efe48c
Binary files /dev/null and b/animateditems/2050.png differ
diff --git a/animateditems/2051.gif b/animateditems/2051.gif
new file mode 100644
index 00000000..bc8fc9db
Binary files /dev/null and b/animateditems/2051.gif differ
diff --git a/animateditems/2051.png b/animateditems/2051.png
new file mode 100644
index 00000000..d847e6a5
Binary files /dev/null and b/animateditems/2051.png differ
diff --git a/animateditems/2052.gif b/animateditems/2052.gif
new file mode 100644
index 00000000..cc0f6e32
Binary files /dev/null and b/animateditems/2052.gif differ
diff --git a/animateditems/2052.png b/animateditems/2052.png
new file mode 100644
index 00000000..514ad3eb
Binary files /dev/null and b/animateditems/2052.png differ
diff --git a/animateditems/2053.gif b/animateditems/2053.gif
new file mode 100644
index 00000000..157868ec
Binary files /dev/null and b/animateditems/2053.gif differ
diff --git a/animateditems/2053.png b/animateditems/2053.png
new file mode 100644
index 00000000..9d7d29c4
Binary files /dev/null and b/animateditems/2053.png differ
diff --git a/animateditems/2054.gif b/animateditems/2054.gif
new file mode 100644
index 00000000..4ce7bb3d
Binary files /dev/null and b/animateditems/2054.gif differ
diff --git a/animateditems/2054.png b/animateditems/2054.png
new file mode 100644
index 00000000..743652af
Binary files /dev/null and b/animateditems/2054.png differ
diff --git a/animateditems/2055.gif b/animateditems/2055.gif
new file mode 100644
index 00000000..22065db7
Binary files /dev/null and b/animateditems/2055.gif differ
diff --git a/animateditems/2055.png b/animateditems/2055.png
new file mode 100644
index 00000000..518b4b50
Binary files /dev/null and b/animateditems/2055.png differ
diff --git a/animateditems/2056.gif b/animateditems/2056.gif
new file mode 100644
index 00000000..4ce7bb3d
Binary files /dev/null and b/animateditems/2056.gif differ
diff --git a/animateditems/2056.png b/animateditems/2056.png
new file mode 100644
index 00000000..743652af
Binary files /dev/null and b/animateditems/2056.png differ
diff --git a/animateditems/2057.gif b/animateditems/2057.gif
new file mode 100644
index 00000000..66e3bdaa
Binary files /dev/null and b/animateditems/2057.gif differ
diff --git a/animateditems/2057.png b/animateditems/2057.png
new file mode 100644
index 00000000..ab90da47
Binary files /dev/null and b/animateditems/2057.png differ
diff --git a/animateditems/20608.gif b/animateditems/20608.gif
new file mode 100644
index 00000000..5a1ef2e4
Binary files /dev/null and b/animateditems/20608.gif differ
diff --git a/animateditems/20608.png b/animateditems/20608.png
new file mode 100644
index 00000000..f2d1ff00
Binary files /dev/null and b/animateditems/20608.png differ
diff --git a/animateditems/20609.gif b/animateditems/20609.gif
new file mode 100644
index 00000000..dece9941
Binary files /dev/null and b/animateditems/20609.gif differ
diff --git a/animateditems/20609.png b/animateditems/20609.png
new file mode 100644
index 00000000..a12ae357
Binary files /dev/null and b/animateditems/20609.png differ
diff --git a/animateditems/20610.gif b/animateditems/20610.gif
new file mode 100644
index 00000000..10486850
Binary files /dev/null and b/animateditems/20610.gif differ
diff --git a/animateditems/20610.png b/animateditems/20610.png
new file mode 100644
index 00000000..20acf1fc
Binary files /dev/null and b/animateditems/20610.png differ
diff --git a/animateditems/20611.gif b/animateditems/20611.gif
new file mode 100644
index 00000000..3b3a03bc
Binary files /dev/null and b/animateditems/20611.gif differ
diff --git a/animateditems/20611.png b/animateditems/20611.png
new file mode 100644
index 00000000..0bdfa273
Binary files /dev/null and b/animateditems/20611.png differ
diff --git a/animateditems/20612.gif b/animateditems/20612.gif
new file mode 100644
index 00000000..35a6146a
Binary files /dev/null and b/animateditems/20612.gif differ
diff --git a/animateditems/20612.png b/animateditems/20612.png
new file mode 100644
index 00000000..b9ca74bd
Binary files /dev/null and b/animateditems/20612.png differ
diff --git a/animateditems/20613.gif b/animateditems/20613.gif
new file mode 100644
index 00000000..fdd01ca5
Binary files /dev/null and b/animateditems/20613.gif differ
diff --git a/animateditems/20613.png b/animateditems/20613.png
new file mode 100644
index 00000000..7b8e5da9
Binary files /dev/null and b/animateditems/20613.png differ
diff --git a/animateditems/20614.gif b/animateditems/20614.gif
new file mode 100644
index 00000000..9c43b677
Binary files /dev/null and b/animateditems/20614.gif differ
diff --git a/animateditems/20614.png b/animateditems/20614.png
new file mode 100644
index 00000000..741e3278
Binary files /dev/null and b/animateditems/20614.png differ
diff --git a/animateditems/20615.gif b/animateditems/20615.gif
new file mode 100644
index 00000000..34dac105
Binary files /dev/null and b/animateditems/20615.gif differ
diff --git a/animateditems/20615.png b/animateditems/20615.png
new file mode 100644
index 00000000..abeb094a
Binary files /dev/null and b/animateditems/20615.png differ
diff --git a/animateditems/20616.gif b/animateditems/20616.gif
new file mode 100644
index 00000000..549e8e5f
Binary files /dev/null and b/animateditems/20616.gif differ
diff --git a/animateditems/20616.png b/animateditems/20616.png
new file mode 100644
index 00000000..f6cc669b
Binary files /dev/null and b/animateditems/20616.png differ
diff --git a/animateditems/20617.gif b/animateditems/20617.gif
new file mode 100644
index 00000000..3688cbf7
Binary files /dev/null and b/animateditems/20617.gif differ
diff --git a/animateditems/20617.png b/animateditems/20617.png
new file mode 100644
index 00000000..87c2673d
Binary files /dev/null and b/animateditems/20617.png differ
diff --git a/animateditems/20618.gif b/animateditems/20618.gif
new file mode 100644
index 00000000..fd3c94e1
Binary files /dev/null and b/animateditems/20618.gif differ
diff --git a/animateditems/20618.png b/animateditems/20618.png
new file mode 100644
index 00000000..80c3ffc0
Binary files /dev/null and b/animateditems/20618.png differ
diff --git a/animateditems/20619.gif b/animateditems/20619.gif
new file mode 100644
index 00000000..ea5d1ff6
Binary files /dev/null and b/animateditems/20619.gif differ
diff --git a/animateditems/20619.png b/animateditems/20619.png
new file mode 100644
index 00000000..6ac846cb
Binary files /dev/null and b/animateditems/20619.png differ
diff --git a/animateditems/2062.gif b/animateditems/2062.gif
new file mode 100644
index 00000000..39a2c707
Binary files /dev/null and b/animateditems/2062.gif differ
diff --git a/animateditems/2062.png b/animateditems/2062.png
new file mode 100644
index 00000000..ada489af
Binary files /dev/null and b/animateditems/2062.png differ
diff --git a/animateditems/20620.gif b/animateditems/20620.gif
new file mode 100644
index 00000000..c843f0ee
Binary files /dev/null and b/animateditems/20620.gif differ
diff --git a/animateditems/20620.png b/animateditems/20620.png
new file mode 100644
index 00000000..201ddbeb
Binary files /dev/null and b/animateditems/20620.png differ
diff --git a/animateditems/20624.gif b/animateditems/20624.gif
new file mode 100644
index 00000000..49662554
Binary files /dev/null and b/animateditems/20624.gif differ
diff --git a/animateditems/20624.png b/animateditems/20624.png
new file mode 100644
index 00000000..72a823c8
Binary files /dev/null and b/animateditems/20624.png differ
diff --git a/animateditems/20625.gif b/animateditems/20625.gif
new file mode 100644
index 00000000..49662554
Binary files /dev/null and b/animateditems/20625.gif differ
diff --git a/animateditems/20625.png b/animateditems/20625.png
new file mode 100644
index 00000000..72a823c8
Binary files /dev/null and b/animateditems/20625.png differ
diff --git a/animateditems/2063.gif b/animateditems/2063.gif
new file mode 100644
index 00000000..6d1488b1
Binary files /dev/null and b/animateditems/2063.gif differ
diff --git a/animateditems/2063.png b/animateditems/2063.png
new file mode 100644
index 00000000..91843673
Binary files /dev/null and b/animateditems/2063.png differ
diff --git a/animateditems/2070.gif b/animateditems/2070.gif
new file mode 100644
index 00000000..e848ead7
Binary files /dev/null and b/animateditems/2070.gif differ
diff --git a/animateditems/2070.png b/animateditems/2070.png
new file mode 100644
index 00000000..82d80447
Binary files /dev/null and b/animateditems/2070.png differ
diff --git a/animateditems/2071.gif b/animateditems/2071.gif
new file mode 100644
index 00000000..5904c7ed
Binary files /dev/null and b/animateditems/2071.gif differ
diff --git a/animateditems/2071.png b/animateditems/2071.png
new file mode 100644
index 00000000..991aa9fc
Binary files /dev/null and b/animateditems/2071.png differ
diff --git a/animateditems/2072.gif b/animateditems/2072.gif
new file mode 100644
index 00000000..18b8e52a
Binary files /dev/null and b/animateditems/2072.gif differ
diff --git a/animateditems/2072.png b/animateditems/2072.png
new file mode 100644
index 00000000..d0fe506e
Binary files /dev/null and b/animateditems/2072.png differ
diff --git a/animateditems/2073.gif b/animateditems/2073.gif
new file mode 100644
index 00000000..c54feb2f
Binary files /dev/null and b/animateditems/2073.gif differ
diff --git a/animateditems/2073.png b/animateditems/2073.png
new file mode 100644
index 00000000..7e5edef2
Binary files /dev/null and b/animateditems/2073.png differ
diff --git a/animateditems/2074.gif b/animateditems/2074.gif
new file mode 100644
index 00000000..79b6783f
Binary files /dev/null and b/animateditems/2074.gif differ
diff --git a/animateditems/2074.png b/animateditems/2074.png
new file mode 100644
index 00000000..d8264b8c
Binary files /dev/null and b/animateditems/2074.png differ
diff --git a/animateditems/2075.gif b/animateditems/2075.gif
new file mode 100644
index 00000000..77e25147
Binary files /dev/null and b/animateditems/2075.gif differ
diff --git a/animateditems/2075.png b/animateditems/2075.png
new file mode 100644
index 00000000..d4e5320f
Binary files /dev/null and b/animateditems/2075.png differ
diff --git a/animateditems/2076.gif b/animateditems/2076.gif
new file mode 100644
index 00000000..96ef5131
Binary files /dev/null and b/animateditems/2076.gif differ
diff --git a/animateditems/2076.png b/animateditems/2076.png
new file mode 100644
index 00000000..9354f20d
Binary files /dev/null and b/animateditems/2076.png differ
diff --git a/animateditems/2077.gif b/animateditems/2077.gif
new file mode 100644
index 00000000..eef0c3fc
Binary files /dev/null and b/animateditems/2077.gif differ
diff --git a/animateditems/2077.png b/animateditems/2077.png
new file mode 100644
index 00000000..fac648af
Binary files /dev/null and b/animateditems/2077.png differ
diff --git a/animateditems/2078.gif b/animateditems/2078.gif
new file mode 100644
index 00000000..ef7fddc1
Binary files /dev/null and b/animateditems/2078.gif differ
diff --git a/animateditems/2078.png b/animateditems/2078.png
new file mode 100644
index 00000000..abce4bc4
Binary files /dev/null and b/animateditems/2078.png differ
diff --git a/animateditems/2079.gif b/animateditems/2079.gif
new file mode 100644
index 00000000..02fade48
Binary files /dev/null and b/animateditems/2079.gif differ
diff --git a/animateditems/2079.png b/animateditems/2079.png
new file mode 100644
index 00000000..6d9ae93b
Binary files /dev/null and b/animateditems/2079.png differ
diff --git a/animateditems/2086.gif b/animateditems/2086.gif
new file mode 100644
index 00000000..ced4c57d
Binary files /dev/null and b/animateditems/2086.gif differ
diff --git a/animateditems/2086.png b/animateditems/2086.png
new file mode 100644
index 00000000..fed7b724
Binary files /dev/null and b/animateditems/2086.png differ
diff --git a/animateditems/2087.gif b/animateditems/2087.gif
new file mode 100644
index 00000000..987fef1d
Binary files /dev/null and b/animateditems/2087.gif differ
diff --git a/animateditems/2087.png b/animateditems/2087.png
new file mode 100644
index 00000000..52b86c6c
Binary files /dev/null and b/animateditems/2087.png differ
diff --git a/animateditems/2088.gif b/animateditems/2088.gif
new file mode 100644
index 00000000..6c7fc0be
Binary files /dev/null and b/animateditems/2088.gif differ
diff --git a/animateditems/2088.png b/animateditems/2088.png
new file mode 100644
index 00000000..957026ba
Binary files /dev/null and b/animateditems/2088.png differ
diff --git a/animateditems/2089.gif b/animateditems/2089.gif
new file mode 100644
index 00000000..f707e129
Binary files /dev/null and b/animateditems/2089.gif differ
diff --git a/animateditems/2089.png b/animateditems/2089.png
new file mode 100644
index 00000000..ff2b0a9b
Binary files /dev/null and b/animateditems/2089.png differ
diff --git a/animateditems/2090.gif b/animateditems/2090.gif
new file mode 100644
index 00000000..d1bc2f83
Binary files /dev/null and b/animateditems/2090.gif differ
diff --git a/animateditems/2090.png b/animateditems/2090.png
new file mode 100644
index 00000000..ec319e2a
Binary files /dev/null and b/animateditems/2090.png differ
diff --git a/animateditems/2091.gif b/animateditems/2091.gif
new file mode 100644
index 00000000..55d14c2f
Binary files /dev/null and b/animateditems/2091.gif differ
diff --git a/animateditems/2091.png b/animateditems/2091.png
new file mode 100644
index 00000000..3d54663c
Binary files /dev/null and b/animateditems/2091.png differ
diff --git a/animateditems/2092.gif b/animateditems/2092.gif
new file mode 100644
index 00000000..3e7185dd
Binary files /dev/null and b/animateditems/2092.gif differ
diff --git a/animateditems/2092.png b/animateditems/2092.png
new file mode 100644
index 00000000..96d7330d
Binary files /dev/null and b/animateditems/2092.png differ
diff --git a/animateditems/2093.gif b/animateditems/2093.gif
new file mode 100644
index 00000000..de2419b9
Binary files /dev/null and b/animateditems/2093.gif differ
diff --git a/animateditems/2093.png b/animateditems/2093.png
new file mode 100644
index 00000000..7fb0092c
Binary files /dev/null and b/animateditems/2093.png differ
diff --git a/animateditems/2096.gif b/animateditems/2096.gif
new file mode 100644
index 00000000..06f95703
Binary files /dev/null and b/animateditems/2096.gif differ
diff --git a/animateditems/2096.png b/animateditems/2096.png
new file mode 100644
index 00000000..0fed7361
Binary files /dev/null and b/animateditems/2096.png differ
diff --git a/animateditems/2097.gif b/animateditems/2097.gif
new file mode 100644
index 00000000..3fcf3ac8
Binary files /dev/null and b/animateditems/2097.gif differ
diff --git a/animateditems/2097.png b/animateditems/2097.png
new file mode 100644
index 00000000..f82f8517
Binary files /dev/null and b/animateditems/2097.png differ
diff --git a/animateditems/2099.gif b/animateditems/2099.gif
new file mode 100644
index 00000000..aca00d4a
Binary files /dev/null and b/animateditems/2099.gif differ
diff --git a/animateditems/2099.png b/animateditems/2099.png
new file mode 100644
index 00000000..20ced93e
Binary files /dev/null and b/animateditems/2099.png differ
diff --git a/animateditems/2100.gif b/animateditems/2100.gif
new file mode 100644
index 00000000..999f8b42
Binary files /dev/null and b/animateditems/2100.gif differ
diff --git a/animateditems/2100.png b/animateditems/2100.png
new file mode 100644
index 00000000..ce1ab73b
Binary files /dev/null and b/animateditems/2100.png differ
diff --git a/animateditems/2102.gif b/animateditems/2102.gif
new file mode 100644
index 00000000..6145f932
Binary files /dev/null and b/animateditems/2102.gif differ
diff --git a/animateditems/2102.png b/animateditems/2102.png
new file mode 100644
index 00000000..cac315e3
Binary files /dev/null and b/animateditems/2102.png differ
diff --git a/animateditems/2103.gif b/animateditems/2103.gif
new file mode 100644
index 00000000..e19d2411
Binary files /dev/null and b/animateditems/2103.gif differ
diff --git a/animateditems/2103.png b/animateditems/2103.png
new file mode 100644
index 00000000..41eb0832
Binary files /dev/null and b/animateditems/2103.png differ
diff --git a/animateditems/2104.gif b/animateditems/2104.gif
new file mode 100644
index 00000000..eb7099fb
Binary files /dev/null and b/animateditems/2104.gif differ
diff --git a/animateditems/2104.png b/animateditems/2104.png
new file mode 100644
index 00000000..0fe1e0d3
Binary files /dev/null and b/animateditems/2104.png differ
diff --git a/animateditems/2107.gif b/animateditems/2107.gif
new file mode 100644
index 00000000..1948a4f2
Binary files /dev/null and b/animateditems/2107.gif differ
diff --git a/animateditems/2107.png b/animateditems/2107.png
new file mode 100644
index 00000000..00455891
Binary files /dev/null and b/animateditems/2107.png differ
diff --git a/animateditems/2108.gif b/animateditems/2108.gif
new file mode 100644
index 00000000..97be9321
Binary files /dev/null and b/animateditems/2108.gif differ
diff --git a/animateditems/2108.png b/animateditems/2108.png
new file mode 100644
index 00000000..4e27b146
Binary files /dev/null and b/animateditems/2108.png differ
diff --git a/animateditems/2110.gif b/animateditems/2110.gif
new file mode 100644
index 00000000..867a3644
Binary files /dev/null and b/animateditems/2110.gif differ
diff --git a/animateditems/2110.png b/animateditems/2110.png
new file mode 100644
index 00000000..0af65966
Binary files /dev/null and b/animateditems/2110.png differ
diff --git a/animateditems/2111.gif b/animateditems/2111.gif
new file mode 100644
index 00000000..cb9bb4be
Binary files /dev/null and b/animateditems/2111.gif differ
diff --git a/animateditems/2111.png b/animateditems/2111.png
new file mode 100644
index 00000000..facf8937
Binary files /dev/null and b/animateditems/2111.png differ
diff --git a/animateditems/2112.gif b/animateditems/2112.gif
new file mode 100644
index 00000000..cc96eba6
Binary files /dev/null and b/animateditems/2112.gif differ
diff --git a/animateditems/2112.png b/animateditems/2112.png
new file mode 100644
index 00000000..13c40a48
Binary files /dev/null and b/animateditems/2112.png differ
diff --git a/animateditems/2113.gif b/animateditems/2113.gif
new file mode 100644
index 00000000..4fe805b4
Binary files /dev/null and b/animateditems/2113.gif differ
diff --git a/animateditems/2113.png b/animateditems/2113.png
new file mode 100644
index 00000000..4c5f8f01
Binary files /dev/null and b/animateditems/2113.png differ
diff --git a/animateditems/2114.gif b/animateditems/2114.gif
new file mode 100644
index 00000000..212d206a
Binary files /dev/null and b/animateditems/2114.gif differ
diff --git a/animateditems/2114.png b/animateditems/2114.png
new file mode 100644
index 00000000..efd8e4f3
Binary files /dev/null and b/animateditems/2114.png differ
diff --git a/animateditems/2115.gif b/animateditems/2115.gif
new file mode 100644
index 00000000..2897a126
Binary files /dev/null and b/animateditems/2115.gif differ
diff --git a/animateditems/2115.png b/animateditems/2115.png
new file mode 100644
index 00000000..492a7635
Binary files /dev/null and b/animateditems/2115.png differ
diff --git a/animateditems/2120.gif b/animateditems/2120.gif
new file mode 100644
index 00000000..5de97b79
Binary files /dev/null and b/animateditems/2120.gif differ
diff --git a/animateditems/2120.png b/animateditems/2120.png
new file mode 100644
index 00000000..0c561c2b
Binary files /dev/null and b/animateditems/2120.png differ
diff --git a/animateditems/2121.gif b/animateditems/2121.gif
new file mode 100644
index 00000000..7bcc9087
Binary files /dev/null and b/animateditems/2121.gif differ
diff --git a/animateditems/2121.png b/animateditems/2121.png
new file mode 100644
index 00000000..840295d3
Binary files /dev/null and b/animateditems/2121.png differ
diff --git a/animateditems/2122.gif b/animateditems/2122.gif
new file mode 100644
index 00000000..6c377085
Binary files /dev/null and b/animateditems/2122.gif differ
diff --git a/animateditems/2122.png b/animateditems/2122.png
new file mode 100644
index 00000000..d338dc97
Binary files /dev/null and b/animateditems/2122.png differ
diff --git a/animateditems/2123.gif b/animateditems/2123.gif
new file mode 100644
index 00000000..6ab7c794
Binary files /dev/null and b/animateditems/2123.gif differ
diff --git a/animateditems/2123.png b/animateditems/2123.png
new file mode 100644
index 00000000..01d74faf
Binary files /dev/null and b/animateditems/2123.png differ
diff --git a/animateditems/2124.gif b/animateditems/2124.gif
new file mode 100644
index 00000000..5a71a530
Binary files /dev/null and b/animateditems/2124.gif differ
diff --git a/animateditems/2124.png b/animateditems/2124.png
new file mode 100644
index 00000000..a585f056
Binary files /dev/null and b/animateditems/2124.png differ
diff --git a/animateditems/21241.gif b/animateditems/21241.gif
new file mode 100644
index 00000000..1a6fcf25
Binary files /dev/null and b/animateditems/21241.gif differ
diff --git a/animateditems/21241.png b/animateditems/21241.png
new file mode 100644
index 00000000..c49587fd
Binary files /dev/null and b/animateditems/21241.png differ
diff --git a/animateditems/21242.gif b/animateditems/21242.gif
new file mode 100644
index 00000000..73270a18
Binary files /dev/null and b/animateditems/21242.gif differ
diff --git a/animateditems/21242.png b/animateditems/21242.png
new file mode 100644
index 00000000..b8a854b1
Binary files /dev/null and b/animateditems/21242.png differ
diff --git a/animateditems/21243.gif b/animateditems/21243.gif
new file mode 100644
index 00000000..d14c250d
Binary files /dev/null and b/animateditems/21243.gif differ
diff --git a/animateditems/21243.png b/animateditems/21243.png
new file mode 100644
index 00000000..f92e8669
Binary files /dev/null and b/animateditems/21243.png differ
diff --git a/animateditems/21244.gif b/animateditems/21244.gif
new file mode 100644
index 00000000..9e5d385d
Binary files /dev/null and b/animateditems/21244.gif differ
diff --git a/animateditems/21244.png b/animateditems/21244.png
new file mode 100644
index 00000000..fc141a25
Binary files /dev/null and b/animateditems/21244.png differ
diff --git a/animateditems/21245.gif b/animateditems/21245.gif
new file mode 100644
index 00000000..475cd4de
Binary files /dev/null and b/animateditems/21245.gif differ
diff --git a/animateditems/21245.png b/animateditems/21245.png
new file mode 100644
index 00000000..a1202530
Binary files /dev/null and b/animateditems/21245.png differ
diff --git a/animateditems/21246.gif b/animateditems/21246.gif
new file mode 100644
index 00000000..0ed6afeb
Binary files /dev/null and b/animateditems/21246.gif differ
diff --git a/animateditems/21246.png b/animateditems/21246.png
new file mode 100644
index 00000000..446c2b93
Binary files /dev/null and b/animateditems/21246.png differ
diff --git a/animateditems/21247.gif b/animateditems/21247.gif
new file mode 100644
index 00000000..a1e0cf9b
Binary files /dev/null and b/animateditems/21247.gif differ
diff --git a/animateditems/21247.png b/animateditems/21247.png
new file mode 100644
index 00000000..2629fae9
Binary files /dev/null and b/animateditems/21247.png differ
diff --git a/animateditems/21248.gif b/animateditems/21248.gif
new file mode 100644
index 00000000..4127f54c
Binary files /dev/null and b/animateditems/21248.gif differ
diff --git a/animateditems/21248.png b/animateditems/21248.png
new file mode 100644
index 00000000..7a60ac08
Binary files /dev/null and b/animateditems/21248.png differ
diff --git a/animateditems/21249.gif b/animateditems/21249.gif
new file mode 100644
index 00000000..1292bdae
Binary files /dev/null and b/animateditems/21249.gif differ
diff --git a/animateditems/21249.png b/animateditems/21249.png
new file mode 100644
index 00000000..a17a8182
Binary files /dev/null and b/animateditems/21249.png differ
diff --git a/animateditems/2125.gif b/animateditems/2125.gif
new file mode 100644
index 00000000..ed581a4a
Binary files /dev/null and b/animateditems/2125.gif differ
diff --git a/animateditems/2125.png b/animateditems/2125.png
new file mode 100644
index 00000000..1bbb4e70
Binary files /dev/null and b/animateditems/2125.png differ
diff --git a/animateditems/21250.gif b/animateditems/21250.gif
new file mode 100644
index 00000000..0ed6afeb
Binary files /dev/null and b/animateditems/21250.gif differ
diff --git a/animateditems/21250.png b/animateditems/21250.png
new file mode 100644
index 00000000..446c2b93
Binary files /dev/null and b/animateditems/21250.png differ
diff --git a/animateditems/21251.gif b/animateditems/21251.gif
new file mode 100644
index 00000000..10b5c847
Binary files /dev/null and b/animateditems/21251.gif differ
diff --git a/animateditems/21251.png b/animateditems/21251.png
new file mode 100644
index 00000000..973e37e1
Binary files /dev/null and b/animateditems/21251.png differ
diff --git a/animateditems/21252.gif b/animateditems/21252.gif
new file mode 100644
index 00000000..677560ce
Binary files /dev/null and b/animateditems/21252.gif differ
diff --git a/animateditems/21252.png b/animateditems/21252.png
new file mode 100644
index 00000000..a80f818d
Binary files /dev/null and b/animateditems/21252.png differ
diff --git a/animateditems/21253.gif b/animateditems/21253.gif
new file mode 100644
index 00000000..50bdcc3d
Binary files /dev/null and b/animateditems/21253.gif differ
diff --git a/animateditems/21253.png b/animateditems/21253.png
new file mode 100644
index 00000000..e5441e6a
Binary files /dev/null and b/animateditems/21253.png differ
diff --git a/animateditems/2126.gif b/animateditems/2126.gif
new file mode 100644
index 00000000..710bceae
Binary files /dev/null and b/animateditems/2126.gif differ
diff --git a/animateditems/2126.png b/animateditems/2126.png
new file mode 100644
index 00000000..790a5410
Binary files /dev/null and b/animateditems/2126.png differ
diff --git a/animateditems/2127.gif b/animateditems/2127.gif
new file mode 100644
index 00000000..3ccdc567
Binary files /dev/null and b/animateditems/2127.gif differ
diff --git a/animateditems/2127.png b/animateditems/2127.png
new file mode 100644
index 00000000..8c85c3f7
Binary files /dev/null and b/animateditems/2127.png differ
diff --git a/animateditems/2128.gif b/animateditems/2128.gif
new file mode 100644
index 00000000..e418dee4
Binary files /dev/null and b/animateditems/2128.gif differ
diff --git a/animateditems/2128.png b/animateditems/2128.png
new file mode 100644
index 00000000..58375e9d
Binary files /dev/null and b/animateditems/2128.png differ
diff --git a/animateditems/2129.gif b/animateditems/2129.gif
new file mode 100644
index 00000000..24267219
Binary files /dev/null and b/animateditems/2129.gif differ
diff --git a/animateditems/2129.png b/animateditems/2129.png
new file mode 100644
index 00000000..c1147640
Binary files /dev/null and b/animateditems/2129.png differ
diff --git a/animateditems/2130.gif b/animateditems/2130.gif
new file mode 100644
index 00000000..d8c743da
Binary files /dev/null and b/animateditems/2130.gif differ
diff --git a/animateditems/2130.png b/animateditems/2130.png
new file mode 100644
index 00000000..38a9e82f
Binary files /dev/null and b/animateditems/2130.png differ
diff --git a/animateditems/21308.gif b/animateditems/21308.gif
new file mode 100644
index 00000000..d7d9db5f
Binary files /dev/null and b/animateditems/21308.gif differ
diff --git a/animateditems/21308.png b/animateditems/21308.png
new file mode 100644
index 00000000..a713c10e
Binary files /dev/null and b/animateditems/21308.png differ
diff --git a/animateditems/21309.gif b/animateditems/21309.gif
new file mode 100644
index 00000000..83215224
Binary files /dev/null and b/animateditems/21309.gif differ
diff --git a/animateditems/21309.png b/animateditems/21309.png
new file mode 100644
index 00000000..c2b5ee7e
Binary files /dev/null and b/animateditems/21309.png differ
diff --git a/animateditems/2131.gif b/animateditems/2131.gif
new file mode 100644
index 00000000..8d97b5cd
Binary files /dev/null and b/animateditems/2131.gif differ
diff --git a/animateditems/2131.png b/animateditems/2131.png
new file mode 100644
index 00000000..8dcb9427
Binary files /dev/null and b/animateditems/2131.png differ
diff --git a/animateditems/21310.gif b/animateditems/21310.gif
new file mode 100644
index 00000000..43cba912
Binary files /dev/null and b/animateditems/21310.gif differ
diff --git a/animateditems/21310.png b/animateditems/21310.png
new file mode 100644
index 00000000..ad2c5f26
Binary files /dev/null and b/animateditems/21310.png differ
diff --git a/animateditems/21311.gif b/animateditems/21311.gif
new file mode 100644
index 00000000..6a99af82
Binary files /dev/null and b/animateditems/21311.gif differ
diff --git a/animateditems/21311.png b/animateditems/21311.png
new file mode 100644
index 00000000..7f5fa610
Binary files /dev/null and b/animateditems/21311.png differ
diff --git a/animateditems/21312.gif b/animateditems/21312.gif
new file mode 100644
index 00000000..9ab9ad88
Binary files /dev/null and b/animateditems/21312.gif differ
diff --git a/animateditems/21312.png b/animateditems/21312.png
new file mode 100644
index 00000000..916dd75d
Binary files /dev/null and b/animateditems/21312.png differ
diff --git a/animateditems/21313.gif b/animateditems/21313.gif
new file mode 100644
index 00000000..5223f1f8
Binary files /dev/null and b/animateditems/21313.gif differ
diff --git a/animateditems/21313.png b/animateditems/21313.png
new file mode 100644
index 00000000..29a2a1c4
Binary files /dev/null and b/animateditems/21313.png differ
diff --git a/animateditems/21314.gif b/animateditems/21314.gif
new file mode 100644
index 00000000..3a265a75
Binary files /dev/null and b/animateditems/21314.gif differ
diff --git a/animateditems/21314.png b/animateditems/21314.png
new file mode 100644
index 00000000..bba5dc3b
Binary files /dev/null and b/animateditems/21314.png differ
diff --git a/animateditems/2132.gif b/animateditems/2132.gif
new file mode 100644
index 00000000..bb706adf
Binary files /dev/null and b/animateditems/2132.gif differ
diff --git a/animateditems/2132.png b/animateditems/2132.png
new file mode 100644
index 00000000..0b2ba8fb
Binary files /dev/null and b/animateditems/2132.png differ
diff --git a/animateditems/2133.gif b/animateditems/2133.gif
new file mode 100644
index 00000000..8e4521e4
Binary files /dev/null and b/animateditems/2133.gif differ
diff --git a/animateditems/2133.png b/animateditems/2133.png
new file mode 100644
index 00000000..c7f05c9a
Binary files /dev/null and b/animateditems/2133.png differ
diff --git a/animateditems/2134.gif b/animateditems/2134.gif
new file mode 100644
index 00000000..1942e4cd
Binary files /dev/null and b/animateditems/2134.gif differ
diff --git a/animateditems/2134.png b/animateditems/2134.png
new file mode 100644
index 00000000..3c5ea1b7
Binary files /dev/null and b/animateditems/2134.png differ
diff --git a/animateditems/2135.gif b/animateditems/2135.gif
new file mode 100644
index 00000000..81af4984
Binary files /dev/null and b/animateditems/2135.gif differ
diff --git a/animateditems/2135.png b/animateditems/2135.png
new file mode 100644
index 00000000..ea7838bf
Binary files /dev/null and b/animateditems/2135.png differ
diff --git a/animateditems/2136.gif b/animateditems/2136.gif
new file mode 100644
index 00000000..60e4641e
Binary files /dev/null and b/animateditems/2136.gif differ
diff --git a/animateditems/2136.png b/animateditems/2136.png
new file mode 100644
index 00000000..2af55ec4
Binary files /dev/null and b/animateditems/2136.png differ
diff --git a/animateditems/2137.gif b/animateditems/2137.gif
new file mode 100644
index 00000000..9366d213
Binary files /dev/null and b/animateditems/2137.gif differ
diff --git a/animateditems/2137.png b/animateditems/2137.png
new file mode 100644
index 00000000..eb9159ba
Binary files /dev/null and b/animateditems/2137.png differ
diff --git a/animateditems/2138.gif b/animateditems/2138.gif
new file mode 100644
index 00000000..00b18513
Binary files /dev/null and b/animateditems/2138.gif differ
diff --git a/animateditems/2138.png b/animateditems/2138.png
new file mode 100644
index 00000000..41064517
Binary files /dev/null and b/animateditems/2138.png differ
diff --git a/animateditems/21380.gif b/animateditems/21380.gif
new file mode 100644
index 00000000..445bdab9
Binary files /dev/null and b/animateditems/21380.gif differ
diff --git a/animateditems/21380.png b/animateditems/21380.png
new file mode 100644
index 00000000..1d0bf539
Binary files /dev/null and b/animateditems/21380.png differ
diff --git a/animateditems/21381.gif b/animateditems/21381.gif
new file mode 100644
index 00000000..445bdab9
Binary files /dev/null and b/animateditems/21381.gif differ
diff --git a/animateditems/21381.png b/animateditems/21381.png
new file mode 100644
index 00000000..1d0bf539
Binary files /dev/null and b/animateditems/21381.png differ
diff --git a/animateditems/21382.gif b/animateditems/21382.gif
new file mode 100644
index 00000000..b31ca64a
Binary files /dev/null and b/animateditems/21382.gif differ
diff --git a/animateditems/21382.png b/animateditems/21382.png
new file mode 100644
index 00000000..0a7ba2db
Binary files /dev/null and b/animateditems/21382.png differ
diff --git a/animateditems/21383.gif b/animateditems/21383.gif
new file mode 100644
index 00000000..25fe624f
Binary files /dev/null and b/animateditems/21383.gif differ
diff --git a/animateditems/21383.png b/animateditems/21383.png
new file mode 100644
index 00000000..b326250c
Binary files /dev/null and b/animateditems/21383.png differ
diff --git a/animateditems/2139.gif b/animateditems/2139.gif
new file mode 100644
index 00000000..213a41b8
Binary files /dev/null and b/animateditems/2139.gif differ
diff --git a/animateditems/2139.png b/animateditems/2139.png
new file mode 100644
index 00000000..662e5486
Binary files /dev/null and b/animateditems/2139.png differ
diff --git a/animateditems/21391.gif b/animateditems/21391.gif
new file mode 100644
index 00000000..8b7bdfe0
Binary files /dev/null and b/animateditems/21391.gif differ
diff --git a/animateditems/21391.png b/animateditems/21391.png
new file mode 100644
index 00000000..2dee7599
Binary files /dev/null and b/animateditems/21391.png differ
diff --git a/animateditems/21394.gif b/animateditems/21394.gif
new file mode 100644
index 00000000..f210e812
Binary files /dev/null and b/animateditems/21394.gif differ
diff --git a/animateditems/21394.png b/animateditems/21394.png
new file mode 100644
index 00000000..0cafb6a0
Binary files /dev/null and b/animateditems/21394.png differ
diff --git a/animateditems/21395.gif b/animateditems/21395.gif
new file mode 100644
index 00000000..46959083
Binary files /dev/null and b/animateditems/21395.gif differ
diff --git a/animateditems/21395.png b/animateditems/21395.png
new file mode 100644
index 00000000..5df752c1
Binary files /dev/null and b/animateditems/21395.png differ
diff --git a/animateditems/21399.gif b/animateditems/21399.gif
new file mode 100644
index 00000000..0bc4748c
Binary files /dev/null and b/animateditems/21399.gif differ
diff --git a/animateditems/21399.png b/animateditems/21399.png
new file mode 100644
index 00000000..63da4e68
Binary files /dev/null and b/animateditems/21399.png differ
diff --git a/animateditems/2140.gif b/animateditems/2140.gif
new file mode 100644
index 00000000..645cb4c6
Binary files /dev/null and b/animateditems/2140.gif differ
diff --git a/animateditems/2140.png b/animateditems/2140.png
new file mode 100644
index 00000000..0917340d
Binary files /dev/null and b/animateditems/2140.png differ
diff --git a/animateditems/21400.gif b/animateditems/21400.gif
new file mode 100644
index 00000000..0c236ea4
Binary files /dev/null and b/animateditems/21400.gif differ
diff --git a/animateditems/21400.png b/animateditems/21400.png
new file mode 100644
index 00000000..4098ed66
Binary files /dev/null and b/animateditems/21400.png differ
diff --git a/animateditems/21401.gif b/animateditems/21401.gif
new file mode 100644
index 00000000..67836761
Binary files /dev/null and b/animateditems/21401.gif differ
diff --git a/animateditems/21401.png b/animateditems/21401.png
new file mode 100644
index 00000000..8d133fc9
Binary files /dev/null and b/animateditems/21401.png differ
diff --git a/animateditems/21402.gif b/animateditems/21402.gif
new file mode 100644
index 00000000..6556bd28
Binary files /dev/null and b/animateditems/21402.gif differ
diff --git a/animateditems/21402.png b/animateditems/21402.png
new file mode 100644
index 00000000..542bee14
Binary files /dev/null and b/animateditems/21402.png differ
diff --git a/animateditems/21403.gif b/animateditems/21403.gif
new file mode 100644
index 00000000..712db483
Binary files /dev/null and b/animateditems/21403.gif differ
diff --git a/animateditems/21403.png b/animateditems/21403.png
new file mode 100644
index 00000000..1fcc1234
Binary files /dev/null and b/animateditems/21403.png differ
diff --git a/animateditems/21405.gif b/animateditems/21405.gif
new file mode 100644
index 00000000..52c23e9f
Binary files /dev/null and b/animateditems/21405.gif differ
diff --git a/animateditems/21405.png b/animateditems/21405.png
new file mode 100644
index 00000000..f6a55c39
Binary files /dev/null and b/animateditems/21405.png differ
diff --git a/animateditems/21406.gif b/animateditems/21406.gif
new file mode 100644
index 00000000..90bc4f16
Binary files /dev/null and b/animateditems/21406.gif differ
diff --git a/animateditems/21406.png b/animateditems/21406.png
new file mode 100644
index 00000000..ca90d2e7
Binary files /dev/null and b/animateditems/21406.png differ
diff --git a/animateditems/21407.gif b/animateditems/21407.gif
new file mode 100644
index 00000000..455d184b
Binary files /dev/null and b/animateditems/21407.gif differ
diff --git a/animateditems/21407.png b/animateditems/21407.png
new file mode 100644
index 00000000..5bede13a
Binary files /dev/null and b/animateditems/21407.png differ
diff --git a/animateditems/21408.gif b/animateditems/21408.gif
new file mode 100644
index 00000000..8900c8cd
Binary files /dev/null and b/animateditems/21408.gif differ
diff --git a/animateditems/21408.png b/animateditems/21408.png
new file mode 100644
index 00000000..927ed93c
Binary files /dev/null and b/animateditems/21408.png differ
diff --git a/animateditems/2141.gif b/animateditems/2141.gif
new file mode 100644
index 00000000..f821f16e
Binary files /dev/null and b/animateditems/2141.gif differ
diff --git a/animateditems/2141.png b/animateditems/2141.png
new file mode 100644
index 00000000..ab06809e
Binary files /dev/null and b/animateditems/2141.png differ
diff --git a/animateditems/21417.gif b/animateditems/21417.gif
new file mode 100644
index 00000000..5da48e47
Binary files /dev/null and b/animateditems/21417.gif differ
diff --git a/animateditems/21417.png b/animateditems/21417.png
new file mode 100644
index 00000000..1909fab4
Binary files /dev/null and b/animateditems/21417.png differ
diff --git a/animateditems/21418.gif b/animateditems/21418.gif
new file mode 100644
index 00000000..815f3731
Binary files /dev/null and b/animateditems/21418.gif differ
diff --git a/animateditems/21418.png b/animateditems/21418.png
new file mode 100644
index 00000000..fc7b8f86
Binary files /dev/null and b/animateditems/21418.png differ
diff --git a/animateditems/21419.gif b/animateditems/21419.gif
new file mode 100644
index 00000000..815f3731
Binary files /dev/null and b/animateditems/21419.gif differ
diff --git a/animateditems/21419.png b/animateditems/21419.png
new file mode 100644
index 00000000..fc7b8f86
Binary files /dev/null and b/animateditems/21419.png differ
diff --git a/animateditems/2142.gif b/animateditems/2142.gif
new file mode 100644
index 00000000..5a9429c5
Binary files /dev/null and b/animateditems/2142.gif differ
diff --git a/animateditems/2142.png b/animateditems/2142.png
new file mode 100644
index 00000000..8c6c69d0
Binary files /dev/null and b/animateditems/2142.png differ
diff --git a/animateditems/21424.gif b/animateditems/21424.gif
new file mode 100644
index 00000000..e52c4e7c
Binary files /dev/null and b/animateditems/21424.gif differ
diff --git a/animateditems/21424.png b/animateditems/21424.png
new file mode 100644
index 00000000..2da0d626
Binary files /dev/null and b/animateditems/21424.png differ
diff --git a/animateditems/21425.gif b/animateditems/21425.gif
new file mode 100644
index 00000000..86253309
Binary files /dev/null and b/animateditems/21425.gif differ
diff --git a/animateditems/21425.png b/animateditems/21425.png
new file mode 100644
index 00000000..79c19fcf
Binary files /dev/null and b/animateditems/21425.png differ
diff --git a/animateditems/21426.gif b/animateditems/21426.gif
new file mode 100644
index 00000000..b960de82
Binary files /dev/null and b/animateditems/21426.gif differ
diff --git a/animateditems/21426.png b/animateditems/21426.png
new file mode 100644
index 00000000..e65c9009
Binary files /dev/null and b/animateditems/21426.png differ
diff --git a/animateditems/21427.gif b/animateditems/21427.gif
new file mode 100644
index 00000000..2d7a9f8c
Binary files /dev/null and b/animateditems/21427.gif differ
diff --git a/animateditems/21427.png b/animateditems/21427.png
new file mode 100644
index 00000000..25b52304
Binary files /dev/null and b/animateditems/21427.png differ
diff --git a/animateditems/21428.gif b/animateditems/21428.gif
new file mode 100644
index 00000000..b257e2b4
Binary files /dev/null and b/animateditems/21428.gif differ
diff --git a/animateditems/21428.png b/animateditems/21428.png
new file mode 100644
index 00000000..76270ac2
Binary files /dev/null and b/animateditems/21428.png differ
diff --git a/animateditems/2143.gif b/animateditems/2143.gif
new file mode 100644
index 00000000..ec7ca93d
Binary files /dev/null and b/animateditems/2143.gif differ
diff --git a/animateditems/2143.png b/animateditems/2143.png
new file mode 100644
index 00000000..25fb474e
Binary files /dev/null and b/animateditems/2143.png differ
diff --git a/animateditems/2144.gif b/animateditems/2144.gif
new file mode 100644
index 00000000..d005b235
Binary files /dev/null and b/animateditems/2144.gif differ
diff --git a/animateditems/2144.png b/animateditems/2144.png
new file mode 100644
index 00000000..1299210b
Binary files /dev/null and b/animateditems/2144.png differ
diff --git a/animateditems/21441.gif b/animateditems/21441.gif
new file mode 100644
index 00000000..148cc42b
Binary files /dev/null and b/animateditems/21441.gif differ
diff --git a/animateditems/21441.png b/animateditems/21441.png
new file mode 100644
index 00000000..04fa0ead
Binary files /dev/null and b/animateditems/21441.png differ
diff --git a/animateditems/21446.gif b/animateditems/21446.gif
new file mode 100644
index 00000000..f1b15042
Binary files /dev/null and b/animateditems/21446.gif differ
diff --git a/animateditems/21446.png b/animateditems/21446.png
new file mode 100644
index 00000000..52f9a586
Binary files /dev/null and b/animateditems/21446.png differ
diff --git a/animateditems/21448.gif b/animateditems/21448.gif
new file mode 100644
index 00000000..3f020ae3
Binary files /dev/null and b/animateditems/21448.gif differ
diff --git a/animateditems/21448.png b/animateditems/21448.png
new file mode 100644
index 00000000..5827ed24
Binary files /dev/null and b/animateditems/21448.png differ
diff --git a/animateditems/21449.gif b/animateditems/21449.gif
new file mode 100644
index 00000000..475cd4de
Binary files /dev/null and b/animateditems/21449.gif differ
diff --git a/animateditems/21449.png b/animateditems/21449.png
new file mode 100644
index 00000000..a1202530
Binary files /dev/null and b/animateditems/21449.png differ
diff --git a/animateditems/2145.gif b/animateditems/2145.gif
new file mode 100644
index 00000000..d78cbb7d
Binary files /dev/null and b/animateditems/2145.gif differ
diff --git a/animateditems/2145.png b/animateditems/2145.png
new file mode 100644
index 00000000..d129957a
Binary files /dev/null and b/animateditems/2145.png differ
diff --git a/animateditems/21452.gif b/animateditems/21452.gif
new file mode 100644
index 00000000..2aa89ce5
Binary files /dev/null and b/animateditems/21452.gif differ
diff --git a/animateditems/21452.png b/animateditems/21452.png
new file mode 100644
index 00000000..8e3d9324
Binary files /dev/null and b/animateditems/21452.png differ
diff --git a/animateditems/2146.gif b/animateditems/2146.gif
new file mode 100644
index 00000000..fe676e97
Binary files /dev/null and b/animateditems/2146.gif differ
diff --git a/animateditems/2146.png b/animateditems/2146.png
new file mode 100644
index 00000000..18d9f776
Binary files /dev/null and b/animateditems/2146.png differ
diff --git a/animateditems/21462.gif b/animateditems/21462.gif
new file mode 100644
index 00000000..0ed6afeb
Binary files /dev/null and b/animateditems/21462.gif differ
diff --git a/animateditems/21462.png b/animateditems/21462.png
new file mode 100644
index 00000000..446c2b93
Binary files /dev/null and b/animateditems/21462.png differ
diff --git a/animateditems/21464.gif b/animateditems/21464.gif
new file mode 100644
index 00000000..7db02a45
Binary files /dev/null and b/animateditems/21464.gif differ
diff --git a/animateditems/21464.png b/animateditems/21464.png
new file mode 100644
index 00000000..02da8757
Binary files /dev/null and b/animateditems/21464.png differ
diff --git a/animateditems/21465.gif b/animateditems/21465.gif
new file mode 100644
index 00000000..e52c4e7c
Binary files /dev/null and b/animateditems/21465.gif differ
diff --git a/animateditems/21465.png b/animateditems/21465.png
new file mode 100644
index 00000000..2da0d626
Binary files /dev/null and b/animateditems/21465.png differ
diff --git a/animateditems/21466.gif b/animateditems/21466.gif
new file mode 100644
index 00000000..d4138b0b
Binary files /dev/null and b/animateditems/21466.gif differ
diff --git a/animateditems/21466.png b/animateditems/21466.png
new file mode 100644
index 00000000..c0d3f42c
Binary files /dev/null and b/animateditems/21466.png differ
diff --git a/animateditems/21467.gif b/animateditems/21467.gif
new file mode 100644
index 00000000..ecb0ac85
Binary files /dev/null and b/animateditems/21467.gif differ
diff --git a/animateditems/21467.png b/animateditems/21467.png
new file mode 100644
index 00000000..14610df7
Binary files /dev/null and b/animateditems/21467.png differ
diff --git a/animateditems/21468.gif b/animateditems/21468.gif
new file mode 100644
index 00000000..75ec518e
Binary files /dev/null and b/animateditems/21468.gif differ
diff --git a/animateditems/21468.png b/animateditems/21468.png
new file mode 100644
index 00000000..f3f9c957
Binary files /dev/null and b/animateditems/21468.png differ
diff --git a/animateditems/21469.gif b/animateditems/21469.gif
new file mode 100644
index 00000000..dd104771
Binary files /dev/null and b/animateditems/21469.gif differ
diff --git a/animateditems/21469.png b/animateditems/21469.png
new file mode 100644
index 00000000..b95b71bd
Binary files /dev/null and b/animateditems/21469.png differ
diff --git a/animateditems/2147.gif b/animateditems/2147.gif
new file mode 100644
index 00000000..5847bdac
Binary files /dev/null and b/animateditems/2147.gif differ
diff --git a/animateditems/2147.png b/animateditems/2147.png
new file mode 100644
index 00000000..5bd2d4a3
Binary files /dev/null and b/animateditems/2147.png differ
diff --git a/animateditems/21470.gif b/animateditems/21470.gif
new file mode 100644
index 00000000..9e41b993
Binary files /dev/null and b/animateditems/21470.gif differ
diff --git a/animateditems/21470.png b/animateditems/21470.png
new file mode 100644
index 00000000..23828680
Binary files /dev/null and b/animateditems/21470.png differ
diff --git a/animateditems/21471.gif b/animateditems/21471.gif
new file mode 100644
index 00000000..6723b3bc
Binary files /dev/null and b/animateditems/21471.gif differ
diff --git a/animateditems/21471.png b/animateditems/21471.png
new file mode 100644
index 00000000..e7f60ecc
Binary files /dev/null and b/animateditems/21471.png differ
diff --git a/animateditems/21472.gif b/animateditems/21472.gif
new file mode 100644
index 00000000..4bbc4d90
Binary files /dev/null and b/animateditems/21472.gif differ
diff --git a/animateditems/21472.png b/animateditems/21472.png
new file mode 100644
index 00000000..3bedb5fa
Binary files /dev/null and b/animateditems/21472.png differ
diff --git a/animateditems/21474.gif b/animateditems/21474.gif
new file mode 100644
index 00000000..0ed6afeb
Binary files /dev/null and b/animateditems/21474.gif differ
diff --git a/animateditems/21474.png b/animateditems/21474.png
new file mode 100644
index 00000000..446c2b93
Binary files /dev/null and b/animateditems/21474.png differ
diff --git a/animateditems/21475.gif b/animateditems/21475.gif
new file mode 100644
index 00000000..880f8d41
Binary files /dev/null and b/animateditems/21475.gif differ
diff --git a/animateditems/21475.png b/animateditems/21475.png
new file mode 100644
index 00000000..a9b0b20b
Binary files /dev/null and b/animateditems/21475.png differ
diff --git a/animateditems/21476.gif b/animateditems/21476.gif
new file mode 100644
index 00000000..6a066ef9
Binary files /dev/null and b/animateditems/21476.gif differ
diff --git a/animateditems/21476.png b/animateditems/21476.png
new file mode 100644
index 00000000..f7d506a6
Binary files /dev/null and b/animateditems/21476.png differ
diff --git a/animateditems/2148.gif b/animateditems/2148.gif
new file mode 100644
index 00000000..b3ba8e1e
Binary files /dev/null and b/animateditems/2148.gif differ
diff --git a/animateditems/2148.png b/animateditems/2148.png
new file mode 100644
index 00000000..ce1e3e7f
Binary files /dev/null and b/animateditems/2148.png differ
diff --git a/animateditems/21482.gif b/animateditems/21482.gif
new file mode 100644
index 00000000..3e7185dd
Binary files /dev/null and b/animateditems/21482.gif differ
diff --git a/animateditems/21482.png b/animateditems/21482.png
new file mode 100644
index 00000000..96d7330d
Binary files /dev/null and b/animateditems/21482.png differ
diff --git a/animateditems/21489.gif b/animateditems/21489.gif
new file mode 100644
index 00000000..f707e129
Binary files /dev/null and b/animateditems/21489.gif differ
diff --git a/animateditems/21489.png b/animateditems/21489.png
new file mode 100644
index 00000000..ff2b0a9b
Binary files /dev/null and b/animateditems/21489.png differ
diff --git a/animateditems/2149.gif b/animateditems/2149.gif
new file mode 100644
index 00000000..f53b61f0
Binary files /dev/null and b/animateditems/2149.gif differ
diff --git a/animateditems/2149.png b/animateditems/2149.png
new file mode 100644
index 00000000..ed653508
Binary files /dev/null and b/animateditems/2149.png differ
diff --git a/animateditems/2150.gif b/animateditems/2150.gif
new file mode 100644
index 00000000..6539edf4
Binary files /dev/null and b/animateditems/2150.gif differ
diff --git a/animateditems/2150.png b/animateditems/2150.png
new file mode 100644
index 00000000..5fac18e4
Binary files /dev/null and b/animateditems/2150.png differ
diff --git a/animateditems/2151.gif b/animateditems/2151.gif
new file mode 100644
index 00000000..4d2805c4
Binary files /dev/null and b/animateditems/2151.gif differ
diff --git a/animateditems/2151.png b/animateditems/2151.png
new file mode 100644
index 00000000..fc388b84
Binary files /dev/null and b/animateditems/2151.png differ
diff --git a/animateditems/2152.gif b/animateditems/2152.gif
new file mode 100644
index 00000000..9519e7be
Binary files /dev/null and b/animateditems/2152.gif differ
diff --git a/animateditems/2152.png b/animateditems/2152.png
new file mode 100644
index 00000000..567ba855
Binary files /dev/null and b/animateditems/2152.png differ
diff --git a/animateditems/2153.gif b/animateditems/2153.gif
new file mode 100644
index 00000000..8b6efa1a
Binary files /dev/null and b/animateditems/2153.gif differ
diff --git a/animateditems/2153.png b/animateditems/2153.png
new file mode 100644
index 00000000..ad2d5657
Binary files /dev/null and b/animateditems/2153.png differ
diff --git a/animateditems/21537.gif b/animateditems/21537.gif
new file mode 100644
index 00000000..ced4c57d
Binary files /dev/null and b/animateditems/21537.gif differ
diff --git a/animateditems/21537.png b/animateditems/21537.png
new file mode 100644
index 00000000..fed7b724
Binary files /dev/null and b/animateditems/21537.png differ
diff --git a/animateditems/2154.gif b/animateditems/2154.gif
new file mode 100644
index 00000000..c3e884fd
Binary files /dev/null and b/animateditems/2154.gif differ
diff --git a/animateditems/2154.png b/animateditems/2154.png
new file mode 100644
index 00000000..a5fd9c03
Binary files /dev/null and b/animateditems/2154.png differ
diff --git a/animateditems/2155.gif b/animateditems/2155.gif
new file mode 100644
index 00000000..a7a43f1e
Binary files /dev/null and b/animateditems/2155.gif differ
diff --git a/animateditems/2155.png b/animateditems/2155.png
new file mode 100644
index 00000000..5df903ed
Binary files /dev/null and b/animateditems/2155.png differ
diff --git a/animateditems/21553.gif b/animateditems/21553.gif
new file mode 100644
index 00000000..76894774
Binary files /dev/null and b/animateditems/21553.gif differ
diff --git a/animateditems/21553.png b/animateditems/21553.png
new file mode 100644
index 00000000..7797c5e4
Binary files /dev/null and b/animateditems/21553.png differ
diff --git a/animateditems/21554.gif b/animateditems/21554.gif
new file mode 100644
index 00000000..8c79edbc
Binary files /dev/null and b/animateditems/21554.gif differ
diff --git a/animateditems/21554.png b/animateditems/21554.png
new file mode 100644
index 00000000..cd44d415
Binary files /dev/null and b/animateditems/21554.png differ
diff --git a/animateditems/21555.gif b/animateditems/21555.gif
new file mode 100644
index 00000000..b300a2d1
Binary files /dev/null and b/animateditems/21555.gif differ
diff --git a/animateditems/21555.png b/animateditems/21555.png
new file mode 100644
index 00000000..eb619166
Binary files /dev/null and b/animateditems/21555.png differ
diff --git a/animateditems/21556.gif b/animateditems/21556.gif
new file mode 100644
index 00000000..eb0dc830
Binary files /dev/null and b/animateditems/21556.gif differ
diff --git a/animateditems/21556.png b/animateditems/21556.png
new file mode 100644
index 00000000..027b6dd9
Binary files /dev/null and b/animateditems/21556.png differ
diff --git a/animateditems/21557.gif b/animateditems/21557.gif
new file mode 100644
index 00000000..64c17a1b
Binary files /dev/null and b/animateditems/21557.gif differ
diff --git a/animateditems/21557.png b/animateditems/21557.png
new file mode 100644
index 00000000..961bf0cc
Binary files /dev/null and b/animateditems/21557.png differ
diff --git a/animateditems/2156.gif b/animateditems/2156.gif
new file mode 100644
index 00000000..eedc0479
Binary files /dev/null and b/animateditems/2156.gif differ
diff --git a/animateditems/2156.png b/animateditems/2156.png
new file mode 100644
index 00000000..a6e2ac6c
Binary files /dev/null and b/animateditems/2156.png differ
diff --git a/animateditems/21564.gif b/animateditems/21564.gif
new file mode 100644
index 00000000..2bf189a8
Binary files /dev/null and b/animateditems/21564.gif differ
diff --git a/animateditems/21564.png b/animateditems/21564.png
new file mode 100644
index 00000000..031835fd
Binary files /dev/null and b/animateditems/21564.png differ
diff --git a/animateditems/21566.gif b/animateditems/21566.gif
new file mode 100644
index 00000000..77cb9908
Binary files /dev/null and b/animateditems/21566.gif differ
diff --git a/animateditems/21566.png b/animateditems/21566.png
new file mode 100644
index 00000000..dd962589
Binary files /dev/null and b/animateditems/21566.png differ
diff --git a/animateditems/21568.gif b/animateditems/21568.gif
new file mode 100644
index 00000000..4d416c47
Binary files /dev/null and b/animateditems/21568.gif differ
diff --git a/animateditems/21568.png b/animateditems/21568.png
new file mode 100644
index 00000000..15b0d001
Binary files /dev/null and b/animateditems/21568.png differ
diff --git a/animateditems/21569.gif b/animateditems/21569.gif
new file mode 100644
index 00000000..06b6a2f2
Binary files /dev/null and b/animateditems/21569.gif differ
diff --git a/animateditems/21569.png b/animateditems/21569.png
new file mode 100644
index 00000000..65a89f61
Binary files /dev/null and b/animateditems/21569.png differ
diff --git a/animateditems/2157.gif b/animateditems/2157.gif
new file mode 100644
index 00000000..e76e8fc6
Binary files /dev/null and b/animateditems/2157.gif differ
diff --git a/animateditems/2157.png b/animateditems/2157.png
new file mode 100644
index 00000000..a42e214f
Binary files /dev/null and b/animateditems/2157.png differ
diff --git a/animateditems/2158.gif b/animateditems/2158.gif
new file mode 100644
index 00000000..5b8b5b13
Binary files /dev/null and b/animateditems/2158.gif differ
diff --git a/animateditems/2158.png b/animateditems/2158.png
new file mode 100644
index 00000000..53a4391c
Binary files /dev/null and b/animateditems/2158.png differ
diff --git a/animateditems/21583.gif b/animateditems/21583.gif
new file mode 100644
index 00000000..7ac23d6c
Binary files /dev/null and b/animateditems/21583.gif differ
diff --git a/animateditems/21583.png b/animateditems/21583.png
new file mode 100644
index 00000000..0fd9517f
Binary files /dev/null and b/animateditems/21583.png differ
diff --git a/animateditems/21585.gif b/animateditems/21585.gif
new file mode 100644
index 00000000..7d6722a4
Binary files /dev/null and b/animateditems/21585.gif differ
diff --git a/animateditems/21585.png b/animateditems/21585.png
new file mode 100644
index 00000000..aad190e6
Binary files /dev/null and b/animateditems/21585.png differ
diff --git a/animateditems/2159.gif b/animateditems/2159.gif
new file mode 100644
index 00000000..0e57a688
Binary files /dev/null and b/animateditems/2159.gif differ
diff --git a/animateditems/2159.png b/animateditems/2159.png
new file mode 100644
index 00000000..4bdaeed2
Binary files /dev/null and b/animateditems/2159.png differ
diff --git a/animateditems/2160.gif b/animateditems/2160.gif
new file mode 100644
index 00000000..f9f85592
Binary files /dev/null and b/animateditems/2160.gif differ
diff --git a/animateditems/2160.png b/animateditems/2160.png
new file mode 100644
index 00000000..e952cef4
Binary files /dev/null and b/animateditems/2160.png differ
diff --git a/animateditems/2161.gif b/animateditems/2161.gif
new file mode 100644
index 00000000..52bab5f5
Binary files /dev/null and b/animateditems/2161.gif differ
diff --git a/animateditems/2161.png b/animateditems/2161.png
new file mode 100644
index 00000000..8d440c00
Binary files /dev/null and b/animateditems/2161.png differ
diff --git a/animateditems/2162.gif b/animateditems/2162.gif
new file mode 100644
index 00000000..0cc9f84d
Binary files /dev/null and b/animateditems/2162.gif differ
diff --git a/animateditems/2162.png b/animateditems/2162.png
new file mode 100644
index 00000000..6004463b
Binary files /dev/null and b/animateditems/2162.png differ
diff --git a/animateditems/2163.gif b/animateditems/2163.gif
new file mode 100644
index 00000000..96579a9d
Binary files /dev/null and b/animateditems/2163.gif differ
diff --git a/animateditems/2163.png b/animateditems/2163.png
new file mode 100644
index 00000000..73bad5ae
Binary files /dev/null and b/animateditems/2163.png differ
diff --git a/animateditems/2164.gif b/animateditems/2164.gif
new file mode 100644
index 00000000..d11a12f9
Binary files /dev/null and b/animateditems/2164.gif differ
diff --git a/animateditems/2164.png b/animateditems/2164.png
new file mode 100644
index 00000000..b4fcec20
Binary files /dev/null and b/animateditems/2164.png differ
diff --git a/animateditems/2165.gif b/animateditems/2165.gif
new file mode 100644
index 00000000..3dd1bb79
Binary files /dev/null and b/animateditems/2165.gif differ
diff --git a/animateditems/2165.png b/animateditems/2165.png
new file mode 100644
index 00000000..31d9f5b5
Binary files /dev/null and b/animateditems/2165.png differ
diff --git a/animateditems/2166.gif b/animateditems/2166.gif
new file mode 100644
index 00000000..3cdaf90b
Binary files /dev/null and b/animateditems/2166.gif differ
diff --git a/animateditems/2166.png b/animateditems/2166.png
new file mode 100644
index 00000000..7bc30980
Binary files /dev/null and b/animateditems/2166.png differ
diff --git a/animateditems/2167.gif b/animateditems/2167.gif
new file mode 100644
index 00000000..0e915290
Binary files /dev/null and b/animateditems/2167.gif differ
diff --git a/animateditems/2167.png b/animateditems/2167.png
new file mode 100644
index 00000000..da6aeeea
Binary files /dev/null and b/animateditems/2167.png differ
diff --git a/animateditems/2168.gif b/animateditems/2168.gif
new file mode 100644
index 00000000..c211c0a8
Binary files /dev/null and b/animateditems/2168.gif differ
diff --git a/animateditems/2168.png b/animateditems/2168.png
new file mode 100644
index 00000000..c60ba10e
Binary files /dev/null and b/animateditems/2168.png differ
diff --git a/animateditems/2169.gif b/animateditems/2169.gif
new file mode 100644
index 00000000..298b9be9
Binary files /dev/null and b/animateditems/2169.gif differ
diff --git a/animateditems/2169.png b/animateditems/2169.png
new file mode 100644
index 00000000..447c206f
Binary files /dev/null and b/animateditems/2169.png differ
diff --git a/animateditems/21690.gif b/animateditems/21690.gif
new file mode 100644
index 00000000..d21f0440
Binary files /dev/null and b/animateditems/21690.gif differ
diff --git a/animateditems/21690.png b/animateditems/21690.png
new file mode 100644
index 00000000..a48e22be
Binary files /dev/null and b/animateditems/21690.png differ
diff --git a/animateditems/21691.gif b/animateditems/21691.gif
new file mode 100644
index 00000000..17b0cb0d
Binary files /dev/null and b/animateditems/21691.gif differ
diff --git a/animateditems/21691.png b/animateditems/21691.png
new file mode 100644
index 00000000..5e76752c
Binary files /dev/null and b/animateditems/21691.png differ
diff --git a/animateditems/21692.gif b/animateditems/21692.gif
new file mode 100644
index 00000000..ef836e7c
Binary files /dev/null and b/animateditems/21692.gif differ
diff --git a/animateditems/21692.png b/animateditems/21692.png
new file mode 100644
index 00000000..b221c72a
Binary files /dev/null and b/animateditems/21692.png differ
diff --git a/animateditems/21693.gif b/animateditems/21693.gif
new file mode 100644
index 00000000..7a3320b3
Binary files /dev/null and b/animateditems/21693.gif differ
diff --git a/animateditems/21693.png b/animateditems/21693.png
new file mode 100644
index 00000000..65d12fe6
Binary files /dev/null and b/animateditems/21693.png differ
diff --git a/animateditems/21695.gif b/animateditems/21695.gif
new file mode 100644
index 00000000..2b03b5ef
Binary files /dev/null and b/animateditems/21695.gif differ
diff --git a/animateditems/21695.png b/animateditems/21695.png
new file mode 100644
index 00000000..a3b0d455
Binary files /dev/null and b/animateditems/21695.png differ
diff --git a/animateditems/21696.gif b/animateditems/21696.gif
new file mode 100644
index 00000000..bf791379
Binary files /dev/null and b/animateditems/21696.gif differ
diff --git a/animateditems/21696.png b/animateditems/21696.png
new file mode 100644
index 00000000..77c3fd66
Binary files /dev/null and b/animateditems/21696.png differ
diff --git a/animateditems/21697.gif b/animateditems/21697.gif
new file mode 100644
index 00000000..26e2dffa
Binary files /dev/null and b/animateditems/21697.gif differ
diff --git a/animateditems/21697.png b/animateditems/21697.png
new file mode 100644
index 00000000..8bc46237
Binary files /dev/null and b/animateditems/21697.png differ
diff --git a/animateditems/21699.gif b/animateditems/21699.gif
new file mode 100644
index 00000000..c76f6583
Binary files /dev/null and b/animateditems/21699.gif differ
diff --git a/animateditems/21699.png b/animateditems/21699.png
new file mode 100644
index 00000000..05609cb7
Binary files /dev/null and b/animateditems/21699.png differ
diff --git a/animateditems/2170.gif b/animateditems/2170.gif
new file mode 100644
index 00000000..4497af5b
Binary files /dev/null and b/animateditems/2170.gif differ
diff --git a/animateditems/2170.png b/animateditems/2170.png
new file mode 100644
index 00000000..05e8a89b
Binary files /dev/null and b/animateditems/2170.png differ
diff --git a/animateditems/21700.gif b/animateditems/21700.gif
new file mode 100644
index 00000000..078cc5c4
Binary files /dev/null and b/animateditems/21700.gif differ
diff --git a/animateditems/21700.png b/animateditems/21700.png
new file mode 100644
index 00000000..03739b89
Binary files /dev/null and b/animateditems/21700.png differ
diff --git a/animateditems/21703.gif b/animateditems/21703.gif
new file mode 100644
index 00000000..dd55221f
Binary files /dev/null and b/animateditems/21703.gif differ
diff --git a/animateditems/21703.png b/animateditems/21703.png
new file mode 100644
index 00000000..328f9e63
Binary files /dev/null and b/animateditems/21703.png differ
diff --git a/animateditems/21705.gif b/animateditems/21705.gif
new file mode 100644
index 00000000..e76a9025
Binary files /dev/null and b/animateditems/21705.gif differ
diff --git a/animateditems/21705.png b/animateditems/21705.png
new file mode 100644
index 00000000..4b9596fd
Binary files /dev/null and b/animateditems/21705.png differ
diff --git a/animateditems/21706.gif b/animateditems/21706.gif
new file mode 100644
index 00000000..cf5c19fc
Binary files /dev/null and b/animateditems/21706.gif differ
diff --git a/animateditems/21706.png b/animateditems/21706.png
new file mode 100644
index 00000000..2ff7bfe0
Binary files /dev/null and b/animateditems/21706.png differ
diff --git a/animateditems/21707.gif b/animateditems/21707.gif
new file mode 100644
index 00000000..766c7b41
Binary files /dev/null and b/animateditems/21707.gif differ
diff --git a/animateditems/21707.png b/animateditems/21707.png
new file mode 100644
index 00000000..6b8058e1
Binary files /dev/null and b/animateditems/21707.png differ
diff --git a/animateditems/21708.gif b/animateditems/21708.gif
new file mode 100644
index 00000000..d7860c08
Binary files /dev/null and b/animateditems/21708.gif differ
diff --git a/animateditems/21708.png b/animateditems/21708.png
new file mode 100644
index 00000000..b2421a50
Binary files /dev/null and b/animateditems/21708.png differ
diff --git a/animateditems/2171.gif b/animateditems/2171.gif
new file mode 100644
index 00000000..cca9a3a2
Binary files /dev/null and b/animateditems/2171.gif differ
diff --git a/animateditems/2171.png b/animateditems/2171.png
new file mode 100644
index 00000000..9a2aa921
Binary files /dev/null and b/animateditems/2171.png differ
diff --git a/animateditems/2172.gif b/animateditems/2172.gif
new file mode 100644
index 00000000..3b87a6b8
Binary files /dev/null and b/animateditems/2172.gif differ
diff --git a/animateditems/2172.png b/animateditems/2172.png
new file mode 100644
index 00000000..401ac482
Binary files /dev/null and b/animateditems/2172.png differ
diff --git a/animateditems/21725.gif b/animateditems/21725.gif
new file mode 100644
index 00000000..81dbbbae
Binary files /dev/null and b/animateditems/21725.gif differ
diff --git a/animateditems/21725.png b/animateditems/21725.png
new file mode 100644
index 00000000..75ca88d6
Binary files /dev/null and b/animateditems/21725.png differ
diff --git a/animateditems/21726.gif b/animateditems/21726.gif
new file mode 100644
index 00000000..445bdab9
Binary files /dev/null and b/animateditems/21726.gif differ
diff --git a/animateditems/21726.png b/animateditems/21726.png
new file mode 100644
index 00000000..1d0bf539
Binary files /dev/null and b/animateditems/21726.png differ
diff --git a/animateditems/2173.gif b/animateditems/2173.gif
new file mode 100644
index 00000000..7a597860
Binary files /dev/null and b/animateditems/2173.gif differ
diff --git a/animateditems/2173.png b/animateditems/2173.png
new file mode 100644
index 00000000..364c54a5
Binary files /dev/null and b/animateditems/2173.png differ
diff --git a/animateditems/21731.gif b/animateditems/21731.gif
new file mode 100644
index 00000000..92ceea14
Binary files /dev/null and b/animateditems/21731.gif differ
diff --git a/animateditems/21731.png b/animateditems/21731.png
new file mode 100644
index 00000000..115159d0
Binary files /dev/null and b/animateditems/21731.png differ
diff --git a/animateditems/21732.gif b/animateditems/21732.gif
new file mode 100644
index 00000000..92ceea14
Binary files /dev/null and b/animateditems/21732.gif differ
diff --git a/animateditems/21732.png b/animateditems/21732.png
new file mode 100644
index 00000000..115159d0
Binary files /dev/null and b/animateditems/21732.png differ
diff --git a/animateditems/2174.gif b/animateditems/2174.gif
new file mode 100644
index 00000000..c9bf2563
Binary files /dev/null and b/animateditems/2174.gif differ
diff --git a/animateditems/2174.png b/animateditems/2174.png
new file mode 100644
index 00000000..1b6784e5
Binary files /dev/null and b/animateditems/2174.png differ
diff --git a/animateditems/2175.gif b/animateditems/2175.gif
new file mode 100644
index 00000000..4e145003
Binary files /dev/null and b/animateditems/2175.gif differ
diff --git a/animateditems/2175.png b/animateditems/2175.png
new file mode 100644
index 00000000..2f399850
Binary files /dev/null and b/animateditems/2175.png differ
diff --git a/animateditems/2176.gif b/animateditems/2176.gif
new file mode 100644
index 00000000..45020dec
Binary files /dev/null and b/animateditems/2176.gif differ
diff --git a/animateditems/2176.png b/animateditems/2176.png
new file mode 100644
index 00000000..99467523
Binary files /dev/null and b/animateditems/2176.png differ
diff --git a/animateditems/2177.gif b/animateditems/2177.gif
new file mode 100644
index 00000000..5cd10386
Binary files /dev/null and b/animateditems/2177.gif differ
diff --git a/animateditems/2177.png b/animateditems/2177.png
new file mode 100644
index 00000000..737240ad
Binary files /dev/null and b/animateditems/2177.png differ
diff --git a/animateditems/2178.gif b/animateditems/2178.gif
new file mode 100644
index 00000000..46658105
Binary files /dev/null and b/animateditems/2178.gif differ
diff --git a/animateditems/2178.png b/animateditems/2178.png
new file mode 100644
index 00000000..507e1d4b
Binary files /dev/null and b/animateditems/2178.png differ
diff --git a/animateditems/2179.gif b/animateditems/2179.gif
new file mode 100644
index 00000000..d398929f
Binary files /dev/null and b/animateditems/2179.gif differ
diff --git a/animateditems/2179.png b/animateditems/2179.png
new file mode 100644
index 00000000..769dd42b
Binary files /dev/null and b/animateditems/2179.png differ
diff --git a/animateditems/2181.gif b/animateditems/2181.gif
new file mode 100644
index 00000000..8c8c5d25
Binary files /dev/null and b/animateditems/2181.gif differ
diff --git a/animateditems/2181.png b/animateditems/2181.png
new file mode 100644
index 00000000..f7938c93
Binary files /dev/null and b/animateditems/2181.png differ
diff --git a/animateditems/2182.gif b/animateditems/2182.gif
new file mode 100644
index 00000000..5e342f06
Binary files /dev/null and b/animateditems/2182.gif differ
diff --git a/animateditems/2182.png b/animateditems/2182.png
new file mode 100644
index 00000000..e4d23fb2
Binary files /dev/null and b/animateditems/2182.png differ
diff --git a/animateditems/2183.gif b/animateditems/2183.gif
new file mode 100644
index 00000000..4d318cfa
Binary files /dev/null and b/animateditems/2183.gif differ
diff --git a/animateditems/2183.png b/animateditems/2183.png
new file mode 100644
index 00000000..c0527089
Binary files /dev/null and b/animateditems/2183.png differ
diff --git a/animateditems/2184.gif b/animateditems/2184.gif
new file mode 100644
index 00000000..b141eec7
Binary files /dev/null and b/animateditems/2184.gif differ
diff --git a/animateditems/2184.png b/animateditems/2184.png
new file mode 100644
index 00000000..8f27ec0d
Binary files /dev/null and b/animateditems/2184.png differ
diff --git a/animateditems/2185.gif b/animateditems/2185.gif
new file mode 100644
index 00000000..394310dc
Binary files /dev/null and b/animateditems/2185.gif differ
diff --git a/animateditems/2185.png b/animateditems/2185.png
new file mode 100644
index 00000000..4da18999
Binary files /dev/null and b/animateditems/2185.png differ
diff --git a/animateditems/2186.gif b/animateditems/2186.gif
new file mode 100644
index 00000000..7414d243
Binary files /dev/null and b/animateditems/2186.gif differ
diff --git a/animateditems/2186.png b/animateditems/2186.png
new file mode 100644
index 00000000..70d13c02
Binary files /dev/null and b/animateditems/2186.png differ
diff --git a/animateditems/2187.gif b/animateditems/2187.gif
new file mode 100644
index 00000000..8d046642
Binary files /dev/null and b/animateditems/2187.gif differ
diff --git a/animateditems/2187.png b/animateditems/2187.png
new file mode 100644
index 00000000..0ae09d5f
Binary files /dev/null and b/animateditems/2187.png differ
diff --git a/animateditems/2188.gif b/animateditems/2188.gif
new file mode 100644
index 00000000..83d9f7a1
Binary files /dev/null and b/animateditems/2188.gif differ
diff --git a/animateditems/2188.png b/animateditems/2188.png
new file mode 100644
index 00000000..d52d89e0
Binary files /dev/null and b/animateditems/2188.png differ
diff --git a/animateditems/2189.gif b/animateditems/2189.gif
new file mode 100644
index 00000000..7be34a19
Binary files /dev/null and b/animateditems/2189.gif differ
diff --git a/animateditems/2189.png b/animateditems/2189.png
new file mode 100644
index 00000000..28c17aef
Binary files /dev/null and b/animateditems/2189.png differ
diff --git a/animateditems/2190.gif b/animateditems/2190.gif
new file mode 100644
index 00000000..4c6324a6
Binary files /dev/null and b/animateditems/2190.gif differ
diff --git a/animateditems/2190.png b/animateditems/2190.png
new file mode 100644
index 00000000..125c8c9d
Binary files /dev/null and b/animateditems/2190.png differ
diff --git a/animateditems/2191.gif b/animateditems/2191.gif
new file mode 100644
index 00000000..0370bc11
Binary files /dev/null and b/animateditems/2191.gif differ
diff --git a/animateditems/2191.png b/animateditems/2191.png
new file mode 100644
index 00000000..76a58e11
Binary files /dev/null and b/animateditems/2191.png differ
diff --git a/animateditems/2192.gif b/animateditems/2192.gif
new file mode 100644
index 00000000..ca313910
Binary files /dev/null and b/animateditems/2192.gif differ
diff --git a/animateditems/2192.png b/animateditems/2192.png
new file mode 100644
index 00000000..84622d3e
Binary files /dev/null and b/animateditems/2192.png differ
diff --git a/animateditems/2193.gif b/animateditems/2193.gif
new file mode 100644
index 00000000..52c4a6a7
Binary files /dev/null and b/animateditems/2193.gif differ
diff --git a/animateditems/2193.png b/animateditems/2193.png
new file mode 100644
index 00000000..0f1e7a1e
Binary files /dev/null and b/animateditems/2193.png differ
diff --git a/animateditems/2194.gif b/animateditems/2194.gif
new file mode 100644
index 00000000..549fc58f
Binary files /dev/null and b/animateditems/2194.gif differ
diff --git a/animateditems/2194.png b/animateditems/2194.png
new file mode 100644
index 00000000..1b86a0f8
Binary files /dev/null and b/animateditems/2194.png differ
diff --git a/animateditems/2195.gif b/animateditems/2195.gif
new file mode 100644
index 00000000..5ea6ff74
Binary files /dev/null and b/animateditems/2195.gif differ
diff --git a/animateditems/2195.png b/animateditems/2195.png
new file mode 100644
index 00000000..09b52107
Binary files /dev/null and b/animateditems/2195.png differ
diff --git a/animateditems/2196.gif b/animateditems/2196.gif
new file mode 100644
index 00000000..0eeb5ed5
Binary files /dev/null and b/animateditems/2196.gif differ
diff --git a/animateditems/2196.png b/animateditems/2196.png
new file mode 100644
index 00000000..7be29828
Binary files /dev/null and b/animateditems/2196.png differ
diff --git a/animateditems/2197.gif b/animateditems/2197.gif
new file mode 100644
index 00000000..1ed62e8d
Binary files /dev/null and b/animateditems/2197.gif differ
diff --git a/animateditems/2197.png b/animateditems/2197.png
new file mode 100644
index 00000000..1bb12339
Binary files /dev/null and b/animateditems/2197.png differ
diff --git a/animateditems/2198.gif b/animateditems/2198.gif
new file mode 100644
index 00000000..e2a10aee
Binary files /dev/null and b/animateditems/2198.gif differ
diff --git a/animateditems/2198.png b/animateditems/2198.png
new file mode 100644
index 00000000..0ff5e330
Binary files /dev/null and b/animateditems/2198.png differ
diff --git a/animateditems/2199.gif b/animateditems/2199.gif
new file mode 100644
index 00000000..59c4a27d
Binary files /dev/null and b/animateditems/2199.gif differ
diff --git a/animateditems/2199.png b/animateditems/2199.png
new file mode 100644
index 00000000..e6786e4b
Binary files /dev/null and b/animateditems/2199.png differ
diff --git a/animateditems/2200.gif b/animateditems/2200.gif
new file mode 100644
index 00000000..d94a6ffb
Binary files /dev/null and b/animateditems/2200.gif differ
diff --git a/animateditems/2200.png b/animateditems/2200.png
new file mode 100644
index 00000000..0b80f755
Binary files /dev/null and b/animateditems/2200.png differ
diff --git a/animateditems/2201.gif b/animateditems/2201.gif
new file mode 100644
index 00000000..4c79b174
Binary files /dev/null and b/animateditems/2201.gif differ
diff --git a/animateditems/2201.png b/animateditems/2201.png
new file mode 100644
index 00000000..401eb421
Binary files /dev/null and b/animateditems/2201.png differ
diff --git a/animateditems/2202.gif b/animateditems/2202.gif
new file mode 100644
index 00000000..b26ab590
Binary files /dev/null and b/animateditems/2202.gif differ
diff --git a/animateditems/2202.png b/animateditems/2202.png
new file mode 100644
index 00000000..4199094d
Binary files /dev/null and b/animateditems/2202.png differ
diff --git a/animateditems/2203.gif b/animateditems/2203.gif
new file mode 100644
index 00000000..a337a0d8
Binary files /dev/null and b/animateditems/2203.gif differ
diff --git a/animateditems/2203.png b/animateditems/2203.png
new file mode 100644
index 00000000..bb3c4623
Binary files /dev/null and b/animateditems/2203.png differ
diff --git a/animateditems/2204.gif b/animateditems/2204.gif
new file mode 100644
index 00000000..c1659ecf
Binary files /dev/null and b/animateditems/2204.gif differ
diff --git a/animateditems/2204.png b/animateditems/2204.png
new file mode 100644
index 00000000..7b96b916
Binary files /dev/null and b/animateditems/2204.png differ
diff --git a/animateditems/2205.gif b/animateditems/2205.gif
new file mode 100644
index 00000000..5b4b43a0
Binary files /dev/null and b/animateditems/2205.gif differ
diff --git a/animateditems/2205.png b/animateditems/2205.png
new file mode 100644
index 00000000..662e3c6e
Binary files /dev/null and b/animateditems/2205.png differ
diff --git a/animateditems/2206.gif b/animateditems/2206.gif
new file mode 100644
index 00000000..9b9c453c
Binary files /dev/null and b/animateditems/2206.gif differ
diff --git a/animateditems/2206.png b/animateditems/2206.png
new file mode 100644
index 00000000..06edeb1f
Binary files /dev/null and b/animateditems/2206.png differ
diff --git a/animateditems/2207.gif b/animateditems/2207.gif
new file mode 100644
index 00000000..9e00bbbf
Binary files /dev/null and b/animateditems/2207.gif differ
diff --git a/animateditems/2207.png b/animateditems/2207.png
new file mode 100644
index 00000000..39bf8fea
Binary files /dev/null and b/animateditems/2207.png differ
diff --git a/animateditems/2208.gif b/animateditems/2208.gif
new file mode 100644
index 00000000..4f67dd96
Binary files /dev/null and b/animateditems/2208.gif differ
diff --git a/animateditems/2208.png b/animateditems/2208.png
new file mode 100644
index 00000000..66da11a9
Binary files /dev/null and b/animateditems/2208.png differ
diff --git a/animateditems/2209.gif b/animateditems/2209.gif
new file mode 100644
index 00000000..d5040607
Binary files /dev/null and b/animateditems/2209.gif differ
diff --git a/animateditems/2209.png b/animateditems/2209.png
new file mode 100644
index 00000000..81a9a9d1
Binary files /dev/null and b/animateditems/2209.png differ
diff --git a/animateditems/2210.gif b/animateditems/2210.gif
new file mode 100644
index 00000000..905c698c
Binary files /dev/null and b/animateditems/2210.gif differ
diff --git a/animateditems/2210.png b/animateditems/2210.png
new file mode 100644
index 00000000..9de4d7ab
Binary files /dev/null and b/animateditems/2210.png differ
diff --git a/animateditems/2211.gif b/animateditems/2211.gif
new file mode 100644
index 00000000..377e4688
Binary files /dev/null and b/animateditems/2211.gif differ
diff --git a/animateditems/2211.png b/animateditems/2211.png
new file mode 100644
index 00000000..6999fc75
Binary files /dev/null and b/animateditems/2211.png differ
diff --git a/animateditems/2212.gif b/animateditems/2212.gif
new file mode 100644
index 00000000..555e5bcd
Binary files /dev/null and b/animateditems/2212.gif differ
diff --git a/animateditems/2212.png b/animateditems/2212.png
new file mode 100644
index 00000000..9aedd923
Binary files /dev/null and b/animateditems/2212.png differ
diff --git a/animateditems/2213.gif b/animateditems/2213.gif
new file mode 100644
index 00000000..95a24e2e
Binary files /dev/null and b/animateditems/2213.gif differ
diff --git a/animateditems/2213.png b/animateditems/2213.png
new file mode 100644
index 00000000..6f5852c4
Binary files /dev/null and b/animateditems/2213.png differ
diff --git a/animateditems/2214.gif b/animateditems/2214.gif
new file mode 100644
index 00000000..1bafc0f4
Binary files /dev/null and b/animateditems/2214.gif differ
diff --git a/animateditems/2214.png b/animateditems/2214.png
new file mode 100644
index 00000000..4687dfa4
Binary files /dev/null and b/animateditems/2214.png differ
diff --git a/animateditems/2215.gif b/animateditems/2215.gif
new file mode 100644
index 00000000..0898721c
Binary files /dev/null and b/animateditems/2215.gif differ
diff --git a/animateditems/2215.png b/animateditems/2215.png
new file mode 100644
index 00000000..1cc56c8c
Binary files /dev/null and b/animateditems/2215.png differ
diff --git a/animateditems/2216.gif b/animateditems/2216.gif
new file mode 100644
index 00000000..bf24b19e
Binary files /dev/null and b/animateditems/2216.gif differ
diff --git a/animateditems/2216.png b/animateditems/2216.png
new file mode 100644
index 00000000..e155cebd
Binary files /dev/null and b/animateditems/2216.png differ
diff --git a/animateditems/2217.gif b/animateditems/2217.gif
new file mode 100644
index 00000000..fba8f162
Binary files /dev/null and b/animateditems/2217.gif differ
diff --git a/animateditems/2217.png b/animateditems/2217.png
new file mode 100644
index 00000000..f23c8fd6
Binary files /dev/null and b/animateditems/2217.png differ
diff --git a/animateditems/2218.gif b/animateditems/2218.gif
new file mode 100644
index 00000000..247d0f0a
Binary files /dev/null and b/animateditems/2218.gif differ
diff --git a/animateditems/2218.png b/animateditems/2218.png
new file mode 100644
index 00000000..d921defe
Binary files /dev/null and b/animateditems/2218.png differ
diff --git a/animateditems/2219.gif b/animateditems/2219.gif
new file mode 100644
index 00000000..b089a921
Binary files /dev/null and b/animateditems/2219.gif differ
diff --git a/animateditems/2219.png b/animateditems/2219.png
new file mode 100644
index 00000000..917838dc
Binary files /dev/null and b/animateditems/2219.png differ
diff --git a/animateditems/2220.gif b/animateditems/2220.gif
new file mode 100644
index 00000000..f99674fb
Binary files /dev/null and b/animateditems/2220.gif differ
diff --git a/animateditems/2220.png b/animateditems/2220.png
new file mode 100644
index 00000000..8c743d06
Binary files /dev/null and b/animateditems/2220.png differ
diff --git a/animateditems/2221.gif b/animateditems/2221.gif
new file mode 100644
index 00000000..c9294fc0
Binary files /dev/null and b/animateditems/2221.gif differ
diff --git a/animateditems/2221.png b/animateditems/2221.png
new file mode 100644
index 00000000..6d10992f
Binary files /dev/null and b/animateditems/2221.png differ
diff --git a/animateditems/2222.gif b/animateditems/2222.gif
new file mode 100644
index 00000000..feb5a36d
Binary files /dev/null and b/animateditems/2222.gif differ
diff --git a/animateditems/2222.png b/animateditems/2222.png
new file mode 100644
index 00000000..581f6719
Binary files /dev/null and b/animateditems/2222.png differ
diff --git a/animateditems/2223.gif b/animateditems/2223.gif
new file mode 100644
index 00000000..fb0a475c
Binary files /dev/null and b/animateditems/2223.gif differ
diff --git a/animateditems/2223.png b/animateditems/2223.png
new file mode 100644
index 00000000..07ab9e11
Binary files /dev/null and b/animateditems/2223.png differ
diff --git a/animateditems/2224.gif b/animateditems/2224.gif
new file mode 100644
index 00000000..93531baf
Binary files /dev/null and b/animateditems/2224.gif differ
diff --git a/animateditems/2224.png b/animateditems/2224.png
new file mode 100644
index 00000000..a0706861
Binary files /dev/null and b/animateditems/2224.png differ
diff --git a/animateditems/2225.gif b/animateditems/2225.gif
new file mode 100644
index 00000000..809c5fb7
Binary files /dev/null and b/animateditems/2225.gif differ
diff --git a/animateditems/2225.png b/animateditems/2225.png
new file mode 100644
index 00000000..5dbce4c8
Binary files /dev/null and b/animateditems/2225.png differ
diff --git a/animateditems/2226.gif b/animateditems/2226.gif
new file mode 100644
index 00000000..af834668
Binary files /dev/null and b/animateditems/2226.gif differ
diff --git a/animateditems/2226.png b/animateditems/2226.png
new file mode 100644
index 00000000..ee601ea9
Binary files /dev/null and b/animateditems/2226.png differ
diff --git a/animateditems/2227.gif b/animateditems/2227.gif
new file mode 100644
index 00000000..de389789
Binary files /dev/null and b/animateditems/2227.gif differ
diff --git a/animateditems/2227.png b/animateditems/2227.png
new file mode 100644
index 00000000..0fd870ef
Binary files /dev/null and b/animateditems/2227.png differ
diff --git a/animateditems/2228.gif b/animateditems/2228.gif
new file mode 100644
index 00000000..a031ca1d
Binary files /dev/null and b/animateditems/2228.gif differ
diff --git a/animateditems/2228.png b/animateditems/2228.png
new file mode 100644
index 00000000..2f44b7ab
Binary files /dev/null and b/animateditems/2228.png differ
diff --git a/animateditems/2229.gif b/animateditems/2229.gif
new file mode 100644
index 00000000..6a066ef9
Binary files /dev/null and b/animateditems/2229.gif differ
diff --git a/animateditems/2229.png b/animateditems/2229.png
new file mode 100644
index 00000000..f7d506a6
Binary files /dev/null and b/animateditems/2229.png differ
diff --git a/animateditems/2230.gif b/animateditems/2230.gif
new file mode 100644
index 00000000..fce217f3
Binary files /dev/null and b/animateditems/2230.gif differ
diff --git a/animateditems/2230.png b/animateditems/2230.png
new file mode 100644
index 00000000..579ff54f
Binary files /dev/null and b/animateditems/2230.png differ
diff --git a/animateditems/2231.gif b/animateditems/2231.gif
new file mode 100644
index 00000000..b1d2a38a
Binary files /dev/null and b/animateditems/2231.gif differ
diff --git a/animateditems/2231.png b/animateditems/2231.png
new file mode 100644
index 00000000..ca923721
Binary files /dev/null and b/animateditems/2231.png differ
diff --git a/animateditems/2232.gif b/animateditems/2232.gif
new file mode 100644
index 00000000..09f10c71
Binary files /dev/null and b/animateditems/2232.gif differ
diff --git a/animateditems/2232.png b/animateditems/2232.png
new file mode 100644
index 00000000..e55bf379
Binary files /dev/null and b/animateditems/2232.png differ
diff --git a/animateditems/2233.gif b/animateditems/2233.gif
new file mode 100644
index 00000000..943628f5
Binary files /dev/null and b/animateditems/2233.gif differ
diff --git a/animateditems/2233.png b/animateditems/2233.png
new file mode 100644
index 00000000..25d69baa
Binary files /dev/null and b/animateditems/2233.png differ
diff --git a/animateditems/2234.gif b/animateditems/2234.gif
new file mode 100644
index 00000000..21c096c4
Binary files /dev/null and b/animateditems/2234.gif differ
diff --git a/animateditems/2234.png b/animateditems/2234.png
new file mode 100644
index 00000000..0e0c3bf4
Binary files /dev/null and b/animateditems/2234.png differ
diff --git a/animateditems/2235.gif b/animateditems/2235.gif
new file mode 100644
index 00000000..d1e4fddb
Binary files /dev/null and b/animateditems/2235.gif differ
diff --git a/animateditems/2235.png b/animateditems/2235.png
new file mode 100644
index 00000000..9973f5f2
Binary files /dev/null and b/animateditems/2235.png differ
diff --git a/animateditems/2236.gif b/animateditems/2236.gif
new file mode 100644
index 00000000..fbdd18df
Binary files /dev/null and b/animateditems/2236.gif differ
diff --git a/animateditems/2236.png b/animateditems/2236.png
new file mode 100644
index 00000000..d1a5c80a
Binary files /dev/null and b/animateditems/2236.png differ
diff --git a/animateditems/22363.gif b/animateditems/22363.gif
new file mode 100644
index 00000000..945ff096
Binary files /dev/null and b/animateditems/22363.gif differ
diff --git a/animateditems/22363.png b/animateditems/22363.png
new file mode 100644
index 00000000..0f1027fa
Binary files /dev/null and b/animateditems/22363.png differ
diff --git a/animateditems/22364.gif b/animateditems/22364.gif
new file mode 100644
index 00000000..1ce7867c
Binary files /dev/null and b/animateditems/22364.gif differ
diff --git a/animateditems/22364.png b/animateditems/22364.png
new file mode 100644
index 00000000..3a440d6e
Binary files /dev/null and b/animateditems/22364.png differ
diff --git a/animateditems/2237.gif b/animateditems/2237.gif
new file mode 100644
index 00000000..7db02a45
Binary files /dev/null and b/animateditems/2237.gif differ
diff --git a/animateditems/2237.png b/animateditems/2237.png
new file mode 100644
index 00000000..02da8757
Binary files /dev/null and b/animateditems/2237.png differ
diff --git a/animateditems/2238.gif b/animateditems/2238.gif
new file mode 100644
index 00000000..00af04aa
Binary files /dev/null and b/animateditems/2238.gif differ
diff --git a/animateditems/2238.png b/animateditems/2238.png
new file mode 100644
index 00000000..cbe58894
Binary files /dev/null and b/animateditems/2238.png differ
diff --git a/animateditems/22381.gif b/animateditems/22381.gif
new file mode 100644
index 00000000..7ce438fd
Binary files /dev/null and b/animateditems/22381.gif differ
diff --git a/animateditems/22381.png b/animateditems/22381.png
new file mode 100644
index 00000000..3ca98d15
Binary files /dev/null and b/animateditems/22381.png differ
diff --git a/animateditems/22382.gif b/animateditems/22382.gif
new file mode 100644
index 00000000..28a9e403
Binary files /dev/null and b/animateditems/22382.gif differ
diff --git a/animateditems/22382.png b/animateditems/22382.png
new file mode 100644
index 00000000..de873f50
Binary files /dev/null and b/animateditems/22382.png differ
diff --git a/animateditems/22383.gif b/animateditems/22383.gif
new file mode 100644
index 00000000..969eb4cc
Binary files /dev/null and b/animateditems/22383.gif differ
diff --git a/animateditems/22383.png b/animateditems/22383.png
new file mode 100644
index 00000000..a3d58f7c
Binary files /dev/null and b/animateditems/22383.png differ
diff --git a/animateditems/22384.gif b/animateditems/22384.gif
new file mode 100644
index 00000000..dd6aab75
Binary files /dev/null and b/animateditems/22384.gif differ
diff --git a/animateditems/22384.png b/animateditems/22384.png
new file mode 100644
index 00000000..f6d4e3ff
Binary files /dev/null and b/animateditems/22384.png differ
diff --git a/animateditems/22387.gif b/animateditems/22387.gif
new file mode 100644
index 00000000..2226485a
Binary files /dev/null and b/animateditems/22387.gif differ
diff --git a/animateditems/22387.png b/animateditems/22387.png
new file mode 100644
index 00000000..d04f7bc7
Binary files /dev/null and b/animateditems/22387.png differ
diff --git a/animateditems/22388.gif b/animateditems/22388.gif
new file mode 100644
index 00000000..9ab771ac
Binary files /dev/null and b/animateditems/22388.gif differ
diff --git a/animateditems/22388.png b/animateditems/22388.png
new file mode 100644
index 00000000..ac397ee4
Binary files /dev/null and b/animateditems/22388.png differ
diff --git a/animateditems/22389.gif b/animateditems/22389.gif
new file mode 100644
index 00000000..49741cf8
Binary files /dev/null and b/animateditems/22389.gif differ
diff --git a/animateditems/22389.png b/animateditems/22389.png
new file mode 100644
index 00000000..da07930c
Binary files /dev/null and b/animateditems/22389.png differ
diff --git a/animateditems/2239.gif b/animateditems/2239.gif
new file mode 100644
index 00000000..f8e31891
Binary files /dev/null and b/animateditems/2239.gif differ
diff --git a/animateditems/2239.png b/animateditems/2239.png
new file mode 100644
index 00000000..ba1fde5a
Binary files /dev/null and b/animateditems/2239.png differ
diff --git a/animateditems/22390.gif b/animateditems/22390.gif
new file mode 100644
index 00000000..1eeb8faa
Binary files /dev/null and b/animateditems/22390.gif differ
diff --git a/animateditems/22390.png b/animateditems/22390.png
new file mode 100644
index 00000000..9ef27cf4
Binary files /dev/null and b/animateditems/22390.png differ
diff --git a/animateditems/22391.gif b/animateditems/22391.gif
new file mode 100644
index 00000000..944bada4
Binary files /dev/null and b/animateditems/22391.gif differ
diff --git a/animateditems/22391.png b/animateditems/22391.png
new file mode 100644
index 00000000..00d00640
Binary files /dev/null and b/animateditems/22391.png differ
diff --git a/animateditems/22396.gif b/animateditems/22396.gif
new file mode 100644
index 00000000..70e4d4cf
Binary files /dev/null and b/animateditems/22396.gif differ
diff --git a/animateditems/22396.png b/animateditems/22396.png
new file mode 100644
index 00000000..3e5aaa00
Binary files /dev/null and b/animateditems/22396.png differ
diff --git a/animateditems/22397.gif b/animateditems/22397.gif
new file mode 100644
index 00000000..2cfbd9e9
Binary files /dev/null and b/animateditems/22397.gif differ
diff --git a/animateditems/22397.png b/animateditems/22397.png
new file mode 100644
index 00000000..84bf471c
Binary files /dev/null and b/animateditems/22397.png differ
diff --git a/animateditems/22398.gif b/animateditems/22398.gif
new file mode 100644
index 00000000..274adff1
Binary files /dev/null and b/animateditems/22398.gif differ
diff --git a/animateditems/22398.png b/animateditems/22398.png
new file mode 100644
index 00000000..9e474750
Binary files /dev/null and b/animateditems/22398.png differ
diff --git a/animateditems/22399.gif b/animateditems/22399.gif
new file mode 100644
index 00000000..66ecdf95
Binary files /dev/null and b/animateditems/22399.gif differ
diff --git a/animateditems/22399.png b/animateditems/22399.png
new file mode 100644
index 00000000..f3962b74
Binary files /dev/null and b/animateditems/22399.png differ
diff --git a/animateditems/2240.gif b/animateditems/2240.gif
new file mode 100644
index 00000000..2b7ce2a6
Binary files /dev/null and b/animateditems/2240.gif differ
diff --git a/animateditems/2240.png b/animateditems/2240.png
new file mode 100644
index 00000000..17a75dd9
Binary files /dev/null and b/animateditems/2240.png differ
diff --git a/animateditems/22400.gif b/animateditems/22400.gif
new file mode 100644
index 00000000..ebf14171
Binary files /dev/null and b/animateditems/22400.gif differ
diff --git a/animateditems/22400.png b/animateditems/22400.png
new file mode 100644
index 00000000..11c2252f
Binary files /dev/null and b/animateditems/22400.png differ
diff --git a/animateditems/22401.gif b/animateditems/22401.gif
new file mode 100644
index 00000000..d7a7779e
Binary files /dev/null and b/animateditems/22401.gif differ
diff --git a/animateditems/22401.png b/animateditems/22401.png
new file mode 100644
index 00000000..28023c55
Binary files /dev/null and b/animateditems/22401.png differ
diff --git a/animateditems/22402.gif b/animateditems/22402.gif
new file mode 100644
index 00000000..ad9def55
Binary files /dev/null and b/animateditems/22402.gif differ
diff --git a/animateditems/22402.png b/animateditems/22402.png
new file mode 100644
index 00000000..cc55611e
Binary files /dev/null and b/animateditems/22402.png differ
diff --git a/animateditems/22403.gif b/animateditems/22403.gif
new file mode 100644
index 00000000..0289bfdb
Binary files /dev/null and b/animateditems/22403.gif differ
diff --git a/animateditems/22403.png b/animateditems/22403.png
new file mode 100644
index 00000000..af8dabac
Binary files /dev/null and b/animateditems/22403.png differ
diff --git a/animateditems/22404.gif b/animateditems/22404.gif
new file mode 100644
index 00000000..e8eb0db2
Binary files /dev/null and b/animateditems/22404.gif differ
diff --git a/animateditems/22404.png b/animateditems/22404.png
new file mode 100644
index 00000000..c9964448
Binary files /dev/null and b/animateditems/22404.png differ
diff --git a/animateditems/22405.gif b/animateditems/22405.gif
new file mode 100644
index 00000000..0c4d7721
Binary files /dev/null and b/animateditems/22405.gif differ
diff --git a/animateditems/22405.png b/animateditems/22405.png
new file mode 100644
index 00000000..35ad796f
Binary files /dev/null and b/animateditems/22405.png differ
diff --git a/animateditems/22406.gif b/animateditems/22406.gif
new file mode 100644
index 00000000..31cdcee5
Binary files /dev/null and b/animateditems/22406.gif differ
diff --git a/animateditems/22406.png b/animateditems/22406.png
new file mode 100644
index 00000000..077cfcd5
Binary files /dev/null and b/animateditems/22406.png differ
diff --git a/animateditems/22407.gif b/animateditems/22407.gif
new file mode 100644
index 00000000..ad990149
Binary files /dev/null and b/animateditems/22407.gif differ
diff --git a/animateditems/22407.png b/animateditems/22407.png
new file mode 100644
index 00000000..a07d7b52
Binary files /dev/null and b/animateditems/22407.png differ
diff --git a/animateditems/22408.gif b/animateditems/22408.gif
new file mode 100644
index 00000000..e8279315
Binary files /dev/null and b/animateditems/22408.gif differ
diff --git a/animateditems/22408.png b/animateditems/22408.png
new file mode 100644
index 00000000..f366d255
Binary files /dev/null and b/animateditems/22408.png differ
diff --git a/animateditems/22409.gif b/animateditems/22409.gif
new file mode 100644
index 00000000..040a01e5
Binary files /dev/null and b/animateditems/22409.gif differ
diff --git a/animateditems/22409.png b/animateditems/22409.png
new file mode 100644
index 00000000..4824c6d2
Binary files /dev/null and b/animateditems/22409.png differ
diff --git a/animateditems/2241.gif b/animateditems/2241.gif
new file mode 100644
index 00000000..54a48a54
Binary files /dev/null and b/animateditems/2241.gif differ
diff --git a/animateditems/2241.png b/animateditems/2241.png
new file mode 100644
index 00000000..ab499d37
Binary files /dev/null and b/animateditems/2241.png differ
diff --git a/animateditems/22410.gif b/animateditems/22410.gif
new file mode 100644
index 00000000..57a86894
Binary files /dev/null and b/animateditems/22410.gif differ
diff --git a/animateditems/22410.png b/animateditems/22410.png
new file mode 100644
index 00000000..cd76b4c1
Binary files /dev/null and b/animateditems/22410.png differ
diff --git a/animateditems/22411.gif b/animateditems/22411.gif
new file mode 100644
index 00000000..18286cb5
Binary files /dev/null and b/animateditems/22411.gif differ
diff --git a/animateditems/22411.png b/animateditems/22411.png
new file mode 100644
index 00000000..33a8dbc5
Binary files /dev/null and b/animateditems/22411.png differ
diff --git a/animateditems/22412.gif b/animateditems/22412.gif
new file mode 100644
index 00000000..8f35158a
Binary files /dev/null and b/animateditems/22412.gif differ
diff --git a/animateditems/22412.png b/animateditems/22412.png
new file mode 100644
index 00000000..f0942157
Binary files /dev/null and b/animateditems/22412.png differ
diff --git a/animateditems/22413.gif b/animateditems/22413.gif
new file mode 100644
index 00000000..98d66f22
Binary files /dev/null and b/animateditems/22413.gif differ
diff --git a/animateditems/22413.png b/animateditems/22413.png
new file mode 100644
index 00000000..e4e85bea
Binary files /dev/null and b/animateditems/22413.png differ
diff --git a/animateditems/22414.gif b/animateditems/22414.gif
new file mode 100644
index 00000000..90f929ac
Binary files /dev/null and b/animateditems/22414.gif differ
diff --git a/animateditems/22414.png b/animateditems/22414.png
new file mode 100644
index 00000000..2d9bdf92
Binary files /dev/null and b/animateditems/22414.png differ
diff --git a/animateditems/22415.gif b/animateditems/22415.gif
new file mode 100644
index 00000000..73dd393f
Binary files /dev/null and b/animateditems/22415.gif differ
diff --git a/animateditems/22415.png b/animateditems/22415.png
new file mode 100644
index 00000000..9af494d1
Binary files /dev/null and b/animateditems/22415.png differ
diff --git a/animateditems/22416.gif b/animateditems/22416.gif
new file mode 100644
index 00000000..3135a317
Binary files /dev/null and b/animateditems/22416.gif differ
diff --git a/animateditems/22416.png b/animateditems/22416.png
new file mode 100644
index 00000000..4e2834bd
Binary files /dev/null and b/animateditems/22416.png differ
diff --git a/animateditems/22417.gif b/animateditems/22417.gif
new file mode 100644
index 00000000..a1e66657
Binary files /dev/null and b/animateditems/22417.gif differ
diff --git a/animateditems/22417.png b/animateditems/22417.png
new file mode 100644
index 00000000..9fd06f73
Binary files /dev/null and b/animateditems/22417.png differ
diff --git a/animateditems/22418.gif b/animateditems/22418.gif
new file mode 100644
index 00000000..a77c0946
Binary files /dev/null and b/animateditems/22418.gif differ
diff --git a/animateditems/22418.png b/animateditems/22418.png
new file mode 100644
index 00000000..4344cb60
Binary files /dev/null and b/animateditems/22418.png differ
diff --git a/animateditems/22419.gif b/animateditems/22419.gif
new file mode 100644
index 00000000..fd69ecd4
Binary files /dev/null and b/animateditems/22419.gif differ
diff --git a/animateditems/22419.png b/animateditems/22419.png
new file mode 100644
index 00000000..6f6a65c8
Binary files /dev/null and b/animateditems/22419.png differ
diff --git a/animateditems/2242.gif b/animateditems/2242.gif
new file mode 100644
index 00000000..b9b9b700
Binary files /dev/null and b/animateditems/2242.gif differ
diff --git a/animateditems/2242.png b/animateditems/2242.png
new file mode 100644
index 00000000..9ba11ea5
Binary files /dev/null and b/animateditems/2242.png differ
diff --git a/animateditems/22420.gif b/animateditems/22420.gif
new file mode 100644
index 00000000..e0dc989f
Binary files /dev/null and b/animateditems/22420.gif differ
diff --git a/animateditems/22420.png b/animateditems/22420.png
new file mode 100644
index 00000000..4c372763
Binary files /dev/null and b/animateditems/22420.png differ
diff --git a/animateditems/22421.gif b/animateditems/22421.gif
new file mode 100644
index 00000000..715bcb60
Binary files /dev/null and b/animateditems/22421.gif differ
diff --git a/animateditems/22421.png b/animateditems/22421.png
new file mode 100644
index 00000000..97b9d583
Binary files /dev/null and b/animateditems/22421.png differ
diff --git a/animateditems/22422.gif b/animateditems/22422.gif
new file mode 100644
index 00000000..22224158
Binary files /dev/null and b/animateditems/22422.gif differ
diff --git a/animateditems/22422.png b/animateditems/22422.png
new file mode 100644
index 00000000..8dd47e14
Binary files /dev/null and b/animateditems/22422.png differ
diff --git a/animateditems/22423.gif b/animateditems/22423.gif
new file mode 100644
index 00000000..c57f25ae
Binary files /dev/null and b/animateditems/22423.gif differ
diff --git a/animateditems/22423.png b/animateditems/22423.png
new file mode 100644
index 00000000..a1a647e6
Binary files /dev/null and b/animateditems/22423.png differ
diff --git a/animateditems/22424.gif b/animateditems/22424.gif
new file mode 100644
index 00000000..13877ae8
Binary files /dev/null and b/animateditems/22424.gif differ
diff --git a/animateditems/22424.png b/animateditems/22424.png
new file mode 100644
index 00000000..c63992a3
Binary files /dev/null and b/animateditems/22424.png differ
diff --git a/animateditems/22428.gif b/animateditems/22428.gif
new file mode 100644
index 00000000..efc3fd12
Binary files /dev/null and b/animateditems/22428.gif differ
diff --git a/animateditems/22428.png b/animateditems/22428.png
new file mode 100644
index 00000000..c8446085
Binary files /dev/null and b/animateditems/22428.png differ
diff --git a/animateditems/2243.gif b/animateditems/2243.gif
new file mode 100644
index 00000000..6c5f028b
Binary files /dev/null and b/animateditems/2243.gif differ
diff --git a/animateditems/2243.png b/animateditems/2243.png
new file mode 100644
index 00000000..c3e29c96
Binary files /dev/null and b/animateditems/2243.png differ
diff --git a/animateditems/2244.gif b/animateditems/2244.gif
new file mode 100644
index 00000000..69d95c38
Binary files /dev/null and b/animateditems/2244.gif differ
diff --git a/animateditems/2244.png b/animateditems/2244.png
new file mode 100644
index 00000000..a63f7982
Binary files /dev/null and b/animateditems/2244.png differ
diff --git a/animateditems/2245.gif b/animateditems/2245.gif
new file mode 100644
index 00000000..efdbe096
Binary files /dev/null and b/animateditems/2245.gif differ
diff --git a/animateditems/2245.png b/animateditems/2245.png
new file mode 100644
index 00000000..9fa42fdb
Binary files /dev/null and b/animateditems/2245.png differ
diff --git a/animateditems/2246.gif b/animateditems/2246.gif
new file mode 100644
index 00000000..cbfcc38d
Binary files /dev/null and b/animateditems/2246.gif differ
diff --git a/animateditems/2246.png b/animateditems/2246.png
new file mode 100644
index 00000000..5feffee6
Binary files /dev/null and b/animateditems/2246.png differ
diff --git a/animateditems/22463.gif b/animateditems/22463.gif
new file mode 100644
index 00000000..e4812053
Binary files /dev/null and b/animateditems/22463.gif differ
diff --git a/animateditems/22463.png b/animateditems/22463.png
new file mode 100644
index 00000000..dde61381
Binary files /dev/null and b/animateditems/22463.png differ
diff --git a/animateditems/22465.gif b/animateditems/22465.gif
new file mode 100644
index 00000000..f5c75f26
Binary files /dev/null and b/animateditems/22465.gif differ
diff --git a/animateditems/22465.png b/animateditems/22465.png
new file mode 100644
index 00000000..a4c36d22
Binary files /dev/null and b/animateditems/22465.png differ
diff --git a/animateditems/22472.gif b/animateditems/22472.gif
new file mode 100644
index 00000000..8a35783f
Binary files /dev/null and b/animateditems/22472.gif differ
diff --git a/animateditems/22472.png b/animateditems/22472.png
new file mode 100644
index 00000000..07967820
Binary files /dev/null and b/animateditems/22472.png differ
diff --git a/animateditems/22473.gif b/animateditems/22473.gif
new file mode 100644
index 00000000..3ca85671
Binary files /dev/null and b/animateditems/22473.gif differ
diff --git a/animateditems/22473.png b/animateditems/22473.png
new file mode 100644
index 00000000..4fb25ebe
Binary files /dev/null and b/animateditems/22473.png differ
diff --git a/animateditems/22474.gif b/animateditems/22474.gif
new file mode 100644
index 00000000..329b4681
Binary files /dev/null and b/animateditems/22474.gif differ
diff --git a/animateditems/22474.png b/animateditems/22474.png
new file mode 100644
index 00000000..00f55c5d
Binary files /dev/null and b/animateditems/22474.png differ
diff --git a/animateditems/22475.gif b/animateditems/22475.gif
new file mode 100644
index 00000000..a4c8c429
Binary files /dev/null and b/animateditems/22475.gif differ
diff --git a/animateditems/22475.png b/animateditems/22475.png
new file mode 100644
index 00000000..39423fa0
Binary files /dev/null and b/animateditems/22475.png differ
diff --git a/animateditems/22499.gif b/animateditems/22499.gif
new file mode 100644
index 00000000..6cd82e18
Binary files /dev/null and b/animateditems/22499.gif differ
diff --git a/animateditems/22499.png b/animateditems/22499.png
new file mode 100644
index 00000000..d39f8f77
Binary files /dev/null and b/animateditems/22499.png differ
diff --git a/animateditems/2250.gif b/animateditems/2250.gif
new file mode 100644
index 00000000..8e41c603
Binary files /dev/null and b/animateditems/2250.gif differ
diff --git a/animateditems/2250.png b/animateditems/2250.png
new file mode 100644
index 00000000..cffdc97f
Binary files /dev/null and b/animateditems/2250.png differ
diff --git a/animateditems/22503.gif b/animateditems/22503.gif
new file mode 100644
index 00000000..a8c9bff6
Binary files /dev/null and b/animateditems/22503.gif differ
diff --git a/animateditems/22503.png b/animateditems/22503.png
new file mode 100644
index 00000000..3bcdbe6d
Binary files /dev/null and b/animateditems/22503.png differ
diff --git a/animateditems/22504.gif b/animateditems/22504.gif
new file mode 100644
index 00000000..a1466495
Binary files /dev/null and b/animateditems/22504.gif differ
diff --git a/animateditems/22504.png b/animateditems/22504.png
new file mode 100644
index 00000000..6a510575
Binary files /dev/null and b/animateditems/22504.png differ
diff --git a/animateditems/2251.gif b/animateditems/2251.gif
new file mode 100644
index 00000000..f05fb32e
Binary files /dev/null and b/animateditems/2251.gif differ
diff --git a/animateditems/2251.png b/animateditems/2251.png
new file mode 100644
index 00000000..6b1f979c
Binary files /dev/null and b/animateditems/2251.png differ
diff --git a/animateditems/22516.gif b/animateditems/22516.gif
new file mode 100644
index 00000000..075e8362
Binary files /dev/null and b/animateditems/22516.gif differ
diff --git a/animateditems/22516.png b/animateditems/22516.png
new file mode 100644
index 00000000..bac0003c
Binary files /dev/null and b/animateditems/22516.png differ
diff --git a/animateditems/22517.gif b/animateditems/22517.gif
new file mode 100644
index 00000000..6c44cc8e
Binary files /dev/null and b/animateditems/22517.gif differ
diff --git a/animateditems/22517.png b/animateditems/22517.png
new file mode 100644
index 00000000..77239341
Binary files /dev/null and b/animateditems/22517.png differ
diff --git a/animateditems/22518.gif b/animateditems/22518.gif
new file mode 100644
index 00000000..f8cd9848
Binary files /dev/null and b/animateditems/22518.gif differ
diff --git a/animateditems/22518.png b/animateditems/22518.png
new file mode 100644
index 00000000..4c8cc007
Binary files /dev/null and b/animateditems/22518.png differ
diff --git a/animateditems/2252.gif b/animateditems/2252.gif
new file mode 100644
index 00000000..a5ce5aee
Binary files /dev/null and b/animateditems/2252.gif differ
diff --git a/animateditems/2252.png b/animateditems/2252.png
new file mode 100644
index 00000000..a3b32ad8
Binary files /dev/null and b/animateditems/2252.png differ
diff --git a/animateditems/22523.gif b/animateditems/22523.gif
new file mode 100644
index 00000000..5c5b9468
Binary files /dev/null and b/animateditems/22523.gif differ
diff --git a/animateditems/22523.png b/animateditems/22523.png
new file mode 100644
index 00000000..ad4a5c25
Binary files /dev/null and b/animateditems/22523.png differ
diff --git a/animateditems/22524.gif b/animateditems/22524.gif
new file mode 100644
index 00000000..c2a6e43a
Binary files /dev/null and b/animateditems/22524.gif differ
diff --git a/animateditems/22524.png b/animateditems/22524.png
new file mode 100644
index 00000000..0c2d4304
Binary files /dev/null and b/animateditems/22524.png differ
diff --git a/animateditems/2253.gif b/animateditems/2253.gif
new file mode 100644
index 00000000..8bbf7b75
Binary files /dev/null and b/animateditems/2253.gif differ
diff --git a/animateditems/2253.png b/animateditems/2253.png
new file mode 100644
index 00000000..41fab8b9
Binary files /dev/null and b/animateditems/2253.png differ
diff --git a/animateditems/22532.gif b/animateditems/22532.gif
new file mode 100644
index 00000000..d3431009
Binary files /dev/null and b/animateditems/22532.gif differ
diff --git a/animateditems/22532.png b/animateditems/22532.png
new file mode 100644
index 00000000..c6fe0769
Binary files /dev/null and b/animateditems/22532.png differ
diff --git a/animateditems/22533.gif b/animateditems/22533.gif
new file mode 100644
index 00000000..a5de0af1
Binary files /dev/null and b/animateditems/22533.gif differ
diff --git a/animateditems/22533.png b/animateditems/22533.png
new file mode 100644
index 00000000..397326a9
Binary files /dev/null and b/animateditems/22533.png differ
diff --git a/animateditems/22534.gif b/animateditems/22534.gif
new file mode 100644
index 00000000..624351c6
Binary files /dev/null and b/animateditems/22534.gif differ
diff --git a/animateditems/22534.png b/animateditems/22534.png
new file mode 100644
index 00000000..5f94be6c
Binary files /dev/null and b/animateditems/22534.png differ
diff --git a/animateditems/22535.gif b/animateditems/22535.gif
new file mode 100644
index 00000000..ee732ba9
Binary files /dev/null and b/animateditems/22535.gif differ
diff --git a/animateditems/22535.png b/animateditems/22535.png
new file mode 100644
index 00000000..5c709940
Binary files /dev/null and b/animateditems/22535.png differ
diff --git a/animateditems/22536.gif b/animateditems/22536.gif
new file mode 100644
index 00000000..ac39080a
Binary files /dev/null and b/animateditems/22536.gif differ
diff --git a/animateditems/22536.png b/animateditems/22536.png
new file mode 100644
index 00000000..c626ab39
Binary files /dev/null and b/animateditems/22536.png differ
diff --git a/animateditems/22537.gif b/animateditems/22537.gif
new file mode 100644
index 00000000..2db5336d
Binary files /dev/null and b/animateditems/22537.gif differ
diff --git a/animateditems/22537.png b/animateditems/22537.png
new file mode 100644
index 00000000..bba692c3
Binary files /dev/null and b/animateditems/22537.png differ
diff --git a/animateditems/22538.gif b/animateditems/22538.gif
new file mode 100644
index 00000000..8453821d
Binary files /dev/null and b/animateditems/22538.gif differ
diff --git a/animateditems/22538.png b/animateditems/22538.png
new file mode 100644
index 00000000..6344b049
Binary files /dev/null and b/animateditems/22538.png differ
diff --git a/animateditems/22539.gif b/animateditems/22539.gif
new file mode 100644
index 00000000..2f5c6bfe
Binary files /dev/null and b/animateditems/22539.gif differ
diff --git a/animateditems/22539.png b/animateditems/22539.png
new file mode 100644
index 00000000..a618adc8
Binary files /dev/null and b/animateditems/22539.png differ
diff --git a/animateditems/2254.gif b/animateditems/2254.gif
new file mode 100644
index 00000000..c4bf4664
Binary files /dev/null and b/animateditems/2254.gif differ
diff --git a/animateditems/2254.png b/animateditems/2254.png
new file mode 100644
index 00000000..862d75ee
Binary files /dev/null and b/animateditems/2254.png differ
diff --git a/animateditems/22540.gif b/animateditems/22540.gif
new file mode 100644
index 00000000..91eb7139
Binary files /dev/null and b/animateditems/22540.gif differ
diff --git a/animateditems/22540.png b/animateditems/22540.png
new file mode 100644
index 00000000..03ca1dc7
Binary files /dev/null and b/animateditems/22540.png differ
diff --git a/animateditems/22541.gif b/animateditems/22541.gif
new file mode 100644
index 00000000..a765f3b7
Binary files /dev/null and b/animateditems/22541.gif differ
diff --git a/animateditems/22541.png b/animateditems/22541.png
new file mode 100644
index 00000000..84624e8c
Binary files /dev/null and b/animateditems/22541.png differ
diff --git a/animateditems/22542.gif b/animateditems/22542.gif
new file mode 100644
index 00000000..b2e2048a
Binary files /dev/null and b/animateditems/22542.gif differ
diff --git a/animateditems/22542.png b/animateditems/22542.png
new file mode 100644
index 00000000..d9389884
Binary files /dev/null and b/animateditems/22542.png differ
diff --git a/animateditems/22543.gif b/animateditems/22543.gif
new file mode 100644
index 00000000..a9f36651
Binary files /dev/null and b/animateditems/22543.gif differ
diff --git a/animateditems/22543.png b/animateditems/22543.png
new file mode 100644
index 00000000..b4d47aa7
Binary files /dev/null and b/animateditems/22543.png differ
diff --git a/animateditems/22544.gif b/animateditems/22544.gif
new file mode 100644
index 00000000..efc3fd12
Binary files /dev/null and b/animateditems/22544.gif differ
diff --git a/animateditems/22544.png b/animateditems/22544.png
new file mode 100644
index 00000000..c8446085
Binary files /dev/null and b/animateditems/22544.png differ
diff --git a/animateditems/2255.gif b/animateditems/2255.gif
new file mode 100644
index 00000000..f9d09eff
Binary files /dev/null and b/animateditems/2255.gif differ
diff --git a/animateditems/2255.png b/animateditems/2255.png
new file mode 100644
index 00000000..a6354d02
Binary files /dev/null and b/animateditems/2255.png differ
diff --git a/animateditems/2256.gif b/animateditems/2256.gif
new file mode 100644
index 00000000..42bfe2c1
Binary files /dev/null and b/animateditems/2256.gif differ
diff --git a/animateditems/2256.png b/animateditems/2256.png
new file mode 100644
index 00000000..ed0f0c16
Binary files /dev/null and b/animateditems/2256.png differ
diff --git a/animateditems/2257.gif b/animateditems/2257.gif
new file mode 100644
index 00000000..c52d160b
Binary files /dev/null and b/animateditems/2257.gif differ
diff --git a/animateditems/2257.png b/animateditems/2257.png
new file mode 100644
index 00000000..7a05c76f
Binary files /dev/null and b/animateditems/2257.png differ
diff --git a/animateditems/2258.gif b/animateditems/2258.gif
new file mode 100644
index 00000000..c57defb0
Binary files /dev/null and b/animateditems/2258.gif differ
diff --git a/animateditems/2258.png b/animateditems/2258.png
new file mode 100644
index 00000000..c702e195
Binary files /dev/null and b/animateditems/2258.png differ
diff --git a/animateditems/2259.gif b/animateditems/2259.gif
new file mode 100644
index 00000000..b7a02b5d
Binary files /dev/null and b/animateditems/2259.gif differ
diff --git a/animateditems/2259.png b/animateditems/2259.png
new file mode 100644
index 00000000..0fdaf397
Binary files /dev/null and b/animateditems/2259.png differ
diff --git a/animateditems/22598.gif b/animateditems/22598.gif
new file mode 100644
index 00000000..3e21ec0f
Binary files /dev/null and b/animateditems/22598.gif differ
diff --git a/animateditems/22598.png b/animateditems/22598.png
new file mode 100644
index 00000000..f5b5ce3b
Binary files /dev/null and b/animateditems/22598.png differ
diff --git a/animateditems/2260.gif b/animateditems/2260.gif
new file mode 100644
index 00000000..69bfcd88
Binary files /dev/null and b/animateditems/2260.gif differ
diff --git a/animateditems/2260.png b/animateditems/2260.png
new file mode 100644
index 00000000..268f8116
Binary files /dev/null and b/animateditems/2260.png differ
diff --git a/animateditems/22604.gif b/animateditems/22604.gif
new file mode 100644
index 00000000..7ca61d50
Binary files /dev/null and b/animateditems/22604.gif differ
diff --git a/animateditems/22604.png b/animateditems/22604.png
new file mode 100644
index 00000000..d26c8df3
Binary files /dev/null and b/animateditems/22604.png differ
diff --git a/animateditems/22605.gif b/animateditems/22605.gif
new file mode 100644
index 00000000..de681ebf
Binary files /dev/null and b/animateditems/22605.gif differ
diff --git a/animateditems/22605.png b/animateditems/22605.png
new file mode 100644
index 00000000..4d3cf5ed
Binary files /dev/null and b/animateditems/22605.png differ
diff --git a/animateditems/22606.gif b/animateditems/22606.gif
new file mode 100644
index 00000000..b72262e9
Binary files /dev/null and b/animateditems/22606.gif differ
diff --git a/animateditems/22606.png b/animateditems/22606.png
new file mode 100644
index 00000000..9f326ec1
Binary files /dev/null and b/animateditems/22606.png differ
diff --git a/animateditems/22607.gif b/animateditems/22607.gif
new file mode 100644
index 00000000..4dca8d8b
Binary files /dev/null and b/animateditems/22607.gif differ
diff --git a/animateditems/22607.png b/animateditems/22607.png
new file mode 100644
index 00000000..ea1382dc
Binary files /dev/null and b/animateditems/22607.png differ
diff --git a/animateditems/22608.gif b/animateditems/22608.gif
new file mode 100644
index 00000000..80523a82
Binary files /dev/null and b/animateditems/22608.gif differ
diff --git a/animateditems/22608.png b/animateditems/22608.png
new file mode 100644
index 00000000..aba9f5ef
Binary files /dev/null and b/animateditems/22608.png differ
diff --git a/animateditems/22609.gif b/animateditems/22609.gif
new file mode 100644
index 00000000..7761f538
Binary files /dev/null and b/animateditems/22609.gif differ
diff --git a/animateditems/22609.png b/animateditems/22609.png
new file mode 100644
index 00000000..d8dfacc0
Binary files /dev/null and b/animateditems/22609.png differ
diff --git a/animateditems/2261.gif b/animateditems/2261.gif
new file mode 100644
index 00000000..23c9e17c
Binary files /dev/null and b/animateditems/2261.gif differ
diff --git a/animateditems/2261.png b/animateditems/2261.png
new file mode 100644
index 00000000..fa4ece39
Binary files /dev/null and b/animateditems/2261.png differ
diff --git a/animateditems/22610.gif b/animateditems/22610.gif
new file mode 100644
index 00000000..8dd51ccd
Binary files /dev/null and b/animateditems/22610.gif differ
diff --git a/animateditems/22610.png b/animateditems/22610.png
new file mode 100644
index 00000000..5d91e5d7
Binary files /dev/null and b/animateditems/22610.png differ
diff --git a/animateditems/22611.gif b/animateditems/22611.gif
new file mode 100644
index 00000000..f9adbc1b
Binary files /dev/null and b/animateditems/22611.gif differ
diff --git a/animateditems/22611.png b/animateditems/22611.png
new file mode 100644
index 00000000..643de324
Binary files /dev/null and b/animateditems/22611.png differ
diff --git a/animateditems/22612.gif b/animateditems/22612.gif
new file mode 100644
index 00000000..dbce7239
Binary files /dev/null and b/animateditems/22612.gif differ
diff --git a/animateditems/22612.png b/animateditems/22612.png
new file mode 100644
index 00000000..f0b45166
Binary files /dev/null and b/animateditems/22612.png differ
diff --git a/animateditems/22613.gif b/animateditems/22613.gif
new file mode 100644
index 00000000..ed2992e2
Binary files /dev/null and b/animateditems/22613.gif differ
diff --git a/animateditems/22613.png b/animateditems/22613.png
new file mode 100644
index 00000000..b584052e
Binary files /dev/null and b/animateditems/22613.png differ
diff --git a/animateditems/22614.gif b/animateditems/22614.gif
new file mode 100644
index 00000000..afc8bb81
Binary files /dev/null and b/animateditems/22614.gif differ
diff --git a/animateditems/22614.png b/animateditems/22614.png
new file mode 100644
index 00000000..d864f39d
Binary files /dev/null and b/animateditems/22614.png differ
diff --git a/animateditems/22615.gif b/animateditems/22615.gif
new file mode 100644
index 00000000..afc8bb81
Binary files /dev/null and b/animateditems/22615.gif differ
diff --git a/animateditems/22615.png b/animateditems/22615.png
new file mode 100644
index 00000000..d864f39d
Binary files /dev/null and b/animateditems/22615.png differ
diff --git a/animateditems/22616.gif b/animateditems/22616.gif
new file mode 100644
index 00000000..f279ece0
Binary files /dev/null and b/animateditems/22616.gif differ
diff --git a/animateditems/22616.png b/animateditems/22616.png
new file mode 100644
index 00000000..6bab76d2
Binary files /dev/null and b/animateditems/22616.png differ
diff --git a/animateditems/2262.gif b/animateditems/2262.gif
new file mode 100644
index 00000000..d1794056
Binary files /dev/null and b/animateditems/2262.gif differ
diff --git a/animateditems/2262.png b/animateditems/2262.png
new file mode 100644
index 00000000..94116983
Binary files /dev/null and b/animateditems/2262.png differ
diff --git a/animateditems/2263.gif b/animateditems/2263.gif
new file mode 100644
index 00000000..4fac853b
Binary files /dev/null and b/animateditems/2263.gif differ
diff --git a/animateditems/2263.png b/animateditems/2263.png
new file mode 100644
index 00000000..3c4ebe42
Binary files /dev/null and b/animateditems/2263.png differ
diff --git a/animateditems/2264.gif b/animateditems/2264.gif
new file mode 100644
index 00000000..044ff17d
Binary files /dev/null and b/animateditems/2264.gif differ
diff --git a/animateditems/2264.png b/animateditems/2264.png
new file mode 100644
index 00000000..4ccd57ea
Binary files /dev/null and b/animateditems/2264.png differ
diff --git a/animateditems/22642.gif b/animateditems/22642.gif
new file mode 100644
index 00000000..e64ff116
Binary files /dev/null and b/animateditems/22642.gif differ
diff --git a/animateditems/22642.png b/animateditems/22642.png
new file mode 100644
index 00000000..e8e55fa1
Binary files /dev/null and b/animateditems/22642.png differ
diff --git a/animateditems/22643.gif b/animateditems/22643.gif
new file mode 100644
index 00000000..b63fe4d0
Binary files /dev/null and b/animateditems/22643.gif differ
diff --git a/animateditems/22643.png b/animateditems/22643.png
new file mode 100644
index 00000000..afd70986
Binary files /dev/null and b/animateditems/22643.png differ
diff --git a/animateditems/22644.gif b/animateditems/22644.gif
new file mode 100644
index 00000000..de33a16f
Binary files /dev/null and b/animateditems/22644.gif differ
diff --git a/animateditems/22644.png b/animateditems/22644.png
new file mode 100644
index 00000000..aa833846
Binary files /dev/null and b/animateditems/22644.png differ
diff --git a/animateditems/22645.gif b/animateditems/22645.gif
new file mode 100644
index 00000000..177c991b
Binary files /dev/null and b/animateditems/22645.gif differ
diff --git a/animateditems/22645.png b/animateditems/22645.png
new file mode 100644
index 00000000..d35934b0
Binary files /dev/null and b/animateditems/22645.png differ
diff --git a/animateditems/22646.gif b/animateditems/22646.gif
new file mode 100644
index 00000000..eb7e25c0
Binary files /dev/null and b/animateditems/22646.gif differ
diff --git a/animateditems/22646.png b/animateditems/22646.png
new file mode 100644
index 00000000..194b0a00
Binary files /dev/null and b/animateditems/22646.png differ
diff --git a/animateditems/22647.gif b/animateditems/22647.gif
new file mode 100644
index 00000000..d8f13f35
Binary files /dev/null and b/animateditems/22647.gif differ
diff --git a/animateditems/22647.png b/animateditems/22647.png
new file mode 100644
index 00000000..74eb62a5
Binary files /dev/null and b/animateditems/22647.png differ
diff --git a/animateditems/22648.gif b/animateditems/22648.gif
new file mode 100644
index 00000000..e0411610
Binary files /dev/null and b/animateditems/22648.gif differ
diff --git a/animateditems/22648.png b/animateditems/22648.png
new file mode 100644
index 00000000..2e0f2db9
Binary files /dev/null and b/animateditems/22648.png differ
diff --git a/animateditems/22649.gif b/animateditems/22649.gif
new file mode 100644
index 00000000..814c062d
Binary files /dev/null and b/animateditems/22649.gif differ
diff --git a/animateditems/22649.png b/animateditems/22649.png
new file mode 100644
index 00000000..2f3aca82
Binary files /dev/null and b/animateditems/22649.png differ
diff --git a/animateditems/2265.gif b/animateditems/2265.gif
new file mode 100644
index 00000000..e53b0c52
Binary files /dev/null and b/animateditems/2265.gif differ
diff --git a/animateditems/2265.png b/animateditems/2265.png
new file mode 100644
index 00000000..03831588
Binary files /dev/null and b/animateditems/2265.png differ
diff --git a/animateditems/2266.gif b/animateditems/2266.gif
new file mode 100644
index 00000000..be44683c
Binary files /dev/null and b/animateditems/2266.gif differ
diff --git a/animateditems/2266.png b/animateditems/2266.png
new file mode 100644
index 00000000..f195d48b
Binary files /dev/null and b/animateditems/2266.png differ
diff --git a/animateditems/2267.gif b/animateditems/2267.gif
new file mode 100644
index 00000000..28897c70
Binary files /dev/null and b/animateditems/2267.gif differ
diff --git a/animateditems/2267.png b/animateditems/2267.png
new file mode 100644
index 00000000..9db21d63
Binary files /dev/null and b/animateditems/2267.png differ
diff --git a/animateditems/22678.gif b/animateditems/22678.gif
new file mode 100644
index 00000000..c49206b1
Binary files /dev/null and b/animateditems/22678.gif differ
diff --git a/animateditems/22678.png b/animateditems/22678.png
new file mode 100644
index 00000000..43aedb90
Binary files /dev/null and b/animateditems/22678.png differ
diff --git a/animateditems/2268.gif b/animateditems/2268.gif
new file mode 100644
index 00000000..83716470
Binary files /dev/null and b/animateditems/2268.gif differ
diff --git a/animateditems/2268.png b/animateditems/2268.png
new file mode 100644
index 00000000..6e5d3043
Binary files /dev/null and b/animateditems/2268.png differ
diff --git a/animateditems/2269.gif b/animateditems/2269.gif
new file mode 100644
index 00000000..8701490a
Binary files /dev/null and b/animateditems/2269.gif differ
diff --git a/animateditems/2269.png b/animateditems/2269.png
new file mode 100644
index 00000000..7a133263
Binary files /dev/null and b/animateditems/2269.png differ
diff --git a/animateditems/22690.gif b/animateditems/22690.gif
new file mode 100644
index 00000000..bd661404
Binary files /dev/null and b/animateditems/22690.gif differ
diff --git a/animateditems/22690.png b/animateditems/22690.png
new file mode 100644
index 00000000..fdf28547
Binary files /dev/null and b/animateditems/22690.png differ
diff --git a/animateditems/22691.gif b/animateditems/22691.gif
new file mode 100644
index 00000000..452d3520
Binary files /dev/null and b/animateditems/22691.gif differ
diff --git a/animateditems/22691.png b/animateditems/22691.png
new file mode 100644
index 00000000..b02559a1
Binary files /dev/null and b/animateditems/22691.png differ
diff --git a/animateditems/22696.gif b/animateditems/22696.gif
new file mode 100644
index 00000000..10166056
Binary files /dev/null and b/animateditems/22696.gif differ
diff --git a/animateditems/22696.png b/animateditems/22696.png
new file mode 100644
index 00000000..b6445d47
Binary files /dev/null and b/animateditems/22696.png differ
diff --git a/animateditems/22699.gif b/animateditems/22699.gif
new file mode 100644
index 00000000..be85bf28
Binary files /dev/null and b/animateditems/22699.gif differ
diff --git a/animateditems/22699.png b/animateditems/22699.png
new file mode 100644
index 00000000..a46462d8
Binary files /dev/null and b/animateditems/22699.png differ
diff --git a/animateditems/2270.gif b/animateditems/2270.gif
new file mode 100644
index 00000000..b13c2887
Binary files /dev/null and b/animateditems/2270.gif differ
diff --git a/animateditems/2270.png b/animateditems/2270.png
new file mode 100644
index 00000000..9431e3b3
Binary files /dev/null and b/animateditems/2270.png differ
diff --git a/animateditems/2271.gif b/animateditems/2271.gif
new file mode 100644
index 00000000..bbf57219
Binary files /dev/null and b/animateditems/2271.gif differ
diff --git a/animateditems/2271.png b/animateditems/2271.png
new file mode 100644
index 00000000..61907419
Binary files /dev/null and b/animateditems/2271.png differ
diff --git a/animateditems/2272.gif b/animateditems/2272.gif
new file mode 100644
index 00000000..7eced6a2
Binary files /dev/null and b/animateditems/2272.gif differ
diff --git a/animateditems/2272.png b/animateditems/2272.png
new file mode 100644
index 00000000..3ea0bac4
Binary files /dev/null and b/animateditems/2272.png differ
diff --git a/animateditems/22726.gif b/animateditems/22726.gif
new file mode 100644
index 00000000..4a10ff7e
Binary files /dev/null and b/animateditems/22726.gif differ
diff --git a/animateditems/22726.png b/animateditems/22726.png
new file mode 100644
index 00000000..04981244
Binary files /dev/null and b/animateditems/22726.png differ
diff --git a/animateditems/22727.gif b/animateditems/22727.gif
new file mode 100644
index 00000000..dcf60ff4
Binary files /dev/null and b/animateditems/22727.gif differ
diff --git a/animateditems/22727.png b/animateditems/22727.png
new file mode 100644
index 00000000..381362fb
Binary files /dev/null and b/animateditems/22727.png differ
diff --git a/animateditems/22728.gif b/animateditems/22728.gif
new file mode 100644
index 00000000..f75e8ecd
Binary files /dev/null and b/animateditems/22728.gif differ
diff --git a/animateditems/22728.png b/animateditems/22728.png
new file mode 100644
index 00000000..0c497cd6
Binary files /dev/null and b/animateditems/22728.png differ
diff --git a/animateditems/2273.gif b/animateditems/2273.gif
new file mode 100644
index 00000000..3f87b19b
Binary files /dev/null and b/animateditems/2273.gif differ
diff --git a/animateditems/2273.png b/animateditems/2273.png
new file mode 100644
index 00000000..d3e6086d
Binary files /dev/null and b/animateditems/2273.png differ
diff --git a/animateditems/2274.gif b/animateditems/2274.gif
new file mode 100644
index 00000000..ac099545
Binary files /dev/null and b/animateditems/2274.gif differ
diff --git a/animateditems/2274.png b/animateditems/2274.png
new file mode 100644
index 00000000..19a1e32e
Binary files /dev/null and b/animateditems/2274.png differ
diff --git a/animateditems/2275.gif b/animateditems/2275.gif
new file mode 100644
index 00000000..c75a8efd
Binary files /dev/null and b/animateditems/2275.gif differ
diff --git a/animateditems/2275.png b/animateditems/2275.png
new file mode 100644
index 00000000..5a2ed81d
Binary files /dev/null and b/animateditems/2275.png differ
diff --git a/animateditems/2276.gif b/animateditems/2276.gif
new file mode 100644
index 00000000..f8f5b35e
Binary files /dev/null and b/animateditems/2276.gif differ
diff --git a/animateditems/2276.png b/animateditems/2276.png
new file mode 100644
index 00000000..c3c8cceb
Binary files /dev/null and b/animateditems/2276.png differ
diff --git a/animateditems/2277.gif b/animateditems/2277.gif
new file mode 100644
index 00000000..4b7bdf45
Binary files /dev/null and b/animateditems/2277.gif differ
diff --git a/animateditems/2277.png b/animateditems/2277.png
new file mode 100644
index 00000000..f8e3cf8f
Binary files /dev/null and b/animateditems/2277.png differ
diff --git a/animateditems/2278.gif b/animateditems/2278.gif
new file mode 100644
index 00000000..31385b23
Binary files /dev/null and b/animateditems/2278.gif differ
diff --git a/animateditems/2278.png b/animateditems/2278.png
new file mode 100644
index 00000000..f1b17f3b
Binary files /dev/null and b/animateditems/2278.png differ
diff --git a/animateditems/2279.gif b/animateditems/2279.gif
new file mode 100644
index 00000000..e36b8418
Binary files /dev/null and b/animateditems/2279.gif differ
diff --git a/animateditems/2279.png b/animateditems/2279.png
new file mode 100644
index 00000000..3084a3de
Binary files /dev/null and b/animateditems/2279.png differ
diff --git a/animateditems/2280.gif b/animateditems/2280.gif
new file mode 100644
index 00000000..b88f93f5
Binary files /dev/null and b/animateditems/2280.gif differ
diff --git a/animateditems/2280.png b/animateditems/2280.png
new file mode 100644
index 00000000..35f07506
Binary files /dev/null and b/animateditems/2280.png differ
diff --git a/animateditems/2281.gif b/animateditems/2281.gif
new file mode 100644
index 00000000..5d464470
Binary files /dev/null and b/animateditems/2281.gif differ
diff --git a/animateditems/2281.png b/animateditems/2281.png
new file mode 100644
index 00000000..f077757e
Binary files /dev/null and b/animateditems/2281.png differ
diff --git a/animateditems/2282.gif b/animateditems/2282.gif
new file mode 100644
index 00000000..447d6f79
Binary files /dev/null and b/animateditems/2282.gif differ
diff --git a/animateditems/2282.png b/animateditems/2282.png
new file mode 100644
index 00000000..1e4dbe6c
Binary files /dev/null and b/animateditems/2282.png differ
diff --git a/animateditems/2283.gif b/animateditems/2283.gif
new file mode 100644
index 00000000..3615058e
Binary files /dev/null and b/animateditems/2283.gif differ
diff --git a/animateditems/2283.png b/animateditems/2283.png
new file mode 100644
index 00000000..5d833c29
Binary files /dev/null and b/animateditems/2283.png differ
diff --git a/animateditems/2284.gif b/animateditems/2284.gif
new file mode 100644
index 00000000..7599b0aa
Binary files /dev/null and b/animateditems/2284.gif differ
diff --git a/animateditems/2284.png b/animateditems/2284.png
new file mode 100644
index 00000000..2e18f220
Binary files /dev/null and b/animateditems/2284.png differ
diff --git a/animateditems/2285.gif b/animateditems/2285.gif
new file mode 100644
index 00000000..aa2cdb0d
Binary files /dev/null and b/animateditems/2285.gif differ
diff --git a/animateditems/2285.png b/animateditems/2285.png
new file mode 100644
index 00000000..d2331992
Binary files /dev/null and b/animateditems/2285.png differ
diff --git a/animateditems/2286.gif b/animateditems/2286.gif
new file mode 100644
index 00000000..d1d70ab1
Binary files /dev/null and b/animateditems/2286.gif differ
diff --git a/animateditems/2286.png b/animateditems/2286.png
new file mode 100644
index 00000000..54d37291
Binary files /dev/null and b/animateditems/2286.png differ
diff --git a/animateditems/2287.gif b/animateditems/2287.gif
new file mode 100644
index 00000000..ce8a4619
Binary files /dev/null and b/animateditems/2287.gif differ
diff --git a/animateditems/2287.png b/animateditems/2287.png
new file mode 100644
index 00000000..fd8b91c1
Binary files /dev/null and b/animateditems/2287.png differ
diff --git a/animateditems/2288.gif b/animateditems/2288.gif
new file mode 100644
index 00000000..c57d630f
Binary files /dev/null and b/animateditems/2288.gif differ
diff --git a/animateditems/2288.png b/animateditems/2288.png
new file mode 100644
index 00000000..2623ea51
Binary files /dev/null and b/animateditems/2288.png differ
diff --git a/animateditems/2289.gif b/animateditems/2289.gif
new file mode 100644
index 00000000..0c68f13d
Binary files /dev/null and b/animateditems/2289.gif differ
diff --git a/animateditems/2289.png b/animateditems/2289.png
new file mode 100644
index 00000000..0960cfb2
Binary files /dev/null and b/animateditems/2289.png differ
diff --git a/animateditems/2290.gif b/animateditems/2290.gif
new file mode 100644
index 00000000..488f407e
Binary files /dev/null and b/animateditems/2290.gif differ
diff --git a/animateditems/2290.png b/animateditems/2290.png
new file mode 100644
index 00000000..e6950a17
Binary files /dev/null and b/animateditems/2290.png differ
diff --git a/animateditems/2291.gif b/animateditems/2291.gif
new file mode 100644
index 00000000..2e91f74a
Binary files /dev/null and b/animateditems/2291.gif differ
diff --git a/animateditems/2291.png b/animateditems/2291.png
new file mode 100644
index 00000000..a474df1c
Binary files /dev/null and b/animateditems/2291.png differ
diff --git a/animateditems/2292.gif b/animateditems/2292.gif
new file mode 100644
index 00000000..f11bda5e
Binary files /dev/null and b/animateditems/2292.gif differ
diff --git a/animateditems/2292.png b/animateditems/2292.png
new file mode 100644
index 00000000..97bd41ea
Binary files /dev/null and b/animateditems/2292.png differ
diff --git a/animateditems/2293.gif b/animateditems/2293.gif
new file mode 100644
index 00000000..6bd94403
Binary files /dev/null and b/animateditems/2293.gif differ
diff --git a/animateditems/2293.png b/animateditems/2293.png
new file mode 100644
index 00000000..387b28d5
Binary files /dev/null and b/animateditems/2293.png differ
diff --git a/animateditems/2294.gif b/animateditems/2294.gif
new file mode 100644
index 00000000..975d33f6
Binary files /dev/null and b/animateditems/2294.gif differ
diff --git a/animateditems/2294.png b/animateditems/2294.png
new file mode 100644
index 00000000..c39114c1
Binary files /dev/null and b/animateditems/2294.png differ
diff --git a/animateditems/2295.gif b/animateditems/2295.gif
new file mode 100644
index 00000000..c9bd216f
Binary files /dev/null and b/animateditems/2295.gif differ
diff --git a/animateditems/2295.png b/animateditems/2295.png
new file mode 100644
index 00000000..f18b4602
Binary files /dev/null and b/animateditems/2295.png differ
diff --git a/animateditems/2296.gif b/animateditems/2296.gif
new file mode 100644
index 00000000..069c969b
Binary files /dev/null and b/animateditems/2296.gif differ
diff --git a/animateditems/2296.png b/animateditems/2296.png
new file mode 100644
index 00000000..01162139
Binary files /dev/null and b/animateditems/2296.png differ
diff --git a/animateditems/2297.gif b/animateditems/2297.gif
new file mode 100644
index 00000000..391ea176
Binary files /dev/null and b/animateditems/2297.gif differ
diff --git a/animateditems/2297.png b/animateditems/2297.png
new file mode 100644
index 00000000..b2620f07
Binary files /dev/null and b/animateditems/2297.png differ
diff --git a/animateditems/2298.gif b/animateditems/2298.gif
new file mode 100644
index 00000000..f30481d5
Binary files /dev/null and b/animateditems/2298.gif differ
diff --git a/animateditems/2298.png b/animateditems/2298.png
new file mode 100644
index 00000000..fe494c4b
Binary files /dev/null and b/animateditems/2298.png differ
diff --git a/animateditems/2299.gif b/animateditems/2299.gif
new file mode 100644
index 00000000..bc50d1cf
Binary files /dev/null and b/animateditems/2299.gif differ
diff --git a/animateditems/2299.png b/animateditems/2299.png
new file mode 100644
index 00000000..9bee7bfe
Binary files /dev/null and b/animateditems/2299.png differ
diff --git a/animateditems/2300.gif b/animateditems/2300.gif
new file mode 100644
index 00000000..47a96c7a
Binary files /dev/null and b/animateditems/2300.gif differ
diff --git a/animateditems/2300.png b/animateditems/2300.png
new file mode 100644
index 00000000..bac79667
Binary files /dev/null and b/animateditems/2300.png differ
diff --git a/animateditems/2301.gif b/animateditems/2301.gif
new file mode 100644
index 00000000..c43dd355
Binary files /dev/null and b/animateditems/2301.gif differ
diff --git a/animateditems/2301.png b/animateditems/2301.png
new file mode 100644
index 00000000..0706464e
Binary files /dev/null and b/animateditems/2301.png differ
diff --git a/animateditems/2302.gif b/animateditems/2302.gif
new file mode 100644
index 00000000..d7251858
Binary files /dev/null and b/animateditems/2302.gif differ
diff --git a/animateditems/2302.png b/animateditems/2302.png
new file mode 100644
index 00000000..e6fcd5db
Binary files /dev/null and b/animateditems/2302.png differ
diff --git a/animateditems/2303.gif b/animateditems/2303.gif
new file mode 100644
index 00000000..ec8b6260
Binary files /dev/null and b/animateditems/2303.gif differ
diff --git a/animateditems/2303.png b/animateditems/2303.png
new file mode 100644
index 00000000..383baa92
Binary files /dev/null and b/animateditems/2303.png differ
diff --git a/animateditems/2304.gif b/animateditems/2304.gif
new file mode 100644
index 00000000..341ff9bb
Binary files /dev/null and b/animateditems/2304.gif differ
diff --git a/animateditems/2304.png b/animateditems/2304.png
new file mode 100644
index 00000000..41780bf3
Binary files /dev/null and b/animateditems/2304.png differ
diff --git a/animateditems/2305.gif b/animateditems/2305.gif
new file mode 100644
index 00000000..32e94254
Binary files /dev/null and b/animateditems/2305.gif differ
diff --git a/animateditems/2305.png b/animateditems/2305.png
new file mode 100644
index 00000000..b16a8263
Binary files /dev/null and b/animateditems/2305.png differ
diff --git a/animateditems/2306.gif b/animateditems/2306.gif
new file mode 100644
index 00000000..650d95b1
Binary files /dev/null and b/animateditems/2306.gif differ
diff --git a/animateditems/2306.png b/animateditems/2306.png
new file mode 100644
index 00000000..0869bd33
Binary files /dev/null and b/animateditems/2306.png differ
diff --git a/animateditems/2307.gif b/animateditems/2307.gif
new file mode 100644
index 00000000..f9d37a52
Binary files /dev/null and b/animateditems/2307.gif differ
diff --git a/animateditems/2307.png b/animateditems/2307.png
new file mode 100644
index 00000000..6b2a3d4d
Binary files /dev/null and b/animateditems/2307.png differ
diff --git a/animateditems/2308.gif b/animateditems/2308.gif
new file mode 100644
index 00000000..70bdc1f9
Binary files /dev/null and b/animateditems/2308.gif differ
diff --git a/animateditems/2308.png b/animateditems/2308.png
new file mode 100644
index 00000000..c317ff5f
Binary files /dev/null and b/animateditems/2308.png differ
diff --git a/animateditems/2309.gif b/animateditems/2309.gif
new file mode 100644
index 00000000..08be4e09
Binary files /dev/null and b/animateditems/2309.gif differ
diff --git a/animateditems/2309.png b/animateditems/2309.png
new file mode 100644
index 00000000..fdc62058
Binary files /dev/null and b/animateditems/2309.png differ
diff --git a/animateditems/2310.gif b/animateditems/2310.gif
new file mode 100644
index 00000000..3cf9aebf
Binary files /dev/null and b/animateditems/2310.gif differ
diff --git a/animateditems/2310.png b/animateditems/2310.png
new file mode 100644
index 00000000..55685832
Binary files /dev/null and b/animateditems/2310.png differ
diff --git a/animateditems/2311.gif b/animateditems/2311.gif
new file mode 100644
index 00000000..43814294
Binary files /dev/null and b/animateditems/2311.gif differ
diff --git a/animateditems/2311.png b/animateditems/2311.png
new file mode 100644
index 00000000..a76da96f
Binary files /dev/null and b/animateditems/2311.png differ
diff --git a/animateditems/2312.gif b/animateditems/2312.gif
new file mode 100644
index 00000000..f468c80f
Binary files /dev/null and b/animateditems/2312.gif differ
diff --git a/animateditems/2312.png b/animateditems/2312.png
new file mode 100644
index 00000000..e7a6a2ed
Binary files /dev/null and b/animateditems/2312.png differ
diff --git a/animateditems/2313.gif b/animateditems/2313.gif
new file mode 100644
index 00000000..d54ab1b0
Binary files /dev/null and b/animateditems/2313.gif differ
diff --git a/animateditems/2313.png b/animateditems/2313.png
new file mode 100644
index 00000000..0501b9a6
Binary files /dev/null and b/animateditems/2313.png differ
diff --git a/animateditems/2314.gif b/animateditems/2314.gif
new file mode 100644
index 00000000..69087449
Binary files /dev/null and b/animateditems/2314.gif differ
diff --git a/animateditems/2314.png b/animateditems/2314.png
new file mode 100644
index 00000000..0efea134
Binary files /dev/null and b/animateditems/2314.png differ
diff --git a/animateditems/2315.gif b/animateditems/2315.gif
new file mode 100644
index 00000000..49cf1d85
Binary files /dev/null and b/animateditems/2315.gif differ
diff --git a/animateditems/2315.png b/animateditems/2315.png
new file mode 100644
index 00000000..296caa4e
Binary files /dev/null and b/animateditems/2315.png differ
diff --git a/animateditems/2316.gif b/animateditems/2316.gif
new file mode 100644
index 00000000..fafd3908
Binary files /dev/null and b/animateditems/2316.gif differ
diff --git a/animateditems/2316.png b/animateditems/2316.png
new file mode 100644
index 00000000..7b1eb4dc
Binary files /dev/null and b/animateditems/2316.png differ
diff --git a/animateditems/2318.gif b/animateditems/2318.gif
new file mode 100644
index 00000000..1942e4cd
Binary files /dev/null and b/animateditems/2318.gif differ
diff --git a/animateditems/2318.png b/animateditems/2318.png
new file mode 100644
index 00000000..3c5ea1b7
Binary files /dev/null and b/animateditems/2318.png differ
diff --git a/animateditems/2319.gif b/animateditems/2319.gif
new file mode 100644
index 00000000..2bcd9217
Binary files /dev/null and b/animateditems/2319.gif differ
diff --git a/animateditems/2319.png b/animateditems/2319.png
new file mode 100644
index 00000000..c62ff760
Binary files /dev/null and b/animateditems/2319.png differ
diff --git a/animateditems/2320.gif b/animateditems/2320.gif
new file mode 100644
index 00000000..6a066ef9
Binary files /dev/null and b/animateditems/2320.gif differ
diff --git a/animateditems/2320.png b/animateditems/2320.png
new file mode 100644
index 00000000..f7d506a6
Binary files /dev/null and b/animateditems/2320.png differ
diff --git a/animateditems/2321.gif b/animateditems/2321.gif
new file mode 100644
index 00000000..a824b8e9
Binary files /dev/null and b/animateditems/2321.gif differ
diff --git a/animateditems/2321.png b/animateditems/2321.png
new file mode 100644
index 00000000..7407c8b2
Binary files /dev/null and b/animateditems/2321.png differ
diff --git a/animateditems/2322.gif b/animateditems/2322.gif
new file mode 100644
index 00000000..009745f7
Binary files /dev/null and b/animateditems/2322.gif differ
diff --git a/animateditems/2322.png b/animateditems/2322.png
new file mode 100644
index 00000000..bde97efd
Binary files /dev/null and b/animateditems/2322.png differ
diff --git a/animateditems/2323.gif b/animateditems/2323.gif
new file mode 100644
index 00000000..b51e26c1
Binary files /dev/null and b/animateditems/2323.gif differ
diff --git a/animateditems/2323.png b/animateditems/2323.png
new file mode 100644
index 00000000..0e40d8c5
Binary files /dev/null and b/animateditems/2323.png differ
diff --git a/animateditems/2324.gif b/animateditems/2324.gif
new file mode 100644
index 00000000..d41ba8c8
Binary files /dev/null and b/animateditems/2324.gif differ
diff --git a/animateditems/2324.png b/animateditems/2324.png
new file mode 100644
index 00000000..e1451df5
Binary files /dev/null and b/animateditems/2324.png differ
diff --git a/animateditems/2325.gif b/animateditems/2325.gif
new file mode 100644
index 00000000..0c37a837
Binary files /dev/null and b/animateditems/2325.gif differ
diff --git a/animateditems/2325.png b/animateditems/2325.png
new file mode 100644
index 00000000..20d2ee2d
Binary files /dev/null and b/animateditems/2325.png differ
diff --git a/animateditems/2326.gif b/animateditems/2326.gif
new file mode 100644
index 00000000..cc96eba6
Binary files /dev/null and b/animateditems/2326.gif differ
diff --git a/animateditems/2326.png b/animateditems/2326.png
new file mode 100644
index 00000000..13c40a48
Binary files /dev/null and b/animateditems/2326.png differ
diff --git a/animateditems/2327.gif b/animateditems/2327.gif
new file mode 100644
index 00000000..52c4a6a7
Binary files /dev/null and b/animateditems/2327.gif differ
diff --git a/animateditems/2327.png b/animateditems/2327.png
new file mode 100644
index 00000000..0f1e7a1e
Binary files /dev/null and b/animateditems/2327.png differ
diff --git a/animateditems/2328.gif b/animateditems/2328.gif
new file mode 100644
index 00000000..93d2d96d
Binary files /dev/null and b/animateditems/2328.gif differ
diff --git a/animateditems/2328.png b/animateditems/2328.png
new file mode 100644
index 00000000..4527d58d
Binary files /dev/null and b/animateditems/2328.png differ
diff --git a/animateditems/2329.gif b/animateditems/2329.gif
new file mode 100644
index 00000000..bd1f3d10
Binary files /dev/null and b/animateditems/2329.gif differ
diff --git a/animateditems/2329.png b/animateditems/2329.png
new file mode 100644
index 00000000..b58c0fb2
Binary files /dev/null and b/animateditems/2329.png differ
diff --git a/animateditems/2330.gif b/animateditems/2330.gif
new file mode 100644
index 00000000..f502be92
Binary files /dev/null and b/animateditems/2330.gif differ
diff --git a/animateditems/2330.png b/animateditems/2330.png
new file mode 100644
index 00000000..182cc0e8
Binary files /dev/null and b/animateditems/2330.png differ
diff --git a/animateditems/2331.gif b/animateditems/2331.gif
new file mode 100644
index 00000000..fde9fc8a
Binary files /dev/null and b/animateditems/2331.gif differ
diff --git a/animateditems/2331.png b/animateditems/2331.png
new file mode 100644
index 00000000..30389134
Binary files /dev/null and b/animateditems/2331.png differ
diff --git a/animateditems/2332.gif b/animateditems/2332.gif
new file mode 100644
index 00000000..ef7fddc1
Binary files /dev/null and b/animateditems/2332.gif differ
diff --git a/animateditems/2332.png b/animateditems/2332.png
new file mode 100644
index 00000000..abce4bc4
Binary files /dev/null and b/animateditems/2332.png differ
diff --git a/animateditems/2333.gif b/animateditems/2333.gif
new file mode 100644
index 00000000..2db57763
Binary files /dev/null and b/animateditems/2333.gif differ
diff --git a/animateditems/2333.png b/animateditems/2333.png
new file mode 100644
index 00000000..0ae26117
Binary files /dev/null and b/animateditems/2333.png differ
diff --git a/animateditems/2335.gif b/animateditems/2335.gif
new file mode 100644
index 00000000..adaae47c
Binary files /dev/null and b/animateditems/2335.gif differ
diff --git a/animateditems/2335.png b/animateditems/2335.png
new file mode 100644
index 00000000..013e2b67
Binary files /dev/null and b/animateditems/2335.png differ
diff --git a/animateditems/2336.gif b/animateditems/2336.gif
new file mode 100644
index 00000000..ab46f23e
Binary files /dev/null and b/animateditems/2336.gif differ
diff --git a/animateditems/2336.png b/animateditems/2336.png
new file mode 100644
index 00000000..81f8e53f
Binary files /dev/null and b/animateditems/2336.png differ
diff --git a/animateditems/2337.gif b/animateditems/2337.gif
new file mode 100644
index 00000000..8738349d
Binary files /dev/null and b/animateditems/2337.gif differ
diff --git a/animateditems/2337.png b/animateditems/2337.png
new file mode 100644
index 00000000..4bacecbf
Binary files /dev/null and b/animateditems/2337.png differ
diff --git a/animateditems/2338.gif b/animateditems/2338.gif
new file mode 100644
index 00000000..1b662523
Binary files /dev/null and b/animateditems/2338.gif differ
diff --git a/animateditems/2338.png b/animateditems/2338.png
new file mode 100644
index 00000000..9c821a42
Binary files /dev/null and b/animateditems/2338.png differ
diff --git a/animateditems/2339.gif b/animateditems/2339.gif
new file mode 100644
index 00000000..0e2d23a2
Binary files /dev/null and b/animateditems/2339.gif differ
diff --git a/animateditems/2339.png b/animateditems/2339.png
new file mode 100644
index 00000000..31b81b43
Binary files /dev/null and b/animateditems/2339.png differ
diff --git a/animateditems/2340.gif b/animateditems/2340.gif
new file mode 100644
index 00000000..44e825dd
Binary files /dev/null and b/animateditems/2340.gif differ
diff --git a/animateditems/2340.png b/animateditems/2340.png
new file mode 100644
index 00000000..16e6a051
Binary files /dev/null and b/animateditems/2340.png differ
diff --git a/animateditems/2341.gif b/animateditems/2341.gif
new file mode 100644
index 00000000..3f7a576e
Binary files /dev/null and b/animateditems/2341.gif differ
diff --git a/animateditems/2341.png b/animateditems/2341.png
new file mode 100644
index 00000000..91bde1de
Binary files /dev/null and b/animateditems/2341.png differ
diff --git a/animateditems/2342.gif b/animateditems/2342.gif
new file mode 100644
index 00000000..b1785faa
Binary files /dev/null and b/animateditems/2342.gif differ
diff --git a/animateditems/2342.png b/animateditems/2342.png
new file mode 100644
index 00000000..a4fb0210
Binary files /dev/null and b/animateditems/2342.png differ
diff --git a/animateditems/2343.gif b/animateditems/2343.gif
new file mode 100644
index 00000000..5848913c
Binary files /dev/null and b/animateditems/2343.gif differ
diff --git a/animateditems/2343.png b/animateditems/2343.png
new file mode 100644
index 00000000..d2c5782e
Binary files /dev/null and b/animateditems/2343.png differ
diff --git a/animateditems/2344.gif b/animateditems/2344.gif
new file mode 100644
index 00000000..00ed6657
Binary files /dev/null and b/animateditems/2344.gif differ
diff --git a/animateditems/2344.png b/animateditems/2344.png
new file mode 100644
index 00000000..d0e190af
Binary files /dev/null and b/animateditems/2344.png differ
diff --git a/animateditems/2345.gif b/animateditems/2345.gif
new file mode 100644
index 00000000..b111da68
Binary files /dev/null and b/animateditems/2345.gif differ
diff --git a/animateditems/2345.png b/animateditems/2345.png
new file mode 100644
index 00000000..406bf414
Binary files /dev/null and b/animateditems/2345.png differ
diff --git a/animateditems/2346.gif b/animateditems/2346.gif
new file mode 100644
index 00000000..241e86fd
Binary files /dev/null and b/animateditems/2346.gif differ
diff --git a/animateditems/2346.png b/animateditems/2346.png
new file mode 100644
index 00000000..749eb4c9
Binary files /dev/null and b/animateditems/2346.png differ
diff --git a/animateditems/23460.gif b/animateditems/23460.gif
new file mode 100644
index 00000000..803a829a
Binary files /dev/null and b/animateditems/23460.gif differ
diff --git a/animateditems/23460.png b/animateditems/23460.png
new file mode 100644
index 00000000..a5730f08
Binary files /dev/null and b/animateditems/23460.png differ
diff --git a/animateditems/23463.gif b/animateditems/23463.gif
new file mode 100644
index 00000000..33eeb789
Binary files /dev/null and b/animateditems/23463.gif differ
diff --git a/animateditems/23463.png b/animateditems/23463.png
new file mode 100644
index 00000000..30ff3bbd
Binary files /dev/null and b/animateditems/23463.png differ
diff --git a/animateditems/23464.gif b/animateditems/23464.gif
new file mode 100644
index 00000000..954cf273
Binary files /dev/null and b/animateditems/23464.gif differ
diff --git a/animateditems/23464.png b/animateditems/23464.png
new file mode 100644
index 00000000..ba3ef808
Binary files /dev/null and b/animateditems/23464.png differ
diff --git a/animateditems/23465.gif b/animateditems/23465.gif
new file mode 100644
index 00000000..8f755b32
Binary files /dev/null and b/animateditems/23465.gif differ
diff --git a/animateditems/23465.png b/animateditems/23465.png
new file mode 100644
index 00000000..20247a82
Binary files /dev/null and b/animateditems/23465.png differ
diff --git a/animateditems/23467.gif b/animateditems/23467.gif
new file mode 100644
index 00000000..94bfb422
Binary files /dev/null and b/animateditems/23467.gif differ
diff --git a/animateditems/23467.png b/animateditems/23467.png
new file mode 100644
index 00000000..2ffd53e1
Binary files /dev/null and b/animateditems/23467.png differ
diff --git a/animateditems/23468.gif b/animateditems/23468.gif
new file mode 100644
index 00000000..05612c60
Binary files /dev/null and b/animateditems/23468.gif differ
diff --git a/animateditems/23468.png b/animateditems/23468.png
new file mode 100644
index 00000000..0d847d6a
Binary files /dev/null and b/animateditems/23468.png differ
diff --git a/animateditems/23469.gif b/animateditems/23469.gif
new file mode 100644
index 00000000..9c3296fb
Binary files /dev/null and b/animateditems/23469.gif differ
diff --git a/animateditems/23469.png b/animateditems/23469.png
new file mode 100644
index 00000000..040194f3
Binary files /dev/null and b/animateditems/23469.png differ
diff --git a/animateditems/2347.gif b/animateditems/2347.gif
new file mode 100644
index 00000000..f3d41159
Binary files /dev/null and b/animateditems/2347.gif differ
diff --git a/animateditems/2347.png b/animateditems/2347.png
new file mode 100644
index 00000000..dd7f5f34
Binary files /dev/null and b/animateditems/2347.png differ
diff --git a/animateditems/23471.gif b/animateditems/23471.gif
new file mode 100644
index 00000000..c5582d7e
Binary files /dev/null and b/animateditems/23471.gif differ
diff --git a/animateditems/23471.png b/animateditems/23471.png
new file mode 100644
index 00000000..98e863ab
Binary files /dev/null and b/animateditems/23471.png differ
diff --git a/animateditems/23472.gif b/animateditems/23472.gif
new file mode 100644
index 00000000..7939055f
Binary files /dev/null and b/animateditems/23472.gif differ
diff --git a/animateditems/23472.png b/animateditems/23472.png
new file mode 100644
index 00000000..3deb43db
Binary files /dev/null and b/animateditems/23472.png differ
diff --git a/animateditems/23473.gif b/animateditems/23473.gif
new file mode 100644
index 00000000..314ab029
Binary files /dev/null and b/animateditems/23473.gif differ
diff --git a/animateditems/23473.png b/animateditems/23473.png
new file mode 100644
index 00000000..65a7bb3d
Binary files /dev/null and b/animateditems/23473.png differ
diff --git a/animateditems/23474.gif b/animateditems/23474.gif
new file mode 100644
index 00000000..2bb31bcd
Binary files /dev/null and b/animateditems/23474.gif differ
diff --git a/animateditems/23474.png b/animateditems/23474.png
new file mode 100644
index 00000000..df158838
Binary files /dev/null and b/animateditems/23474.png differ
diff --git a/animateditems/2348.gif b/animateditems/2348.gif
new file mode 100644
index 00000000..5049bd5a
Binary files /dev/null and b/animateditems/2348.gif differ
diff --git a/animateditems/2348.png b/animateditems/2348.png
new file mode 100644
index 00000000..26a2d2a3
Binary files /dev/null and b/animateditems/2348.png differ
diff --git a/animateditems/2349.gif b/animateditems/2349.gif
new file mode 100644
index 00000000..bcaaba2f
Binary files /dev/null and b/animateditems/2349.gif differ
diff --git a/animateditems/2349.png b/animateditems/2349.png
new file mode 100644
index 00000000..977c5e77
Binary files /dev/null and b/animateditems/2349.png differ
diff --git a/animateditems/23495.gif b/animateditems/23495.gif
new file mode 100644
index 00000000..eb0dc830
Binary files /dev/null and b/animateditems/23495.gif differ
diff --git a/animateditems/23495.png b/animateditems/23495.png
new file mode 100644
index 00000000..027b6dd9
Binary files /dev/null and b/animateditems/23495.png differ
diff --git a/animateditems/2350.gif b/animateditems/2350.gif
new file mode 100644
index 00000000..153cb519
Binary files /dev/null and b/animateditems/2350.gif differ
diff --git a/animateditems/2350.png b/animateditems/2350.png
new file mode 100644
index 00000000..146bca3d
Binary files /dev/null and b/animateditems/2350.png differ
diff --git a/animateditems/23508.gif b/animateditems/23508.gif
new file mode 100644
index 00000000..b9404fed
Binary files /dev/null and b/animateditems/23508.gif differ
diff --git a/animateditems/23508.png b/animateditems/23508.png
new file mode 100644
index 00000000..fe19d3f9
Binary files /dev/null and b/animateditems/23508.png differ
diff --git a/animateditems/2351.gif b/animateditems/2351.gif
new file mode 100644
index 00000000..ca7c9135
Binary files /dev/null and b/animateditems/2351.gif differ
diff --git a/animateditems/2351.png b/animateditems/2351.png
new file mode 100644
index 00000000..53ec1986
Binary files /dev/null and b/animateditems/2351.png differ
diff --git a/animateditems/23512.gif b/animateditems/23512.gif
new file mode 100644
index 00000000..73760175
Binary files /dev/null and b/animateditems/23512.gif differ
diff --git a/animateditems/23512.png b/animateditems/23512.png
new file mode 100644
index 00000000..b7d18ef9
Binary files /dev/null and b/animateditems/23512.png differ
diff --git a/animateditems/23513.gif b/animateditems/23513.gif
new file mode 100644
index 00000000..55aa1ad2
Binary files /dev/null and b/animateditems/23513.gif differ
diff --git a/animateditems/23513.png b/animateditems/23513.png
new file mode 100644
index 00000000..ae11b75b
Binary files /dev/null and b/animateditems/23513.png differ
diff --git a/animateditems/23514.gif b/animateditems/23514.gif
new file mode 100644
index 00000000..9aa5a5c5
Binary files /dev/null and b/animateditems/23514.gif differ
diff --git a/animateditems/23514.png b/animateditems/23514.png
new file mode 100644
index 00000000..7a9ac499
Binary files /dev/null and b/animateditems/23514.png differ
diff --git a/animateditems/23515.gif b/animateditems/23515.gif
new file mode 100644
index 00000000..f1759128
Binary files /dev/null and b/animateditems/23515.gif differ
diff --git a/animateditems/23515.png b/animateditems/23515.png
new file mode 100644
index 00000000..bb9ebe00
Binary files /dev/null and b/animateditems/23515.png differ
diff --git a/animateditems/23516.gif b/animateditems/23516.gif
new file mode 100644
index 00000000..d45964f5
Binary files /dev/null and b/animateditems/23516.gif differ
diff --git a/animateditems/23516.png b/animateditems/23516.png
new file mode 100644
index 00000000..fb854a2c
Binary files /dev/null and b/animateditems/23516.png differ
diff --git a/animateditems/23517.gif b/animateditems/23517.gif
new file mode 100644
index 00000000..8e0eb2cf
Binary files /dev/null and b/animateditems/23517.gif differ
diff --git a/animateditems/23517.png b/animateditems/23517.png
new file mode 100644
index 00000000..4e89bd59
Binary files /dev/null and b/animateditems/23517.png differ
diff --git a/animateditems/2352.gif b/animateditems/2352.gif
new file mode 100644
index 00000000..6f699e94
Binary files /dev/null and b/animateditems/2352.gif differ
diff --git a/animateditems/2352.png b/animateditems/2352.png
new file mode 100644
index 00000000..7652bdbb
Binary files /dev/null and b/animateditems/2352.png differ
diff --git a/animateditems/23525.gif b/animateditems/23525.gif
new file mode 100644
index 00000000..f5a3a91d
Binary files /dev/null and b/animateditems/23525.gif differ
diff --git a/animateditems/23525.png b/animateditems/23525.png
new file mode 100644
index 00000000..276709c7
Binary files /dev/null and b/animateditems/23525.png differ
diff --git a/animateditems/23526.gif b/animateditems/23526.gif
new file mode 100644
index 00000000..a5196110
Binary files /dev/null and b/animateditems/23526.gif differ
diff --git a/animateditems/23526.png b/animateditems/23526.png
new file mode 100644
index 00000000..abd40f00
Binary files /dev/null and b/animateditems/23526.png differ
diff --git a/animateditems/23527.gif b/animateditems/23527.gif
new file mode 100644
index 00000000..a5196110
Binary files /dev/null and b/animateditems/23527.gif differ
diff --git a/animateditems/23527.png b/animateditems/23527.png
new file mode 100644
index 00000000..abd40f00
Binary files /dev/null and b/animateditems/23527.png differ
diff --git a/animateditems/23529.gif b/animateditems/23529.gif
new file mode 100644
index 00000000..21d548a4
Binary files /dev/null and b/animateditems/23529.gif differ
diff --git a/animateditems/23529.png b/animateditems/23529.png
new file mode 100644
index 00000000..655cf719
Binary files /dev/null and b/animateditems/23529.png differ
diff --git a/animateditems/2353.gif b/animateditems/2353.gif
new file mode 100644
index 00000000..b7b5ca68
Binary files /dev/null and b/animateditems/2353.gif differ
diff --git a/animateditems/2353.png b/animateditems/2353.png
new file mode 100644
index 00000000..640e0f3f
Binary files /dev/null and b/animateditems/2353.png differ
diff --git a/animateditems/23535.gif b/animateditems/23535.gif
new file mode 100644
index 00000000..72acfbd3
Binary files /dev/null and b/animateditems/23535.gif differ
diff --git a/animateditems/23535.png b/animateditems/23535.png
new file mode 100644
index 00000000..19907230
Binary files /dev/null and b/animateditems/23535.png differ
diff --git a/animateditems/23536.gif b/animateditems/23536.gif
new file mode 100644
index 00000000..e738ea8c
Binary files /dev/null and b/animateditems/23536.gif differ
diff --git a/animateditems/23536.png b/animateditems/23536.png
new file mode 100644
index 00000000..9ff27cfd
Binary files /dev/null and b/animateditems/23536.png differ
diff --git a/animateditems/23537.gif b/animateditems/23537.gif
new file mode 100644
index 00000000..efbd4789
Binary files /dev/null and b/animateditems/23537.gif differ
diff --git a/animateditems/23537.png b/animateditems/23537.png
new file mode 100644
index 00000000..275764c8
Binary files /dev/null and b/animateditems/23537.png differ
diff --git a/animateditems/23538.gif b/animateditems/23538.gif
new file mode 100644
index 00000000..acc76c6b
Binary files /dev/null and b/animateditems/23538.gif differ
diff --git a/animateditems/23538.png b/animateditems/23538.png
new file mode 100644
index 00000000..2bc81116
Binary files /dev/null and b/animateditems/23538.png differ
diff --git a/animateditems/23539.gif b/animateditems/23539.gif
new file mode 100644
index 00000000..d302d27c
Binary files /dev/null and b/animateditems/23539.gif differ
diff --git a/animateditems/23539.png b/animateditems/23539.png
new file mode 100644
index 00000000..146fd88f
Binary files /dev/null and b/animateditems/23539.png differ
diff --git a/animateditems/2354.gif b/animateditems/2354.gif
new file mode 100644
index 00000000..4da629ad
Binary files /dev/null and b/animateditems/2354.gif differ
diff --git a/animateditems/2354.png b/animateditems/2354.png
new file mode 100644
index 00000000..5a8b0e84
Binary files /dev/null and b/animateditems/2354.png differ
diff --git a/animateditems/23540.gif b/animateditems/23540.gif
new file mode 100644
index 00000000..b5214dc9
Binary files /dev/null and b/animateditems/23540.gif differ
diff --git a/animateditems/23540.png b/animateditems/23540.png
new file mode 100644
index 00000000..86f5c493
Binary files /dev/null and b/animateditems/23540.png differ
diff --git a/animateditems/23541.gif b/animateditems/23541.gif
new file mode 100644
index 00000000..009f92b1
Binary files /dev/null and b/animateditems/23541.gif differ
diff --git a/animateditems/23541.png b/animateditems/23541.png
new file mode 100644
index 00000000..8b1ace63
Binary files /dev/null and b/animateditems/23541.png differ
diff --git a/animateditems/23542.gif b/animateditems/23542.gif
new file mode 100644
index 00000000..68296759
Binary files /dev/null and b/animateditems/23542.gif differ
diff --git a/animateditems/23542.png b/animateditems/23542.png
new file mode 100644
index 00000000..b5e423c5
Binary files /dev/null and b/animateditems/23542.png differ
diff --git a/animateditems/23543.gif b/animateditems/23543.gif
new file mode 100644
index 00000000..c9554836
Binary files /dev/null and b/animateditems/23543.gif differ
diff --git a/animateditems/23543.png b/animateditems/23543.png
new file mode 100644
index 00000000..06584f0e
Binary files /dev/null and b/animateditems/23543.png differ
diff --git a/animateditems/23544.gif b/animateditems/23544.gif
new file mode 100644
index 00000000..5a70f233
Binary files /dev/null and b/animateditems/23544.gif differ
diff --git a/animateditems/23544.png b/animateditems/23544.png
new file mode 100644
index 00000000..707aa7a2
Binary files /dev/null and b/animateditems/23544.png differ
diff --git a/animateditems/23545.gif b/animateditems/23545.gif
new file mode 100644
index 00000000..c54a94bf
Binary files /dev/null and b/animateditems/23545.gif differ
diff --git a/animateditems/23545.png b/animateditems/23545.png
new file mode 100644
index 00000000..26f015a7
Binary files /dev/null and b/animateditems/23545.png differ
diff --git a/animateditems/23546.gif b/animateditems/23546.gif
new file mode 100644
index 00000000..3b812872
Binary files /dev/null and b/animateditems/23546.gif differ
diff --git a/animateditems/23546.png b/animateditems/23546.png
new file mode 100644
index 00000000..f0878838
Binary files /dev/null and b/animateditems/23546.png differ
diff --git a/animateditems/23547.gif b/animateditems/23547.gif
new file mode 100644
index 00000000..61a9ce74
Binary files /dev/null and b/animateditems/23547.gif differ
diff --git a/animateditems/23547.png b/animateditems/23547.png
new file mode 100644
index 00000000..6b406d50
Binary files /dev/null and b/animateditems/23547.png differ
diff --git a/animateditems/23548.gif b/animateditems/23548.gif
new file mode 100644
index 00000000..86238115
Binary files /dev/null and b/animateditems/23548.gif differ
diff --git a/animateditems/23548.png b/animateditems/23548.png
new file mode 100644
index 00000000..f97fe3de
Binary files /dev/null and b/animateditems/23548.png differ
diff --git a/animateditems/23549.gif b/animateditems/23549.gif
new file mode 100644
index 00000000..cb8d2233
Binary files /dev/null and b/animateditems/23549.gif differ
diff --git a/animateditems/23549.png b/animateditems/23549.png
new file mode 100644
index 00000000..57899ee7
Binary files /dev/null and b/animateditems/23549.png differ
diff --git a/animateditems/2355.gif b/animateditems/2355.gif
new file mode 100644
index 00000000..86f7d49c
Binary files /dev/null and b/animateditems/2355.gif differ
diff --git a/animateditems/2355.png b/animateditems/2355.png
new file mode 100644
index 00000000..4d289292
Binary files /dev/null and b/animateditems/2355.png differ
diff --git a/animateditems/23550.gif b/animateditems/23550.gif
new file mode 100644
index 00000000..22d37e24
Binary files /dev/null and b/animateditems/23550.gif differ
diff --git a/animateditems/23550.png b/animateditems/23550.png
new file mode 100644
index 00000000..61aa4286
Binary files /dev/null and b/animateditems/23550.png differ
diff --git a/animateditems/23551.gif b/animateditems/23551.gif
new file mode 100644
index 00000000..950d3c12
Binary files /dev/null and b/animateditems/23551.gif differ
diff --git a/animateditems/23551.png b/animateditems/23551.png
new file mode 100644
index 00000000..c04afcca
Binary files /dev/null and b/animateditems/23551.png differ
diff --git a/animateditems/23553.gif b/animateditems/23553.gif
new file mode 100644
index 00000000..1c44dbfd
Binary files /dev/null and b/animateditems/23553.gif differ
diff --git a/animateditems/23553.png b/animateditems/23553.png
new file mode 100644
index 00000000..4dcaff2f
Binary files /dev/null and b/animateditems/23553.png differ
diff --git a/animateditems/23554.gif b/animateditems/23554.gif
new file mode 100644
index 00000000..2a4c1b74
Binary files /dev/null and b/animateditems/23554.gif differ
diff --git a/animateditems/23554.png b/animateditems/23554.png
new file mode 100644
index 00000000..d9a546c1
Binary files /dev/null and b/animateditems/23554.png differ
diff --git a/animateditems/23555.gif b/animateditems/23555.gif
new file mode 100644
index 00000000..4e836ed8
Binary files /dev/null and b/animateditems/23555.gif differ
diff --git a/animateditems/23555.png b/animateditems/23555.png
new file mode 100644
index 00000000..7b871db9
Binary files /dev/null and b/animateditems/23555.png differ
diff --git a/animateditems/23557.gif b/animateditems/23557.gif
new file mode 100644
index 00000000..1126422f
Binary files /dev/null and b/animateditems/23557.gif differ
diff --git a/animateditems/23557.png b/animateditems/23557.png
new file mode 100644
index 00000000..afb458c5
Binary files /dev/null and b/animateditems/23557.png differ
diff --git a/animateditems/23558.gif b/animateditems/23558.gif
new file mode 100644
index 00000000..4e836ed8
Binary files /dev/null and b/animateditems/23558.gif differ
diff --git a/animateditems/23558.png b/animateditems/23558.png
new file mode 100644
index 00000000..7b871db9
Binary files /dev/null and b/animateditems/23558.png differ
diff --git a/animateditems/23559.gif b/animateditems/23559.gif
new file mode 100644
index 00000000..57c7ae0d
Binary files /dev/null and b/animateditems/23559.gif differ
diff --git a/animateditems/23559.png b/animateditems/23559.png
new file mode 100644
index 00000000..edcda0ac
Binary files /dev/null and b/animateditems/23559.png differ
diff --git a/animateditems/2356.gif b/animateditems/2356.gif
new file mode 100644
index 00000000..00ed6657
Binary files /dev/null and b/animateditems/2356.gif differ
diff --git a/animateditems/2356.png b/animateditems/2356.png
new file mode 100644
index 00000000..d0e190af
Binary files /dev/null and b/animateditems/2356.png differ
diff --git a/animateditems/23560.gif b/animateditems/23560.gif
new file mode 100644
index 00000000..57c7ae0d
Binary files /dev/null and b/animateditems/23560.gif differ
diff --git a/animateditems/23560.png b/animateditems/23560.png
new file mode 100644
index 00000000..edcda0ac
Binary files /dev/null and b/animateditems/23560.png differ
diff --git a/animateditems/23563.gif b/animateditems/23563.gif
new file mode 100644
index 00000000..6ed5ac15
Binary files /dev/null and b/animateditems/23563.gif differ
diff --git a/animateditems/23563.png b/animateditems/23563.png
new file mode 100644
index 00000000..ee231a81
Binary files /dev/null and b/animateditems/23563.png differ
diff --git a/animateditems/23564.gif b/animateditems/23564.gif
new file mode 100644
index 00000000..22bc076f
Binary files /dev/null and b/animateditems/23564.gif differ
diff --git a/animateditems/23564.png b/animateditems/23564.png
new file mode 100644
index 00000000..7de80dd1
Binary files /dev/null and b/animateditems/23564.png differ
diff --git a/animateditems/23565.gif b/animateditems/23565.gif
new file mode 100644
index 00000000..75f0e02e
Binary files /dev/null and b/animateditems/23565.gif differ
diff --git a/animateditems/23565.png b/animateditems/23565.png
new file mode 100644
index 00000000..922b7885
Binary files /dev/null and b/animateditems/23565.png differ
diff --git a/animateditems/23566.gif b/animateditems/23566.gif
new file mode 100644
index 00000000..46c41c86
Binary files /dev/null and b/animateditems/23566.gif differ
diff --git a/animateditems/23566.png b/animateditems/23566.png
new file mode 100644
index 00000000..e4352219
Binary files /dev/null and b/animateditems/23566.png differ
diff --git a/animateditems/23567.gif b/animateditems/23567.gif
new file mode 100644
index 00000000..28ed6675
Binary files /dev/null and b/animateditems/23567.gif differ
diff --git a/animateditems/23567.png b/animateditems/23567.png
new file mode 100644
index 00000000..fbf7a4cf
Binary files /dev/null and b/animateditems/23567.png differ
diff --git a/animateditems/23568.gif b/animateditems/23568.gif
new file mode 100644
index 00000000..a3e810b0
Binary files /dev/null and b/animateditems/23568.gif differ
diff --git a/animateditems/23568.png b/animateditems/23568.png
new file mode 100644
index 00000000..9fe3b3c6
Binary files /dev/null and b/animateditems/23568.png differ
diff --git a/animateditems/23569.gif b/animateditems/23569.gif
new file mode 100644
index 00000000..1b82c91b
Binary files /dev/null and b/animateditems/23569.gif differ
diff --git a/animateditems/23569.png b/animateditems/23569.png
new file mode 100644
index 00000000..dd8c8d12
Binary files /dev/null and b/animateditems/23569.png differ
diff --git a/animateditems/2357.gif b/animateditems/2357.gif
new file mode 100644
index 00000000..6ab7c794
Binary files /dev/null and b/animateditems/2357.gif differ
diff --git a/animateditems/2357.png b/animateditems/2357.png
new file mode 100644
index 00000000..01d74faf
Binary files /dev/null and b/animateditems/2357.png differ
diff --git a/animateditems/23570.gif b/animateditems/23570.gif
new file mode 100644
index 00000000..7f03e779
Binary files /dev/null and b/animateditems/23570.gif differ
diff --git a/animateditems/23570.png b/animateditems/23570.png
new file mode 100644
index 00000000..34ed21ea
Binary files /dev/null and b/animateditems/23570.png differ
diff --git a/animateditems/23571.gif b/animateditems/23571.gif
new file mode 100644
index 00000000..8decaaa5
Binary files /dev/null and b/animateditems/23571.gif differ
diff --git a/animateditems/23571.png b/animateditems/23571.png
new file mode 100644
index 00000000..1144076c
Binary files /dev/null and b/animateditems/23571.png differ
diff --git a/animateditems/23572.gif b/animateditems/23572.gif
new file mode 100644
index 00000000..ce27d2c9
Binary files /dev/null and b/animateditems/23572.gif differ
diff --git a/animateditems/23572.png b/animateditems/23572.png
new file mode 100644
index 00000000..2c9da6e6
Binary files /dev/null and b/animateditems/23572.png differ
diff --git a/animateditems/23573.gif b/animateditems/23573.gif
new file mode 100644
index 00000000..52bf881c
Binary files /dev/null and b/animateditems/23573.gif differ
diff --git a/animateditems/23573.png b/animateditems/23573.png
new file mode 100644
index 00000000..c1a398b4
Binary files /dev/null and b/animateditems/23573.png differ
diff --git a/animateditems/23574.gif b/animateditems/23574.gif
new file mode 100644
index 00000000..68f96088
Binary files /dev/null and b/animateditems/23574.gif differ
diff --git a/animateditems/23574.png b/animateditems/23574.png
new file mode 100644
index 00000000..31e219cb
Binary files /dev/null and b/animateditems/23574.png differ
diff --git a/animateditems/23575.gif b/animateditems/23575.gif
new file mode 100644
index 00000000..b7edee51
Binary files /dev/null and b/animateditems/23575.gif differ
diff --git a/animateditems/23575.png b/animateditems/23575.png
new file mode 100644
index 00000000..dac5df9d
Binary files /dev/null and b/animateditems/23575.png differ
diff --git a/animateditems/23579.gif b/animateditems/23579.gif
new file mode 100644
index 00000000..272c4a53
Binary files /dev/null and b/animateditems/23579.gif differ
diff --git a/animateditems/23579.png b/animateditems/23579.png
new file mode 100644
index 00000000..68f9ece8
Binary files /dev/null and b/animateditems/23579.png differ
diff --git a/animateditems/2358.gif b/animateditems/2358.gif
new file mode 100644
index 00000000..864a87d2
Binary files /dev/null and b/animateditems/2358.gif differ
diff --git a/animateditems/2358.png b/animateditems/2358.png
new file mode 100644
index 00000000..7b2f6380
Binary files /dev/null and b/animateditems/2358.png differ
diff --git a/animateditems/23580.gif b/animateditems/23580.gif
new file mode 100644
index 00000000..272c4a53
Binary files /dev/null and b/animateditems/23580.gif differ
diff --git a/animateditems/23580.png b/animateditems/23580.png
new file mode 100644
index 00000000..68f9ece8
Binary files /dev/null and b/animateditems/23580.png differ
diff --git a/animateditems/23581.gif b/animateditems/23581.gif
new file mode 100644
index 00000000..272c4a53
Binary files /dev/null and b/animateditems/23581.gif differ
diff --git a/animateditems/23581.png b/animateditems/23581.png
new file mode 100644
index 00000000..68f9ece8
Binary files /dev/null and b/animateditems/23581.png differ
diff --git a/animateditems/23583.gif b/animateditems/23583.gif
new file mode 100644
index 00000000..0aa11ef9
Binary files /dev/null and b/animateditems/23583.gif differ
diff --git a/animateditems/23583.png b/animateditems/23583.png
new file mode 100644
index 00000000..eb1a4d0a
Binary files /dev/null and b/animateditems/23583.png differ
diff --git a/animateditems/23584.gif b/animateditems/23584.gif
new file mode 100644
index 00000000..6dfc3470
Binary files /dev/null and b/animateditems/23584.gif differ
diff --git a/animateditems/23584.png b/animateditems/23584.png
new file mode 100644
index 00000000..a35b80f6
Binary files /dev/null and b/animateditems/23584.png differ
diff --git a/animateditems/23585.gif b/animateditems/23585.gif
new file mode 100644
index 00000000..c2e0ae07
Binary files /dev/null and b/animateditems/23585.gif differ
diff --git a/animateditems/23585.png b/animateditems/23585.png
new file mode 100644
index 00000000..76e64eaa
Binary files /dev/null and b/animateditems/23585.png differ
diff --git a/animateditems/23586.gif b/animateditems/23586.gif
new file mode 100644
index 00000000..9ff1d2da
Binary files /dev/null and b/animateditems/23586.gif differ
diff --git a/animateditems/23586.png b/animateditems/23586.png
new file mode 100644
index 00000000..2c062cfe
Binary files /dev/null and b/animateditems/23586.png differ
diff --git a/animateditems/23587.gif b/animateditems/23587.gif
new file mode 100644
index 00000000..8c7d5bed
Binary files /dev/null and b/animateditems/23587.gif differ
diff --git a/animateditems/23587.png b/animateditems/23587.png
new file mode 100644
index 00000000..306d15e7
Binary files /dev/null and b/animateditems/23587.png differ
diff --git a/animateditems/23588.gif b/animateditems/23588.gif
new file mode 100644
index 00000000..d644df72
Binary files /dev/null and b/animateditems/23588.gif differ
diff --git a/animateditems/23588.png b/animateditems/23588.png
new file mode 100644
index 00000000..7e0d88f3
Binary files /dev/null and b/animateditems/23588.png differ
diff --git a/animateditems/23589.gif b/animateditems/23589.gif
new file mode 100644
index 00000000..5203febd
Binary files /dev/null and b/animateditems/23589.gif differ
diff --git a/animateditems/23589.png b/animateditems/23589.png
new file mode 100644
index 00000000..df21aa3b
Binary files /dev/null and b/animateditems/23589.png differ
diff --git a/animateditems/2359.gif b/animateditems/2359.gif
new file mode 100644
index 00000000..6d1488b1
Binary files /dev/null and b/animateditems/2359.gif differ
diff --git a/animateditems/2359.png b/animateditems/2359.png
new file mode 100644
index 00000000..91843673
Binary files /dev/null and b/animateditems/2359.png differ
diff --git a/animateditems/23590.gif b/animateditems/23590.gif
new file mode 100644
index 00000000..7f64d422
Binary files /dev/null and b/animateditems/23590.gif differ
diff --git a/animateditems/23590.png b/animateditems/23590.png
new file mode 100644
index 00000000..43c98bcc
Binary files /dev/null and b/animateditems/23590.png differ
diff --git a/animateditems/2361.gif b/animateditems/2361.gif
new file mode 100644
index 00000000..cef66dea
Binary files /dev/null and b/animateditems/2361.gif differ
diff --git a/animateditems/2361.png b/animateditems/2361.png
new file mode 100644
index 00000000..48a94301
Binary files /dev/null and b/animateditems/2361.png differ
diff --git a/animateditems/2362.gif b/animateditems/2362.gif
new file mode 100644
index 00000000..f852d4f4
Binary files /dev/null and b/animateditems/2362.gif differ
diff --git a/animateditems/2362.png b/animateditems/2362.png
new file mode 100644
index 00000000..eac20f47
Binary files /dev/null and b/animateditems/2362.png differ
diff --git a/animateditems/2363.gif b/animateditems/2363.gif
new file mode 100644
index 00000000..4a78df1e
Binary files /dev/null and b/animateditems/2363.gif differ
diff --git a/animateditems/2363.png b/animateditems/2363.png
new file mode 100644
index 00000000..b372f631
Binary files /dev/null and b/animateditems/2363.png differ
diff --git a/animateditems/2364.gif b/animateditems/2364.gif
new file mode 100644
index 00000000..ef7fddc1
Binary files /dev/null and b/animateditems/2364.gif differ
diff --git a/animateditems/2364.png b/animateditems/2364.png
new file mode 100644
index 00000000..abce4bc4
Binary files /dev/null and b/animateditems/2364.png differ
diff --git a/animateditems/2365.gif b/animateditems/2365.gif
new file mode 100644
index 00000000..f0307f0a
Binary files /dev/null and b/animateditems/2365.gif differ
diff --git a/animateditems/2365.png b/animateditems/2365.png
new file mode 100644
index 00000000..29e31f5f
Binary files /dev/null and b/animateditems/2365.png differ
diff --git a/animateditems/2366.gif b/animateditems/2366.gif
new file mode 100644
index 00000000..187ad79a
Binary files /dev/null and b/animateditems/2366.gif differ
diff --git a/animateditems/2366.png b/animateditems/2366.png
new file mode 100644
index 00000000..f493057f
Binary files /dev/null and b/animateditems/2366.png differ
diff --git a/animateditems/23662.gif b/animateditems/23662.gif
new file mode 100644
index 00000000..74c87085
Binary files /dev/null and b/animateditems/23662.gif differ
diff --git a/animateditems/23662.png b/animateditems/23662.png
new file mode 100644
index 00000000..2e4fd632
Binary files /dev/null and b/animateditems/23662.png differ
diff --git a/animateditems/23663.gif b/animateditems/23663.gif
new file mode 100644
index 00000000..047ddbbc
Binary files /dev/null and b/animateditems/23663.gif differ
diff --git a/animateditems/23663.png b/animateditems/23663.png
new file mode 100644
index 00000000..7860966a
Binary files /dev/null and b/animateditems/23663.png differ
diff --git a/animateditems/23666.gif b/animateditems/23666.gif
new file mode 100644
index 00000000..20b3ee23
Binary files /dev/null and b/animateditems/23666.gif differ
diff --git a/animateditems/23666.png b/animateditems/23666.png
new file mode 100644
index 00000000..8440f7c1
Binary files /dev/null and b/animateditems/23666.png differ
diff --git a/animateditems/23672.gif b/animateditems/23672.gif
new file mode 100644
index 00000000..0ecd70d7
Binary files /dev/null and b/animateditems/23672.gif differ
diff --git a/animateditems/23672.png b/animateditems/23672.png
new file mode 100644
index 00000000..e5bfa4e7
Binary files /dev/null and b/animateditems/23672.png differ
diff --git a/animateditems/23704.gif b/animateditems/23704.gif
new file mode 100644
index 00000000..070d47df
Binary files /dev/null and b/animateditems/23704.gif differ
diff --git a/animateditems/23704.png b/animateditems/23704.png
new file mode 100644
index 00000000..34d4896f
Binary files /dev/null and b/animateditems/23704.png differ
diff --git a/animateditems/23705.gif b/animateditems/23705.gif
new file mode 100644
index 00000000..070d47df
Binary files /dev/null and b/animateditems/23705.gif differ
diff --git a/animateditems/23705.png b/animateditems/23705.png
new file mode 100644
index 00000000..34d4896f
Binary files /dev/null and b/animateditems/23705.png differ
diff --git a/animateditems/23719.gif b/animateditems/23719.gif
new file mode 100644
index 00000000..a1e6a847
Binary files /dev/null and b/animateditems/23719.gif differ
diff --git a/animateditems/23719.png b/animateditems/23719.png
new file mode 100644
index 00000000..64932bbd
Binary files /dev/null and b/animateditems/23719.png differ
diff --git a/animateditems/23721.gif b/animateditems/23721.gif
new file mode 100644
index 00000000..5b370cf5
Binary files /dev/null and b/animateditems/23721.gif differ
diff --git a/animateditems/23721.png b/animateditems/23721.png
new file mode 100644
index 00000000..f8e7aa59
Binary files /dev/null and b/animateditems/23721.png differ
diff --git a/animateditems/23722.gif b/animateditems/23722.gif
new file mode 100644
index 00000000..26c5bed5
Binary files /dev/null and b/animateditems/23722.gif differ
diff --git a/animateditems/23722.png b/animateditems/23722.png
new file mode 100644
index 00000000..321c4312
Binary files /dev/null and b/animateditems/23722.png differ
diff --git a/animateditems/23723.gif b/animateditems/23723.gif
new file mode 100644
index 00000000..7dd248a3
Binary files /dev/null and b/animateditems/23723.gif differ
diff --git a/animateditems/23723.png b/animateditems/23723.png
new file mode 100644
index 00000000..02356812
Binary files /dev/null and b/animateditems/23723.png differ
diff --git a/animateditems/23749.gif b/animateditems/23749.gif
new file mode 100644
index 00000000..fbdd18df
Binary files /dev/null and b/animateditems/23749.gif differ
diff --git a/animateditems/23749.png b/animateditems/23749.png
new file mode 100644
index 00000000..d1a5c80a
Binary files /dev/null and b/animateditems/23749.png differ
diff --git a/animateditems/23750.gif b/animateditems/23750.gif
new file mode 100644
index 00000000..5a9429c5
Binary files /dev/null and b/animateditems/23750.gif differ
diff --git a/animateditems/23750.png b/animateditems/23750.png
new file mode 100644
index 00000000..8c6c69d0
Binary files /dev/null and b/animateditems/23750.png differ
diff --git a/animateditems/23754.gif b/animateditems/23754.gif
new file mode 100644
index 00000000..8ebd3ae0
Binary files /dev/null and b/animateditems/23754.gif differ
diff --git a/animateditems/23754.png b/animateditems/23754.png
new file mode 100644
index 00000000..592fe201
Binary files /dev/null and b/animateditems/23754.png differ
diff --git a/animateditems/2376.gif b/animateditems/2376.gif
new file mode 100644
index 00000000..025e12db
Binary files /dev/null and b/animateditems/2376.gif differ
diff --git a/animateditems/2376.png b/animateditems/2376.png
new file mode 100644
index 00000000..a4372ded
Binary files /dev/null and b/animateditems/2376.png differ
diff --git a/animateditems/23760.gif b/animateditems/23760.gif
new file mode 100644
index 00000000..1779cbc5
Binary files /dev/null and b/animateditems/23760.gif differ
diff --git a/animateditems/23760.png b/animateditems/23760.png
new file mode 100644
index 00000000..5fe71087
Binary files /dev/null and b/animateditems/23760.png differ
diff --git a/animateditems/23763.gif b/animateditems/23763.gif
new file mode 100644
index 00000000..6c7fc0be
Binary files /dev/null and b/animateditems/23763.gif differ
diff --git a/animateditems/23763.png b/animateditems/23763.png
new file mode 100644
index 00000000..957026ba
Binary files /dev/null and b/animateditems/23763.png differ
diff --git a/animateditems/23766.gif b/animateditems/23766.gif
new file mode 100644
index 00000000..54e41392
Binary files /dev/null and b/animateditems/23766.gif differ
diff --git a/animateditems/23766.png b/animateditems/23766.png
new file mode 100644
index 00000000..3fdd3352
Binary files /dev/null and b/animateditems/23766.png differ
diff --git a/animateditems/23768.gif b/animateditems/23768.gif
new file mode 100644
index 00000000..6fa6ec4c
Binary files /dev/null and b/animateditems/23768.gif differ
diff --git a/animateditems/23768.png b/animateditems/23768.png
new file mode 100644
index 00000000..0e3fd89e
Binary files /dev/null and b/animateditems/23768.png differ
diff --git a/animateditems/2377.gif b/animateditems/2377.gif
new file mode 100644
index 00000000..6d46799b
Binary files /dev/null and b/animateditems/2377.gif differ
diff --git a/animateditems/2377.png b/animateditems/2377.png
new file mode 100644
index 00000000..c46dc865
Binary files /dev/null and b/animateditems/2377.png differ
diff --git a/animateditems/23771.gif b/animateditems/23771.gif
new file mode 100644
index 00000000..39210f1f
Binary files /dev/null and b/animateditems/23771.gif differ
diff --git a/animateditems/23771.png b/animateditems/23771.png
new file mode 100644
index 00000000..6b58c9b9
Binary files /dev/null and b/animateditems/23771.png differ
diff --git a/animateditems/23772.gif b/animateditems/23772.gif
new file mode 100644
index 00000000..c85ae6e8
Binary files /dev/null and b/animateditems/23772.gif differ
diff --git a/animateditems/23772.png b/animateditems/23772.png
new file mode 100644
index 00000000..c6a1efa2
Binary files /dev/null and b/animateditems/23772.png differ
diff --git a/animateditems/23773.gif b/animateditems/23773.gif
new file mode 100644
index 00000000..f1b90985
Binary files /dev/null and b/animateditems/23773.gif differ
diff --git a/animateditems/23773.png b/animateditems/23773.png
new file mode 100644
index 00000000..fcd013d2
Binary files /dev/null and b/animateditems/23773.png differ
diff --git a/animateditems/2378.gif b/animateditems/2378.gif
new file mode 100644
index 00000000..f755bcc2
Binary files /dev/null and b/animateditems/2378.gif differ
diff --git a/animateditems/2378.png b/animateditems/2378.png
new file mode 100644
index 00000000..2a2e676b
Binary files /dev/null and b/animateditems/2378.png differ
diff --git a/animateditems/23782.gif b/animateditems/23782.gif
new file mode 100644
index 00000000..4b5dad1e
Binary files /dev/null and b/animateditems/23782.gif differ
diff --git a/animateditems/23782.png b/animateditems/23782.png
new file mode 100644
index 00000000..40cad779
Binary files /dev/null and b/animateditems/23782.png differ
diff --git a/animateditems/23784.gif b/animateditems/23784.gif
new file mode 100644
index 00000000..ff4f4aa0
Binary files /dev/null and b/animateditems/23784.gif differ
diff --git a/animateditems/23784.png b/animateditems/23784.png
new file mode 100644
index 00000000..1cd0261c
Binary files /dev/null and b/animateditems/23784.png differ
diff --git a/animateditems/2379.gif b/animateditems/2379.gif
new file mode 100644
index 00000000..67ec28d9
Binary files /dev/null and b/animateditems/2379.gif differ
diff --git a/animateditems/2379.png b/animateditems/2379.png
new file mode 100644
index 00000000..7d1085c4
Binary files /dev/null and b/animateditems/2379.png differ
diff --git a/animateditems/2380.gif b/animateditems/2380.gif
new file mode 100644
index 00000000..2d0bc2b0
Binary files /dev/null and b/animateditems/2380.gif differ
diff --git a/animateditems/2380.png b/animateditems/2380.png
new file mode 100644
index 00000000..28cd68d7
Binary files /dev/null and b/animateditems/2380.png differ
diff --git a/animateditems/23806.gif b/animateditems/23806.gif
new file mode 100644
index 00000000..ebd645e4
Binary files /dev/null and b/animateditems/23806.gif differ
diff --git a/animateditems/23806.png b/animateditems/23806.png
new file mode 100644
index 00000000..d32fc0ee
Binary files /dev/null and b/animateditems/23806.png differ
diff --git a/animateditems/23807.gif b/animateditems/23807.gif
new file mode 100644
index 00000000..6c4e339b
Binary files /dev/null and b/animateditems/23807.gif differ
diff --git a/animateditems/23807.png b/animateditems/23807.png
new file mode 100644
index 00000000..72a1edfe
Binary files /dev/null and b/animateditems/23807.png differ
diff --git a/animateditems/2381.gif b/animateditems/2381.gif
new file mode 100644
index 00000000..c4563037
Binary files /dev/null and b/animateditems/2381.gif differ
diff --git a/animateditems/2381.png b/animateditems/2381.png
new file mode 100644
index 00000000..519e6499
Binary files /dev/null and b/animateditems/2381.png differ
diff --git a/animateditems/23810.gif b/animateditems/23810.gif
new file mode 100644
index 00000000..1876fdea
Binary files /dev/null and b/animateditems/23810.gif differ
diff --git a/animateditems/23810.png b/animateditems/23810.png
new file mode 100644
index 00000000..ee7cd6c7
Binary files /dev/null and b/animateditems/23810.png differ
diff --git a/animateditems/23816.gif b/animateditems/23816.gif
new file mode 100644
index 00000000..c95d36ea
Binary files /dev/null and b/animateditems/23816.gif differ
diff --git a/animateditems/23816.png b/animateditems/23816.png
new file mode 100644
index 00000000..b719dc41
Binary files /dev/null and b/animateditems/23816.png differ
diff --git a/animateditems/2382.gif b/animateditems/2382.gif
new file mode 100644
index 00000000..c6918180
Binary files /dev/null and b/animateditems/2382.gif differ
diff --git a/animateditems/2382.png b/animateditems/2382.png
new file mode 100644
index 00000000..e2ad91d8
Binary files /dev/null and b/animateditems/2382.png differ
diff --git a/animateditems/2383.gif b/animateditems/2383.gif
new file mode 100644
index 00000000..8305b69a
Binary files /dev/null and b/animateditems/2383.gif differ
diff --git a/animateditems/2383.png b/animateditems/2383.png
new file mode 100644
index 00000000..3a0f1e5c
Binary files /dev/null and b/animateditems/2383.png differ
diff --git a/animateditems/23835.gif b/animateditems/23835.gif
new file mode 100644
index 00000000..e18935ca
Binary files /dev/null and b/animateditems/23835.gif differ
diff --git a/animateditems/23835.png b/animateditems/23835.png
new file mode 100644
index 00000000..2593b711
Binary files /dev/null and b/animateditems/23835.png differ
diff --git a/animateditems/23836.gif b/animateditems/23836.gif
new file mode 100644
index 00000000..a717508c
Binary files /dev/null and b/animateditems/23836.gif differ
diff --git a/animateditems/23836.png b/animateditems/23836.png
new file mode 100644
index 00000000..90b65dc4
Binary files /dev/null and b/animateditems/23836.png differ
diff --git a/animateditems/23838.gif b/animateditems/23838.gif
new file mode 100644
index 00000000..47a685c4
Binary files /dev/null and b/animateditems/23838.gif differ
diff --git a/animateditems/23838.png b/animateditems/23838.png
new file mode 100644
index 00000000..80b3cb75
Binary files /dev/null and b/animateditems/23838.png differ
diff --git a/animateditems/23839.gif b/animateditems/23839.gif
new file mode 100644
index 00000000..3b305733
Binary files /dev/null and b/animateditems/23839.gif differ
diff --git a/animateditems/23839.png b/animateditems/23839.png
new file mode 100644
index 00000000..9bac1fce
Binary files /dev/null and b/animateditems/23839.png differ
diff --git a/animateditems/2384.gif b/animateditems/2384.gif
new file mode 100644
index 00000000..bd661404
Binary files /dev/null and b/animateditems/2384.gif differ
diff --git a/animateditems/2384.png b/animateditems/2384.png
new file mode 100644
index 00000000..fdf28547
Binary files /dev/null and b/animateditems/2384.png differ
diff --git a/animateditems/23845.gif b/animateditems/23845.gif
new file mode 100644
index 00000000..5cf044f8
Binary files /dev/null and b/animateditems/23845.gif differ
diff --git a/animateditems/23845.png b/animateditems/23845.png
new file mode 100644
index 00000000..22c628c4
Binary files /dev/null and b/animateditems/23845.png differ
diff --git a/animateditems/2385.gif b/animateditems/2385.gif
new file mode 100644
index 00000000..93b9b4b7
Binary files /dev/null and b/animateditems/2385.gif differ
diff --git a/animateditems/2385.png b/animateditems/2385.png
new file mode 100644
index 00000000..550d2232
Binary files /dev/null and b/animateditems/2385.png differ
diff --git a/animateditems/2386.gif b/animateditems/2386.gif
new file mode 100644
index 00000000..c43b4785
Binary files /dev/null and b/animateditems/2386.gif differ
diff --git a/animateditems/2386.png b/animateditems/2386.png
new file mode 100644
index 00000000..e7e4e252
Binary files /dev/null and b/animateditems/2386.png differ
diff --git a/animateditems/2387.gif b/animateditems/2387.gif
new file mode 100644
index 00000000..0520958d
Binary files /dev/null and b/animateditems/2387.gif differ
diff --git a/animateditems/2387.png b/animateditems/2387.png
new file mode 100644
index 00000000..43ccb70a
Binary files /dev/null and b/animateditems/2387.png differ
diff --git a/animateditems/23873.gif b/animateditems/23873.gif
new file mode 100644
index 00000000..815f3731
Binary files /dev/null and b/animateditems/23873.gif differ
diff --git a/animateditems/23873.png b/animateditems/23873.png
new file mode 100644
index 00000000..fc7b8f86
Binary files /dev/null and b/animateditems/23873.png differ
diff --git a/animateditems/23874.gif b/animateditems/23874.gif
new file mode 100644
index 00000000..52f8aaea
Binary files /dev/null and b/animateditems/23874.gif differ
diff --git a/animateditems/23874.png b/animateditems/23874.png
new file mode 100644
index 00000000..ae21b459
Binary files /dev/null and b/animateditems/23874.png differ
diff --git a/animateditems/23875.gif b/animateditems/23875.gif
new file mode 100644
index 00000000..6057f44f
Binary files /dev/null and b/animateditems/23875.gif differ
diff --git a/animateditems/23875.png b/animateditems/23875.png
new file mode 100644
index 00000000..f399c36e
Binary files /dev/null and b/animateditems/23875.png differ
diff --git a/animateditems/23876.gif b/animateditems/23876.gif
new file mode 100644
index 00000000..79fefff5
Binary files /dev/null and b/animateditems/23876.gif differ
diff --git a/animateditems/23876.png b/animateditems/23876.png
new file mode 100644
index 00000000..05380164
Binary files /dev/null and b/animateditems/23876.png differ
diff --git a/animateditems/2388.gif b/animateditems/2388.gif
new file mode 100644
index 00000000..f54cd6fb
Binary files /dev/null and b/animateditems/2388.gif differ
diff --git a/animateditems/2388.png b/animateditems/2388.png
new file mode 100644
index 00000000..edf611e0
Binary files /dev/null and b/animateditems/2388.png differ
diff --git a/animateditems/2389.gif b/animateditems/2389.gif
new file mode 100644
index 00000000..fd18f721
Binary files /dev/null and b/animateditems/2389.gif differ
diff --git a/animateditems/2389.png b/animateditems/2389.png
new file mode 100644
index 00000000..978eab51
Binary files /dev/null and b/animateditems/2389.png differ
diff --git a/animateditems/2390.gif b/animateditems/2390.gif
new file mode 100644
index 00000000..6edda781
Binary files /dev/null and b/animateditems/2390.gif differ
diff --git a/animateditems/2390.png b/animateditems/2390.png
new file mode 100644
index 00000000..9de62b29
Binary files /dev/null and b/animateditems/2390.png differ
diff --git a/animateditems/2391.gif b/animateditems/2391.gif
new file mode 100644
index 00000000..dc6c474d
Binary files /dev/null and b/animateditems/2391.gif differ
diff --git a/animateditems/2391.png b/animateditems/2391.png
new file mode 100644
index 00000000..7e2183ce
Binary files /dev/null and b/animateditems/2391.png differ
diff --git a/animateditems/2392.gif b/animateditems/2392.gif
new file mode 100644
index 00000000..83a42ebe
Binary files /dev/null and b/animateditems/2392.gif differ
diff --git a/animateditems/2392.png b/animateditems/2392.png
new file mode 100644
index 00000000..e0fae60a
Binary files /dev/null and b/animateditems/2392.png differ
diff --git a/animateditems/23923.gif b/animateditems/23923.gif
new file mode 100644
index 00000000..b3b10f30
Binary files /dev/null and b/animateditems/23923.gif differ
diff --git a/animateditems/23923.png b/animateditems/23923.png
new file mode 100644
index 00000000..11169988
Binary files /dev/null and b/animateditems/23923.png differ
diff --git a/animateditems/2393.gif b/animateditems/2393.gif
new file mode 100644
index 00000000..73ee9a2f
Binary files /dev/null and b/animateditems/2393.gif differ
diff --git a/animateditems/2393.png b/animateditems/2393.png
new file mode 100644
index 00000000..598fd571
Binary files /dev/null and b/animateditems/2393.png differ
diff --git a/animateditems/2394.gif b/animateditems/2394.gif
new file mode 100644
index 00000000..9c65c4e6
Binary files /dev/null and b/animateditems/2394.gif differ
diff --git a/animateditems/2394.png b/animateditems/2394.png
new file mode 100644
index 00000000..aa24250c
Binary files /dev/null and b/animateditems/2394.png differ
diff --git a/animateditems/2395.gif b/animateditems/2395.gif
new file mode 100644
index 00000000..7a9c9a4c
Binary files /dev/null and b/animateditems/2395.gif differ
diff --git a/animateditems/2395.png b/animateditems/2395.png
new file mode 100644
index 00000000..859fab04
Binary files /dev/null and b/animateditems/2395.png differ
diff --git a/animateditems/2396.gif b/animateditems/2396.gif
new file mode 100644
index 00000000..5378ac9f
Binary files /dev/null and b/animateditems/2396.gif differ
diff --git a/animateditems/2396.png b/animateditems/2396.png
new file mode 100644
index 00000000..53f66d28
Binary files /dev/null and b/animateditems/2396.png differ
diff --git a/animateditems/2397.gif b/animateditems/2397.gif
new file mode 100644
index 00000000..e7104455
Binary files /dev/null and b/animateditems/2397.gif differ
diff --git a/animateditems/2397.png b/animateditems/2397.png
new file mode 100644
index 00000000..7f16e360
Binary files /dev/null and b/animateditems/2397.png differ
diff --git a/animateditems/2398.gif b/animateditems/2398.gif
new file mode 100644
index 00000000..bb3c5ed9
Binary files /dev/null and b/animateditems/2398.gif differ
diff --git a/animateditems/2398.png b/animateditems/2398.png
new file mode 100644
index 00000000..efedc18c
Binary files /dev/null and b/animateditems/2398.png differ
diff --git a/animateditems/2399.gif b/animateditems/2399.gif
new file mode 100644
index 00000000..84beb784
Binary files /dev/null and b/animateditems/2399.gif differ
diff --git a/animateditems/2399.png b/animateditems/2399.png
new file mode 100644
index 00000000..ecd85f31
Binary files /dev/null and b/animateditems/2399.png differ
diff --git a/animateditems/2400.gif b/animateditems/2400.gif
new file mode 100644
index 00000000..fbf0bbd6
Binary files /dev/null and b/animateditems/2400.gif differ
diff --git a/animateditems/2400.png b/animateditems/2400.png
new file mode 100644
index 00000000..21cb6435
Binary files /dev/null and b/animateditems/2400.png differ
diff --git a/animateditems/2401.gif b/animateditems/2401.gif
new file mode 100644
index 00000000..ab22d1a5
Binary files /dev/null and b/animateditems/2401.gif differ
diff --git a/animateditems/2401.png b/animateditems/2401.png
new file mode 100644
index 00000000..7af119a2
Binary files /dev/null and b/animateditems/2401.png differ
diff --git a/animateditems/2402.gif b/animateditems/2402.gif
new file mode 100644
index 00000000..b2e36ccb
Binary files /dev/null and b/animateditems/2402.gif differ
diff --git a/animateditems/2402.png b/animateditems/2402.png
new file mode 100644
index 00000000..e33e65d9
Binary files /dev/null and b/animateditems/2402.png differ
diff --git a/animateditems/2403.gif b/animateditems/2403.gif
new file mode 100644
index 00000000..41ff6470
Binary files /dev/null and b/animateditems/2403.gif differ
diff --git a/animateditems/2403.png b/animateditems/2403.png
new file mode 100644
index 00000000..466df821
Binary files /dev/null and b/animateditems/2403.png differ
diff --git a/animateditems/2404.gif b/animateditems/2404.gif
new file mode 100644
index 00000000..c60b6e77
Binary files /dev/null and b/animateditems/2404.gif differ
diff --git a/animateditems/2404.png b/animateditems/2404.png
new file mode 100644
index 00000000..e87234f9
Binary files /dev/null and b/animateditems/2404.png differ
diff --git a/animateditems/2405.gif b/animateditems/2405.gif
new file mode 100644
index 00000000..9b7056e0
Binary files /dev/null and b/animateditems/2405.gif differ
diff --git a/animateditems/2405.png b/animateditems/2405.png
new file mode 100644
index 00000000..bab53d94
Binary files /dev/null and b/animateditems/2405.png differ
diff --git a/animateditems/2406.gif b/animateditems/2406.gif
new file mode 100644
index 00000000..a1045c76
Binary files /dev/null and b/animateditems/2406.gif differ
diff --git a/animateditems/2406.png b/animateditems/2406.png
new file mode 100644
index 00000000..798c44fd
Binary files /dev/null and b/animateditems/2406.png differ
diff --git a/animateditems/2407.gif b/animateditems/2407.gif
new file mode 100644
index 00000000..558e25cf
Binary files /dev/null and b/animateditems/2407.gif differ
diff --git a/animateditems/2407.png b/animateditems/2407.png
new file mode 100644
index 00000000..121a2f07
Binary files /dev/null and b/animateditems/2407.png differ
diff --git a/animateditems/2408.gif b/animateditems/2408.gif
new file mode 100644
index 00000000..238cd9c2
Binary files /dev/null and b/animateditems/2408.gif differ
diff --git a/animateditems/2408.png b/animateditems/2408.png
new file mode 100644
index 00000000..58a24f49
Binary files /dev/null and b/animateditems/2408.png differ
diff --git a/animateditems/2409.gif b/animateditems/2409.gif
new file mode 100644
index 00000000..5b3a5700
Binary files /dev/null and b/animateditems/2409.gif differ
diff --git a/animateditems/2409.png b/animateditems/2409.png
new file mode 100644
index 00000000..e1437eff
Binary files /dev/null and b/animateditems/2409.png differ
diff --git a/animateditems/2410.gif b/animateditems/2410.gif
new file mode 100644
index 00000000..3e5f089f
Binary files /dev/null and b/animateditems/2410.gif differ
diff --git a/animateditems/2410.png b/animateditems/2410.png
new file mode 100644
index 00000000..cf454392
Binary files /dev/null and b/animateditems/2410.png differ
diff --git a/animateditems/2411.gif b/animateditems/2411.gif
new file mode 100644
index 00000000..b3ea7e31
Binary files /dev/null and b/animateditems/2411.gif differ
diff --git a/animateditems/2411.png b/animateditems/2411.png
new file mode 100644
index 00000000..f8d68cd2
Binary files /dev/null and b/animateditems/2411.png differ
diff --git a/animateditems/24114.gif b/animateditems/24114.gif
new file mode 100644
index 00000000..d11a12f9
Binary files /dev/null and b/animateditems/24114.gif differ
diff --git a/animateditems/24114.png b/animateditems/24114.png
new file mode 100644
index 00000000..b4fcec20
Binary files /dev/null and b/animateditems/24114.png differ
diff --git a/animateditems/24115.gif b/animateditems/24115.gif
new file mode 100644
index 00000000..947e6c9c
Binary files /dev/null and b/animateditems/24115.gif differ
diff --git a/animateditems/24115.png b/animateditems/24115.png
new file mode 100644
index 00000000..34e30dfb
Binary files /dev/null and b/animateditems/24115.png differ
diff --git a/animateditems/24116.gif b/animateditems/24116.gif
new file mode 100644
index 00000000..29785750
Binary files /dev/null and b/animateditems/24116.gif differ
diff --git a/animateditems/24116.png b/animateditems/24116.png
new file mode 100644
index 00000000..9add1ff7
Binary files /dev/null and b/animateditems/24116.png differ
diff --git a/animateditems/2412.gif b/animateditems/2412.gif
new file mode 100644
index 00000000..655fb5c3
Binary files /dev/null and b/animateditems/2412.gif differ
diff --git a/animateditems/2412.png b/animateditems/2412.png
new file mode 100644
index 00000000..517a8511
Binary files /dev/null and b/animateditems/2412.png differ
diff --git a/animateditems/24121.gif b/animateditems/24121.gif
new file mode 100644
index 00000000..c02e8e76
Binary files /dev/null and b/animateditems/24121.gif differ
diff --git a/animateditems/24121.png b/animateditems/24121.png
new file mode 100644
index 00000000..9023ea21
Binary files /dev/null and b/animateditems/24121.png differ
diff --git a/animateditems/24122.gif b/animateditems/24122.gif
new file mode 100644
index 00000000..5bab062d
Binary files /dev/null and b/animateditems/24122.gif differ
diff --git a/animateditems/24122.png b/animateditems/24122.png
new file mode 100644
index 00000000..6b3399fb
Binary files /dev/null and b/animateditems/24122.png differ
diff --git a/animateditems/24123.gif b/animateditems/24123.gif
new file mode 100644
index 00000000..8e21d6e4
Binary files /dev/null and b/animateditems/24123.gif differ
diff --git a/animateditems/24123.png b/animateditems/24123.png
new file mode 100644
index 00000000..f9c2a6db
Binary files /dev/null and b/animateditems/24123.png differ
diff --git a/animateditems/24124.gif b/animateditems/24124.gif
new file mode 100644
index 00000000..0c43d85a
Binary files /dev/null and b/animateditems/24124.gif differ
diff --git a/animateditems/24124.png b/animateditems/24124.png
new file mode 100644
index 00000000..ad26c84e
Binary files /dev/null and b/animateditems/24124.png differ
diff --git a/animateditems/24126.gif b/animateditems/24126.gif
new file mode 100644
index 00000000..8971146b
Binary files /dev/null and b/animateditems/24126.gif differ
diff --git a/animateditems/24126.png b/animateditems/24126.png
new file mode 100644
index 00000000..edac5ac4
Binary files /dev/null and b/animateditems/24126.png differ
diff --git a/animateditems/24127.gif b/animateditems/24127.gif
new file mode 100644
index 00000000..b55131d7
Binary files /dev/null and b/animateditems/24127.gif differ
diff --git a/animateditems/24127.png b/animateditems/24127.png
new file mode 100644
index 00000000..f4d08c0b
Binary files /dev/null and b/animateditems/24127.png differ
diff --git a/animateditems/24128.gif b/animateditems/24128.gif
new file mode 100644
index 00000000..f898bc40
Binary files /dev/null and b/animateditems/24128.gif differ
diff --git a/animateditems/24128.png b/animateditems/24128.png
new file mode 100644
index 00000000..e8f6c4f9
Binary files /dev/null and b/animateditems/24128.png differ
diff --git a/animateditems/2413.gif b/animateditems/2413.gif
new file mode 100644
index 00000000..92d786ba
Binary files /dev/null and b/animateditems/2413.gif differ
diff --git a/animateditems/2413.png b/animateditems/2413.png
new file mode 100644
index 00000000..7847bc70
Binary files /dev/null and b/animateditems/2413.png differ
diff --git a/animateditems/24130.gif b/animateditems/24130.gif
new file mode 100644
index 00000000..e96bde6e
Binary files /dev/null and b/animateditems/24130.gif differ
diff --git a/animateditems/24130.png b/animateditems/24130.png
new file mode 100644
index 00000000..134601f1
Binary files /dev/null and b/animateditems/24130.png differ
diff --git a/animateditems/24135.gif b/animateditems/24135.gif
new file mode 100644
index 00000000..dd623578
Binary files /dev/null and b/animateditems/24135.gif differ
diff --git a/animateditems/24135.png b/animateditems/24135.png
new file mode 100644
index 00000000..4ebc6a79
Binary files /dev/null and b/animateditems/24135.png differ
diff --git a/animateditems/24136.gif b/animateditems/24136.gif
new file mode 100644
index 00000000..6cba8bdc
Binary files /dev/null and b/animateditems/24136.gif differ
diff --git a/animateditems/24136.png b/animateditems/24136.png
new file mode 100644
index 00000000..8c3b7afc
Binary files /dev/null and b/animateditems/24136.png differ
diff --git a/animateditems/24137.gif b/animateditems/24137.gif
new file mode 100644
index 00000000..2a3e8adc
Binary files /dev/null and b/animateditems/24137.gif differ
diff --git a/animateditems/24137.png b/animateditems/24137.png
new file mode 100644
index 00000000..88fb3cb9
Binary files /dev/null and b/animateditems/24137.png differ
diff --git a/animateditems/24138.gif b/animateditems/24138.gif
new file mode 100644
index 00000000..cff87588
Binary files /dev/null and b/animateditems/24138.gif differ
diff --git a/animateditems/24138.png b/animateditems/24138.png
new file mode 100644
index 00000000..96d134ae
Binary files /dev/null and b/animateditems/24138.png differ
diff --git a/animateditems/24139.gif b/animateditems/24139.gif
new file mode 100644
index 00000000..6a066ef9
Binary files /dev/null and b/animateditems/24139.gif differ
diff --git a/animateditems/24139.png b/animateditems/24139.png
new file mode 100644
index 00000000..f7d506a6
Binary files /dev/null and b/animateditems/24139.png differ
diff --git a/animateditems/2414.gif b/animateditems/2414.gif
new file mode 100644
index 00000000..c2c26086
Binary files /dev/null and b/animateditems/2414.gif differ
diff --git a/animateditems/2414.png b/animateditems/2414.png
new file mode 100644
index 00000000..34281b60
Binary files /dev/null and b/animateditems/2414.png differ
diff --git a/animateditems/2415.gif b/animateditems/2415.gif
new file mode 100644
index 00000000..552d243c
Binary files /dev/null and b/animateditems/2415.gif differ
diff --git a/animateditems/2415.png b/animateditems/2415.png
new file mode 100644
index 00000000..69f0d11b
Binary files /dev/null and b/animateditems/2415.png differ
diff --git a/animateditems/2416.gif b/animateditems/2416.gif
new file mode 100644
index 00000000..81878489
Binary files /dev/null and b/animateditems/2416.gif differ
diff --git a/animateditems/2416.png b/animateditems/2416.png
new file mode 100644
index 00000000..1e09ea30
Binary files /dev/null and b/animateditems/2416.png differ
diff --git a/animateditems/24164.gif b/animateditems/24164.gif
new file mode 100644
index 00000000..dfde41d4
Binary files /dev/null and b/animateditems/24164.gif differ
diff --git a/animateditems/24164.png b/animateditems/24164.png
new file mode 100644
index 00000000..2b2eacd8
Binary files /dev/null and b/animateditems/24164.png differ
diff --git a/animateditems/24169.gif b/animateditems/24169.gif
new file mode 100644
index 00000000..97e8c5d0
Binary files /dev/null and b/animateditems/24169.gif differ
diff --git a/animateditems/24169.png b/animateditems/24169.png
new file mode 100644
index 00000000..e2efb8ce
Binary files /dev/null and b/animateditems/24169.png differ
diff --git a/animateditems/2417.gif b/animateditems/2417.gif
new file mode 100644
index 00000000..a824b8e9
Binary files /dev/null and b/animateditems/2417.gif differ
diff --git a/animateditems/2417.png b/animateditems/2417.png
new file mode 100644
index 00000000..7407c8b2
Binary files /dev/null and b/animateditems/2417.png differ
diff --git a/animateditems/24170.gif b/animateditems/24170.gif
new file mode 100644
index 00000000..e571af3a
Binary files /dev/null and b/animateditems/24170.gif differ
diff --git a/animateditems/24170.png b/animateditems/24170.png
new file mode 100644
index 00000000..aa771141
Binary files /dev/null and b/animateditems/24170.png differ
diff --git a/animateditems/24172.gif b/animateditems/24172.gif
new file mode 100644
index 00000000..2bf189a8
Binary files /dev/null and b/animateditems/24172.gif differ
diff --git a/animateditems/24172.png b/animateditems/24172.png
new file mode 100644
index 00000000..031835fd
Binary files /dev/null and b/animateditems/24172.png differ
diff --git a/animateditems/24173.gif b/animateditems/24173.gif
new file mode 100644
index 00000000..7f24470c
Binary files /dev/null and b/animateditems/24173.gif differ
diff --git a/animateditems/24173.png b/animateditems/24173.png
new file mode 100644
index 00000000..47966ebe
Binary files /dev/null and b/animateditems/24173.png differ
diff --git a/animateditems/24174.gif b/animateditems/24174.gif
new file mode 100644
index 00000000..c78a4d7a
Binary files /dev/null and b/animateditems/24174.gif differ
diff --git a/animateditems/24174.png b/animateditems/24174.png
new file mode 100644
index 00000000..645e0503
Binary files /dev/null and b/animateditems/24174.png differ
diff --git a/animateditems/2418.gif b/animateditems/2418.gif
new file mode 100644
index 00000000..91186501
Binary files /dev/null and b/animateditems/2418.gif differ
diff --git a/animateditems/2418.png b/animateditems/2418.png
new file mode 100644
index 00000000..db74d582
Binary files /dev/null and b/animateditems/2418.png differ
diff --git a/animateditems/24181.gif b/animateditems/24181.gif
new file mode 100644
index 00000000..549f194b
Binary files /dev/null and b/animateditems/24181.gif differ
diff --git a/animateditems/24181.png b/animateditems/24181.png
new file mode 100644
index 00000000..abbf3b17
Binary files /dev/null and b/animateditems/24181.png differ
diff --git a/animateditems/24183.gif b/animateditems/24183.gif
new file mode 100644
index 00000000..ef4918e2
Binary files /dev/null and b/animateditems/24183.gif differ
diff --git a/animateditems/24183.png b/animateditems/24183.png
new file mode 100644
index 00000000..16c2a1e3
Binary files /dev/null and b/animateditems/24183.png differ
diff --git a/animateditems/24185.gif b/animateditems/24185.gif
new file mode 100644
index 00000000..ddecaaa4
Binary files /dev/null and b/animateditems/24185.gif differ
diff --git a/animateditems/24185.png b/animateditems/24185.png
new file mode 100644
index 00000000..d490c0f2
Binary files /dev/null and b/animateditems/24185.png differ
diff --git a/animateditems/24188.gif b/animateditems/24188.gif
new file mode 100644
index 00000000..eb832545
Binary files /dev/null and b/animateditems/24188.gif differ
diff --git a/animateditems/24188.png b/animateditems/24188.png
new file mode 100644
index 00000000..d0519ca9
Binary files /dev/null and b/animateditems/24188.png differ
diff --git a/animateditems/24189.gif b/animateditems/24189.gif
new file mode 100644
index 00000000..5c76e273
Binary files /dev/null and b/animateditems/24189.gif differ
diff --git a/animateditems/24189.png b/animateditems/24189.png
new file mode 100644
index 00000000..1dc7231f
Binary files /dev/null and b/animateditems/24189.png differ
diff --git a/animateditems/2419.gif b/animateditems/2419.gif
new file mode 100644
index 00000000..e8f58ebd
Binary files /dev/null and b/animateditems/2419.gif differ
diff --git a/animateditems/2419.png b/animateditems/2419.png
new file mode 100644
index 00000000..fb179d64
Binary files /dev/null and b/animateditems/2419.png differ
diff --git a/animateditems/2420.gif b/animateditems/2420.gif
new file mode 100644
index 00000000..b24551ef
Binary files /dev/null and b/animateditems/2420.gif differ
diff --git a/animateditems/2420.png b/animateditems/2420.png
new file mode 100644
index 00000000..134e3e5b
Binary files /dev/null and b/animateditems/2420.png differ
diff --git a/animateditems/24206.gif b/animateditems/24206.gif
new file mode 100644
index 00000000..337bfbdc
Binary files /dev/null and b/animateditems/24206.gif differ
diff --git a/animateditems/24206.png b/animateditems/24206.png
new file mode 100644
index 00000000..1981539f
Binary files /dev/null and b/animateditems/24206.png differ
diff --git a/animateditems/24207.gif b/animateditems/24207.gif
new file mode 100644
index 00000000..9d8f3e1f
Binary files /dev/null and b/animateditems/24207.gif differ
diff --git a/animateditems/24207.png b/animateditems/24207.png
new file mode 100644
index 00000000..be312de6
Binary files /dev/null and b/animateditems/24207.png differ
diff --git a/animateditems/24208.gif b/animateditems/24208.gif
new file mode 100644
index 00000000..647cd53d
Binary files /dev/null and b/animateditems/24208.gif differ
diff --git a/animateditems/24208.png b/animateditems/24208.png
new file mode 100644
index 00000000..f42197cd
Binary files /dev/null and b/animateditems/24208.png differ
diff --git a/animateditems/24209.gif b/animateditems/24209.gif
new file mode 100644
index 00000000..1cf1eb43
Binary files /dev/null and b/animateditems/24209.gif differ
diff --git a/animateditems/24209.png b/animateditems/24209.png
new file mode 100644
index 00000000..fb6d546f
Binary files /dev/null and b/animateditems/24209.png differ
diff --git a/animateditems/2421.gif b/animateditems/2421.gif
new file mode 100644
index 00000000..943ca5a7
Binary files /dev/null and b/animateditems/2421.gif differ
diff --git a/animateditems/2421.png b/animateditems/2421.png
new file mode 100644
index 00000000..fc693b14
Binary files /dev/null and b/animateditems/2421.png differ
diff --git a/animateditems/24210.gif b/animateditems/24210.gif
new file mode 100644
index 00000000..738fc61a
Binary files /dev/null and b/animateditems/24210.gif differ
diff --git a/animateditems/24210.png b/animateditems/24210.png
new file mode 100644
index 00000000..52972a24
Binary files /dev/null and b/animateditems/24210.png differ
diff --git a/animateditems/24219.gif b/animateditems/24219.gif
new file mode 100644
index 00000000..1a7707c6
Binary files /dev/null and b/animateditems/24219.gif differ
diff --git a/animateditems/24219.png b/animateditems/24219.png
new file mode 100644
index 00000000..224ee46e
Binary files /dev/null and b/animateditems/24219.png differ
diff --git a/animateditems/2422.gif b/animateditems/2422.gif
new file mode 100644
index 00000000..c66d5615
Binary files /dev/null and b/animateditems/2422.gif differ
diff --git a/animateditems/2422.png b/animateditems/2422.png
new file mode 100644
index 00000000..4f9c6b04
Binary files /dev/null and b/animateditems/2422.png differ
diff --git a/animateditems/24222.gif b/animateditems/24222.gif
new file mode 100644
index 00000000..8e84ca2f
Binary files /dev/null and b/animateditems/24222.gif differ
diff --git a/animateditems/24222.png b/animateditems/24222.png
new file mode 100644
index 00000000..5e243e99
Binary files /dev/null and b/animateditems/24222.png differ
diff --git a/animateditems/24225.gif b/animateditems/24225.gif
new file mode 100644
index 00000000..b753ec21
Binary files /dev/null and b/animateditems/24225.gif differ
diff --git a/animateditems/24225.png b/animateditems/24225.png
new file mode 100644
index 00000000..0c72d41c
Binary files /dev/null and b/animateditems/24225.png differ
diff --git a/animateditems/24226.gif b/animateditems/24226.gif
new file mode 100644
index 00000000..4119fb1f
Binary files /dev/null and b/animateditems/24226.gif differ
diff --git a/animateditems/24226.png b/animateditems/24226.png
new file mode 100644
index 00000000..b35debdf
Binary files /dev/null and b/animateditems/24226.png differ
diff --git a/animateditems/2423.gif b/animateditems/2423.gif
new file mode 100644
index 00000000..edaeff43
Binary files /dev/null and b/animateditems/2423.gif differ
diff --git a/animateditems/2423.png b/animateditems/2423.png
new file mode 100644
index 00000000..99e65357
Binary files /dev/null and b/animateditems/2423.png differ
diff --git a/animateditems/24230.gif b/animateditems/24230.gif
new file mode 100644
index 00000000..b71d4ef3
Binary files /dev/null and b/animateditems/24230.gif differ
diff --git a/animateditems/24230.png b/animateditems/24230.png
new file mode 100644
index 00000000..acdbb582
Binary files /dev/null and b/animateditems/24230.png differ
diff --git a/animateditems/24231.gif b/animateditems/24231.gif
new file mode 100644
index 00000000..c6590f1e
Binary files /dev/null and b/animateditems/24231.gif differ
diff --git a/animateditems/24231.png b/animateditems/24231.png
new file mode 100644
index 00000000..4f631881
Binary files /dev/null and b/animateditems/24231.png differ
diff --git a/animateditems/24237.gif b/animateditems/24237.gif
new file mode 100644
index 00000000..3b92f644
Binary files /dev/null and b/animateditems/24237.gif differ
diff --git a/animateditems/24237.png b/animateditems/24237.png
new file mode 100644
index 00000000..9ab07ddb
Binary files /dev/null and b/animateditems/24237.png differ
diff --git a/animateditems/24238.gif b/animateditems/24238.gif
new file mode 100644
index 00000000..773f79d2
Binary files /dev/null and b/animateditems/24238.gif differ
diff --git a/animateditems/24238.png b/animateditems/24238.png
new file mode 100644
index 00000000..6d08a355
Binary files /dev/null and b/animateditems/24238.png differ
diff --git a/animateditems/24239.gif b/animateditems/24239.gif
new file mode 100644
index 00000000..b355af4b
Binary files /dev/null and b/animateditems/24239.gif differ
diff --git a/animateditems/24239.png b/animateditems/24239.png
new file mode 100644
index 00000000..fb538392
Binary files /dev/null and b/animateditems/24239.png differ
diff --git a/animateditems/2424.gif b/animateditems/2424.gif
new file mode 100644
index 00000000..43e4ebdf
Binary files /dev/null and b/animateditems/2424.gif differ
diff --git a/animateditems/2424.png b/animateditems/2424.png
new file mode 100644
index 00000000..1b98626c
Binary files /dev/null and b/animateditems/2424.png differ
diff --git a/animateditems/24240.gif b/animateditems/24240.gif
new file mode 100644
index 00000000..bce7594e
Binary files /dev/null and b/animateditems/24240.gif differ
diff --git a/animateditems/24240.png b/animateditems/24240.png
new file mode 100644
index 00000000..5e8a697e
Binary files /dev/null and b/animateditems/24240.png differ
diff --git a/animateditems/24241.gif b/animateditems/24241.gif
new file mode 100644
index 00000000..099cc5d8
Binary files /dev/null and b/animateditems/24241.gif differ
diff --git a/animateditems/24241.png b/animateditems/24241.png
new file mode 100644
index 00000000..917d7bd2
Binary files /dev/null and b/animateditems/24241.png differ
diff --git a/animateditems/24242.gif b/animateditems/24242.gif
new file mode 100644
index 00000000..0cab9e9c
Binary files /dev/null and b/animateditems/24242.gif differ
diff --git a/animateditems/24242.png b/animateditems/24242.png
new file mode 100644
index 00000000..9ced572b
Binary files /dev/null and b/animateditems/24242.png differ
diff --git a/animateditems/24245.gif b/animateditems/24245.gif
new file mode 100644
index 00000000..52f8aaea
Binary files /dev/null and b/animateditems/24245.gif differ
diff --git a/animateditems/24245.png b/animateditems/24245.png
new file mode 100644
index 00000000..ae21b459
Binary files /dev/null and b/animateditems/24245.png differ
diff --git a/animateditems/24246.gif b/animateditems/24246.gif
new file mode 100644
index 00000000..ff59781d
Binary files /dev/null and b/animateditems/24246.gif differ
diff --git a/animateditems/24246.png b/animateditems/24246.png
new file mode 100644
index 00000000..d13e1d93
Binary files /dev/null and b/animateditems/24246.png differ
diff --git a/animateditems/24249.gif b/animateditems/24249.gif
new file mode 100644
index 00000000..62369486
Binary files /dev/null and b/animateditems/24249.gif differ
diff --git a/animateditems/24249.png b/animateditems/24249.png
new file mode 100644
index 00000000..a174c2d0
Binary files /dev/null and b/animateditems/24249.png differ
diff --git a/animateditems/2425.gif b/animateditems/2425.gif
new file mode 100644
index 00000000..350872c5
Binary files /dev/null and b/animateditems/2425.gif differ
diff --git a/animateditems/2425.png b/animateditems/2425.png
new file mode 100644
index 00000000..e6421b58
Binary files /dev/null and b/animateditems/2425.png differ
diff --git a/animateditems/24250.gif b/animateditems/24250.gif
new file mode 100644
index 00000000..62369486
Binary files /dev/null and b/animateditems/24250.gif differ
diff --git a/animateditems/24250.png b/animateditems/24250.png
new file mode 100644
index 00000000..a174c2d0
Binary files /dev/null and b/animateditems/24250.png differ
diff --git a/animateditems/2426.gif b/animateditems/2426.gif
new file mode 100644
index 00000000..e699aa76
Binary files /dev/null and b/animateditems/2426.gif differ
diff --git a/animateditems/2426.png b/animateditems/2426.png
new file mode 100644
index 00000000..af64d700
Binary files /dev/null and b/animateditems/2426.png differ
diff --git a/animateditems/24261.gif b/animateditems/24261.gif
new file mode 100644
index 00000000..fc2be60e
Binary files /dev/null and b/animateditems/24261.gif differ
diff --git a/animateditems/24261.png b/animateditems/24261.png
new file mode 100644
index 00000000..4a604f51
Binary files /dev/null and b/animateditems/24261.png differ
diff --git a/animateditems/24266.gif b/animateditems/24266.gif
new file mode 100644
index 00000000..08404c39
Binary files /dev/null and b/animateditems/24266.gif differ
diff --git a/animateditems/24266.png b/animateditems/24266.png
new file mode 100644
index 00000000..35b5a979
Binary files /dev/null and b/animateditems/24266.png differ
diff --git a/animateditems/24267.gif b/animateditems/24267.gif
new file mode 100644
index 00000000..a1b0602a
Binary files /dev/null and b/animateditems/24267.gif differ
diff --git a/animateditems/24267.png b/animateditems/24267.png
new file mode 100644
index 00000000..75239db6
Binary files /dev/null and b/animateditems/24267.png differ
diff --git a/animateditems/24268.gif b/animateditems/24268.gif
new file mode 100644
index 00000000..ebc1c1b6
Binary files /dev/null and b/animateditems/24268.gif differ
diff --git a/animateditems/24268.png b/animateditems/24268.png
new file mode 100644
index 00000000..4cc4e1fe
Binary files /dev/null and b/animateditems/24268.png differ
diff --git a/animateditems/2427.gif b/animateditems/2427.gif
new file mode 100644
index 00000000..3c99d1cb
Binary files /dev/null and b/animateditems/2427.gif differ
diff --git a/animateditems/2427.png b/animateditems/2427.png
new file mode 100644
index 00000000..2c066138
Binary files /dev/null and b/animateditems/2427.png differ
diff --git a/animateditems/24270.gif b/animateditems/24270.gif
new file mode 100644
index 00000000..878ec4c1
Binary files /dev/null and b/animateditems/24270.gif differ
diff --git a/animateditems/24270.png b/animateditems/24270.png
new file mode 100644
index 00000000..00c468b2
Binary files /dev/null and b/animateditems/24270.png differ
diff --git a/animateditems/24271.gif b/animateditems/24271.gif
new file mode 100644
index 00000000..430448b3
Binary files /dev/null and b/animateditems/24271.gif differ
diff --git a/animateditems/24271.png b/animateditems/24271.png
new file mode 100644
index 00000000..e90e1119
Binary files /dev/null and b/animateditems/24271.png differ
diff --git a/animateditems/24274.gif b/animateditems/24274.gif
new file mode 100644
index 00000000..2711da9e
Binary files /dev/null and b/animateditems/24274.gif differ
diff --git a/animateditems/24274.png b/animateditems/24274.png
new file mode 100644
index 00000000..929863f6
Binary files /dev/null and b/animateditems/24274.png differ
diff --git a/animateditems/24275.gif b/animateditems/24275.gif
new file mode 100644
index 00000000..52731c1a
Binary files /dev/null and b/animateditems/24275.gif differ
diff --git a/animateditems/24275.png b/animateditems/24275.png
new file mode 100644
index 00000000..c39e17b1
Binary files /dev/null and b/animateditems/24275.png differ
diff --git a/animateditems/2428.gif b/animateditems/2428.gif
new file mode 100644
index 00000000..93a3824b
Binary files /dev/null and b/animateditems/2428.gif differ
diff --git a/animateditems/2428.png b/animateditems/2428.png
new file mode 100644
index 00000000..b6afffdd
Binary files /dev/null and b/animateditems/2428.png differ
diff --git a/animateditems/2429.gif b/animateditems/2429.gif
new file mode 100644
index 00000000..eca1af2a
Binary files /dev/null and b/animateditems/2429.gif differ
diff --git a/animateditems/2429.png b/animateditems/2429.png
new file mode 100644
index 00000000..9b18bb58
Binary files /dev/null and b/animateditems/2429.png differ
diff --git a/animateditems/2430.gif b/animateditems/2430.gif
new file mode 100644
index 00000000..837ca4c5
Binary files /dev/null and b/animateditems/2430.gif differ
diff --git a/animateditems/2430.png b/animateditems/2430.png
new file mode 100644
index 00000000..bfddf5be
Binary files /dev/null and b/animateditems/2430.png differ
diff --git a/animateditems/24301.gif b/animateditems/24301.gif
new file mode 100644
index 00000000..491a295d
Binary files /dev/null and b/animateditems/24301.gif differ
diff --git a/animateditems/24301.png b/animateditems/24301.png
new file mode 100644
index 00000000..c84ce3fa
Binary files /dev/null and b/animateditems/24301.png differ
diff --git a/animateditems/24302.gif b/animateditems/24302.gif
new file mode 100644
index 00000000..6d99c8c8
Binary files /dev/null and b/animateditems/24302.gif differ
diff --git a/animateditems/24302.png b/animateditems/24302.png
new file mode 100644
index 00000000..2883f6f9
Binary files /dev/null and b/animateditems/24302.png differ
diff --git a/animateditems/2431.gif b/animateditems/2431.gif
new file mode 100644
index 00000000..a8522ce6
Binary files /dev/null and b/animateditems/2431.gif differ
diff --git a/animateditems/2431.png b/animateditems/2431.png
new file mode 100644
index 00000000..920cc3cc
Binary files /dev/null and b/animateditems/2431.png differ
diff --git a/animateditems/24316.gif b/animateditems/24316.gif
new file mode 100644
index 00000000..979de679
Binary files /dev/null and b/animateditems/24316.gif differ
diff --git a/animateditems/24316.png b/animateditems/24316.png
new file mode 100644
index 00000000..55473a53
Binary files /dev/null and b/animateditems/24316.png differ
diff --git a/animateditems/24317.gif b/animateditems/24317.gif
new file mode 100644
index 00000000..979de679
Binary files /dev/null and b/animateditems/24317.gif differ
diff --git a/animateditems/24317.png b/animateditems/24317.png
new file mode 100644
index 00000000..55473a53
Binary files /dev/null and b/animateditems/24317.png differ
diff --git a/animateditems/24319.gif b/animateditems/24319.gif
new file mode 100644
index 00000000..f45faf0b
Binary files /dev/null and b/animateditems/24319.gif differ
diff --git a/animateditems/24319.png b/animateditems/24319.png
new file mode 100644
index 00000000..aa4e2c5d
Binary files /dev/null and b/animateditems/24319.png differ
diff --git a/animateditems/2432.gif b/animateditems/2432.gif
new file mode 100644
index 00000000..5aa4d70a
Binary files /dev/null and b/animateditems/2432.gif differ
diff --git a/animateditems/2432.png b/animateditems/2432.png
new file mode 100644
index 00000000..882cd66a
Binary files /dev/null and b/animateditems/2432.png differ
diff --git a/animateditems/24321.gif b/animateditems/24321.gif
new file mode 100644
index 00000000..da04f95d
Binary files /dev/null and b/animateditems/24321.gif differ
diff --git a/animateditems/24321.png b/animateditems/24321.png
new file mode 100644
index 00000000..35680e85
Binary files /dev/null and b/animateditems/24321.png differ
diff --git a/animateditems/24322.gif b/animateditems/24322.gif
new file mode 100644
index 00000000..95f8d2a5
Binary files /dev/null and b/animateditems/24322.gif differ
diff --git a/animateditems/24322.png b/animateditems/24322.png
new file mode 100644
index 00000000..e02ac909
Binary files /dev/null and b/animateditems/24322.png differ
diff --git a/animateditems/24323.gif b/animateditems/24323.gif
new file mode 100644
index 00000000..5773272d
Binary files /dev/null and b/animateditems/24323.gif differ
diff --git a/animateditems/24323.png b/animateditems/24323.png
new file mode 100644
index 00000000..f236916f
Binary files /dev/null and b/animateditems/24323.png differ
diff --git a/animateditems/24324.gif b/animateditems/24324.gif
new file mode 100644
index 00000000..bce65610
Binary files /dev/null and b/animateditems/24324.gif differ
diff --git a/animateditems/24324.png b/animateditems/24324.png
new file mode 100644
index 00000000..36f862eb
Binary files /dev/null and b/animateditems/24324.png differ
diff --git a/animateditems/2433.gif b/animateditems/2433.gif
new file mode 100644
index 00000000..2e68a534
Binary files /dev/null and b/animateditems/2433.gif differ
diff --git a/animateditems/2433.png b/animateditems/2433.png
new file mode 100644
index 00000000..ccccf25e
Binary files /dev/null and b/animateditems/2433.png differ
diff --git a/animateditems/24331.gif b/animateditems/24331.gif
new file mode 100644
index 00000000..199425c6
Binary files /dev/null and b/animateditems/24331.gif differ
diff --git a/animateditems/24331.png b/animateditems/24331.png
new file mode 100644
index 00000000..e70f6ce6
Binary files /dev/null and b/animateditems/24331.png differ
diff --git a/animateditems/24332.gif b/animateditems/24332.gif
new file mode 100644
index 00000000..199425c6
Binary files /dev/null and b/animateditems/24332.gif differ
diff --git a/animateditems/24332.png b/animateditems/24332.png
new file mode 100644
index 00000000..e70f6ce6
Binary files /dev/null and b/animateditems/24332.png differ
diff --git a/animateditems/2434.gif b/animateditems/2434.gif
new file mode 100644
index 00000000..4d5d18e3
Binary files /dev/null and b/animateditems/2434.gif differ
diff --git a/animateditems/2434.png b/animateditems/2434.png
new file mode 100644
index 00000000..062980f9
Binary files /dev/null and b/animateditems/2434.png differ
diff --git a/animateditems/2435.gif b/animateditems/2435.gif
new file mode 100644
index 00000000..60733cb0
Binary files /dev/null and b/animateditems/2435.gif differ
diff --git a/animateditems/2435.png b/animateditems/2435.png
new file mode 100644
index 00000000..73bb91a0
Binary files /dev/null and b/animateditems/2435.png differ
diff --git a/animateditems/2436.gif b/animateditems/2436.gif
new file mode 100644
index 00000000..3bd84e18
Binary files /dev/null and b/animateditems/2436.gif differ
diff --git a/animateditems/2436.png b/animateditems/2436.png
new file mode 100644
index 00000000..cfcae4d3
Binary files /dev/null and b/animateditems/2436.png differ
diff --git a/animateditems/2437.gif b/animateditems/2437.gif
new file mode 100644
index 00000000..d0124a5f
Binary files /dev/null and b/animateditems/2437.gif differ
diff --git a/animateditems/2437.png b/animateditems/2437.png
new file mode 100644
index 00000000..0aed46ee
Binary files /dev/null and b/animateditems/2437.png differ
diff --git a/animateditems/2438.gif b/animateditems/2438.gif
new file mode 100644
index 00000000..c13417c9
Binary files /dev/null and b/animateditems/2438.gif differ
diff --git a/animateditems/2438.png b/animateditems/2438.png
new file mode 100644
index 00000000..3b1ca40c
Binary files /dev/null and b/animateditems/2438.png differ
diff --git a/animateditems/2439.gif b/animateditems/2439.gif
new file mode 100644
index 00000000..4fb2e21b
Binary files /dev/null and b/animateditems/2439.gif differ
diff --git a/animateditems/2439.png b/animateditems/2439.png
new file mode 100644
index 00000000..66f3598e
Binary files /dev/null and b/animateditems/2439.png differ
diff --git a/animateditems/2440.gif b/animateditems/2440.gif
new file mode 100644
index 00000000..82fe516a
Binary files /dev/null and b/animateditems/2440.gif differ
diff --git a/animateditems/2440.png b/animateditems/2440.png
new file mode 100644
index 00000000..fe505907
Binary files /dev/null and b/animateditems/2440.png differ
diff --git a/animateditems/2441.gif b/animateditems/2441.gif
new file mode 100644
index 00000000..48d788b1
Binary files /dev/null and b/animateditems/2441.gif differ
diff --git a/animateditems/2441.png b/animateditems/2441.png
new file mode 100644
index 00000000..3ef2afd0
Binary files /dev/null and b/animateditems/2441.png differ
diff --git a/animateditems/2442.gif b/animateditems/2442.gif
new file mode 100644
index 00000000..9c65c052
Binary files /dev/null and b/animateditems/2442.gif differ
diff --git a/animateditems/2442.png b/animateditems/2442.png
new file mode 100644
index 00000000..6833e59d
Binary files /dev/null and b/animateditems/2442.png differ
diff --git a/animateditems/2443.gif b/animateditems/2443.gif
new file mode 100644
index 00000000..2ec16afc
Binary files /dev/null and b/animateditems/2443.gif differ
diff --git a/animateditems/2443.png b/animateditems/2443.png
new file mode 100644
index 00000000..37b16091
Binary files /dev/null and b/animateditems/2443.png differ
diff --git a/animateditems/2444.gif b/animateditems/2444.gif
new file mode 100644
index 00000000..e3176e00
Binary files /dev/null and b/animateditems/2444.gif differ
diff --git a/animateditems/2444.png b/animateditems/2444.png
new file mode 100644
index 00000000..d4b4b1d9
Binary files /dev/null and b/animateditems/2444.png differ
diff --git a/animateditems/2445.gif b/animateditems/2445.gif
new file mode 100644
index 00000000..af945f3a
Binary files /dev/null and b/animateditems/2445.gif differ
diff --git a/animateditems/2445.png b/animateditems/2445.png
new file mode 100644
index 00000000..b7b7fd02
Binary files /dev/null and b/animateditems/2445.png differ
diff --git a/animateditems/2446.gif b/animateditems/2446.gif
new file mode 100644
index 00000000..7eadae82
Binary files /dev/null and b/animateditems/2446.gif differ
diff --git a/animateditems/2446.png b/animateditems/2446.png
new file mode 100644
index 00000000..b3fc8a76
Binary files /dev/null and b/animateditems/2446.png differ
diff --git a/animateditems/2447.gif b/animateditems/2447.gif
new file mode 100644
index 00000000..e06379bf
Binary files /dev/null and b/animateditems/2447.gif differ
diff --git a/animateditems/2447.png b/animateditems/2447.png
new file mode 100644
index 00000000..dd66c617
Binary files /dev/null and b/animateditems/2447.png differ
diff --git a/animateditems/2448.gif b/animateditems/2448.gif
new file mode 100644
index 00000000..63dd0032
Binary files /dev/null and b/animateditems/2448.gif differ
diff --git a/animateditems/2448.png b/animateditems/2448.png
new file mode 100644
index 00000000..c85ef40d
Binary files /dev/null and b/animateditems/2448.png differ
diff --git a/animateditems/2449.gif b/animateditems/2449.gif
new file mode 100644
index 00000000..2b6248b0
Binary files /dev/null and b/animateditems/2449.gif differ
diff --git a/animateditems/2449.png b/animateditems/2449.png
new file mode 100644
index 00000000..fb7a8752
Binary files /dev/null and b/animateditems/2449.png differ
diff --git a/animateditems/2450.gif b/animateditems/2450.gif
new file mode 100644
index 00000000..3bb1fb70
Binary files /dev/null and b/animateditems/2450.gif differ
diff --git a/animateditems/2450.png b/animateditems/2450.png
new file mode 100644
index 00000000..f92e0f38
Binary files /dev/null and b/animateditems/2450.png differ
diff --git a/animateditems/2451.gif b/animateditems/2451.gif
new file mode 100644
index 00000000..21ed9ddf
Binary files /dev/null and b/animateditems/2451.gif differ
diff --git a/animateditems/2451.png b/animateditems/2451.png
new file mode 100644
index 00000000..bcbea8a9
Binary files /dev/null and b/animateditems/2451.png differ
diff --git a/animateditems/2452.gif b/animateditems/2452.gif
new file mode 100644
index 00000000..a17a4d29
Binary files /dev/null and b/animateditems/2452.gif differ
diff --git a/animateditems/2452.png b/animateditems/2452.png
new file mode 100644
index 00000000..14b4be13
Binary files /dev/null and b/animateditems/2452.png differ
diff --git a/animateditems/2453.gif b/animateditems/2453.gif
new file mode 100644
index 00000000..c49206b1
Binary files /dev/null and b/animateditems/2453.gif differ
diff --git a/animateditems/2453.png b/animateditems/2453.png
new file mode 100644
index 00000000..43aedb90
Binary files /dev/null and b/animateditems/2453.png differ
diff --git a/animateditems/2454.gif b/animateditems/2454.gif
new file mode 100644
index 00000000..23906dec
Binary files /dev/null and b/animateditems/2454.gif differ
diff --git a/animateditems/2454.png b/animateditems/2454.png
new file mode 100644
index 00000000..4481bec6
Binary files /dev/null and b/animateditems/2454.png differ
diff --git a/animateditems/2455.gif b/animateditems/2455.gif
new file mode 100644
index 00000000..f4b75d5e
Binary files /dev/null and b/animateditems/2455.gif differ
diff --git a/animateditems/2455.png b/animateditems/2455.png
new file mode 100644
index 00000000..7405e4a4
Binary files /dev/null and b/animateditems/2455.png differ
diff --git a/animateditems/2456.gif b/animateditems/2456.gif
new file mode 100644
index 00000000..8bf90edb
Binary files /dev/null and b/animateditems/2456.gif differ
diff --git a/animateditems/2456.png b/animateditems/2456.png
new file mode 100644
index 00000000..1636570c
Binary files /dev/null and b/animateditems/2456.png differ
diff --git a/animateditems/2457.gif b/animateditems/2457.gif
new file mode 100644
index 00000000..bad3e689
Binary files /dev/null and b/animateditems/2457.gif differ
diff --git a/animateditems/2457.png b/animateditems/2457.png
new file mode 100644
index 00000000..5a399598
Binary files /dev/null and b/animateditems/2457.png differ
diff --git a/animateditems/2458.gif b/animateditems/2458.gif
new file mode 100644
index 00000000..6a74dcfc
Binary files /dev/null and b/animateditems/2458.gif differ
diff --git a/animateditems/2458.png b/animateditems/2458.png
new file mode 100644
index 00000000..9cdfd44b
Binary files /dev/null and b/animateditems/2458.png differ
diff --git a/animateditems/2459.gif b/animateditems/2459.gif
new file mode 100644
index 00000000..edcdb593
Binary files /dev/null and b/animateditems/2459.gif differ
diff --git a/animateditems/2459.png b/animateditems/2459.png
new file mode 100644
index 00000000..eb4aba00
Binary files /dev/null and b/animateditems/2459.png differ
diff --git a/animateditems/2460.gif b/animateditems/2460.gif
new file mode 100644
index 00000000..81c2debb
Binary files /dev/null and b/animateditems/2460.gif differ
diff --git a/animateditems/2460.png b/animateditems/2460.png
new file mode 100644
index 00000000..685e25ef
Binary files /dev/null and b/animateditems/2460.png differ
diff --git a/animateditems/2461.gif b/animateditems/2461.gif
new file mode 100644
index 00000000..c59b251c
Binary files /dev/null and b/animateditems/2461.gif differ
diff --git a/animateditems/2461.png b/animateditems/2461.png
new file mode 100644
index 00000000..9cc03692
Binary files /dev/null and b/animateditems/2461.png differ
diff --git a/animateditems/2462.gif b/animateditems/2462.gif
new file mode 100644
index 00000000..1bdb7130
Binary files /dev/null and b/animateditems/2462.gif differ
diff --git a/animateditems/2462.png b/animateditems/2462.png
new file mode 100644
index 00000000..d81a7785
Binary files /dev/null and b/animateditems/2462.png differ
diff --git a/animateditems/2463.gif b/animateditems/2463.gif
new file mode 100644
index 00000000..382c8750
Binary files /dev/null and b/animateditems/2463.gif differ
diff --git a/animateditems/2463.png b/animateditems/2463.png
new file mode 100644
index 00000000..67b2aa68
Binary files /dev/null and b/animateditems/2463.png differ
diff --git a/animateditems/24630.gif b/animateditems/24630.gif
new file mode 100644
index 00000000..409b0b61
Binary files /dev/null and b/animateditems/24630.gif differ
diff --git a/animateditems/24630.png b/animateditems/24630.png
new file mode 100644
index 00000000..acb28e3a
Binary files /dev/null and b/animateditems/24630.png differ
diff --git a/animateditems/24631.gif b/animateditems/24631.gif
new file mode 100644
index 00000000..7ee78d6e
Binary files /dev/null and b/animateditems/24631.gif differ
diff --git a/animateditems/24631.png b/animateditems/24631.png
new file mode 100644
index 00000000..88643f1c
Binary files /dev/null and b/animateditems/24631.png differ
diff --git a/animateditems/24637.gif b/animateditems/24637.gif
new file mode 100644
index 00000000..f6c9bde7
Binary files /dev/null and b/animateditems/24637.gif differ
diff --git a/animateditems/24637.png b/animateditems/24637.png
new file mode 100644
index 00000000..e5f59583
Binary files /dev/null and b/animateditems/24637.png differ
diff --git a/animateditems/24638.gif b/animateditems/24638.gif
new file mode 100644
index 00000000..8c365bbc
Binary files /dev/null and b/animateditems/24638.gif differ
diff --git a/animateditems/24638.png b/animateditems/24638.png
new file mode 100644
index 00000000..46712092
Binary files /dev/null and b/animateditems/24638.png differ
diff --git a/animateditems/2464.gif b/animateditems/2464.gif
new file mode 100644
index 00000000..cbcd1f57
Binary files /dev/null and b/animateditems/2464.gif differ
diff --git a/animateditems/2464.png b/animateditems/2464.png
new file mode 100644
index 00000000..937f1334
Binary files /dev/null and b/animateditems/2464.png differ
diff --git a/animateditems/2465.gif b/animateditems/2465.gif
new file mode 100644
index 00000000..4dac4222
Binary files /dev/null and b/animateditems/2465.gif differ
diff --git a/animateditems/2465.png b/animateditems/2465.png
new file mode 100644
index 00000000..0f740791
Binary files /dev/null and b/animateditems/2465.png differ
diff --git a/animateditems/2466.gif b/animateditems/2466.gif
new file mode 100644
index 00000000..c9e8960a
Binary files /dev/null and b/animateditems/2466.gif differ
diff --git a/animateditems/2466.png b/animateditems/2466.png
new file mode 100644
index 00000000..ce9c78fe
Binary files /dev/null and b/animateditems/2466.png differ
diff --git a/animateditems/24663.gif b/animateditems/24663.gif
new file mode 100644
index 00000000..beabcf91
Binary files /dev/null and b/animateditems/24663.gif differ
diff --git a/animateditems/24663.png b/animateditems/24663.png
new file mode 100644
index 00000000..98b6ec04
Binary files /dev/null and b/animateditems/24663.png differ
diff --git a/animateditems/24664.gif b/animateditems/24664.gif
new file mode 100644
index 00000000..0faddcaa
Binary files /dev/null and b/animateditems/24664.gif differ
diff --git a/animateditems/24664.png b/animateditems/24664.png
new file mode 100644
index 00000000..9a6c2329
Binary files /dev/null and b/animateditems/24664.png differ
diff --git a/animateditems/24665.gif b/animateditems/24665.gif
new file mode 100644
index 00000000..0faddcaa
Binary files /dev/null and b/animateditems/24665.gif differ
diff --git a/animateditems/24665.png b/animateditems/24665.png
new file mode 100644
index 00000000..9a6c2329
Binary files /dev/null and b/animateditems/24665.png differ
diff --git a/animateditems/2467.gif b/animateditems/2467.gif
new file mode 100644
index 00000000..93554b40
Binary files /dev/null and b/animateditems/2467.gif differ
diff --git a/animateditems/2467.png b/animateditems/2467.png
new file mode 100644
index 00000000..75c3fe3e
Binary files /dev/null and b/animateditems/2467.png differ
diff --git a/animateditems/2468.gif b/animateditems/2468.gif
new file mode 100644
index 00000000..655bbef4
Binary files /dev/null and b/animateditems/2468.gif differ
diff --git a/animateditems/2468.png b/animateditems/2468.png
new file mode 100644
index 00000000..38809ec2
Binary files /dev/null and b/animateditems/2468.png differ
diff --git a/animateditems/24682.gif b/animateditems/24682.gif
new file mode 100644
index 00000000..94009047
Binary files /dev/null and b/animateditems/24682.gif differ
diff --git a/animateditems/24682.png b/animateditems/24682.png
new file mode 100644
index 00000000..3282e696
Binary files /dev/null and b/animateditems/24682.png differ
diff --git a/animateditems/24683.gif b/animateditems/24683.gif
new file mode 100644
index 00000000..a9e1c79a
Binary files /dev/null and b/animateditems/24683.gif differ
diff --git a/animateditems/24683.png b/animateditems/24683.png
new file mode 100644
index 00000000..7285a225
Binary files /dev/null and b/animateditems/24683.png differ
diff --git a/animateditems/24684.gif b/animateditems/24684.gif
new file mode 100644
index 00000000..24b2289e
Binary files /dev/null and b/animateditems/24684.gif differ
diff --git a/animateditems/24684.png b/animateditems/24684.png
new file mode 100644
index 00000000..d5afc1fd
Binary files /dev/null and b/animateditems/24684.png differ
diff --git a/animateditems/2469.gif b/animateditems/2469.gif
new file mode 100644
index 00000000..4da347a0
Binary files /dev/null and b/animateditems/2469.gif differ
diff --git a/animateditems/2469.png b/animateditems/2469.png
new file mode 100644
index 00000000..813ac26c
Binary files /dev/null and b/animateditems/2469.png differ
diff --git a/animateditems/24699.gif b/animateditems/24699.gif
new file mode 100644
index 00000000..cd1d676b
Binary files /dev/null and b/animateditems/24699.gif differ
diff --git a/animateditems/24699.png b/animateditems/24699.png
new file mode 100644
index 00000000..9cf349a3
Binary files /dev/null and b/animateditems/24699.png differ
diff --git a/animateditems/2470.gif b/animateditems/2470.gif
new file mode 100644
index 00000000..36523dc8
Binary files /dev/null and b/animateditems/2470.gif differ
diff --git a/animateditems/2470.png b/animateditems/2470.png
new file mode 100644
index 00000000..1662feb2
Binary files /dev/null and b/animateditems/2470.png differ
diff --git a/animateditems/24702.gif b/animateditems/24702.gif
new file mode 100644
index 00000000..0c9158f8
Binary files /dev/null and b/animateditems/24702.gif differ
diff --git a/animateditems/24702.png b/animateditems/24702.png
new file mode 100644
index 00000000..1dfccb80
Binary files /dev/null and b/animateditems/24702.png differ
diff --git a/animateditems/24703.gif b/animateditems/24703.gif
new file mode 100644
index 00000000..b32adef2
Binary files /dev/null and b/animateditems/24703.gif differ
diff --git a/animateditems/24703.png b/animateditems/24703.png
new file mode 100644
index 00000000..d6b91646
Binary files /dev/null and b/animateditems/24703.png differ
diff --git a/animateditems/24704.gif b/animateditems/24704.gif
new file mode 100644
index 00000000..933d0a25
Binary files /dev/null and b/animateditems/24704.gif differ
diff --git a/animateditems/24704.png b/animateditems/24704.png
new file mode 100644
index 00000000..3b75927c
Binary files /dev/null and b/animateditems/24704.png differ
diff --git a/animateditems/24705.gif b/animateditems/24705.gif
new file mode 100644
index 00000000..ce48be25
Binary files /dev/null and b/animateditems/24705.gif differ
diff --git a/animateditems/24705.png b/animateditems/24705.png
new file mode 100644
index 00000000..da1b25fc
Binary files /dev/null and b/animateditems/24705.png differ
diff --git a/animateditems/24706.gif b/animateditems/24706.gif
new file mode 100644
index 00000000..3b305733
Binary files /dev/null and b/animateditems/24706.gif differ
diff --git a/animateditems/24706.png b/animateditems/24706.png
new file mode 100644
index 00000000..9bac1fce
Binary files /dev/null and b/animateditems/24706.png differ
diff --git a/animateditems/24707.gif b/animateditems/24707.gif
new file mode 100644
index 00000000..009a7b78
Binary files /dev/null and b/animateditems/24707.gif differ
diff --git a/animateditems/24707.png b/animateditems/24707.png
new file mode 100644
index 00000000..1a18c26c
Binary files /dev/null and b/animateditems/24707.png differ
diff --git a/animateditems/24708.gif b/animateditems/24708.gif
new file mode 100644
index 00000000..cf7615a8
Binary files /dev/null and b/animateditems/24708.gif differ
diff --git a/animateditems/24708.png b/animateditems/24708.png
new file mode 100644
index 00000000..6be9ec4b
Binary files /dev/null and b/animateditems/24708.png differ
diff --git a/animateditems/24709.gif b/animateditems/24709.gif
new file mode 100644
index 00000000..e8c251a5
Binary files /dev/null and b/animateditems/24709.gif differ
diff --git a/animateditems/24709.png b/animateditems/24709.png
new file mode 100644
index 00000000..0e5169b4
Binary files /dev/null and b/animateditems/24709.png differ
diff --git a/animateditems/2471.gif b/animateditems/2471.gif
new file mode 100644
index 00000000..61b5d75e
Binary files /dev/null and b/animateditems/2471.gif differ
diff --git a/animateditems/2471.png b/animateditems/2471.png
new file mode 100644
index 00000000..3344c9dd
Binary files /dev/null and b/animateditems/2471.png differ
diff --git a/animateditems/24710.gif b/animateditems/24710.gif
new file mode 100644
index 00000000..8c206d82
Binary files /dev/null and b/animateditems/24710.gif differ
diff --git a/animateditems/24710.png b/animateditems/24710.png
new file mode 100644
index 00000000..3cb67f9e
Binary files /dev/null and b/animateditems/24710.png differ
diff --git a/animateditems/24711.gif b/animateditems/24711.gif
new file mode 100644
index 00000000..e34f8fb2
Binary files /dev/null and b/animateditems/24711.gif differ
diff --git a/animateditems/24711.png b/animateditems/24711.png
new file mode 100644
index 00000000..b33facba
Binary files /dev/null and b/animateditems/24711.png differ
diff --git a/animateditems/24712.gif b/animateditems/24712.gif
new file mode 100644
index 00000000..b1a7305d
Binary files /dev/null and b/animateditems/24712.gif differ
diff --git a/animateditems/24712.png b/animateditems/24712.png
new file mode 100644
index 00000000..d96cccba
Binary files /dev/null and b/animateditems/24712.png differ
diff --git a/animateditems/24713.gif b/animateditems/24713.gif
new file mode 100644
index 00000000..4ea9add3
Binary files /dev/null and b/animateditems/24713.gif differ
diff --git a/animateditems/24713.png b/animateditems/24713.png
new file mode 100644
index 00000000..53cacc2d
Binary files /dev/null and b/animateditems/24713.png differ
diff --git a/animateditems/24714.gif b/animateditems/24714.gif
new file mode 100644
index 00000000..54fa4613
Binary files /dev/null and b/animateditems/24714.gif differ
diff --git a/animateditems/24714.png b/animateditems/24714.png
new file mode 100644
index 00000000..7938c363
Binary files /dev/null and b/animateditems/24714.png differ
diff --git a/animateditems/24716.gif b/animateditems/24716.gif
new file mode 100644
index 00000000..4981a97c
Binary files /dev/null and b/animateditems/24716.gif differ
diff --git a/animateditems/24716.png b/animateditems/24716.png
new file mode 100644
index 00000000..8b2c3b6e
Binary files /dev/null and b/animateditems/24716.png differ
diff --git a/animateditems/24717.gif b/animateditems/24717.gif
new file mode 100644
index 00000000..8f8bc6a5
Binary files /dev/null and b/animateditems/24717.gif differ
diff --git a/animateditems/24717.png b/animateditems/24717.png
new file mode 100644
index 00000000..f21978d7
Binary files /dev/null and b/animateditems/24717.png differ
diff --git a/animateditems/24718.gif b/animateditems/24718.gif
new file mode 100644
index 00000000..61bb188f
Binary files /dev/null and b/animateditems/24718.gif differ
diff --git a/animateditems/24718.png b/animateditems/24718.png
new file mode 100644
index 00000000..f0a368ea
Binary files /dev/null and b/animateditems/24718.png differ
diff --git a/animateditems/2472.gif b/animateditems/2472.gif
new file mode 100644
index 00000000..890c41fc
Binary files /dev/null and b/animateditems/2472.gif differ
diff --git a/animateditems/2472.png b/animateditems/2472.png
new file mode 100644
index 00000000..d3b891fa
Binary files /dev/null and b/animateditems/2472.png differ
diff --git a/animateditems/2473.gif b/animateditems/2473.gif
new file mode 100644
index 00000000..b64f8b44
Binary files /dev/null and b/animateditems/2473.gif differ
diff --git a/animateditems/2473.png b/animateditems/2473.png
new file mode 100644
index 00000000..fc7bb508
Binary files /dev/null and b/animateditems/2473.png differ
diff --git a/animateditems/24730.gif b/animateditems/24730.gif
new file mode 100644
index 00000000..7dccfb0c
Binary files /dev/null and b/animateditems/24730.gif differ
diff --git a/animateditems/24730.png b/animateditems/24730.png
new file mode 100644
index 00000000..1b71a2b7
Binary files /dev/null and b/animateditems/24730.png differ
diff --git a/animateditems/24738.gif b/animateditems/24738.gif
new file mode 100644
index 00000000..9d424f8f
Binary files /dev/null and b/animateditems/24738.gif differ
diff --git a/animateditems/24738.png b/animateditems/24738.png
new file mode 100644
index 00000000..f66e3dbb
Binary files /dev/null and b/animateditems/24738.png differ
diff --git a/animateditems/24739.gif b/animateditems/24739.gif
new file mode 100644
index 00000000..9a708862
Binary files /dev/null and b/animateditems/24739.gif differ
diff --git a/animateditems/24739.png b/animateditems/24739.png
new file mode 100644
index 00000000..4b544d76
Binary files /dev/null and b/animateditems/24739.png differ
diff --git a/animateditems/2474.gif b/animateditems/2474.gif
new file mode 100644
index 00000000..c4ec54bc
Binary files /dev/null and b/animateditems/2474.gif differ
diff --git a/animateditems/2474.png b/animateditems/2474.png
new file mode 100644
index 00000000..5266ebc2
Binary files /dev/null and b/animateditems/2474.png differ
diff --git a/animateditems/24740.gif b/animateditems/24740.gif
new file mode 100644
index 00000000..5212e515
Binary files /dev/null and b/animateditems/24740.gif differ
diff --git a/animateditems/24740.png b/animateditems/24740.png
new file mode 100644
index 00000000..6617768f
Binary files /dev/null and b/animateditems/24740.png differ
diff --git a/animateditems/24741.gif b/animateditems/24741.gif
new file mode 100644
index 00000000..b28b75b6
Binary files /dev/null and b/animateditems/24741.gif differ
diff --git a/animateditems/24741.png b/animateditems/24741.png
new file mode 100644
index 00000000..e0d54107
Binary files /dev/null and b/animateditems/24741.png differ
diff --git a/animateditems/24742.gif b/animateditems/24742.gif
new file mode 100644
index 00000000..a5add2f9
Binary files /dev/null and b/animateditems/24742.gif differ
diff --git a/animateditems/24742.png b/animateditems/24742.png
new file mode 100644
index 00000000..4bda0482
Binary files /dev/null and b/animateditems/24742.png differ
diff --git a/animateditems/24743.gif b/animateditems/24743.gif
new file mode 100644
index 00000000..26396708
Binary files /dev/null and b/animateditems/24743.gif differ
diff --git a/animateditems/24743.png b/animateditems/24743.png
new file mode 100644
index 00000000..bd0e635e
Binary files /dev/null and b/animateditems/24743.png differ
diff --git a/animateditems/24744.gif b/animateditems/24744.gif
new file mode 100644
index 00000000..49632394
Binary files /dev/null and b/animateditems/24744.gif differ
diff --git a/animateditems/24744.png b/animateditems/24744.png
new file mode 100644
index 00000000..01edc89f
Binary files /dev/null and b/animateditems/24744.png differ
diff --git a/animateditems/2475.gif b/animateditems/2475.gif
new file mode 100644
index 00000000..8f77ede3
Binary files /dev/null and b/animateditems/2475.gif differ
diff --git a/animateditems/2475.png b/animateditems/2475.png
new file mode 100644
index 00000000..b2fb42ce
Binary files /dev/null and b/animateditems/2475.png differ
diff --git a/animateditems/24757.gif b/animateditems/24757.gif
new file mode 100644
index 00000000..e5af8b90
Binary files /dev/null and b/animateditems/24757.gif differ
diff --git a/animateditems/24757.png b/animateditems/24757.png
new file mode 100644
index 00000000..f30890fe
Binary files /dev/null and b/animateditems/24757.png differ
diff --git a/animateditems/24758.gif b/animateditems/24758.gif
new file mode 100644
index 00000000..35e64782
Binary files /dev/null and b/animateditems/24758.gif differ
diff --git a/animateditems/24758.png b/animateditems/24758.png
new file mode 100644
index 00000000..521fef57
Binary files /dev/null and b/animateditems/24758.png differ
diff --git a/animateditems/24759.gif b/animateditems/24759.gif
new file mode 100644
index 00000000..8c3098f3
Binary files /dev/null and b/animateditems/24759.gif differ
diff --git a/animateditems/24759.png b/animateditems/24759.png
new file mode 100644
index 00000000..3292441f
Binary files /dev/null and b/animateditems/24759.png differ
diff --git a/animateditems/2476.gif b/animateditems/2476.gif
new file mode 100644
index 00000000..d19c9b92
Binary files /dev/null and b/animateditems/2476.gif differ
diff --git a/animateditems/2476.png b/animateditems/2476.png
new file mode 100644
index 00000000..bbf5f021
Binary files /dev/null and b/animateditems/2476.png differ
diff --git a/animateditems/24760.gif b/animateditems/24760.gif
new file mode 100644
index 00000000..20c07c6e
Binary files /dev/null and b/animateditems/24760.gif differ
diff --git a/animateditems/24760.png b/animateditems/24760.png
new file mode 100644
index 00000000..5f15699c
Binary files /dev/null and b/animateditems/24760.png differ
diff --git a/animateditems/24763.gif b/animateditems/24763.gif
new file mode 100644
index 00000000..3acdde90
Binary files /dev/null and b/animateditems/24763.gif differ
diff --git a/animateditems/24763.png b/animateditems/24763.png
new file mode 100644
index 00000000..79e0fee2
Binary files /dev/null and b/animateditems/24763.png differ
diff --git a/animateditems/24769.gif b/animateditems/24769.gif
new file mode 100644
index 00000000..49632394
Binary files /dev/null and b/animateditems/24769.gif differ
diff --git a/animateditems/24769.png b/animateditems/24769.png
new file mode 100644
index 00000000..01edc89f
Binary files /dev/null and b/animateditems/24769.png differ
diff --git a/animateditems/2477.gif b/animateditems/2477.gif
new file mode 100644
index 00000000..eb859389
Binary files /dev/null and b/animateditems/2477.gif differ
diff --git a/animateditems/2477.png b/animateditems/2477.png
new file mode 100644
index 00000000..771019d8
Binary files /dev/null and b/animateditems/2477.png differ
diff --git a/animateditems/24770.gif b/animateditems/24770.gif
new file mode 100644
index 00000000..49632394
Binary files /dev/null and b/animateditems/24770.gif differ
diff --git a/animateditems/24770.png b/animateditems/24770.png
new file mode 100644
index 00000000..01edc89f
Binary files /dev/null and b/animateditems/24770.png differ
diff --git a/animateditems/24771.gif b/animateditems/24771.gif
new file mode 100644
index 00000000..49632394
Binary files /dev/null and b/animateditems/24771.gif differ
diff --git a/animateditems/24771.png b/animateditems/24771.png
new file mode 100644
index 00000000..01edc89f
Binary files /dev/null and b/animateditems/24771.png differ
diff --git a/animateditems/24772.gif b/animateditems/24772.gif
new file mode 100644
index 00000000..49632394
Binary files /dev/null and b/animateditems/24772.gif differ
diff --git a/animateditems/24772.png b/animateditems/24772.png
new file mode 100644
index 00000000..01edc89f
Binary files /dev/null and b/animateditems/24772.png differ
diff --git a/animateditems/24774.gif b/animateditems/24774.gif
new file mode 100644
index 00000000..605ea9a9
Binary files /dev/null and b/animateditems/24774.gif differ
diff --git a/animateditems/24774.png b/animateditems/24774.png
new file mode 100644
index 00000000..cb53ee3a
Binary files /dev/null and b/animateditems/24774.png differ
diff --git a/animateditems/24775.gif b/animateditems/24775.gif
new file mode 100644
index 00000000..30e54cac
Binary files /dev/null and b/animateditems/24775.gif differ
diff --git a/animateditems/24775.png b/animateditems/24775.png
new file mode 100644
index 00000000..59563462
Binary files /dev/null and b/animateditems/24775.png differ
diff --git a/animateditems/24776.gif b/animateditems/24776.gif
new file mode 100644
index 00000000..f24bc3b5
Binary files /dev/null and b/animateditems/24776.gif differ
diff --git a/animateditems/24776.png b/animateditems/24776.png
new file mode 100644
index 00000000..b9a98a31
Binary files /dev/null and b/animateditems/24776.png differ
diff --git a/animateditems/24777.gif b/animateditems/24777.gif
new file mode 100644
index 00000000..ef1ac31a
Binary files /dev/null and b/animateditems/24777.gif differ
diff --git a/animateditems/24777.png b/animateditems/24777.png
new file mode 100644
index 00000000..d9bcdc90
Binary files /dev/null and b/animateditems/24777.png differ
diff --git a/animateditems/2478.gif b/animateditems/2478.gif
new file mode 100644
index 00000000..d5743236
Binary files /dev/null and b/animateditems/2478.gif differ
diff --git a/animateditems/2478.png b/animateditems/2478.png
new file mode 100644
index 00000000..4d760667
Binary files /dev/null and b/animateditems/2478.png differ
diff --git a/animateditems/24783.gif b/animateditems/24783.gif
new file mode 100644
index 00000000..49632394
Binary files /dev/null and b/animateditems/24783.gif differ
diff --git a/animateditems/24783.png b/animateditems/24783.png
new file mode 100644
index 00000000..01edc89f
Binary files /dev/null and b/animateditems/24783.png differ
diff --git a/animateditems/24784.gif b/animateditems/24784.gif
new file mode 100644
index 00000000..49632394
Binary files /dev/null and b/animateditems/24784.gif differ
diff --git a/animateditems/24784.png b/animateditems/24784.png
new file mode 100644
index 00000000..01edc89f
Binary files /dev/null and b/animateditems/24784.png differ
diff --git a/animateditems/24785.gif b/animateditems/24785.gif
new file mode 100644
index 00000000..49632394
Binary files /dev/null and b/animateditems/24785.gif differ
diff --git a/animateditems/24785.png b/animateditems/24785.png
new file mode 100644
index 00000000..01edc89f
Binary files /dev/null and b/animateditems/24785.png differ
diff --git a/animateditems/24786.gif b/animateditems/24786.gif
new file mode 100644
index 00000000..49632394
Binary files /dev/null and b/animateditems/24786.gif differ
diff --git a/animateditems/24786.png b/animateditems/24786.png
new file mode 100644
index 00000000..01edc89f
Binary files /dev/null and b/animateditems/24786.png differ
diff --git a/animateditems/24788.gif b/animateditems/24788.gif
new file mode 100644
index 00000000..49632394
Binary files /dev/null and b/animateditems/24788.gif differ
diff --git a/animateditems/24788.png b/animateditems/24788.png
new file mode 100644
index 00000000..01edc89f
Binary files /dev/null and b/animateditems/24788.png differ
diff --git a/animateditems/2479.gif b/animateditems/2479.gif
new file mode 100644
index 00000000..181c27f9
Binary files /dev/null and b/animateditems/2479.gif differ
diff --git a/animateditems/2479.png b/animateditems/2479.png
new file mode 100644
index 00000000..4ce12a6a
Binary files /dev/null and b/animateditems/2479.png differ
diff --git a/animateditems/24790.gif b/animateditems/24790.gif
new file mode 100644
index 00000000..8f8bc6a5
Binary files /dev/null and b/animateditems/24790.gif differ
diff --git a/animateditems/24790.png b/animateditems/24790.png
new file mode 100644
index 00000000..f21978d7
Binary files /dev/null and b/animateditems/24790.png differ
diff --git a/animateditems/2480.gif b/animateditems/2480.gif
new file mode 100644
index 00000000..f8298a9a
Binary files /dev/null and b/animateditems/2480.gif differ
diff --git a/animateditems/2480.png b/animateditems/2480.png
new file mode 100644
index 00000000..b8a1bf77
Binary files /dev/null and b/animateditems/2480.png differ
diff --git a/animateditems/24807.gif b/animateditems/24807.gif
new file mode 100644
index 00000000..e103889b
Binary files /dev/null and b/animateditems/24807.gif differ
diff --git a/animateditems/24807.png b/animateditems/24807.png
new file mode 100644
index 00000000..5ec19b2e
Binary files /dev/null and b/animateditems/24807.png differ
diff --git a/animateditems/24808.gif b/animateditems/24808.gif
new file mode 100644
index 00000000..e103889b
Binary files /dev/null and b/animateditems/24808.gif differ
diff --git a/animateditems/24808.png b/animateditems/24808.png
new file mode 100644
index 00000000..5ec19b2e
Binary files /dev/null and b/animateditems/24808.png differ
diff --git a/animateditems/24809.gif b/animateditems/24809.gif
new file mode 100644
index 00000000..b9fb625f
Binary files /dev/null and b/animateditems/24809.gif differ
diff --git a/animateditems/24809.png b/animateditems/24809.png
new file mode 100644
index 00000000..892c6d9b
Binary files /dev/null and b/animateditems/24809.png differ
diff --git a/animateditems/2481.gif b/animateditems/2481.gif
new file mode 100644
index 00000000..03876082
Binary files /dev/null and b/animateditems/2481.gif differ
diff --git a/animateditems/2481.png b/animateditems/2481.png
new file mode 100644
index 00000000..1908dcd5
Binary files /dev/null and b/animateditems/2481.png differ
diff --git a/animateditems/24810.gif b/animateditems/24810.gif
new file mode 100644
index 00000000..e0a14e03
Binary files /dev/null and b/animateditems/24810.gif differ
diff --git a/animateditems/24810.png b/animateditems/24810.png
new file mode 100644
index 00000000..afa4e492
Binary files /dev/null and b/animateditems/24810.png differ
diff --git a/animateditems/24814.gif b/animateditems/24814.gif
new file mode 100644
index 00000000..6df7059f
Binary files /dev/null and b/animateditems/24814.gif differ
diff --git a/animateditems/24814.png b/animateditems/24814.png
new file mode 100644
index 00000000..9f6a427d
Binary files /dev/null and b/animateditems/24814.png differ
diff --git a/animateditems/24815.gif b/animateditems/24815.gif
new file mode 100644
index 00000000..6df7059f
Binary files /dev/null and b/animateditems/24815.gif differ
diff --git a/animateditems/24815.png b/animateditems/24815.png
new file mode 100644
index 00000000..9f6a427d
Binary files /dev/null and b/animateditems/24815.png differ
diff --git a/animateditems/24816.gif b/animateditems/24816.gif
new file mode 100644
index 00000000..607824b5
Binary files /dev/null and b/animateditems/24816.gif differ
diff --git a/animateditems/24816.png b/animateditems/24816.png
new file mode 100644
index 00000000..002df770
Binary files /dev/null and b/animateditems/24816.png differ
diff --git a/animateditems/2482.gif b/animateditems/2482.gif
new file mode 100644
index 00000000..bc90ea43
Binary files /dev/null and b/animateditems/2482.gif differ
diff --git a/animateditems/2482.png b/animateditems/2482.png
new file mode 100644
index 00000000..c0515ce4
Binary files /dev/null and b/animateditems/2482.png differ
diff --git a/animateditems/24826.gif b/animateditems/24826.gif
new file mode 100644
index 00000000..5a71a530
Binary files /dev/null and b/animateditems/24826.gif differ
diff --git a/animateditems/24826.png b/animateditems/24826.png
new file mode 100644
index 00000000..a585f056
Binary files /dev/null and b/animateditems/24826.png differ
diff --git a/animateditems/24827.gif b/animateditems/24827.gif
new file mode 100644
index 00000000..7a25adc2
Binary files /dev/null and b/animateditems/24827.gif differ
diff --git a/animateditems/24827.png b/animateditems/24827.png
new file mode 100644
index 00000000..e741eee4
Binary files /dev/null and b/animateditems/24827.png differ
diff --git a/animateditems/24828.gif b/animateditems/24828.gif
new file mode 100644
index 00000000..1c657c39
Binary files /dev/null and b/animateditems/24828.gif differ
diff --git a/animateditems/24828.png b/animateditems/24828.png
new file mode 100644
index 00000000..e141d2da
Binary files /dev/null and b/animateditems/24828.png differ
diff --git a/animateditems/2483.gif b/animateditems/2483.gif
new file mode 100644
index 00000000..cd2b0ebc
Binary files /dev/null and b/animateditems/2483.gif differ
diff --git a/animateditems/2483.png b/animateditems/2483.png
new file mode 100644
index 00000000..5fe31fc6
Binary files /dev/null and b/animateditems/2483.png differ
diff --git a/animateditems/24838.gif b/animateditems/24838.gif
new file mode 100644
index 00000000..cb9b8d35
Binary files /dev/null and b/animateditems/24838.gif differ
diff --git a/animateditems/24838.png b/animateditems/24838.png
new file mode 100644
index 00000000..f952ed79
Binary files /dev/null and b/animateditems/24838.png differ
diff --git a/animateditems/24839.gif b/animateditems/24839.gif
new file mode 100644
index 00000000..e1a6f47f
Binary files /dev/null and b/animateditems/24839.gif differ
diff --git a/animateditems/24839.png b/animateditems/24839.png
new file mode 100644
index 00000000..c94725cd
Binary files /dev/null and b/animateditems/24839.png differ
diff --git a/animateditems/2484.gif b/animateditems/2484.gif
new file mode 100644
index 00000000..97a24d33
Binary files /dev/null and b/animateditems/2484.gif differ
diff --git a/animateditems/2484.png b/animateditems/2484.png
new file mode 100644
index 00000000..925b766e
Binary files /dev/null and b/animateditems/2484.png differ
diff --git a/animateditems/24840.gif b/animateditems/24840.gif
new file mode 100644
index 00000000..592c54c3
Binary files /dev/null and b/animateditems/24840.gif differ
diff --git a/animateditems/24840.png b/animateditems/24840.png
new file mode 100644
index 00000000..f0e385a6
Binary files /dev/null and b/animateditems/24840.png differ
diff --git a/animateditems/24841.gif b/animateditems/24841.gif
new file mode 100644
index 00000000..48ae1f4a
Binary files /dev/null and b/animateditems/24841.gif differ
diff --git a/animateditems/24841.png b/animateditems/24841.png
new file mode 100644
index 00000000..056ff93e
Binary files /dev/null and b/animateditems/24841.png differ
diff --git a/animateditems/24842.gif b/animateditems/24842.gif
new file mode 100644
index 00000000..28dbb676
Binary files /dev/null and b/animateditems/24842.gif differ
diff --git a/animateditems/24842.png b/animateditems/24842.png
new file mode 100644
index 00000000..c6044264
Binary files /dev/null and b/animateditems/24842.png differ
diff --git a/animateditems/24843.gif b/animateditems/24843.gif
new file mode 100644
index 00000000..419cc45b
Binary files /dev/null and b/animateditems/24843.gif differ
diff --git a/animateditems/24843.png b/animateditems/24843.png
new file mode 100644
index 00000000..e51974a6
Binary files /dev/null and b/animateditems/24843.png differ
diff --git a/animateditems/24844.gif b/animateditems/24844.gif
new file mode 100644
index 00000000..b5ebbd50
Binary files /dev/null and b/animateditems/24844.gif differ
diff --git a/animateditems/24844.png b/animateditems/24844.png
new file mode 100644
index 00000000..f53cd697
Binary files /dev/null and b/animateditems/24844.png differ
diff --git a/animateditems/24845.gif b/animateditems/24845.gif
new file mode 100644
index 00000000..0e6c561c
Binary files /dev/null and b/animateditems/24845.gif differ
diff --git a/animateditems/24845.png b/animateditems/24845.png
new file mode 100644
index 00000000..7c56294a
Binary files /dev/null and b/animateditems/24845.png differ
diff --git a/animateditems/24846.gif b/animateditems/24846.gif
new file mode 100644
index 00000000..6952cacf
Binary files /dev/null and b/animateditems/24846.gif differ
diff --git a/animateditems/24846.png b/animateditems/24846.png
new file mode 100644
index 00000000..c6ad16be
Binary files /dev/null and b/animateditems/24846.png differ
diff --git a/animateditems/24847.gif b/animateditems/24847.gif
new file mode 100644
index 00000000..eee73bd2
Binary files /dev/null and b/animateditems/24847.gif differ
diff --git a/animateditems/24847.png b/animateditems/24847.png
new file mode 100644
index 00000000..e7bf5a08
Binary files /dev/null and b/animateditems/24847.png differ
diff --git a/animateditems/24848.gif b/animateditems/24848.gif
new file mode 100644
index 00000000..f952e2bc
Binary files /dev/null and b/animateditems/24848.gif differ
diff --git a/animateditems/24848.png b/animateditems/24848.png
new file mode 100644
index 00000000..08056cfa
Binary files /dev/null and b/animateditems/24848.png differ
diff --git a/animateditems/24849.gif b/animateditems/24849.gif
new file mode 100644
index 00000000..a1647138
Binary files /dev/null and b/animateditems/24849.gif differ
diff --git a/animateditems/24849.png b/animateditems/24849.png
new file mode 100644
index 00000000..12b1abb3
Binary files /dev/null and b/animateditems/24849.png differ
diff --git a/animateditems/2485.gif b/animateditems/2485.gif
new file mode 100644
index 00000000..1f82c8d8
Binary files /dev/null and b/animateditems/2485.gif differ
diff --git a/animateditems/2485.png b/animateditems/2485.png
new file mode 100644
index 00000000..91b961c6
Binary files /dev/null and b/animateditems/2485.png differ
diff --git a/animateditems/24850.gif b/animateditems/24850.gif
new file mode 100644
index 00000000..2c13ca08
Binary files /dev/null and b/animateditems/24850.gif differ
diff --git a/animateditems/24850.png b/animateditems/24850.png
new file mode 100644
index 00000000..657d1bbc
Binary files /dev/null and b/animateditems/24850.png differ
diff --git a/animateditems/24851.gif b/animateditems/24851.gif
new file mode 100644
index 00000000..0727b40c
Binary files /dev/null and b/animateditems/24851.gif differ
diff --git a/animateditems/24851.png b/animateditems/24851.png
new file mode 100644
index 00000000..0466648d
Binary files /dev/null and b/animateditems/24851.png differ
diff --git a/animateditems/2486.gif b/animateditems/2486.gif
new file mode 100644
index 00000000..7ffa0699
Binary files /dev/null and b/animateditems/2486.gif differ
diff --git a/animateditems/2486.png b/animateditems/2486.png
new file mode 100644
index 00000000..d3bedd4c
Binary files /dev/null and b/animateditems/2486.png differ
diff --git a/animateditems/2487.gif b/animateditems/2487.gif
new file mode 100644
index 00000000..ca27141a
Binary files /dev/null and b/animateditems/2487.gif differ
diff --git a/animateditems/2487.png b/animateditems/2487.png
new file mode 100644
index 00000000..e4502f35
Binary files /dev/null and b/animateditems/2487.png differ
diff --git a/animateditems/2488.gif b/animateditems/2488.gif
new file mode 100644
index 00000000..850eb725
Binary files /dev/null and b/animateditems/2488.gif differ
diff --git a/animateditems/2488.png b/animateditems/2488.png
new file mode 100644
index 00000000..d79e727b
Binary files /dev/null and b/animateditems/2488.png differ
diff --git a/animateditems/2489.gif b/animateditems/2489.gif
new file mode 100644
index 00000000..75074f59
Binary files /dev/null and b/animateditems/2489.gif differ
diff --git a/animateditems/2489.png b/animateditems/2489.png
new file mode 100644
index 00000000..7b79d649
Binary files /dev/null and b/animateditems/2489.png differ
diff --git a/animateditems/2490.gif b/animateditems/2490.gif
new file mode 100644
index 00000000..9649a833
Binary files /dev/null and b/animateditems/2490.gif differ
diff --git a/animateditems/2490.png b/animateditems/2490.png
new file mode 100644
index 00000000..cbdbf051
Binary files /dev/null and b/animateditems/2490.png differ
diff --git a/animateditems/2491.gif b/animateditems/2491.gif
new file mode 100644
index 00000000..976edca1
Binary files /dev/null and b/animateditems/2491.gif differ
diff --git a/animateditems/2491.png b/animateditems/2491.png
new file mode 100644
index 00000000..1f369a6e
Binary files /dev/null and b/animateditems/2491.png differ
diff --git a/animateditems/24910.gif b/animateditems/24910.gif
new file mode 100644
index 00000000..1292bdae
Binary files /dev/null and b/animateditems/24910.gif differ
diff --git a/animateditems/24910.png b/animateditems/24910.png
new file mode 100644
index 00000000..a17a8182
Binary files /dev/null and b/animateditems/24910.png differ
diff --git a/animateditems/2492.gif b/animateditems/2492.gif
new file mode 100644
index 00000000..f1117118
Binary files /dev/null and b/animateditems/2492.gif differ
diff --git a/animateditems/2492.png b/animateditems/2492.png
new file mode 100644
index 00000000..592b9284
Binary files /dev/null and b/animateditems/2492.png differ
diff --git a/animateditems/2493.gif b/animateditems/2493.gif
new file mode 100644
index 00000000..c7bd422b
Binary files /dev/null and b/animateditems/2493.gif differ
diff --git a/animateditems/2493.png b/animateditems/2493.png
new file mode 100644
index 00000000..975eb52e
Binary files /dev/null and b/animateditems/2493.png differ
diff --git a/animateditems/2494.gif b/animateditems/2494.gif
new file mode 100644
index 00000000..de8355c9
Binary files /dev/null and b/animateditems/2494.gif differ
diff --git a/animateditems/2494.png b/animateditems/2494.png
new file mode 100644
index 00000000..b99f4f64
Binary files /dev/null and b/animateditems/2494.png differ
diff --git a/animateditems/2495.gif b/animateditems/2495.gif
new file mode 100644
index 00000000..e4a926e4
Binary files /dev/null and b/animateditems/2495.gif differ
diff --git a/animateditems/2495.png b/animateditems/2495.png
new file mode 100644
index 00000000..b1bfdcc1
Binary files /dev/null and b/animateditems/2495.png differ
diff --git a/animateditems/2496.gif b/animateditems/2496.gif
new file mode 100644
index 00000000..a6686a4f
Binary files /dev/null and b/animateditems/2496.gif differ
diff --git a/animateditems/2496.png b/animateditems/2496.png
new file mode 100644
index 00000000..0c3afd73
Binary files /dev/null and b/animateditems/2496.png differ
diff --git a/animateditems/2497.gif b/animateditems/2497.gif
new file mode 100644
index 00000000..90ea69c5
Binary files /dev/null and b/animateditems/2497.gif differ
diff --git a/animateditems/2497.png b/animateditems/2497.png
new file mode 100644
index 00000000..8614dbce
Binary files /dev/null and b/animateditems/2497.png differ
diff --git a/animateditems/2498.gif b/animateditems/2498.gif
new file mode 100644
index 00000000..707207f2
Binary files /dev/null and b/animateditems/2498.gif differ
diff --git a/animateditems/2498.png b/animateditems/2498.png
new file mode 100644
index 00000000..fbb434ed
Binary files /dev/null and b/animateditems/2498.png differ
diff --git a/animateditems/2499.gif b/animateditems/2499.gif
new file mode 100644
index 00000000..65ef573b
Binary files /dev/null and b/animateditems/2499.gif differ
diff --git a/animateditems/2499.png b/animateditems/2499.png
new file mode 100644
index 00000000..f4dc28a8
Binary files /dev/null and b/animateditems/2499.png differ
diff --git a/animateditems/25.gif b/animateditems/25.gif
new file mode 100644
index 00000000..13fbb5e7
Binary files /dev/null and b/animateditems/25.gif differ
diff --git a/animateditems/25.png b/animateditems/25.png
new file mode 100644
index 00000000..5ee92347
Binary files /dev/null and b/animateditems/25.png differ
diff --git a/animateditems/2500.gif b/animateditems/2500.gif
new file mode 100644
index 00000000..5a289a5d
Binary files /dev/null and b/animateditems/2500.gif differ
diff --git a/animateditems/2500.png b/animateditems/2500.png
new file mode 100644
index 00000000..70fb3317
Binary files /dev/null and b/animateditems/2500.png differ
diff --git a/animateditems/2501.gif b/animateditems/2501.gif
new file mode 100644
index 00000000..9f47ff6d
Binary files /dev/null and b/animateditems/2501.gif differ
diff --git a/animateditems/2501.png b/animateditems/2501.png
new file mode 100644
index 00000000..515df44f
Binary files /dev/null and b/animateditems/2501.png differ
diff --git a/animateditems/2502.gif b/animateditems/2502.gif
new file mode 100644
index 00000000..aa05dd94
Binary files /dev/null and b/animateditems/2502.gif differ
diff --git a/animateditems/2502.png b/animateditems/2502.png
new file mode 100644
index 00000000..8a20af5e
Binary files /dev/null and b/animateditems/2502.png differ
diff --git a/animateditems/2503.gif b/animateditems/2503.gif
new file mode 100644
index 00000000..495917ef
Binary files /dev/null and b/animateditems/2503.gif differ
diff --git a/animateditems/2503.png b/animateditems/2503.png
new file mode 100644
index 00000000..ae62422d
Binary files /dev/null and b/animateditems/2503.png differ
diff --git a/animateditems/2504.gif b/animateditems/2504.gif
new file mode 100644
index 00000000..f65222ca
Binary files /dev/null and b/animateditems/2504.gif differ
diff --git a/animateditems/2504.png b/animateditems/2504.png
new file mode 100644
index 00000000..1edc4093
Binary files /dev/null and b/animateditems/2504.png differ
diff --git a/animateditems/2505.gif b/animateditems/2505.gif
new file mode 100644
index 00000000..32af887d
Binary files /dev/null and b/animateditems/2505.gif differ
diff --git a/animateditems/2505.png b/animateditems/2505.png
new file mode 100644
index 00000000..a40bd80d
Binary files /dev/null and b/animateditems/2505.png differ
diff --git a/animateditems/2506.gif b/animateditems/2506.gif
new file mode 100644
index 00000000..8564286c
Binary files /dev/null and b/animateditems/2506.gif differ
diff --git a/animateditems/2506.png b/animateditems/2506.png
new file mode 100644
index 00000000..e9ad921d
Binary files /dev/null and b/animateditems/2506.png differ
diff --git a/animateditems/2507.gif b/animateditems/2507.gif
new file mode 100644
index 00000000..c4be9c43
Binary files /dev/null and b/animateditems/2507.gif differ
diff --git a/animateditems/2507.png b/animateditems/2507.png
new file mode 100644
index 00000000..f641658f
Binary files /dev/null and b/animateditems/2507.png differ
diff --git a/animateditems/2508.gif b/animateditems/2508.gif
new file mode 100644
index 00000000..63e37426
Binary files /dev/null and b/animateditems/2508.gif differ
diff --git a/animateditems/2508.png b/animateditems/2508.png
new file mode 100644
index 00000000..11be0d51
Binary files /dev/null and b/animateditems/2508.png differ
diff --git a/animateditems/2509.gif b/animateditems/2509.gif
new file mode 100644
index 00000000..15852b59
Binary files /dev/null and b/animateditems/2509.gif differ
diff --git a/animateditems/2509.png b/animateditems/2509.png
new file mode 100644
index 00000000..54bf4b73
Binary files /dev/null and b/animateditems/2509.png differ
diff --git a/animateditems/2510.gif b/animateditems/2510.gif
new file mode 100644
index 00000000..8e71fd8c
Binary files /dev/null and b/animateditems/2510.gif differ
diff --git a/animateditems/2510.png b/animateditems/2510.png
new file mode 100644
index 00000000..d3e7611e
Binary files /dev/null and b/animateditems/2510.png differ
diff --git a/animateditems/2511.gif b/animateditems/2511.gif
new file mode 100644
index 00000000..38bd99d0
Binary files /dev/null and b/animateditems/2511.gif differ
diff --git a/animateditems/2511.png b/animateditems/2511.png
new file mode 100644
index 00000000..9404d22e
Binary files /dev/null and b/animateditems/2511.png differ
diff --git a/animateditems/2512.gif b/animateditems/2512.gif
new file mode 100644
index 00000000..c85ae6e8
Binary files /dev/null and b/animateditems/2512.gif differ
diff --git a/animateditems/2512.png b/animateditems/2512.png
new file mode 100644
index 00000000..c6a1efa2
Binary files /dev/null and b/animateditems/2512.png differ
diff --git a/animateditems/2513.gif b/animateditems/2513.gif
new file mode 100644
index 00000000..c9e54d8d
Binary files /dev/null and b/animateditems/2513.gif differ
diff --git a/animateditems/2513.png b/animateditems/2513.png
new file mode 100644
index 00000000..636184d6
Binary files /dev/null and b/animateditems/2513.png differ
diff --git a/animateditems/2514.gif b/animateditems/2514.gif
new file mode 100644
index 00000000..f61f410d
Binary files /dev/null and b/animateditems/2514.gif differ
diff --git a/animateditems/2514.png b/animateditems/2514.png
new file mode 100644
index 00000000..bb79f025
Binary files /dev/null and b/animateditems/2514.png differ
diff --git a/animateditems/2515.gif b/animateditems/2515.gif
new file mode 100644
index 00000000..92939355
Binary files /dev/null and b/animateditems/2515.gif differ
diff --git a/animateditems/2515.png b/animateditems/2515.png
new file mode 100644
index 00000000..f54fd125
Binary files /dev/null and b/animateditems/2515.png differ
diff --git a/animateditems/2516.gif b/animateditems/2516.gif
new file mode 100644
index 00000000..201230b7
Binary files /dev/null and b/animateditems/2516.gif differ
diff --git a/animateditems/2516.png b/animateditems/2516.png
new file mode 100644
index 00000000..1c7a4f66
Binary files /dev/null and b/animateditems/2516.png differ
diff --git a/animateditems/2517.gif b/animateditems/2517.gif
new file mode 100644
index 00000000..b8d9cfdd
Binary files /dev/null and b/animateditems/2517.gif differ
diff --git a/animateditems/2517.png b/animateditems/2517.png
new file mode 100644
index 00000000..7734537d
Binary files /dev/null and b/animateditems/2517.png differ
diff --git a/animateditems/25172.gif b/animateditems/25172.gif
new file mode 100644
index 00000000..18047a09
Binary files /dev/null and b/animateditems/25172.gif differ
diff --git a/animateditems/25172.png b/animateditems/25172.png
new file mode 100644
index 00000000..3e5f002e
Binary files /dev/null and b/animateditems/25172.png differ
diff --git a/animateditems/25174.gif b/animateditems/25174.gif
new file mode 100644
index 00000000..67ed2e63
Binary files /dev/null and b/animateditems/25174.gif differ
diff --git a/animateditems/25174.png b/animateditems/25174.png
new file mode 100644
index 00000000..c9d7fa97
Binary files /dev/null and b/animateditems/25174.png differ
diff --git a/animateditems/25175.gif b/animateditems/25175.gif
new file mode 100644
index 00000000..555655ea
Binary files /dev/null and b/animateditems/25175.gif differ
diff --git a/animateditems/25175.png b/animateditems/25175.png
new file mode 100644
index 00000000..ae1e0e7f
Binary files /dev/null and b/animateditems/25175.png differ
diff --git a/animateditems/25176.gif b/animateditems/25176.gif
new file mode 100644
index 00000000..36d5755a
Binary files /dev/null and b/animateditems/25176.gif differ
diff --git a/animateditems/25176.png b/animateditems/25176.png
new file mode 100644
index 00000000..b83f6bb4
Binary files /dev/null and b/animateditems/25176.png differ
diff --git a/animateditems/25177.gif b/animateditems/25177.gif
new file mode 100644
index 00000000..aa005e5e
Binary files /dev/null and b/animateditems/25177.gif differ
diff --git a/animateditems/25177.png b/animateditems/25177.png
new file mode 100644
index 00000000..8faeb1cd
Binary files /dev/null and b/animateditems/25177.png differ
diff --git a/animateditems/25178.gif b/animateditems/25178.gif
new file mode 100644
index 00000000..da8d59bb
Binary files /dev/null and b/animateditems/25178.gif differ
diff --git a/animateditems/25178.png b/animateditems/25178.png
new file mode 100644
index 00000000..e098a542
Binary files /dev/null and b/animateditems/25178.png differ
diff --git a/animateditems/25179.gif b/animateditems/25179.gif
new file mode 100644
index 00000000..beb52ead
Binary files /dev/null and b/animateditems/25179.gif differ
diff --git a/animateditems/25179.png b/animateditems/25179.png
new file mode 100644
index 00000000..6e59a5b4
Binary files /dev/null and b/animateditems/25179.png differ
diff --git a/animateditems/2518.gif b/animateditems/2518.gif
new file mode 100644
index 00000000..50d9bd63
Binary files /dev/null and b/animateditems/2518.gif differ
diff --git a/animateditems/2518.png b/animateditems/2518.png
new file mode 100644
index 00000000..86b12924
Binary files /dev/null and b/animateditems/2518.png differ
diff --git a/animateditems/25180.gif b/animateditems/25180.gif
new file mode 100644
index 00000000..0ba076f9
Binary files /dev/null and b/animateditems/25180.gif differ
diff --git a/animateditems/25180.png b/animateditems/25180.png
new file mode 100644
index 00000000..00ecde15
Binary files /dev/null and b/animateditems/25180.png differ
diff --git a/animateditems/25181.gif b/animateditems/25181.gif
new file mode 100644
index 00000000..10f62bd1
Binary files /dev/null and b/animateditems/25181.gif differ
diff --git a/animateditems/25181.png b/animateditems/25181.png
new file mode 100644
index 00000000..df519328
Binary files /dev/null and b/animateditems/25181.png differ
diff --git a/animateditems/25182.gif b/animateditems/25182.gif
new file mode 100644
index 00000000..63765894
Binary files /dev/null and b/animateditems/25182.gif differ
diff --git a/animateditems/25182.png b/animateditems/25182.png
new file mode 100644
index 00000000..04ee41e2
Binary files /dev/null and b/animateditems/25182.png differ
diff --git a/animateditems/25183.gif b/animateditems/25183.gif
new file mode 100644
index 00000000..3d2e43e6
Binary files /dev/null and b/animateditems/25183.gif differ
diff --git a/animateditems/25183.png b/animateditems/25183.png
new file mode 100644
index 00000000..2ecc3c8c
Binary files /dev/null and b/animateditems/25183.png differ
diff --git a/animateditems/25184.gif b/animateditems/25184.gif
new file mode 100644
index 00000000..63c91993
Binary files /dev/null and b/animateditems/25184.gif differ
diff --git a/animateditems/25184.png b/animateditems/25184.png
new file mode 100644
index 00000000..122ab168
Binary files /dev/null and b/animateditems/25184.png differ
diff --git a/animateditems/25185.gif b/animateditems/25185.gif
new file mode 100644
index 00000000..06319247
Binary files /dev/null and b/animateditems/25185.gif differ
diff --git a/animateditems/25185.png b/animateditems/25185.png
new file mode 100644
index 00000000..f867f2f0
Binary files /dev/null and b/animateditems/25185.png differ
diff --git a/animateditems/25186.gif b/animateditems/25186.gif
new file mode 100644
index 00000000..9adf1f86
Binary files /dev/null and b/animateditems/25186.gif differ
diff --git a/animateditems/25186.png b/animateditems/25186.png
new file mode 100644
index 00000000..196e9aec
Binary files /dev/null and b/animateditems/25186.png differ
diff --git a/animateditems/25187.gif b/animateditems/25187.gif
new file mode 100644
index 00000000..b5b10241
Binary files /dev/null and b/animateditems/25187.gif differ
diff --git a/animateditems/25187.png b/animateditems/25187.png
new file mode 100644
index 00000000..1bf8c033
Binary files /dev/null and b/animateditems/25187.png differ
diff --git a/animateditems/25188.gif b/animateditems/25188.gif
new file mode 100644
index 00000000..c4561c90
Binary files /dev/null and b/animateditems/25188.gif differ
diff --git a/animateditems/25188.png b/animateditems/25188.png
new file mode 100644
index 00000000..cc0c743b
Binary files /dev/null and b/animateditems/25188.png differ
diff --git a/animateditems/25189.gif b/animateditems/25189.gif
new file mode 100644
index 00000000..3fb3f207
Binary files /dev/null and b/animateditems/25189.gif differ
diff --git a/animateditems/25189.png b/animateditems/25189.png
new file mode 100644
index 00000000..d9815962
Binary files /dev/null and b/animateditems/25189.png differ
diff --git a/animateditems/2519.gif b/animateditems/2519.gif
new file mode 100644
index 00000000..02582461
Binary files /dev/null and b/animateditems/2519.gif differ
diff --git a/animateditems/2519.png b/animateditems/2519.png
new file mode 100644
index 00000000..f44e4bab
Binary files /dev/null and b/animateditems/2519.png differ
diff --git a/animateditems/25190.gif b/animateditems/25190.gif
new file mode 100644
index 00000000..54056000
Binary files /dev/null and b/animateditems/25190.gif differ
diff --git a/animateditems/25190.png b/animateditems/25190.png
new file mode 100644
index 00000000..a84580e9
Binary files /dev/null and b/animateditems/25190.png differ
diff --git a/animateditems/25191.gif b/animateditems/25191.gif
new file mode 100644
index 00000000..43f58938
Binary files /dev/null and b/animateditems/25191.gif differ
diff --git a/animateditems/25191.png b/animateditems/25191.png
new file mode 100644
index 00000000..7dac2533
Binary files /dev/null and b/animateditems/25191.png differ
diff --git a/animateditems/25192.gif b/animateditems/25192.gif
new file mode 100644
index 00000000..a9d0c430
Binary files /dev/null and b/animateditems/25192.gif differ
diff --git a/animateditems/25192.png b/animateditems/25192.png
new file mode 100644
index 00000000..82afb451
Binary files /dev/null and b/animateditems/25192.png differ
diff --git a/animateditems/25193.gif b/animateditems/25193.gif
new file mode 100644
index 00000000..dbfef530
Binary files /dev/null and b/animateditems/25193.gif differ
diff --git a/animateditems/25193.png b/animateditems/25193.png
new file mode 100644
index 00000000..b9f38906
Binary files /dev/null and b/animateditems/25193.png differ
diff --git a/animateditems/2520.gif b/animateditems/2520.gif
new file mode 100644
index 00000000..da93bfa8
Binary files /dev/null and b/animateditems/2520.gif differ
diff --git a/animateditems/2520.png b/animateditems/2520.png
new file mode 100644
index 00000000..ce9da699
Binary files /dev/null and b/animateditems/2520.png differ
diff --git a/animateditems/2521.gif b/animateditems/2521.gif
new file mode 100644
index 00000000..eb0f298f
Binary files /dev/null and b/animateditems/2521.gif differ
diff --git a/animateditems/2521.png b/animateditems/2521.png
new file mode 100644
index 00000000..e89d0687
Binary files /dev/null and b/animateditems/2521.png differ
diff --git a/animateditems/2522.gif b/animateditems/2522.gif
new file mode 100644
index 00000000..4ff9a0d2
Binary files /dev/null and b/animateditems/2522.gif differ
diff --git a/animateditems/2522.png b/animateditems/2522.png
new file mode 100644
index 00000000..f9d568e6
Binary files /dev/null and b/animateditems/2522.png differ
diff --git a/animateditems/2523.gif b/animateditems/2523.gif
new file mode 100644
index 00000000..d094362c
Binary files /dev/null and b/animateditems/2523.gif differ
diff --git a/animateditems/2523.png b/animateditems/2523.png
new file mode 100644
index 00000000..8ee5e4a0
Binary files /dev/null and b/animateditems/2523.png differ
diff --git a/animateditems/2524.gif b/animateditems/2524.gif
new file mode 100644
index 00000000..ec461795
Binary files /dev/null and b/animateditems/2524.gif differ
diff --git a/animateditems/2524.png b/animateditems/2524.png
new file mode 100644
index 00000000..08896860
Binary files /dev/null and b/animateditems/2524.png differ
diff --git a/animateditems/2525.gif b/animateditems/2525.gif
new file mode 100644
index 00000000..2e2eddec
Binary files /dev/null and b/animateditems/2525.gif differ
diff --git a/animateditems/2525.png b/animateditems/2525.png
new file mode 100644
index 00000000..3217ab95
Binary files /dev/null and b/animateditems/2525.png differ
diff --git a/animateditems/2526.gif b/animateditems/2526.gif
new file mode 100644
index 00000000..29181cf9
Binary files /dev/null and b/animateditems/2526.gif differ
diff --git a/animateditems/2526.png b/animateditems/2526.png
new file mode 100644
index 00000000..91e60b10
Binary files /dev/null and b/animateditems/2526.png differ
diff --git a/animateditems/2527.gif b/animateditems/2527.gif
new file mode 100644
index 00000000..f9752593
Binary files /dev/null and b/animateditems/2527.gif differ
diff --git a/animateditems/2527.png b/animateditems/2527.png
new file mode 100644
index 00000000..757e1c0b
Binary files /dev/null and b/animateditems/2527.png differ
diff --git a/animateditems/2528.gif b/animateditems/2528.gif
new file mode 100644
index 00000000..66018a44
Binary files /dev/null and b/animateditems/2528.gif differ
diff --git a/animateditems/2528.png b/animateditems/2528.png
new file mode 100644
index 00000000..b3a6f4df
Binary files /dev/null and b/animateditems/2528.png differ
diff --git a/animateditems/2529.gif b/animateditems/2529.gif
new file mode 100644
index 00000000..938e9414
Binary files /dev/null and b/animateditems/2529.gif differ
diff --git a/animateditems/2529.png b/animateditems/2529.png
new file mode 100644
index 00000000..c82e3fe8
Binary files /dev/null and b/animateditems/2529.png differ
diff --git a/animateditems/2530.gif b/animateditems/2530.gif
new file mode 100644
index 00000000..a763cb46
Binary files /dev/null and b/animateditems/2530.gif differ
diff --git a/animateditems/2530.png b/animateditems/2530.png
new file mode 100644
index 00000000..7016fa16
Binary files /dev/null and b/animateditems/2530.png differ
diff --git a/animateditems/25305.gif b/animateditems/25305.gif
new file mode 100644
index 00000000..2170f128
Binary files /dev/null and b/animateditems/25305.gif differ
diff --git a/animateditems/25305.png b/animateditems/25305.png
new file mode 100644
index 00000000..4bac559f
Binary files /dev/null and b/animateditems/25305.png differ
diff --git a/animateditems/25306.gif b/animateditems/25306.gif
new file mode 100644
index 00000000..a97d4569
Binary files /dev/null and b/animateditems/25306.gif differ
diff --git a/animateditems/25306.png b/animateditems/25306.png
new file mode 100644
index 00000000..8582a9f6
Binary files /dev/null and b/animateditems/25306.png differ
diff --git a/animateditems/25307.gif b/animateditems/25307.gif
new file mode 100644
index 00000000..a97d4569
Binary files /dev/null and b/animateditems/25307.gif differ
diff --git a/animateditems/25307.png b/animateditems/25307.png
new file mode 100644
index 00000000..8582a9f6
Binary files /dev/null and b/animateditems/25307.png differ
diff --git a/animateditems/25308.gif b/animateditems/25308.gif
new file mode 100644
index 00000000..15c399a2
Binary files /dev/null and b/animateditems/25308.gif differ
diff --git a/animateditems/25308.png b/animateditems/25308.png
new file mode 100644
index 00000000..2c93c27c
Binary files /dev/null and b/animateditems/25308.png differ
diff --git a/animateditems/2531.gif b/animateditems/2531.gif
new file mode 100644
index 00000000..df6d7827
Binary files /dev/null and b/animateditems/2531.gif differ
diff --git a/animateditems/2531.png b/animateditems/2531.png
new file mode 100644
index 00000000..be1512ff
Binary files /dev/null and b/animateditems/2531.png differ
diff --git a/animateditems/25312.gif b/animateditems/25312.gif
new file mode 100644
index 00000000..049debd2
Binary files /dev/null and b/animateditems/25312.gif differ
diff --git a/animateditems/25312.png b/animateditems/25312.png
new file mode 100644
index 00000000..d11291a8
Binary files /dev/null and b/animateditems/25312.png differ
diff --git a/animateditems/25315.gif b/animateditems/25315.gif
new file mode 100644
index 00000000..dac99736
Binary files /dev/null and b/animateditems/25315.gif differ
diff --git a/animateditems/25315.png b/animateditems/25315.png
new file mode 100644
index 00000000..fbd974d6
Binary files /dev/null and b/animateditems/25315.png differ
diff --git a/animateditems/25316.gif b/animateditems/25316.gif
new file mode 100644
index 00000000..805907c4
Binary files /dev/null and b/animateditems/25316.gif differ
diff --git a/animateditems/25316.png b/animateditems/25316.png
new file mode 100644
index 00000000..7da2cf04
Binary files /dev/null and b/animateditems/25316.png differ
diff --git a/animateditems/25317.gif b/animateditems/25317.gif
new file mode 100644
index 00000000..815f3731
Binary files /dev/null and b/animateditems/25317.gif differ
diff --git a/animateditems/25317.png b/animateditems/25317.png
new file mode 100644
index 00000000..fc7b8f86
Binary files /dev/null and b/animateditems/25317.png differ
diff --git a/animateditems/25318.gif b/animateditems/25318.gif
new file mode 100644
index 00000000..3610df96
Binary files /dev/null and b/animateditems/25318.gif differ
diff --git a/animateditems/25318.png b/animateditems/25318.png
new file mode 100644
index 00000000..0347dd8e
Binary files /dev/null and b/animateditems/25318.png differ
diff --git a/animateditems/25319.gif b/animateditems/25319.gif
new file mode 100644
index 00000000..09e8e84d
Binary files /dev/null and b/animateditems/25319.gif differ
diff --git a/animateditems/25319.png b/animateditems/25319.png
new file mode 100644
index 00000000..d425c38b
Binary files /dev/null and b/animateditems/25319.png differ
diff --git a/animateditems/2532.gif b/animateditems/2532.gif
new file mode 100644
index 00000000..576e5017
Binary files /dev/null and b/animateditems/2532.gif differ
diff --git a/animateditems/2532.png b/animateditems/2532.png
new file mode 100644
index 00000000..b4fca99b
Binary files /dev/null and b/animateditems/2532.png differ
diff --git a/animateditems/25321.gif b/animateditems/25321.gif
new file mode 100644
index 00000000..dc98dfcf
Binary files /dev/null and b/animateditems/25321.gif differ
diff --git a/animateditems/25321.png b/animateditems/25321.png
new file mode 100644
index 00000000..619f1140
Binary files /dev/null and b/animateditems/25321.png differ
diff --git a/animateditems/25322.gif b/animateditems/25322.gif
new file mode 100644
index 00000000..288703b3
Binary files /dev/null and b/animateditems/25322.gif differ
diff --git a/animateditems/25322.png b/animateditems/25322.png
new file mode 100644
index 00000000..4ea523db
Binary files /dev/null and b/animateditems/25322.png differ
diff --git a/animateditems/25323.gif b/animateditems/25323.gif
new file mode 100644
index 00000000..65fc1845
Binary files /dev/null and b/animateditems/25323.gif differ
diff --git a/animateditems/25323.png b/animateditems/25323.png
new file mode 100644
index 00000000..2d2848f8
Binary files /dev/null and b/animateditems/25323.png differ
diff --git a/animateditems/25324.gif b/animateditems/25324.gif
new file mode 100644
index 00000000..534dc4da
Binary files /dev/null and b/animateditems/25324.gif differ
diff --git a/animateditems/25324.png b/animateditems/25324.png
new file mode 100644
index 00000000..d0318894
Binary files /dev/null and b/animateditems/25324.png differ
diff --git a/animateditems/25325.gif b/animateditems/25325.gif
new file mode 100644
index 00000000..5ef373d1
Binary files /dev/null and b/animateditems/25325.gif differ
diff --git a/animateditems/25325.png b/animateditems/25325.png
new file mode 100644
index 00000000..a056627f
Binary files /dev/null and b/animateditems/25325.png differ
diff --git a/animateditems/2533.gif b/animateditems/2533.gif
new file mode 100644
index 00000000..9494d864
Binary files /dev/null and b/animateditems/2533.gif differ
diff --git a/animateditems/2533.png b/animateditems/2533.png
new file mode 100644
index 00000000..466871e0
Binary files /dev/null and b/animateditems/2533.png differ
diff --git a/animateditems/25336.gif b/animateditems/25336.gif
new file mode 100644
index 00000000..f47e9699
Binary files /dev/null and b/animateditems/25336.gif differ
diff --git a/animateditems/25336.png b/animateditems/25336.png
new file mode 100644
index 00000000..f8cc27e9
Binary files /dev/null and b/animateditems/25336.png differ
diff --git a/animateditems/25337.gif b/animateditems/25337.gif
new file mode 100644
index 00000000..8394241f
Binary files /dev/null and b/animateditems/25337.gif differ
diff --git a/animateditems/25337.png b/animateditems/25337.png
new file mode 100644
index 00000000..55e2edf7
Binary files /dev/null and b/animateditems/25337.png differ
diff --git a/animateditems/25338.gif b/animateditems/25338.gif
new file mode 100644
index 00000000..3e7185dd
Binary files /dev/null and b/animateditems/25338.gif differ
diff --git a/animateditems/25338.png b/animateditems/25338.png
new file mode 100644
index 00000000..96d7330d
Binary files /dev/null and b/animateditems/25338.png differ
diff --git a/animateditems/2534.gif b/animateditems/2534.gif
new file mode 100644
index 00000000..841f3a54
Binary files /dev/null and b/animateditems/2534.gif differ
diff --git a/animateditems/2534.png b/animateditems/2534.png
new file mode 100644
index 00000000..6ab4371c
Binary files /dev/null and b/animateditems/2534.png differ
diff --git a/animateditems/25348.gif b/animateditems/25348.gif
new file mode 100644
index 00000000..82d3e510
Binary files /dev/null and b/animateditems/25348.gif differ
diff --git a/animateditems/25348.png b/animateditems/25348.png
new file mode 100644
index 00000000..411fd536
Binary files /dev/null and b/animateditems/25348.png differ
diff --git a/animateditems/25349.gif b/animateditems/25349.gif
new file mode 100644
index 00000000..22bf8298
Binary files /dev/null and b/animateditems/25349.gif differ
diff --git a/animateditems/25349.png b/animateditems/25349.png
new file mode 100644
index 00000000..c7cfa0ae
Binary files /dev/null and b/animateditems/25349.png differ
diff --git a/animateditems/2535.gif b/animateditems/2535.gif
new file mode 100644
index 00000000..c4e3e034
Binary files /dev/null and b/animateditems/2535.gif differ
diff --git a/animateditems/2535.png b/animateditems/2535.png
new file mode 100644
index 00000000..c282cfbb
Binary files /dev/null and b/animateditems/2535.png differ
diff --git a/animateditems/25350.gif b/animateditems/25350.gif
new file mode 100644
index 00000000..b3ce12b9
Binary files /dev/null and b/animateditems/25350.gif differ
diff --git a/animateditems/25350.png b/animateditems/25350.png
new file mode 100644
index 00000000..d00fcf32
Binary files /dev/null and b/animateditems/25350.png differ
diff --git a/animateditems/25354.gif b/animateditems/25354.gif
new file mode 100644
index 00000000..5cd10386
Binary files /dev/null and b/animateditems/25354.gif differ
diff --git a/animateditems/25354.png b/animateditems/25354.png
new file mode 100644
index 00000000..737240ad
Binary files /dev/null and b/animateditems/25354.png differ
diff --git a/animateditems/2536.gif b/animateditems/2536.gif
new file mode 100644
index 00000000..87899f83
Binary files /dev/null and b/animateditems/2536.gif differ
diff --git a/animateditems/2536.png b/animateditems/2536.png
new file mode 100644
index 00000000..06cbbf65
Binary files /dev/null and b/animateditems/2536.png differ
diff --git a/animateditems/25360.gif b/animateditems/25360.gif
new file mode 100644
index 00000000..abffab75
Binary files /dev/null and b/animateditems/25360.gif differ
diff --git a/animateditems/25360.png b/animateditems/25360.png
new file mode 100644
index 00000000..b629b269
Binary files /dev/null and b/animateditems/25360.png differ
diff --git a/animateditems/25361.gif b/animateditems/25361.gif
new file mode 100644
index 00000000..445c5dc2
Binary files /dev/null and b/animateditems/25361.gif differ
diff --git a/animateditems/25361.png b/animateditems/25361.png
new file mode 100644
index 00000000..57d04ebf
Binary files /dev/null and b/animateditems/25361.png differ
diff --git a/animateditems/25362.gif b/animateditems/25362.gif
new file mode 100644
index 00000000..670f5a45
Binary files /dev/null and b/animateditems/25362.gif differ
diff --git a/animateditems/25362.png b/animateditems/25362.png
new file mode 100644
index 00000000..e125e948
Binary files /dev/null and b/animateditems/25362.png differ
diff --git a/animateditems/25363.gif b/animateditems/25363.gif
new file mode 100644
index 00000000..4bb5517e
Binary files /dev/null and b/animateditems/25363.gif differ
diff --git a/animateditems/25363.png b/animateditems/25363.png
new file mode 100644
index 00000000..783f52ff
Binary files /dev/null and b/animateditems/25363.png differ
diff --git a/animateditems/25364.gif b/animateditems/25364.gif
new file mode 100644
index 00000000..17fa6604
Binary files /dev/null and b/animateditems/25364.gif differ
diff --git a/animateditems/25364.png b/animateditems/25364.png
new file mode 100644
index 00000000..baa6d027
Binary files /dev/null and b/animateditems/25364.png differ
diff --git a/animateditems/25366.gif b/animateditems/25366.gif
new file mode 100644
index 00000000..a5d711d9
Binary files /dev/null and b/animateditems/25366.gif differ
diff --git a/animateditems/25366.png b/animateditems/25366.png
new file mode 100644
index 00000000..960af8a1
Binary files /dev/null and b/animateditems/25366.png differ
diff --git a/animateditems/25367.gif b/animateditems/25367.gif
new file mode 100644
index 00000000..aaad78be
Binary files /dev/null and b/animateditems/25367.gif differ
diff --git a/animateditems/25367.png b/animateditems/25367.png
new file mode 100644
index 00000000..f6c721b2
Binary files /dev/null and b/animateditems/25367.png differ
diff --git a/animateditems/25368.gif b/animateditems/25368.gif
new file mode 100644
index 00000000..92264eb5
Binary files /dev/null and b/animateditems/25368.gif differ
diff --git a/animateditems/25368.png b/animateditems/25368.png
new file mode 100644
index 00000000..d391c864
Binary files /dev/null and b/animateditems/25368.png differ
diff --git a/animateditems/25369.gif b/animateditems/25369.gif
new file mode 100644
index 00000000..350872c5
Binary files /dev/null and b/animateditems/25369.gif differ
diff --git a/animateditems/25369.png b/animateditems/25369.png
new file mode 100644
index 00000000..e6421b58
Binary files /dev/null and b/animateditems/25369.png differ
diff --git a/animateditems/2537.gif b/animateditems/2537.gif
new file mode 100644
index 00000000..448f6bb5
Binary files /dev/null and b/animateditems/2537.gif differ
diff --git a/animateditems/2537.png b/animateditems/2537.png
new file mode 100644
index 00000000..db800c85
Binary files /dev/null and b/animateditems/2537.png differ
diff --git a/animateditems/25376.gif b/animateditems/25376.gif
new file mode 100644
index 00000000..4c4ae9b4
Binary files /dev/null and b/animateditems/25376.gif differ
diff --git a/animateditems/25376.png b/animateditems/25376.png
new file mode 100644
index 00000000..41d46885
Binary files /dev/null and b/animateditems/25376.png differ
diff --git a/animateditems/25377.gif b/animateditems/25377.gif
new file mode 100644
index 00000000..78d07460
Binary files /dev/null and b/animateditems/25377.gif differ
diff --git a/animateditems/25377.png b/animateditems/25377.png
new file mode 100644
index 00000000..5d94b84e
Binary files /dev/null and b/animateditems/25377.png differ
diff --git a/animateditems/25378.gif b/animateditems/25378.gif
new file mode 100644
index 00000000..29ab9edd
Binary files /dev/null and b/animateditems/25378.gif differ
diff --git a/animateditems/25378.png b/animateditems/25378.png
new file mode 100644
index 00000000..353ba945
Binary files /dev/null and b/animateditems/25378.png differ
diff --git a/animateditems/25379.gif b/animateditems/25379.gif
new file mode 100644
index 00000000..9d049a28
Binary files /dev/null and b/animateditems/25379.gif differ
diff --git a/animateditems/25379.png b/animateditems/25379.png
new file mode 100644
index 00000000..716ea977
Binary files /dev/null and b/animateditems/25379.png differ
diff --git a/animateditems/2538.gif b/animateditems/2538.gif
new file mode 100644
index 00000000..a544d05f
Binary files /dev/null and b/animateditems/2538.gif differ
diff --git a/animateditems/2538.png b/animateditems/2538.png
new file mode 100644
index 00000000..29c91fac
Binary files /dev/null and b/animateditems/2538.png differ
diff --git a/animateditems/25380.gif b/animateditems/25380.gif
new file mode 100644
index 00000000..00de5701
Binary files /dev/null and b/animateditems/25380.gif differ
diff --git a/animateditems/25380.png b/animateditems/25380.png
new file mode 100644
index 00000000..10534f04
Binary files /dev/null and b/animateditems/25380.png differ
diff --git a/animateditems/25381.gif b/animateditems/25381.gif
new file mode 100644
index 00000000..d1c4598e
Binary files /dev/null and b/animateditems/25381.gif differ
diff --git a/animateditems/25381.png b/animateditems/25381.png
new file mode 100644
index 00000000..0e94399d
Binary files /dev/null and b/animateditems/25381.png differ
diff --git a/animateditems/25382.gif b/animateditems/25382.gif
new file mode 100644
index 00000000..e4dea3f0
Binary files /dev/null and b/animateditems/25382.gif differ
diff --git a/animateditems/25382.png b/animateditems/25382.png
new file mode 100644
index 00000000..a4fe0fe1
Binary files /dev/null and b/animateditems/25382.png differ
diff --git a/animateditems/25383.gif b/animateditems/25383.gif
new file mode 100644
index 00000000..a2a91d27
Binary files /dev/null and b/animateditems/25383.gif differ
diff --git a/animateditems/25383.png b/animateditems/25383.png
new file mode 100644
index 00000000..d291e87f
Binary files /dev/null and b/animateditems/25383.png differ
diff --git a/animateditems/25384.gif b/animateditems/25384.gif
new file mode 100644
index 00000000..25f206b7
Binary files /dev/null and b/animateditems/25384.gif differ
diff --git a/animateditems/25384.png b/animateditems/25384.png
new file mode 100644
index 00000000..22d1f7a5
Binary files /dev/null and b/animateditems/25384.png differ
diff --git a/animateditems/25385.gif b/animateditems/25385.gif
new file mode 100644
index 00000000..86650e7a
Binary files /dev/null and b/animateditems/25385.gif differ
diff --git a/animateditems/25385.png b/animateditems/25385.png
new file mode 100644
index 00000000..3c07c455
Binary files /dev/null and b/animateditems/25385.png differ
diff --git a/animateditems/25386.gif b/animateditems/25386.gif
new file mode 100644
index 00000000..379fbb57
Binary files /dev/null and b/animateditems/25386.gif differ
diff --git a/animateditems/25386.png b/animateditems/25386.png
new file mode 100644
index 00000000..446876f7
Binary files /dev/null and b/animateditems/25386.png differ
diff --git a/animateditems/25387.gif b/animateditems/25387.gif
new file mode 100644
index 00000000..eb3270d0
Binary files /dev/null and b/animateditems/25387.gif differ
diff --git a/animateditems/25387.png b/animateditems/25387.png
new file mode 100644
index 00000000..511e5b0d
Binary files /dev/null and b/animateditems/25387.png differ
diff --git a/animateditems/2539.gif b/animateditems/2539.gif
new file mode 100644
index 00000000..32f7b9f4
Binary files /dev/null and b/animateditems/2539.gif differ
diff --git a/animateditems/2539.png b/animateditems/2539.png
new file mode 100644
index 00000000..f60fd67b
Binary files /dev/null and b/animateditems/2539.png differ
diff --git a/animateditems/25390.gif b/animateditems/25390.gif
new file mode 100644
index 00000000..d1c4598e
Binary files /dev/null and b/animateditems/25390.gif differ
diff --git a/animateditems/25390.png b/animateditems/25390.png
new file mode 100644
index 00000000..0e94399d
Binary files /dev/null and b/animateditems/25390.png differ
diff --git a/animateditems/25391.gif b/animateditems/25391.gif
new file mode 100644
index 00000000..135cd6d6
Binary files /dev/null and b/animateditems/25391.gif differ
diff --git a/animateditems/25391.png b/animateditems/25391.png
new file mode 100644
index 00000000..e0744e3c
Binary files /dev/null and b/animateditems/25391.png differ
diff --git a/animateditems/25393.gif b/animateditems/25393.gif
new file mode 100644
index 00000000..82225cd4
Binary files /dev/null and b/animateditems/25393.gif differ
diff --git a/animateditems/25393.png b/animateditems/25393.png
new file mode 100644
index 00000000..25e5f948
Binary files /dev/null and b/animateditems/25393.png differ
diff --git a/animateditems/25395.gif b/animateditems/25395.gif
new file mode 100644
index 00000000..b31ca64a
Binary files /dev/null and b/animateditems/25395.gif differ
diff --git a/animateditems/25395.png b/animateditems/25395.png
new file mode 100644
index 00000000..0a7ba2db
Binary files /dev/null and b/animateditems/25395.png differ
diff --git a/animateditems/2540.gif b/animateditems/2540.gif
new file mode 100644
index 00000000..23b4fddd
Binary files /dev/null and b/animateditems/2540.gif differ
diff --git a/animateditems/2540.png b/animateditems/2540.png
new file mode 100644
index 00000000..2f0c8568
Binary files /dev/null and b/animateditems/2540.png differ
diff --git a/animateditems/25402.gif b/animateditems/25402.gif
new file mode 100644
index 00000000..252fc60b
Binary files /dev/null and b/animateditems/25402.gif differ
diff --git a/animateditems/25402.png b/animateditems/25402.png
new file mode 100644
index 00000000..5057f72d
Binary files /dev/null and b/animateditems/25402.png differ
diff --git a/animateditems/2541.gif b/animateditems/2541.gif
new file mode 100644
index 00000000..4470a501
Binary files /dev/null and b/animateditems/2541.gif differ
diff --git a/animateditems/2541.png b/animateditems/2541.png
new file mode 100644
index 00000000..833580f6
Binary files /dev/null and b/animateditems/2541.png differ
diff --git a/animateditems/25410.gif b/animateditems/25410.gif
new file mode 100644
index 00000000..fe2cb074
Binary files /dev/null and b/animateditems/25410.gif differ
diff --git a/animateditems/25410.png b/animateditems/25410.png
new file mode 100644
index 00000000..2e0c7162
Binary files /dev/null and b/animateditems/25410.png differ
diff --git a/animateditems/25411.gif b/animateditems/25411.gif
new file mode 100644
index 00000000..9e1b3793
Binary files /dev/null and b/animateditems/25411.gif differ
diff --git a/animateditems/25411.png b/animateditems/25411.png
new file mode 100644
index 00000000..5a5b3e6f
Binary files /dev/null and b/animateditems/25411.png differ
diff --git a/animateditems/25412.gif b/animateditems/25412.gif
new file mode 100644
index 00000000..391845c5
Binary files /dev/null and b/animateditems/25412.gif differ
diff --git a/animateditems/25412.png b/animateditems/25412.png
new file mode 100644
index 00000000..1c4a6a00
Binary files /dev/null and b/animateditems/25412.png differ
diff --git a/animateditems/25413.gif b/animateditems/25413.gif
new file mode 100644
index 00000000..6c0e8ab5
Binary files /dev/null and b/animateditems/25413.gif differ
diff --git a/animateditems/25413.png b/animateditems/25413.png
new file mode 100644
index 00000000..3a641077
Binary files /dev/null and b/animateditems/25413.png differ
diff --git a/animateditems/25414.gif b/animateditems/25414.gif
new file mode 100644
index 00000000..8ae3eaf7
Binary files /dev/null and b/animateditems/25414.gif differ
diff --git a/animateditems/25414.png b/animateditems/25414.png
new file mode 100644
index 00000000..2e2482ee
Binary files /dev/null and b/animateditems/25414.png differ
diff --git a/animateditems/25415.gif b/animateditems/25415.gif
new file mode 100644
index 00000000..274e0181
Binary files /dev/null and b/animateditems/25415.gif differ
diff --git a/animateditems/25415.png b/animateditems/25415.png
new file mode 100644
index 00000000..04c848cb
Binary files /dev/null and b/animateditems/25415.png differ
diff --git a/animateditems/25416.gif b/animateditems/25416.gif
new file mode 100644
index 00000000..3c89179e
Binary files /dev/null and b/animateditems/25416.gif differ
diff --git a/animateditems/25416.png b/animateditems/25416.png
new file mode 100644
index 00000000..1a86cf1a
Binary files /dev/null and b/animateditems/25416.png differ
diff --git a/animateditems/25418.gif b/animateditems/25418.gif
new file mode 100644
index 00000000..5c01be21
Binary files /dev/null and b/animateditems/25418.gif differ
diff --git a/animateditems/25418.png b/animateditems/25418.png
new file mode 100644
index 00000000..0bb455e1
Binary files /dev/null and b/animateditems/25418.png differ
diff --git a/animateditems/25419.gif b/animateditems/25419.gif
new file mode 100644
index 00000000..8a1bb39f
Binary files /dev/null and b/animateditems/25419.gif differ
diff --git a/animateditems/25419.png b/animateditems/25419.png
new file mode 100644
index 00000000..e3ea3a72
Binary files /dev/null and b/animateditems/25419.png differ
diff --git a/animateditems/2542.gif b/animateditems/2542.gif
new file mode 100644
index 00000000..10d084dd
Binary files /dev/null and b/animateditems/2542.gif differ
diff --git a/animateditems/2542.png b/animateditems/2542.png
new file mode 100644
index 00000000..8c3b7307
Binary files /dev/null and b/animateditems/2542.png differ
diff --git a/animateditems/25420.gif b/animateditems/25420.gif
new file mode 100644
index 00000000..fcde5abd
Binary files /dev/null and b/animateditems/25420.gif differ
diff --git a/animateditems/25420.png b/animateditems/25420.png
new file mode 100644
index 00000000..64259ea7
Binary files /dev/null and b/animateditems/25420.png differ
diff --git a/animateditems/25421.gif b/animateditems/25421.gif
new file mode 100644
index 00000000..7f9c23f7
Binary files /dev/null and b/animateditems/25421.gif differ
diff --git a/animateditems/25421.png b/animateditems/25421.png
new file mode 100644
index 00000000..242fa3b5
Binary files /dev/null and b/animateditems/25421.png differ
diff --git a/animateditems/25422.gif b/animateditems/25422.gif
new file mode 100644
index 00000000..be111f24
Binary files /dev/null and b/animateditems/25422.gif differ
diff --git a/animateditems/25422.png b/animateditems/25422.png
new file mode 100644
index 00000000..bcd74ada
Binary files /dev/null and b/animateditems/25422.png differ
diff --git a/animateditems/25423.gif b/animateditems/25423.gif
new file mode 100644
index 00000000..dc06b9dc
Binary files /dev/null and b/animateditems/25423.gif differ
diff --git a/animateditems/25423.png b/animateditems/25423.png
new file mode 100644
index 00000000..13406f86
Binary files /dev/null and b/animateditems/25423.png differ
diff --git a/animateditems/25424.gif b/animateditems/25424.gif
new file mode 100644
index 00000000..dc06b9dc
Binary files /dev/null and b/animateditems/25424.gif differ
diff --git a/animateditems/25424.png b/animateditems/25424.png
new file mode 100644
index 00000000..13406f86
Binary files /dev/null and b/animateditems/25424.png differ
diff --git a/animateditems/25425.gif b/animateditems/25425.gif
new file mode 100644
index 00000000..8bcf4adf
Binary files /dev/null and b/animateditems/25425.gif differ
diff --git a/animateditems/25425.png b/animateditems/25425.png
new file mode 100644
index 00000000..60515d2d
Binary files /dev/null and b/animateditems/25425.png differ
diff --git a/animateditems/25426.gif b/animateditems/25426.gif
new file mode 100644
index 00000000..8bcf4adf
Binary files /dev/null and b/animateditems/25426.gif differ
diff --git a/animateditems/25426.png b/animateditems/25426.png
new file mode 100644
index 00000000..60515d2d
Binary files /dev/null and b/animateditems/25426.png differ
diff --git a/animateditems/25427.gif b/animateditems/25427.gif
new file mode 100644
index 00000000..dcfbd0a8
Binary files /dev/null and b/animateditems/25427.gif differ
diff --git a/animateditems/25427.png b/animateditems/25427.png
new file mode 100644
index 00000000..d0d50aed
Binary files /dev/null and b/animateditems/25427.png differ
diff --git a/animateditems/25428.gif b/animateditems/25428.gif
new file mode 100644
index 00000000..dcfbd0a8
Binary files /dev/null and b/animateditems/25428.gif differ
diff --git a/animateditems/25428.png b/animateditems/25428.png
new file mode 100644
index 00000000..d0d50aed
Binary files /dev/null and b/animateditems/25428.png differ
diff --git a/animateditems/25429.gif b/animateditems/25429.gif
new file mode 100644
index 00000000..8a978951
Binary files /dev/null and b/animateditems/25429.gif differ
diff --git a/animateditems/25429.png b/animateditems/25429.png
new file mode 100644
index 00000000..e016d46f
Binary files /dev/null and b/animateditems/25429.png differ
diff --git a/animateditems/2543.gif b/animateditems/2543.gif
new file mode 100644
index 00000000..0c9158f8
Binary files /dev/null and b/animateditems/2543.gif differ
diff --git a/animateditems/2543.png b/animateditems/2543.png
new file mode 100644
index 00000000..1dfccb80
Binary files /dev/null and b/animateditems/2543.png differ
diff --git a/animateditems/25430.gif b/animateditems/25430.gif
new file mode 100644
index 00000000..8a978951
Binary files /dev/null and b/animateditems/25430.gif differ
diff --git a/animateditems/25430.png b/animateditems/25430.png
new file mode 100644
index 00000000..e016d46f
Binary files /dev/null and b/animateditems/25430.png differ
diff --git a/animateditems/25431.gif b/animateditems/25431.gif
new file mode 100644
index 00000000..e4fd1375
Binary files /dev/null and b/animateditems/25431.gif differ
diff --git a/animateditems/25431.png b/animateditems/25431.png
new file mode 100644
index 00000000..66360bd6
Binary files /dev/null and b/animateditems/25431.png differ
diff --git a/animateditems/2544.gif b/animateditems/2544.gif
new file mode 100644
index 00000000..cd1d676b
Binary files /dev/null and b/animateditems/2544.gif differ
diff --git a/animateditems/2544.png b/animateditems/2544.png
new file mode 100644
index 00000000..9cf349a3
Binary files /dev/null and b/animateditems/2544.png differ
diff --git a/animateditems/2545.gif b/animateditems/2545.gif
new file mode 100644
index 00000000..32e6d22d
Binary files /dev/null and b/animateditems/2545.gif differ
diff --git a/animateditems/2545.png b/animateditems/2545.png
new file mode 100644
index 00000000..c4c8a460
Binary files /dev/null and b/animateditems/2545.png differ
diff --git a/animateditems/2546.gif b/animateditems/2546.gif
new file mode 100644
index 00000000..30e54cac
Binary files /dev/null and b/animateditems/2546.gif differ
diff --git a/animateditems/2546.png b/animateditems/2546.png
new file mode 100644
index 00000000..59563462
Binary files /dev/null and b/animateditems/2546.png differ
diff --git a/animateditems/2547.gif b/animateditems/2547.gif
new file mode 100644
index 00000000..b32adef2
Binary files /dev/null and b/animateditems/2547.gif differ
diff --git a/animateditems/2547.png b/animateditems/2547.png
new file mode 100644
index 00000000..d6b91646
Binary files /dev/null and b/animateditems/2547.png differ
diff --git a/animateditems/2548.gif b/animateditems/2548.gif
new file mode 100644
index 00000000..360ccd8d
Binary files /dev/null and b/animateditems/2548.gif differ
diff --git a/animateditems/2548.png b/animateditems/2548.png
new file mode 100644
index 00000000..8404417f
Binary files /dev/null and b/animateditems/2548.png differ
diff --git a/animateditems/2549.gif b/animateditems/2549.gif
new file mode 100644
index 00000000..5fa6f844
Binary files /dev/null and b/animateditems/2549.gif differ
diff --git a/animateditems/2549.png b/animateditems/2549.png
new file mode 100644
index 00000000..7bc1c731
Binary files /dev/null and b/animateditems/2549.png differ
diff --git a/animateditems/2550.gif b/animateditems/2550.gif
new file mode 100644
index 00000000..bf25c7db
Binary files /dev/null and b/animateditems/2550.gif differ
diff --git a/animateditems/2550.png b/animateditems/2550.png
new file mode 100644
index 00000000..06f12266
Binary files /dev/null and b/animateditems/2550.png differ
diff --git a/animateditems/2551.gif b/animateditems/2551.gif
new file mode 100644
index 00000000..d41ba8c8
Binary files /dev/null and b/animateditems/2551.gif differ
diff --git a/animateditems/2551.png b/animateditems/2551.png
new file mode 100644
index 00000000..e1451df5
Binary files /dev/null and b/animateditems/2551.png differ
diff --git a/animateditems/25519.gif b/animateditems/25519.gif
new file mode 100644
index 00000000..2510551c
Binary files /dev/null and b/animateditems/25519.gif differ
diff --git a/animateditems/25519.png b/animateditems/25519.png
new file mode 100644
index 00000000..e3a06d79
Binary files /dev/null and b/animateditems/25519.png differ
diff --git a/animateditems/2552.gif b/animateditems/2552.gif
new file mode 100644
index 00000000..f0211f40
Binary files /dev/null and b/animateditems/2552.gif differ
diff --git a/animateditems/2552.png b/animateditems/2552.png
new file mode 100644
index 00000000..cc784a85
Binary files /dev/null and b/animateditems/2552.png differ
diff --git a/animateditems/25521.gif b/animateditems/25521.gif
new file mode 100644
index 00000000..a717508c
Binary files /dev/null and b/animateditems/25521.gif differ
diff --git a/animateditems/25521.png b/animateditems/25521.png
new file mode 100644
index 00000000..90b65dc4
Binary files /dev/null and b/animateditems/25521.png differ
diff --git a/animateditems/25522.gif b/animateditems/25522.gif
new file mode 100644
index 00000000..3ca48915
Binary files /dev/null and b/animateditems/25522.gif differ
diff --git a/animateditems/25522.png b/animateditems/25522.png
new file mode 100644
index 00000000..10a1fe97
Binary files /dev/null and b/animateditems/25522.png differ
diff --git a/animateditems/25523.gif b/animateditems/25523.gif
new file mode 100644
index 00000000..45a71b3f
Binary files /dev/null and b/animateditems/25523.gif differ
diff --git a/animateditems/25523.png b/animateditems/25523.png
new file mode 100644
index 00000000..a52ff5ea
Binary files /dev/null and b/animateditems/25523.png differ
diff --git a/animateditems/25524.gif b/animateditems/25524.gif
new file mode 100644
index 00000000..6ded6f1d
Binary files /dev/null and b/animateditems/25524.gif differ
diff --git a/animateditems/25524.png b/animateditems/25524.png
new file mode 100644
index 00000000..5a9b0907
Binary files /dev/null and b/animateditems/25524.png differ
diff --git a/animateditems/25526.gif b/animateditems/25526.gif
new file mode 100644
index 00000000..0b0cfa71
Binary files /dev/null and b/animateditems/25526.gif differ
diff --git a/animateditems/25526.png b/animateditems/25526.png
new file mode 100644
index 00000000..8181b605
Binary files /dev/null and b/animateditems/25526.png differ
diff --git a/animateditems/2553.gif b/animateditems/2553.gif
new file mode 100644
index 00000000..a4b3cd97
Binary files /dev/null and b/animateditems/2553.gif differ
diff --git a/animateditems/2553.png b/animateditems/2553.png
new file mode 100644
index 00000000..961a4458
Binary files /dev/null and b/animateditems/2553.png differ
diff --git a/animateditems/25535.gif b/animateditems/25535.gif
new file mode 100644
index 00000000..0bc20b96
Binary files /dev/null and b/animateditems/25535.gif differ
diff --git a/animateditems/25535.png b/animateditems/25535.png
new file mode 100644
index 00000000..7d275294
Binary files /dev/null and b/animateditems/25535.png differ
diff --git a/animateditems/2554.gif b/animateditems/2554.gif
new file mode 100644
index 00000000..2a9015ff
Binary files /dev/null and b/animateditems/2554.gif differ
diff --git a/animateditems/2554.png b/animateditems/2554.png
new file mode 100644
index 00000000..01bbc2a4
Binary files /dev/null and b/animateditems/2554.png differ
diff --git a/animateditems/25545.gif b/animateditems/25545.gif
new file mode 100644
index 00000000..e63e5181
Binary files /dev/null and b/animateditems/25545.gif differ
diff --git a/animateditems/25545.png b/animateditems/25545.png
new file mode 100644
index 00000000..f6db1941
Binary files /dev/null and b/animateditems/25545.png differ
diff --git a/animateditems/25546.gif b/animateditems/25546.gif
new file mode 100644
index 00000000..3804bd7d
Binary files /dev/null and b/animateditems/25546.gif differ
diff --git a/animateditems/25546.png b/animateditems/25546.png
new file mode 100644
index 00000000..d8a78a56
Binary files /dev/null and b/animateditems/25546.png differ
diff --git a/animateditems/2556.gif b/animateditems/2556.gif
new file mode 100644
index 00000000..5bc5bb02
Binary files /dev/null and b/animateditems/2556.gif differ
diff --git a/animateditems/2556.png b/animateditems/2556.png
new file mode 100644
index 00000000..e85c08e3
Binary files /dev/null and b/animateditems/2556.png differ
diff --git a/animateditems/2557.gif b/animateditems/2557.gif
new file mode 100644
index 00000000..611c8c00
Binary files /dev/null and b/animateditems/2557.gif differ
diff --git a/animateditems/2557.png b/animateditems/2557.png
new file mode 100644
index 00000000..60523f51
Binary files /dev/null and b/animateditems/2557.png differ
diff --git a/animateditems/2558.gif b/animateditems/2558.gif
new file mode 100644
index 00000000..68531e1f
Binary files /dev/null and b/animateditems/2558.gif differ
diff --git a/animateditems/2558.png b/animateditems/2558.png
new file mode 100644
index 00000000..73e55f19
Binary files /dev/null and b/animateditems/2558.png differ
diff --git a/animateditems/2559.gif b/animateditems/2559.gif
new file mode 100644
index 00000000..c56be3d1
Binary files /dev/null and b/animateditems/2559.gif differ
diff --git a/animateditems/2559.png b/animateditems/2559.png
new file mode 100644
index 00000000..62a9f6f8
Binary files /dev/null and b/animateditems/2559.png differ
diff --git a/animateditems/2560.gif b/animateditems/2560.gif
new file mode 100644
index 00000000..09dbf722
Binary files /dev/null and b/animateditems/2560.gif differ
diff --git a/animateditems/2560.png b/animateditems/2560.png
new file mode 100644
index 00000000..0119f5b0
Binary files /dev/null and b/animateditems/2560.png differ
diff --git a/animateditems/2561.gif b/animateditems/2561.gif
new file mode 100644
index 00000000..5ccca5e1
Binary files /dev/null and b/animateditems/2561.gif differ
diff --git a/animateditems/2561.png b/animateditems/2561.png
new file mode 100644
index 00000000..b4d38fb9
Binary files /dev/null and b/animateditems/2561.png differ
diff --git a/animateditems/2562.gif b/animateditems/2562.gif
new file mode 100644
index 00000000..dce08ed3
Binary files /dev/null and b/animateditems/2562.gif differ
diff --git a/animateditems/2562.png b/animateditems/2562.png
new file mode 100644
index 00000000..3dcc0279
Binary files /dev/null and b/animateditems/2562.png differ
diff --git a/animateditems/2563.gif b/animateditems/2563.gif
new file mode 100644
index 00000000..026c65de
Binary files /dev/null and b/animateditems/2563.gif differ
diff --git a/animateditems/2563.png b/animateditems/2563.png
new file mode 100644
index 00000000..3773fa11
Binary files /dev/null and b/animateditems/2563.png differ
diff --git a/animateditems/2564.gif b/animateditems/2564.gif
new file mode 100644
index 00000000..ff59781d
Binary files /dev/null and b/animateditems/2564.gif differ
diff --git a/animateditems/2564.png b/animateditems/2564.png
new file mode 100644
index 00000000..d13e1d93
Binary files /dev/null and b/animateditems/2564.png differ
diff --git a/animateditems/2565.gif b/animateditems/2565.gif
new file mode 100644
index 00000000..5c5b9468
Binary files /dev/null and b/animateditems/2565.gif differ
diff --git a/animateditems/2565.png b/animateditems/2565.png
new file mode 100644
index 00000000..ad4a5c25
Binary files /dev/null and b/animateditems/2565.png differ
diff --git a/animateditems/2566.gif b/animateditems/2566.gif
new file mode 100644
index 00000000..783f0a5b
Binary files /dev/null and b/animateditems/2566.gif differ
diff --git a/animateditems/2566.png b/animateditems/2566.png
new file mode 100644
index 00000000..a2276d73
Binary files /dev/null and b/animateditems/2566.png differ
diff --git a/animateditems/2567.gif b/animateditems/2567.gif
new file mode 100644
index 00000000..2c2d7a55
Binary files /dev/null and b/animateditems/2567.gif differ
diff --git a/animateditems/2567.png b/animateditems/2567.png
new file mode 100644
index 00000000..14d398f9
Binary files /dev/null and b/animateditems/2567.png differ
diff --git a/animateditems/2568.gif b/animateditems/2568.gif
new file mode 100644
index 00000000..89c6ee14
Binary files /dev/null and b/animateditems/2568.gif differ
diff --git a/animateditems/2568.png b/animateditems/2568.png
new file mode 100644
index 00000000..877a0098
Binary files /dev/null and b/animateditems/2568.png differ
diff --git a/animateditems/2569.gif b/animateditems/2569.gif
new file mode 100644
index 00000000..0a89ca8f
Binary files /dev/null and b/animateditems/2569.gif differ
diff --git a/animateditems/2569.png b/animateditems/2569.png
new file mode 100644
index 00000000..8ef2b61b
Binary files /dev/null and b/animateditems/2569.png differ
diff --git a/animateditems/2570.gif b/animateditems/2570.gif
new file mode 100644
index 00000000..e3066938
Binary files /dev/null and b/animateditems/2570.gif differ
diff --git a/animateditems/2570.png b/animateditems/2570.png
new file mode 100644
index 00000000..7887c7d2
Binary files /dev/null and b/animateditems/2570.png differ
diff --git a/animateditems/2571.gif b/animateditems/2571.gif
new file mode 100644
index 00000000..de82ac9f
Binary files /dev/null and b/animateditems/2571.gif differ
diff --git a/animateditems/2571.png b/animateditems/2571.png
new file mode 100644
index 00000000..7cbee219
Binary files /dev/null and b/animateditems/2571.png differ
diff --git a/animateditems/2572.gif b/animateditems/2572.gif
new file mode 100644
index 00000000..65f7e18a
Binary files /dev/null and b/animateditems/2572.gif differ
diff --git a/animateditems/2572.png b/animateditems/2572.png
new file mode 100644
index 00000000..bee58c9f
Binary files /dev/null and b/animateditems/2572.png differ
diff --git a/animateditems/2573.gif b/animateditems/2573.gif
new file mode 100644
index 00000000..9fd3aec9
Binary files /dev/null and b/animateditems/2573.gif differ
diff --git a/animateditems/2573.png b/animateditems/2573.png
new file mode 100644
index 00000000..c9a34b00
Binary files /dev/null and b/animateditems/2573.png differ
diff --git a/animateditems/2574.gif b/animateditems/2574.gif
new file mode 100644
index 00000000..49c952d2
Binary files /dev/null and b/animateditems/2574.gif differ
diff --git a/animateditems/2574.png b/animateditems/2574.png
new file mode 100644
index 00000000..78ce3a85
Binary files /dev/null and b/animateditems/2574.png differ
diff --git a/animateditems/2575.gif b/animateditems/2575.gif
new file mode 100644
index 00000000..b9685005
Binary files /dev/null and b/animateditems/2575.gif differ
diff --git a/animateditems/2575.png b/animateditems/2575.png
new file mode 100644
index 00000000..1c36c43a
Binary files /dev/null and b/animateditems/2575.png differ
diff --git a/animateditems/2576.gif b/animateditems/2576.gif
new file mode 100644
index 00000000..e18935ca
Binary files /dev/null and b/animateditems/2576.gif differ
diff --git a/animateditems/2576.png b/animateditems/2576.png
new file mode 100644
index 00000000..2593b711
Binary files /dev/null and b/animateditems/2576.png differ
diff --git a/animateditems/2577.gif b/animateditems/2577.gif
new file mode 100644
index 00000000..9bd970aa
Binary files /dev/null and b/animateditems/2577.gif differ
diff --git a/animateditems/2577.png b/animateditems/2577.png
new file mode 100644
index 00000000..540165ba
Binary files /dev/null and b/animateditems/2577.png differ
diff --git a/animateditems/2578.gif b/animateditems/2578.gif
new file mode 100644
index 00000000..c438af61
Binary files /dev/null and b/animateditems/2578.gif differ
diff --git a/animateditems/2578.png b/animateditems/2578.png
new file mode 100644
index 00000000..c0d7d485
Binary files /dev/null and b/animateditems/2578.png differ
diff --git a/animateditems/2579.gif b/animateditems/2579.gif
new file mode 100644
index 00000000..608df718
Binary files /dev/null and b/animateditems/2579.gif differ
diff --git a/animateditems/2579.png b/animateditems/2579.png
new file mode 100644
index 00000000..6fce787d
Binary files /dev/null and b/animateditems/2579.png differ
diff --git a/animateditems/2580.gif b/animateditems/2580.gif
new file mode 100644
index 00000000..163e58cc
Binary files /dev/null and b/animateditems/2580.gif differ
diff --git a/animateditems/2580.png b/animateditems/2580.png
new file mode 100644
index 00000000..f34c1828
Binary files /dev/null and b/animateditems/2580.png differ
diff --git a/animateditems/25879.gif b/animateditems/25879.gif
new file mode 100644
index 00000000..93766308
Binary files /dev/null and b/animateditems/25879.gif differ
diff --git a/animateditems/25879.png b/animateditems/25879.png
new file mode 100644
index 00000000..6192d693
Binary files /dev/null and b/animateditems/25879.png differ
diff --git a/animateditems/25880.gif b/animateditems/25880.gif
new file mode 100644
index 00000000..30e5c0a4
Binary files /dev/null and b/animateditems/25880.gif differ
diff --git a/animateditems/25880.png b/animateditems/25880.png
new file mode 100644
index 00000000..4a5ac733
Binary files /dev/null and b/animateditems/25880.png differ
diff --git a/animateditems/25881.gif b/animateditems/25881.gif
new file mode 100644
index 00000000..cd4bb854
Binary files /dev/null and b/animateditems/25881.gif differ
diff --git a/animateditems/25881.png b/animateditems/25881.png
new file mode 100644
index 00000000..8387fc9f
Binary files /dev/null and b/animateditems/25881.png differ
diff --git a/animateditems/25882.gif b/animateditems/25882.gif
new file mode 100644
index 00000000..b7d6e722
Binary files /dev/null and b/animateditems/25882.gif differ
diff --git a/animateditems/25882.png b/animateditems/25882.png
new file mode 100644
index 00000000..e4023e19
Binary files /dev/null and b/animateditems/25882.png differ
diff --git a/animateditems/25883.gif b/animateditems/25883.gif
new file mode 100644
index 00000000..46ceb553
Binary files /dev/null and b/animateditems/25883.gif differ
diff --git a/animateditems/25883.png b/animateditems/25883.png
new file mode 100644
index 00000000..44dc83dd
Binary files /dev/null and b/animateditems/25883.png differ
diff --git a/animateditems/25884.gif b/animateditems/25884.gif
new file mode 100644
index 00000000..12a658ea
Binary files /dev/null and b/animateditems/25884.gif differ
diff --git a/animateditems/25884.png b/animateditems/25884.png
new file mode 100644
index 00000000..0e80f050
Binary files /dev/null and b/animateditems/25884.png differ
diff --git a/animateditems/25885.gif b/animateditems/25885.gif
new file mode 100644
index 00000000..d87abaec
Binary files /dev/null and b/animateditems/25885.gif differ
diff --git a/animateditems/25885.png b/animateditems/25885.png
new file mode 100644
index 00000000..89ba74ce
Binary files /dev/null and b/animateditems/25885.png differ
diff --git a/animateditems/25886.gif b/animateditems/25886.gif
new file mode 100644
index 00000000..0fb998b6
Binary files /dev/null and b/animateditems/25886.gif differ
diff --git a/animateditems/25886.png b/animateditems/25886.png
new file mode 100644
index 00000000..38707ca2
Binary files /dev/null and b/animateditems/25886.png differ
diff --git a/animateditems/25887.gif b/animateditems/25887.gif
new file mode 100644
index 00000000..7102e9ea
Binary files /dev/null and b/animateditems/25887.gif differ
diff --git a/animateditems/25887.png b/animateditems/25887.png
new file mode 100644
index 00000000..0f5a240d
Binary files /dev/null and b/animateditems/25887.png differ
diff --git a/animateditems/25888.gif b/animateditems/25888.gif
new file mode 100644
index 00000000..f8e529a5
Binary files /dev/null and b/animateditems/25888.gif differ
diff --git a/animateditems/25888.png b/animateditems/25888.png
new file mode 100644
index 00000000..039194e3
Binary files /dev/null and b/animateditems/25888.png differ
diff --git a/animateditems/25889.gif b/animateditems/25889.gif
new file mode 100644
index 00000000..5c4d36fe
Binary files /dev/null and b/animateditems/25889.gif differ
diff --git a/animateditems/25889.png b/animateditems/25889.png
new file mode 100644
index 00000000..5174c585
Binary files /dev/null and b/animateditems/25889.png differ
diff --git a/animateditems/25890.gif b/animateditems/25890.gif
new file mode 100644
index 00000000..8d590610
Binary files /dev/null and b/animateditems/25890.gif differ
diff --git a/animateditems/25890.png b/animateditems/25890.png
new file mode 100644
index 00000000..ba1b36dd
Binary files /dev/null and b/animateditems/25890.png differ
diff --git a/animateditems/25891.gif b/animateditems/25891.gif
new file mode 100644
index 00000000..2b2a651a
Binary files /dev/null and b/animateditems/25891.gif differ
diff --git a/animateditems/25891.png b/animateditems/25891.png
new file mode 100644
index 00000000..d9db5662
Binary files /dev/null and b/animateditems/25891.png differ
diff --git a/animateditems/25892.gif b/animateditems/25892.gif
new file mode 100644
index 00000000..b0a5921a
Binary files /dev/null and b/animateditems/25892.gif differ
diff --git a/animateditems/25892.png b/animateditems/25892.png
new file mode 100644
index 00000000..f4d9997d
Binary files /dev/null and b/animateditems/25892.png differ
diff --git a/animateditems/25893.gif b/animateditems/25893.gif
new file mode 100644
index 00000000..db4f0715
Binary files /dev/null and b/animateditems/25893.gif differ
diff --git a/animateditems/25893.png b/animateditems/25893.png
new file mode 100644
index 00000000..476f9670
Binary files /dev/null and b/animateditems/25893.png differ
diff --git a/animateditems/25894.gif b/animateditems/25894.gif
new file mode 100644
index 00000000..5a85d406
Binary files /dev/null and b/animateditems/25894.gif differ
diff --git a/animateditems/25894.png b/animateditems/25894.png
new file mode 100644
index 00000000..c31fa7e8
Binary files /dev/null and b/animateditems/25894.png differ
diff --git a/animateditems/25895.gif b/animateditems/25895.gif
new file mode 100644
index 00000000..c5ca54ed
Binary files /dev/null and b/animateditems/25895.gif differ
diff --git a/animateditems/25895.png b/animateditems/25895.png
new file mode 100644
index 00000000..34f85fbe
Binary files /dev/null and b/animateditems/25895.png differ
diff --git a/animateditems/25896.gif b/animateditems/25896.gif
new file mode 100644
index 00000000..4096c182
Binary files /dev/null and b/animateditems/25896.gif differ
diff --git a/animateditems/25896.png b/animateditems/25896.png
new file mode 100644
index 00000000..8c5dcc2b
Binary files /dev/null and b/animateditems/25896.png differ
diff --git a/animateditems/25897.gif b/animateditems/25897.gif
new file mode 100644
index 00000000..25c6de4f
Binary files /dev/null and b/animateditems/25897.gif differ
diff --git a/animateditems/25897.png b/animateditems/25897.png
new file mode 100644
index 00000000..46fab17f
Binary files /dev/null and b/animateditems/25897.png differ
diff --git a/animateditems/25898.gif b/animateditems/25898.gif
new file mode 100644
index 00000000..a3f47b73
Binary files /dev/null and b/animateditems/25898.gif differ
diff --git a/animateditems/25898.png b/animateditems/25898.png
new file mode 100644
index 00000000..1075c1d0
Binary files /dev/null and b/animateditems/25898.png differ
diff --git a/animateditems/25899.gif b/animateditems/25899.gif
new file mode 100644
index 00000000..1d5d3acb
Binary files /dev/null and b/animateditems/25899.gif differ
diff --git a/animateditems/25899.png b/animateditems/25899.png
new file mode 100644
index 00000000..618195ef
Binary files /dev/null and b/animateditems/25899.png differ
diff --git a/animateditems/25900.gif b/animateditems/25900.gif
new file mode 100644
index 00000000..255d312b
Binary files /dev/null and b/animateditems/25900.gif differ
diff --git a/animateditems/25900.png b/animateditems/25900.png
new file mode 100644
index 00000000..8b8adb78
Binary files /dev/null and b/animateditems/25900.png differ
diff --git a/animateditems/25901.gif b/animateditems/25901.gif
new file mode 100644
index 00000000..3217bcc8
Binary files /dev/null and b/animateditems/25901.gif differ
diff --git a/animateditems/25901.png b/animateditems/25901.png
new file mode 100644
index 00000000..b6c423ba
Binary files /dev/null and b/animateditems/25901.png differ
diff --git a/animateditems/25902.gif b/animateditems/25902.gif
new file mode 100644
index 00000000..b23d36f9
Binary files /dev/null and b/animateditems/25902.gif differ
diff --git a/animateditems/25902.png b/animateditems/25902.png
new file mode 100644
index 00000000..cd9c2a2f
Binary files /dev/null and b/animateditems/25902.png differ
diff --git a/animateditems/25903.gif b/animateditems/25903.gif
new file mode 100644
index 00000000..cc6f4784
Binary files /dev/null and b/animateditems/25903.gif differ
diff --git a/animateditems/25903.png b/animateditems/25903.png
new file mode 100644
index 00000000..20f5baff
Binary files /dev/null and b/animateditems/25903.png differ
diff --git a/animateditems/25904.gif b/animateditems/25904.gif
new file mode 100644
index 00000000..a28b9bb6
Binary files /dev/null and b/animateditems/25904.gif differ
diff --git a/animateditems/25904.png b/animateditems/25904.png
new file mode 100644
index 00000000..601ec6c6
Binary files /dev/null and b/animateditems/25904.png differ
diff --git a/animateditems/25905.gif b/animateditems/25905.gif
new file mode 100644
index 00000000..5ce4d587
Binary files /dev/null and b/animateditems/25905.gif differ
diff --git a/animateditems/25905.png b/animateditems/25905.png
new file mode 100644
index 00000000..e3b98248
Binary files /dev/null and b/animateditems/25905.png differ
diff --git a/animateditems/25906.gif b/animateditems/25906.gif
new file mode 100644
index 00000000..5993ef14
Binary files /dev/null and b/animateditems/25906.gif differ
diff --git a/animateditems/25906.png b/animateditems/25906.png
new file mode 100644
index 00000000..8554ed14
Binary files /dev/null and b/animateditems/25906.png differ
diff --git a/animateditems/25907.gif b/animateditems/25907.gif
new file mode 100644
index 00000000..4935d1fb
Binary files /dev/null and b/animateditems/25907.gif differ
diff --git a/animateditems/25907.png b/animateditems/25907.png
new file mode 100644
index 00000000..ad46a60d
Binary files /dev/null and b/animateditems/25907.png differ
diff --git a/animateditems/25908.gif b/animateditems/25908.gif
new file mode 100644
index 00000000..4d81c393
Binary files /dev/null and b/animateditems/25908.gif differ
diff --git a/animateditems/25908.png b/animateditems/25908.png
new file mode 100644
index 00000000..42706c43
Binary files /dev/null and b/animateditems/25908.png differ
diff --git a/animateditems/25909.gif b/animateditems/25909.gif
new file mode 100644
index 00000000..f4fb9c0b
Binary files /dev/null and b/animateditems/25909.gif differ
diff --git a/animateditems/25909.png b/animateditems/25909.png
new file mode 100644
index 00000000..b257980d
Binary files /dev/null and b/animateditems/25909.png differ
diff --git a/animateditems/25910.gif b/animateditems/25910.gif
new file mode 100644
index 00000000..21121983
Binary files /dev/null and b/animateditems/25910.gif differ
diff --git a/animateditems/25910.png b/animateditems/25910.png
new file mode 100644
index 00000000..521c6921
Binary files /dev/null and b/animateditems/25910.png differ
diff --git a/animateditems/25911.gif b/animateditems/25911.gif
new file mode 100644
index 00000000..a6680f00
Binary files /dev/null and b/animateditems/25911.gif differ
diff --git a/animateditems/25911.png b/animateditems/25911.png
new file mode 100644
index 00000000..03de250d
Binary files /dev/null and b/animateditems/25911.png differ
diff --git a/animateditems/25912.gif b/animateditems/25912.gif
new file mode 100644
index 00000000..58e1a671
Binary files /dev/null and b/animateditems/25912.gif differ
diff --git a/animateditems/25912.png b/animateditems/25912.png
new file mode 100644
index 00000000..4a19d2d9
Binary files /dev/null and b/animateditems/25912.png differ
diff --git a/animateditems/25913.gif b/animateditems/25913.gif
new file mode 100644
index 00000000..718652f1
Binary files /dev/null and b/animateditems/25913.gif differ
diff --git a/animateditems/25913.png b/animateditems/25913.png
new file mode 100644
index 00000000..28e4c764
Binary files /dev/null and b/animateditems/25913.png differ
diff --git a/animateditems/25914.gif b/animateditems/25914.gif
new file mode 100644
index 00000000..536e219a
Binary files /dev/null and b/animateditems/25914.gif differ
diff --git a/animateditems/25914.png b/animateditems/25914.png
new file mode 100644
index 00000000..8e4f3312
Binary files /dev/null and b/animateditems/25914.png differ
diff --git a/animateditems/25915.gif b/animateditems/25915.gif
new file mode 100644
index 00000000..7e097c50
Binary files /dev/null and b/animateditems/25915.gif differ
diff --git a/animateditems/25915.png b/animateditems/25915.png
new file mode 100644
index 00000000..718cc54d
Binary files /dev/null and b/animateditems/25915.png differ
diff --git a/animateditems/25916.gif b/animateditems/25916.gif
new file mode 100644
index 00000000..f3c83038
Binary files /dev/null and b/animateditems/25916.gif differ
diff --git a/animateditems/25916.png b/animateditems/25916.png
new file mode 100644
index 00000000..3d7aa738
Binary files /dev/null and b/animateditems/25916.png differ
diff --git a/animateditems/25917.gif b/animateditems/25917.gif
new file mode 100644
index 00000000..9b2cb9f9
Binary files /dev/null and b/animateditems/25917.gif differ
diff --git a/animateditems/25917.png b/animateditems/25917.png
new file mode 100644
index 00000000..874c7dac
Binary files /dev/null and b/animateditems/25917.png differ
diff --git a/animateditems/25918.gif b/animateditems/25918.gif
new file mode 100644
index 00000000..86b51aef
Binary files /dev/null and b/animateditems/25918.gif differ
diff --git a/animateditems/25918.png b/animateditems/25918.png
new file mode 100644
index 00000000..b715496f
Binary files /dev/null and b/animateditems/25918.png differ
diff --git a/animateditems/25919.gif b/animateditems/25919.gif
new file mode 100644
index 00000000..0241d61b
Binary files /dev/null and b/animateditems/25919.gif differ
diff --git a/animateditems/25919.png b/animateditems/25919.png
new file mode 100644
index 00000000..97db1665
Binary files /dev/null and b/animateditems/25919.png differ
diff --git a/animateditems/25920.gif b/animateditems/25920.gif
new file mode 100644
index 00000000..727bace7
Binary files /dev/null and b/animateditems/25920.gif differ
diff --git a/animateditems/25920.png b/animateditems/25920.png
new file mode 100644
index 00000000..67307026
Binary files /dev/null and b/animateditems/25920.png differ
diff --git a/animateditems/25921.gif b/animateditems/25921.gif
new file mode 100644
index 00000000..5f0ad3e9
Binary files /dev/null and b/animateditems/25921.gif differ
diff --git a/animateditems/25921.png b/animateditems/25921.png
new file mode 100644
index 00000000..02140c4e
Binary files /dev/null and b/animateditems/25921.png differ
diff --git a/animateditems/25922.gif b/animateditems/25922.gif
new file mode 100644
index 00000000..d8ce2ec5
Binary files /dev/null and b/animateditems/25922.gif differ
diff --git a/animateditems/25922.png b/animateditems/25922.png
new file mode 100644
index 00000000..252a0ab2
Binary files /dev/null and b/animateditems/25922.png differ
diff --git a/animateditems/25923.gif b/animateditems/25923.gif
new file mode 100644
index 00000000..3c68245c
Binary files /dev/null and b/animateditems/25923.gif differ
diff --git a/animateditems/25923.png b/animateditems/25923.png
new file mode 100644
index 00000000..abed6672
Binary files /dev/null and b/animateditems/25923.png differ
diff --git a/animateditems/25924.gif b/animateditems/25924.gif
new file mode 100644
index 00000000..2cf3744a
Binary files /dev/null and b/animateditems/25924.gif differ
diff --git a/animateditems/25924.png b/animateditems/25924.png
new file mode 100644
index 00000000..c991f6dc
Binary files /dev/null and b/animateditems/25924.png differ
diff --git a/animateditems/25925.gif b/animateditems/25925.gif
new file mode 100644
index 00000000..c168afe3
Binary files /dev/null and b/animateditems/25925.gif differ
diff --git a/animateditems/25925.png b/animateditems/25925.png
new file mode 100644
index 00000000..62a63494
Binary files /dev/null and b/animateditems/25925.png differ
diff --git a/animateditems/25926.gif b/animateditems/25926.gif
new file mode 100644
index 00000000..7fcd1d33
Binary files /dev/null and b/animateditems/25926.gif differ
diff --git a/animateditems/25926.png b/animateditems/25926.png
new file mode 100644
index 00000000..d5f0b38f
Binary files /dev/null and b/animateditems/25926.png differ
diff --git a/animateditems/25927.gif b/animateditems/25927.gif
new file mode 100644
index 00000000..7280e4f3
Binary files /dev/null and b/animateditems/25927.gif differ
diff --git a/animateditems/25927.png b/animateditems/25927.png
new file mode 100644
index 00000000..47f191ec
Binary files /dev/null and b/animateditems/25927.png differ
diff --git a/animateditems/25928.gif b/animateditems/25928.gif
new file mode 100644
index 00000000..7cb89203
Binary files /dev/null and b/animateditems/25928.gif differ
diff --git a/animateditems/25928.png b/animateditems/25928.png
new file mode 100644
index 00000000..c8e210e7
Binary files /dev/null and b/animateditems/25928.png differ
diff --git a/animateditems/25929.gif b/animateditems/25929.gif
new file mode 100644
index 00000000..248fbb65
Binary files /dev/null and b/animateditems/25929.gif differ
diff --git a/animateditems/25929.png b/animateditems/25929.png
new file mode 100644
index 00000000..678b147f
Binary files /dev/null and b/animateditems/25929.png differ
diff --git a/animateditems/25930.gif b/animateditems/25930.gif
new file mode 100644
index 00000000..3902254c
Binary files /dev/null and b/animateditems/25930.gif differ
diff --git a/animateditems/25930.png b/animateditems/25930.png
new file mode 100644
index 00000000..accd1629
Binary files /dev/null and b/animateditems/25930.png differ
diff --git a/animateditems/25931.gif b/animateditems/25931.gif
new file mode 100644
index 00000000..3112d443
Binary files /dev/null and b/animateditems/25931.gif differ
diff --git a/animateditems/25931.png b/animateditems/25931.png
new file mode 100644
index 00000000..06d707cc
Binary files /dev/null and b/animateditems/25931.png differ
diff --git a/animateditems/25932.gif b/animateditems/25932.gif
new file mode 100644
index 00000000..87461b1f
Binary files /dev/null and b/animateditems/25932.gif differ
diff --git a/animateditems/25932.png b/animateditems/25932.png
new file mode 100644
index 00000000..7ace7eef
Binary files /dev/null and b/animateditems/25932.png differ
diff --git a/animateditems/25933.gif b/animateditems/25933.gif
new file mode 100644
index 00000000..eec42053
Binary files /dev/null and b/animateditems/25933.gif differ
diff --git a/animateditems/25933.png b/animateditems/25933.png
new file mode 100644
index 00000000..67c19aee
Binary files /dev/null and b/animateditems/25933.png differ
diff --git a/animateditems/25934.gif b/animateditems/25934.gif
new file mode 100644
index 00000000..cecbe75b
Binary files /dev/null and b/animateditems/25934.gif differ
diff --git a/animateditems/25934.png b/animateditems/25934.png
new file mode 100644
index 00000000..750609e8
Binary files /dev/null and b/animateditems/25934.png differ
diff --git a/animateditems/25935.gif b/animateditems/25935.gif
new file mode 100644
index 00000000..90578522
Binary files /dev/null and b/animateditems/25935.gif differ
diff --git a/animateditems/25935.png b/animateditems/25935.png
new file mode 100644
index 00000000..80f1b3ee
Binary files /dev/null and b/animateditems/25935.png differ
diff --git a/animateditems/25936.gif b/animateditems/25936.gif
new file mode 100644
index 00000000..c1333962
Binary files /dev/null and b/animateditems/25936.gif differ
diff --git a/animateditems/25936.png b/animateditems/25936.png
new file mode 100644
index 00000000..c8156734
Binary files /dev/null and b/animateditems/25936.png differ
diff --git a/animateditems/25937.gif b/animateditems/25937.gif
new file mode 100644
index 00000000..c2087872
Binary files /dev/null and b/animateditems/25937.gif differ
diff --git a/animateditems/25937.png b/animateditems/25937.png
new file mode 100644
index 00000000..dcfef2f9
Binary files /dev/null and b/animateditems/25937.png differ
diff --git a/animateditems/25938.gif b/animateditems/25938.gif
new file mode 100644
index 00000000..97727361
Binary files /dev/null and b/animateditems/25938.gif differ
diff --git a/animateditems/25938.png b/animateditems/25938.png
new file mode 100644
index 00000000..c6477e8c
Binary files /dev/null and b/animateditems/25938.png differ
diff --git a/animateditems/25939.gif b/animateditems/25939.gif
new file mode 100644
index 00000000..70cb2e98
Binary files /dev/null and b/animateditems/25939.gif differ
diff --git a/animateditems/25939.png b/animateditems/25939.png
new file mode 100644
index 00000000..ca6ca020
Binary files /dev/null and b/animateditems/25939.png differ
diff --git a/animateditems/25940.gif b/animateditems/25940.gif
new file mode 100644
index 00000000..10c73569
Binary files /dev/null and b/animateditems/25940.gif differ
diff --git a/animateditems/25940.png b/animateditems/25940.png
new file mode 100644
index 00000000..bc1d3773
Binary files /dev/null and b/animateditems/25940.png differ
diff --git a/animateditems/25941.gif b/animateditems/25941.gif
new file mode 100644
index 00000000..92b84792
Binary files /dev/null and b/animateditems/25941.gif differ
diff --git a/animateditems/25941.png b/animateditems/25941.png
new file mode 100644
index 00000000..fb4e076e
Binary files /dev/null and b/animateditems/25941.png differ
diff --git a/animateditems/25942.gif b/animateditems/25942.gif
new file mode 100644
index 00000000..ccd2b662
Binary files /dev/null and b/animateditems/25942.gif differ
diff --git a/animateditems/25942.png b/animateditems/25942.png
new file mode 100644
index 00000000..4b1fdf35
Binary files /dev/null and b/animateditems/25942.png differ
diff --git a/animateditems/25943.gif b/animateditems/25943.gif
new file mode 100644
index 00000000..a7d8e618
Binary files /dev/null and b/animateditems/25943.gif differ
diff --git a/animateditems/25943.png b/animateditems/25943.png
new file mode 100644
index 00000000..717de83f
Binary files /dev/null and b/animateditems/25943.png differ
diff --git a/animateditems/25944.gif b/animateditems/25944.gif
new file mode 100644
index 00000000..2a36b37d
Binary files /dev/null and b/animateditems/25944.gif differ
diff --git a/animateditems/25944.png b/animateditems/25944.png
new file mode 100644
index 00000000..67820706
Binary files /dev/null and b/animateditems/25944.png differ
diff --git a/animateditems/25945.gif b/animateditems/25945.gif
new file mode 100644
index 00000000..d75f03a9
Binary files /dev/null and b/animateditems/25945.gif differ
diff --git a/animateditems/25945.png b/animateditems/25945.png
new file mode 100644
index 00000000..9397b676
Binary files /dev/null and b/animateditems/25945.png differ
diff --git a/animateditems/25946.gif b/animateditems/25946.gif
new file mode 100644
index 00000000..07a1bcd9
Binary files /dev/null and b/animateditems/25946.gif differ
diff --git a/animateditems/25946.png b/animateditems/25946.png
new file mode 100644
index 00000000..7c62e50c
Binary files /dev/null and b/animateditems/25946.png differ
diff --git a/animateditems/25947.gif b/animateditems/25947.gif
new file mode 100644
index 00000000..d8246dba
Binary files /dev/null and b/animateditems/25947.gif differ
diff --git a/animateditems/25947.png b/animateditems/25947.png
new file mode 100644
index 00000000..ee0a3642
Binary files /dev/null and b/animateditems/25947.png differ
diff --git a/animateditems/25948.gif b/animateditems/25948.gif
new file mode 100644
index 00000000..0335b13b
Binary files /dev/null and b/animateditems/25948.gif differ
diff --git a/animateditems/25948.png b/animateditems/25948.png
new file mode 100644
index 00000000..138c0348
Binary files /dev/null and b/animateditems/25948.png differ
diff --git a/animateditems/25949.gif b/animateditems/25949.gif
new file mode 100644
index 00000000..463e35dc
Binary files /dev/null and b/animateditems/25949.gif differ
diff --git a/animateditems/25949.png b/animateditems/25949.png
new file mode 100644
index 00000000..2350aa8c
Binary files /dev/null and b/animateditems/25949.png differ
diff --git a/animateditems/2595.gif b/animateditems/2595.gif
new file mode 100644
index 00000000..31ef8995
Binary files /dev/null and b/animateditems/2595.gif differ
diff --git a/animateditems/2595.png b/animateditems/2595.png
new file mode 100644
index 00000000..f533b1c3
Binary files /dev/null and b/animateditems/2595.png differ
diff --git a/animateditems/25950.gif b/animateditems/25950.gif
new file mode 100644
index 00000000..4d9970ad
Binary files /dev/null and b/animateditems/25950.gif differ
diff --git a/animateditems/25950.png b/animateditems/25950.png
new file mode 100644
index 00000000..a4ee486a
Binary files /dev/null and b/animateditems/25950.png differ
diff --git a/animateditems/25951.gif b/animateditems/25951.gif
new file mode 100644
index 00000000..e4814e34
Binary files /dev/null and b/animateditems/25951.gif differ
diff --git a/animateditems/25951.png b/animateditems/25951.png
new file mode 100644
index 00000000..cd3fdd4d
Binary files /dev/null and b/animateditems/25951.png differ
diff --git a/animateditems/25952.gif b/animateditems/25952.gif
new file mode 100644
index 00000000..701ef67f
Binary files /dev/null and b/animateditems/25952.gif differ
diff --git a/animateditems/25952.png b/animateditems/25952.png
new file mode 100644
index 00000000..910f7fb6
Binary files /dev/null and b/animateditems/25952.png differ
diff --git a/animateditems/25953.gif b/animateditems/25953.gif
new file mode 100644
index 00000000..6bd5e505
Binary files /dev/null and b/animateditems/25953.gif differ
diff --git a/animateditems/25953.png b/animateditems/25953.png
new file mode 100644
index 00000000..fb124c65
Binary files /dev/null and b/animateditems/25953.png differ
diff --git a/animateditems/25954.gif b/animateditems/25954.gif
new file mode 100644
index 00000000..f488b48b
Binary files /dev/null and b/animateditems/25954.gif differ
diff --git a/animateditems/25954.png b/animateditems/25954.png
new file mode 100644
index 00000000..6117ed3d
Binary files /dev/null and b/animateditems/25954.png differ
diff --git a/animateditems/25955.gif b/animateditems/25955.gif
new file mode 100644
index 00000000..b32ec3ba
Binary files /dev/null and b/animateditems/25955.gif differ
diff --git a/animateditems/25955.png b/animateditems/25955.png
new file mode 100644
index 00000000..214d8a80
Binary files /dev/null and b/animateditems/25955.png differ
diff --git a/animateditems/25956.gif b/animateditems/25956.gif
new file mode 100644
index 00000000..f0278ddf
Binary files /dev/null and b/animateditems/25956.gif differ
diff --git a/animateditems/25956.png b/animateditems/25956.png
new file mode 100644
index 00000000..7370c49b
Binary files /dev/null and b/animateditems/25956.png differ
diff --git a/animateditems/25957.gif b/animateditems/25957.gif
new file mode 100644
index 00000000..93def840
Binary files /dev/null and b/animateditems/25957.gif differ
diff --git a/animateditems/25957.png b/animateditems/25957.png
new file mode 100644
index 00000000..c5c39766
Binary files /dev/null and b/animateditems/25957.png differ
diff --git a/animateditems/25958.gif b/animateditems/25958.gif
new file mode 100644
index 00000000..e0d74d57
Binary files /dev/null and b/animateditems/25958.gif differ
diff --git a/animateditems/25958.png b/animateditems/25958.png
new file mode 100644
index 00000000..bdf0feed
Binary files /dev/null and b/animateditems/25958.png differ
diff --git a/animateditems/25959.gif b/animateditems/25959.gif
new file mode 100644
index 00000000..1b3e986e
Binary files /dev/null and b/animateditems/25959.gif differ
diff --git a/animateditems/25959.png b/animateditems/25959.png
new file mode 100644
index 00000000..0fe95b87
Binary files /dev/null and b/animateditems/25959.png differ
diff --git a/animateditems/2596.gif b/animateditems/2596.gif
new file mode 100644
index 00000000..9a445c93
Binary files /dev/null and b/animateditems/2596.gif differ
diff --git a/animateditems/2596.png b/animateditems/2596.png
new file mode 100644
index 00000000..624df3f5
Binary files /dev/null and b/animateditems/2596.png differ
diff --git a/animateditems/25960.gif b/animateditems/25960.gif
new file mode 100644
index 00000000..7d89159a
Binary files /dev/null and b/animateditems/25960.gif differ
diff --git a/animateditems/25960.png b/animateditems/25960.png
new file mode 100644
index 00000000..bfffbc1b
Binary files /dev/null and b/animateditems/25960.png differ
diff --git a/animateditems/25961.gif b/animateditems/25961.gif
new file mode 100644
index 00000000..26af8a81
Binary files /dev/null and b/animateditems/25961.gif differ
diff --git a/animateditems/25961.png b/animateditems/25961.png
new file mode 100644
index 00000000..1d3b4bef
Binary files /dev/null and b/animateditems/25961.png differ
diff --git a/animateditems/25962.gif b/animateditems/25962.gif
new file mode 100644
index 00000000..bf231216
Binary files /dev/null and b/animateditems/25962.gif differ
diff --git a/animateditems/25962.png b/animateditems/25962.png
new file mode 100644
index 00000000..e823ee7a
Binary files /dev/null and b/animateditems/25962.png differ
diff --git a/animateditems/25963.gif b/animateditems/25963.gif
new file mode 100644
index 00000000..69f8ce98
Binary files /dev/null and b/animateditems/25963.gif differ
diff --git a/animateditems/25963.png b/animateditems/25963.png
new file mode 100644
index 00000000..675761e7
Binary files /dev/null and b/animateditems/25963.png differ
diff --git a/animateditems/25964.gif b/animateditems/25964.gif
new file mode 100644
index 00000000..b490ae5f
Binary files /dev/null and b/animateditems/25964.gif differ
diff --git a/animateditems/25964.png b/animateditems/25964.png
new file mode 100644
index 00000000..8a8185d6
Binary files /dev/null and b/animateditems/25964.png differ
diff --git a/animateditems/25965.gif b/animateditems/25965.gif
new file mode 100644
index 00000000..144322de
Binary files /dev/null and b/animateditems/25965.gif differ
diff --git a/animateditems/25965.png b/animateditems/25965.png
new file mode 100644
index 00000000..444d4de3
Binary files /dev/null and b/animateditems/25965.png differ
diff --git a/animateditems/25966.gif b/animateditems/25966.gif
new file mode 100644
index 00000000..1fa819b4
Binary files /dev/null and b/animateditems/25966.gif differ
diff --git a/animateditems/25966.png b/animateditems/25966.png
new file mode 100644
index 00000000..632ce0ba
Binary files /dev/null and b/animateditems/25966.png differ
diff --git a/animateditems/25967.gif b/animateditems/25967.gif
new file mode 100644
index 00000000..5e58323f
Binary files /dev/null and b/animateditems/25967.gif differ
diff --git a/animateditems/25967.png b/animateditems/25967.png
new file mode 100644
index 00000000..7a389937
Binary files /dev/null and b/animateditems/25967.png differ
diff --git a/animateditems/25968.gif b/animateditems/25968.gif
new file mode 100644
index 00000000..ef7bfaeb
Binary files /dev/null and b/animateditems/25968.gif differ
diff --git a/animateditems/25968.png b/animateditems/25968.png
new file mode 100644
index 00000000..2b7dfb99
Binary files /dev/null and b/animateditems/25968.png differ
diff --git a/animateditems/25969.gif b/animateditems/25969.gif
new file mode 100644
index 00000000..1b4d2f92
Binary files /dev/null and b/animateditems/25969.gif differ
diff --git a/animateditems/25969.png b/animateditems/25969.png
new file mode 100644
index 00000000..6e585eb7
Binary files /dev/null and b/animateditems/25969.png differ
diff --git a/animateditems/2597.gif b/animateditems/2597.gif
new file mode 100644
index 00000000..b68f45d3
Binary files /dev/null and b/animateditems/2597.gif differ
diff --git a/animateditems/2597.png b/animateditems/2597.png
new file mode 100644
index 00000000..5131db50
Binary files /dev/null and b/animateditems/2597.png differ
diff --git a/animateditems/25970.gif b/animateditems/25970.gif
new file mode 100644
index 00000000..eee56197
Binary files /dev/null and b/animateditems/25970.gif differ
diff --git a/animateditems/25970.png b/animateditems/25970.png
new file mode 100644
index 00000000..98469322
Binary files /dev/null and b/animateditems/25970.png differ
diff --git a/animateditems/25971.gif b/animateditems/25971.gif
new file mode 100644
index 00000000..0c490030
Binary files /dev/null and b/animateditems/25971.gif differ
diff --git a/animateditems/25971.png b/animateditems/25971.png
new file mode 100644
index 00000000..17a313ff
Binary files /dev/null and b/animateditems/25971.png differ
diff --git a/animateditems/25972.gif b/animateditems/25972.gif
new file mode 100644
index 00000000..18bc21b1
Binary files /dev/null and b/animateditems/25972.gif differ
diff --git a/animateditems/25972.png b/animateditems/25972.png
new file mode 100644
index 00000000..f8c58c31
Binary files /dev/null and b/animateditems/25972.png differ
diff --git a/animateditems/25973.gif b/animateditems/25973.gif
new file mode 100644
index 00000000..14a39f3d
Binary files /dev/null and b/animateditems/25973.gif differ
diff --git a/animateditems/25973.png b/animateditems/25973.png
new file mode 100644
index 00000000..075ac2ed
Binary files /dev/null and b/animateditems/25973.png differ
diff --git a/animateditems/25974.gif b/animateditems/25974.gif
new file mode 100644
index 00000000..3a26d2f5
Binary files /dev/null and b/animateditems/25974.gif differ
diff --git a/animateditems/25974.png b/animateditems/25974.png
new file mode 100644
index 00000000..7a5d19f7
Binary files /dev/null and b/animateditems/25974.png differ
diff --git a/animateditems/25975.gif b/animateditems/25975.gif
new file mode 100644
index 00000000..851eac62
Binary files /dev/null and b/animateditems/25975.gif differ
diff --git a/animateditems/25975.png b/animateditems/25975.png
new file mode 100644
index 00000000..309a8ecc
Binary files /dev/null and b/animateditems/25975.png differ
diff --git a/animateditems/25976.gif b/animateditems/25976.gif
new file mode 100644
index 00000000..6934b019
Binary files /dev/null and b/animateditems/25976.gif differ
diff --git a/animateditems/25976.png b/animateditems/25976.png
new file mode 100644
index 00000000..fc70784a
Binary files /dev/null and b/animateditems/25976.png differ
diff --git a/animateditems/25977.gif b/animateditems/25977.gif
new file mode 100644
index 00000000..c5a594b5
Binary files /dev/null and b/animateditems/25977.gif differ
diff --git a/animateditems/25977.png b/animateditems/25977.png
new file mode 100644
index 00000000..3a20ff07
Binary files /dev/null and b/animateditems/25977.png differ
diff --git a/animateditems/25978.gif b/animateditems/25978.gif
new file mode 100644
index 00000000..6b27f29f
Binary files /dev/null and b/animateditems/25978.gif differ
diff --git a/animateditems/25978.png b/animateditems/25978.png
new file mode 100644
index 00000000..7621ef4d
Binary files /dev/null and b/animateditems/25978.png differ
diff --git a/animateditems/25979.gif b/animateditems/25979.gif
new file mode 100644
index 00000000..761a00bb
Binary files /dev/null and b/animateditems/25979.gif differ
diff --git a/animateditems/25979.png b/animateditems/25979.png
new file mode 100644
index 00000000..cf2bd459
Binary files /dev/null and b/animateditems/25979.png differ
diff --git a/animateditems/2598.gif b/animateditems/2598.gif
new file mode 100644
index 00000000..2db57763
Binary files /dev/null and b/animateditems/2598.gif differ
diff --git a/animateditems/2598.png b/animateditems/2598.png
new file mode 100644
index 00000000..0ae26117
Binary files /dev/null and b/animateditems/2598.png differ
diff --git a/animateditems/25980.gif b/animateditems/25980.gif
new file mode 100644
index 00000000..7ebf66a9
Binary files /dev/null and b/animateditems/25980.gif differ
diff --git a/animateditems/25980.png b/animateditems/25980.png
new file mode 100644
index 00000000..78e62204
Binary files /dev/null and b/animateditems/25980.png differ
diff --git a/animateditems/25981.gif b/animateditems/25981.gif
new file mode 100644
index 00000000..636bfddb
Binary files /dev/null and b/animateditems/25981.gif differ
diff --git a/animateditems/25981.png b/animateditems/25981.png
new file mode 100644
index 00000000..cfa12f7f
Binary files /dev/null and b/animateditems/25981.png differ
diff --git a/animateditems/25982.gif b/animateditems/25982.gif
new file mode 100644
index 00000000..bfa87fab
Binary files /dev/null and b/animateditems/25982.gif differ
diff --git a/animateditems/25982.png b/animateditems/25982.png
new file mode 100644
index 00000000..a329cb06
Binary files /dev/null and b/animateditems/25982.png differ
diff --git a/animateditems/25983.gif b/animateditems/25983.gif
new file mode 100644
index 00000000..6828d230
Binary files /dev/null and b/animateditems/25983.gif differ
diff --git a/animateditems/25983.png b/animateditems/25983.png
new file mode 100644
index 00000000..1ec529e1
Binary files /dev/null and b/animateditems/25983.png differ
diff --git a/animateditems/25984.gif b/animateditems/25984.gif
new file mode 100644
index 00000000..cb65e2ff
Binary files /dev/null and b/animateditems/25984.gif differ
diff --git a/animateditems/25984.png b/animateditems/25984.png
new file mode 100644
index 00000000..e1f7fb81
Binary files /dev/null and b/animateditems/25984.png differ
diff --git a/animateditems/25985.gif b/animateditems/25985.gif
new file mode 100644
index 00000000..2e7dacfc
Binary files /dev/null and b/animateditems/25985.gif differ
diff --git a/animateditems/25985.png b/animateditems/25985.png
new file mode 100644
index 00000000..7639909f
Binary files /dev/null and b/animateditems/25985.png differ
diff --git a/animateditems/25986.gif b/animateditems/25986.gif
new file mode 100644
index 00000000..2e447145
Binary files /dev/null and b/animateditems/25986.gif differ
diff --git a/animateditems/25986.png b/animateditems/25986.png
new file mode 100644
index 00000000..47d41086
Binary files /dev/null and b/animateditems/25986.png differ
diff --git a/animateditems/25987.gif b/animateditems/25987.gif
new file mode 100644
index 00000000..7111e3a7
Binary files /dev/null and b/animateditems/25987.gif differ
diff --git a/animateditems/25987.png b/animateditems/25987.png
new file mode 100644
index 00000000..7e31b5f0
Binary files /dev/null and b/animateditems/25987.png differ
diff --git a/animateditems/25988.gif b/animateditems/25988.gif
new file mode 100644
index 00000000..721988b0
Binary files /dev/null and b/animateditems/25988.gif differ
diff --git a/animateditems/25988.png b/animateditems/25988.png
new file mode 100644
index 00000000..717c82f5
Binary files /dev/null and b/animateditems/25988.png differ
diff --git a/animateditems/25989.gif b/animateditems/25989.gif
new file mode 100644
index 00000000..60df5f4f
Binary files /dev/null and b/animateditems/25989.gif differ
diff --git a/animateditems/25989.png b/animateditems/25989.png
new file mode 100644
index 00000000..bd6cf3da
Binary files /dev/null and b/animateditems/25989.png differ
diff --git a/animateditems/2599.gif b/animateditems/2599.gif
new file mode 100644
index 00000000..d22be760
Binary files /dev/null and b/animateditems/2599.gif differ
diff --git a/animateditems/2599.png b/animateditems/2599.png
new file mode 100644
index 00000000..53c551f2
Binary files /dev/null and b/animateditems/2599.png differ
diff --git a/animateditems/25990.gif b/animateditems/25990.gif
new file mode 100644
index 00000000..62ff98ab
Binary files /dev/null and b/animateditems/25990.gif differ
diff --git a/animateditems/25990.png b/animateditems/25990.png
new file mode 100644
index 00000000..05366d84
Binary files /dev/null and b/animateditems/25990.png differ
diff --git a/animateditems/25991.gif b/animateditems/25991.gif
new file mode 100644
index 00000000..adc2f36b
Binary files /dev/null and b/animateditems/25991.gif differ
diff --git a/animateditems/25991.png b/animateditems/25991.png
new file mode 100644
index 00000000..a31c3ef8
Binary files /dev/null and b/animateditems/25991.png differ
diff --git a/animateditems/25992.gif b/animateditems/25992.gif
new file mode 100644
index 00000000..a7bc740d
Binary files /dev/null and b/animateditems/25992.gif differ
diff --git a/animateditems/25992.png b/animateditems/25992.png
new file mode 100644
index 00000000..48d4bfee
Binary files /dev/null and b/animateditems/25992.png differ
diff --git a/animateditems/25993.gif b/animateditems/25993.gif
new file mode 100644
index 00000000..0598ab0f
Binary files /dev/null and b/animateditems/25993.gif differ
diff --git a/animateditems/25993.png b/animateditems/25993.png
new file mode 100644
index 00000000..988433ef
Binary files /dev/null and b/animateditems/25993.png differ
diff --git a/animateditems/25994.gif b/animateditems/25994.gif
new file mode 100644
index 00000000..c40bd604
Binary files /dev/null and b/animateditems/25994.gif differ
diff --git a/animateditems/25994.png b/animateditems/25994.png
new file mode 100644
index 00000000..0677c9db
Binary files /dev/null and b/animateditems/25994.png differ
diff --git a/animateditems/25995.gif b/animateditems/25995.gif
new file mode 100644
index 00000000..46d3a539
Binary files /dev/null and b/animateditems/25995.gif differ
diff --git a/animateditems/25995.png b/animateditems/25995.png
new file mode 100644
index 00000000..d990ac87
Binary files /dev/null and b/animateditems/25995.png differ
diff --git a/animateditems/25996.gif b/animateditems/25996.gif
new file mode 100644
index 00000000..ecbfcc34
Binary files /dev/null and b/animateditems/25996.gif differ
diff --git a/animateditems/25996.png b/animateditems/25996.png
new file mode 100644
index 00000000..0a428a38
Binary files /dev/null and b/animateditems/25996.png differ
diff --git a/animateditems/25997.gif b/animateditems/25997.gif
new file mode 100644
index 00000000..0955532d
Binary files /dev/null and b/animateditems/25997.gif differ
diff --git a/animateditems/25997.png b/animateditems/25997.png
new file mode 100644
index 00000000..2dc68762
Binary files /dev/null and b/animateditems/25997.png differ
diff --git a/animateditems/25998.gif b/animateditems/25998.gif
new file mode 100644
index 00000000..4c361c23
Binary files /dev/null and b/animateditems/25998.gif differ
diff --git a/animateditems/25998.png b/animateditems/25998.png
new file mode 100644
index 00000000..8883bbda
Binary files /dev/null and b/animateditems/25998.png differ
diff --git a/animateditems/26.gif b/animateditems/26.gif
new file mode 100644
index 00000000..c5205f33
Binary files /dev/null and b/animateditems/26.gif differ
diff --git a/animateditems/26.png b/animateditems/26.png
new file mode 100644
index 00000000..8fed7640
Binary files /dev/null and b/animateditems/26.png differ
diff --git a/animateditems/2600.gif b/animateditems/2600.gif
new file mode 100644
index 00000000..b9f1f1cf
Binary files /dev/null and b/animateditems/2600.gif differ
diff --git a/animateditems/2600.png b/animateditems/2600.png
new file mode 100644
index 00000000..a053b38f
Binary files /dev/null and b/animateditems/2600.png differ
diff --git a/animateditems/26029.gif b/animateditems/26029.gif
new file mode 100644
index 00000000..2e73cadc
Binary files /dev/null and b/animateditems/26029.gif differ
diff --git a/animateditems/26029.png b/animateditems/26029.png
new file mode 100644
index 00000000..df355c85
Binary files /dev/null and b/animateditems/26029.png differ
diff --git a/animateditems/26030.gif b/animateditems/26030.gif
new file mode 100644
index 00000000..2dfb7321
Binary files /dev/null and b/animateditems/26030.gif differ
diff --git a/animateditems/26030.png b/animateditems/26030.png
new file mode 100644
index 00000000..97cc5b42
Binary files /dev/null and b/animateditems/26030.png differ
diff --git a/animateditems/26031.gif b/animateditems/26031.gif
new file mode 100644
index 00000000..8003b15b
Binary files /dev/null and b/animateditems/26031.gif differ
diff --git a/animateditems/26031.png b/animateditems/26031.png
new file mode 100644
index 00000000..e5bc1f95
Binary files /dev/null and b/animateditems/26031.png differ
diff --git a/animateditems/26052.gif b/animateditems/26052.gif
new file mode 100644
index 00000000..f9967e51
Binary files /dev/null and b/animateditems/26052.gif differ
diff --git a/animateditems/26052.png b/animateditems/26052.png
new file mode 100644
index 00000000..33999307
Binary files /dev/null and b/animateditems/26052.png differ
diff --git a/animateditems/26054.gif b/animateditems/26054.gif
new file mode 100644
index 00000000..e8de796d
Binary files /dev/null and b/animateditems/26054.gif differ
diff --git a/animateditems/26054.png b/animateditems/26054.png
new file mode 100644
index 00000000..76d85637
Binary files /dev/null and b/animateditems/26054.png differ
diff --git a/animateditems/26112.gif b/animateditems/26112.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/26112.gif differ
diff --git a/animateditems/26112.png b/animateditems/26112.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/26112.png differ
diff --git a/animateditems/26113.gif b/animateditems/26113.gif
new file mode 100644
index 00000000..fc16469a
Binary files /dev/null and b/animateditems/26113.gif differ
diff --git a/animateditems/26113.png b/animateditems/26113.png
new file mode 100644
index 00000000..71a36934
Binary files /dev/null and b/animateditems/26113.png differ
diff --git a/animateditems/26114.gif b/animateditems/26114.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/26114.gif differ
diff --git a/animateditems/26114.png b/animateditems/26114.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/26114.png differ
diff --git a/animateditems/26115.gif b/animateditems/26115.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/26115.gif differ
diff --git a/animateditems/26115.png b/animateditems/26115.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/26115.png differ
diff --git a/animateditems/26116.gif b/animateditems/26116.gif
new file mode 100644
index 00000000..e0edf1c6
Binary files /dev/null and b/animateditems/26116.gif differ
diff --git a/animateditems/26116.png b/animateditems/26116.png
new file mode 100644
index 00000000..28fa91c1
Binary files /dev/null and b/animateditems/26116.png differ
diff --git a/animateditems/26129.gif b/animateditems/26129.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/26129.gif differ
diff --git a/animateditems/26129.png b/animateditems/26129.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/26129.png differ
diff --git a/animateditems/26130.gif b/animateditems/26130.gif
new file mode 100644
index 00000000..a4be8408
Binary files /dev/null and b/animateditems/26130.gif differ
diff --git a/animateditems/26130.png b/animateditems/26130.png
new file mode 100644
index 00000000..570c7047
Binary files /dev/null and b/animateditems/26130.png differ
diff --git a/animateditems/26131.gif b/animateditems/26131.gif
new file mode 100644
index 00000000..c3e83d84
Binary files /dev/null and b/animateditems/26131.gif differ
diff --git a/animateditems/26131.png b/animateditems/26131.png
new file mode 100644
index 00000000..e19872be
Binary files /dev/null and b/animateditems/26131.png differ
diff --git a/animateditems/26132.gif b/animateditems/26132.gif
new file mode 100644
index 00000000..e996c5ee
Binary files /dev/null and b/animateditems/26132.gif differ
diff --git a/animateditems/26132.png b/animateditems/26132.png
new file mode 100644
index 00000000..ebae298c
Binary files /dev/null and b/animateditems/26132.png differ
diff --git a/animateditems/26133.gif b/animateditems/26133.gif
new file mode 100644
index 00000000..21a35948
Binary files /dev/null and b/animateditems/26133.gif differ
diff --git a/animateditems/26133.png b/animateditems/26133.png
new file mode 100644
index 00000000..3e5544b8
Binary files /dev/null and b/animateditems/26133.png differ
diff --git a/animateditems/26143.gif b/animateditems/26143.gif
new file mode 100644
index 00000000..bee65aa9
Binary files /dev/null and b/animateditems/26143.gif differ
diff --git a/animateditems/26143.png b/animateditems/26143.png
new file mode 100644
index 00000000..bc9334aa
Binary files /dev/null and b/animateditems/26143.png differ
diff --git a/animateditems/26144.gif b/animateditems/26144.gif
new file mode 100644
index 00000000..ce4a7bfb
Binary files /dev/null and b/animateditems/26144.gif differ
diff --git a/animateditems/26144.png b/animateditems/26144.png
new file mode 100644
index 00000000..77d6309e
Binary files /dev/null and b/animateditems/26144.png differ
diff --git a/animateditems/26145.gif b/animateditems/26145.gif
new file mode 100644
index 00000000..dfb85cd6
Binary files /dev/null and b/animateditems/26145.gif differ
diff --git a/animateditems/26145.png b/animateditems/26145.png
new file mode 100644
index 00000000..bb40af08
Binary files /dev/null and b/animateditems/26145.png differ
diff --git a/animateditems/26146.gif b/animateditems/26146.gif
new file mode 100644
index 00000000..f578d7c7
Binary files /dev/null and b/animateditems/26146.gif differ
diff --git a/animateditems/26146.png b/animateditems/26146.png
new file mode 100644
index 00000000..6fbff064
Binary files /dev/null and b/animateditems/26146.png differ
diff --git a/animateditems/26147.gif b/animateditems/26147.gif
new file mode 100644
index 00000000..a5aad95e
Binary files /dev/null and b/animateditems/26147.gif differ
diff --git a/animateditems/26147.png b/animateditems/26147.png
new file mode 100644
index 00000000..cab33e92
Binary files /dev/null and b/animateditems/26147.png differ
diff --git a/animateditems/26148.gif b/animateditems/26148.gif
new file mode 100644
index 00000000..23eb4dea
Binary files /dev/null and b/animateditems/26148.gif differ
diff --git a/animateditems/26148.png b/animateditems/26148.png
new file mode 100644
index 00000000..0ddf67fa
Binary files /dev/null and b/animateditems/26148.png differ
diff --git a/animateditems/26149.gif b/animateditems/26149.gif
new file mode 100644
index 00000000..665a7cb1
Binary files /dev/null and b/animateditems/26149.gif differ
diff --git a/animateditems/26149.png b/animateditems/26149.png
new file mode 100644
index 00000000..ab5eebc7
Binary files /dev/null and b/animateditems/26149.png differ
diff --git a/animateditems/26150.gif b/animateditems/26150.gif
new file mode 100644
index 00000000..2510551c
Binary files /dev/null and b/animateditems/26150.gif differ
diff --git a/animateditems/26150.png b/animateditems/26150.png
new file mode 100644
index 00000000..e3a06d79
Binary files /dev/null and b/animateditems/26150.png differ
diff --git a/animateditems/26151.gif b/animateditems/26151.gif
new file mode 100644
index 00000000..2510551c
Binary files /dev/null and b/animateditems/26151.gif differ
diff --git a/animateditems/26151.png b/animateditems/26151.png
new file mode 100644
index 00000000..e3a06d79
Binary files /dev/null and b/animateditems/26151.png differ
diff --git a/animateditems/26152.gif b/animateditems/26152.gif
new file mode 100644
index 00000000..2510551c
Binary files /dev/null and b/animateditems/26152.gif differ
diff --git a/animateditems/26152.png b/animateditems/26152.png
new file mode 100644
index 00000000..e3a06d79
Binary files /dev/null and b/animateditems/26152.png differ
diff --git a/animateditems/26153.gif b/animateditems/26153.gif
new file mode 100644
index 00000000..2510551c
Binary files /dev/null and b/animateditems/26153.gif differ
diff --git a/animateditems/26153.png b/animateditems/26153.png
new file mode 100644
index 00000000..e3a06d79
Binary files /dev/null and b/animateditems/26153.png differ
diff --git a/animateditems/26154.gif b/animateditems/26154.gif
new file mode 100644
index 00000000..2510551c
Binary files /dev/null and b/animateditems/26154.gif differ
diff --git a/animateditems/26154.png b/animateditems/26154.png
new file mode 100644
index 00000000..e3a06d79
Binary files /dev/null and b/animateditems/26154.png differ
diff --git a/animateditems/26155.gif b/animateditems/26155.gif
new file mode 100644
index 00000000..2510551c
Binary files /dev/null and b/animateditems/26155.gif differ
diff --git a/animateditems/26155.png b/animateditems/26155.png
new file mode 100644
index 00000000..e3a06d79
Binary files /dev/null and b/animateditems/26155.png differ
diff --git a/animateditems/26156.gif b/animateditems/26156.gif
new file mode 100644
index 00000000..2510551c
Binary files /dev/null and b/animateditems/26156.gif differ
diff --git a/animateditems/26156.png b/animateditems/26156.png
new file mode 100644
index 00000000..e3a06d79
Binary files /dev/null and b/animateditems/26156.png differ
diff --git a/animateditems/26157.gif b/animateditems/26157.gif
new file mode 100644
index 00000000..99e12bfe
Binary files /dev/null and b/animateditems/26157.gif differ
diff --git a/animateditems/26157.png b/animateditems/26157.png
new file mode 100644
index 00000000..c3da25a1
Binary files /dev/null and b/animateditems/26157.png differ
diff --git a/animateditems/26158.gif b/animateditems/26158.gif
new file mode 100644
index 00000000..465afa05
Binary files /dev/null and b/animateditems/26158.gif differ
diff --git a/animateditems/26158.png b/animateditems/26158.png
new file mode 100644
index 00000000..bd3f3945
Binary files /dev/null and b/animateditems/26158.png differ
diff --git a/animateditems/26159.gif b/animateditems/26159.gif
new file mode 100644
index 00000000..5a5ef894
Binary files /dev/null and b/animateditems/26159.gif differ
diff --git a/animateditems/26159.png b/animateditems/26159.png
new file mode 100644
index 00000000..03a715a6
Binary files /dev/null and b/animateditems/26159.png differ
diff --git a/animateditems/26160.gif b/animateditems/26160.gif
new file mode 100644
index 00000000..0a29cea4
Binary files /dev/null and b/animateditems/26160.gif differ
diff --git a/animateditems/26160.png b/animateditems/26160.png
new file mode 100644
index 00000000..60fb8128
Binary files /dev/null and b/animateditems/26160.png differ
diff --git a/animateditems/26161.gif b/animateditems/26161.gif
new file mode 100644
index 00000000..4293dc34
Binary files /dev/null and b/animateditems/26161.gif differ
diff --git a/animateditems/26161.png b/animateditems/26161.png
new file mode 100644
index 00000000..e4243160
Binary files /dev/null and b/animateditems/26161.png differ
diff --git a/animateditems/26162.gif b/animateditems/26162.gif
new file mode 100644
index 00000000..2a5fef31
Binary files /dev/null and b/animateditems/26162.gif differ
diff --git a/animateditems/26162.png b/animateditems/26162.png
new file mode 100644
index 00000000..64c09c7d
Binary files /dev/null and b/animateditems/26162.png differ
diff --git a/animateditems/26163.gif b/animateditems/26163.gif
new file mode 100644
index 00000000..847e77c2
Binary files /dev/null and b/animateditems/26163.gif differ
diff --git a/animateditems/26163.png b/animateditems/26163.png
new file mode 100644
index 00000000..74c0983c
Binary files /dev/null and b/animateditems/26163.png differ
diff --git a/animateditems/26164.gif b/animateditems/26164.gif
new file mode 100644
index 00000000..d2c67996
Binary files /dev/null and b/animateditems/26164.gif differ
diff --git a/animateditems/26164.png b/animateditems/26164.png
new file mode 100644
index 00000000..1385e616
Binary files /dev/null and b/animateditems/26164.png differ
diff --git a/animateditems/26165.gif b/animateditems/26165.gif
new file mode 100644
index 00000000..5907d1b8
Binary files /dev/null and b/animateditems/26165.gif differ
diff --git a/animateditems/26165.png b/animateditems/26165.png
new file mode 100644
index 00000000..4a325beb
Binary files /dev/null and b/animateditems/26165.png differ
diff --git a/animateditems/26166.gif b/animateditems/26166.gif
new file mode 100644
index 00000000..30144bad
Binary files /dev/null and b/animateditems/26166.gif differ
diff --git a/animateditems/26166.png b/animateditems/26166.png
new file mode 100644
index 00000000..e439b8c7
Binary files /dev/null and b/animateditems/26166.png differ
diff --git a/animateditems/26167.gif b/animateditems/26167.gif
new file mode 100644
index 00000000..661524d8
Binary files /dev/null and b/animateditems/26167.gif differ
diff --git a/animateditems/26167.png b/animateditems/26167.png
new file mode 100644
index 00000000..10b833e1
Binary files /dev/null and b/animateditems/26167.png differ
diff --git a/animateditems/26168.gif b/animateditems/26168.gif
new file mode 100644
index 00000000..f360490a
Binary files /dev/null and b/animateditems/26168.gif differ
diff --git a/animateditems/26168.png b/animateditems/26168.png
new file mode 100644
index 00000000..05cf176c
Binary files /dev/null and b/animateditems/26168.png differ
diff --git a/animateditems/26169.gif b/animateditems/26169.gif
new file mode 100644
index 00000000..158dbe3a
Binary files /dev/null and b/animateditems/26169.gif differ
diff --git a/animateditems/26169.png b/animateditems/26169.png
new file mode 100644
index 00000000..d054c222
Binary files /dev/null and b/animateditems/26169.png differ
diff --git a/animateditems/26170.gif b/animateditems/26170.gif
new file mode 100644
index 00000000..09358ce1
Binary files /dev/null and b/animateditems/26170.gif differ
diff --git a/animateditems/26170.png b/animateditems/26170.png
new file mode 100644
index 00000000..819ab017
Binary files /dev/null and b/animateditems/26170.png differ
diff --git a/animateditems/26171.gif b/animateditems/26171.gif
new file mode 100644
index 00000000..e4f01b05
Binary files /dev/null and b/animateditems/26171.gif differ
diff --git a/animateditems/26171.png b/animateditems/26171.png
new file mode 100644
index 00000000..bb626c7f
Binary files /dev/null and b/animateditems/26171.png differ
diff --git a/animateditems/26172.gif b/animateditems/26172.gif
new file mode 100644
index 00000000..62941c98
Binary files /dev/null and b/animateditems/26172.gif differ
diff --git a/animateditems/26172.png b/animateditems/26172.png
new file mode 100644
index 00000000..2b4265c1
Binary files /dev/null and b/animateditems/26172.png differ
diff --git a/animateditems/26173.gif b/animateditems/26173.gif
new file mode 100644
index 00000000..f23d8ea1
Binary files /dev/null and b/animateditems/26173.gif differ
diff --git a/animateditems/26173.png b/animateditems/26173.png
new file mode 100644
index 00000000..c409d0f1
Binary files /dev/null and b/animateditems/26173.png differ
diff --git a/animateditems/26174.gif b/animateditems/26174.gif
new file mode 100644
index 00000000..732f2d23
Binary files /dev/null and b/animateditems/26174.gif differ
diff --git a/animateditems/26174.png b/animateditems/26174.png
new file mode 100644
index 00000000..9ec03f3f
Binary files /dev/null and b/animateditems/26174.png differ
diff --git a/animateditems/26175.gif b/animateditems/26175.gif
new file mode 100644
index 00000000..95020826
Binary files /dev/null and b/animateditems/26175.gif differ
diff --git a/animateditems/26175.png b/animateditems/26175.png
new file mode 100644
index 00000000..e387d039
Binary files /dev/null and b/animateditems/26175.png differ
diff --git a/animateditems/26176.gif b/animateditems/26176.gif
new file mode 100644
index 00000000..b14d21f5
Binary files /dev/null and b/animateditems/26176.gif differ
diff --git a/animateditems/26176.png b/animateditems/26176.png
new file mode 100644
index 00000000..68cb979b
Binary files /dev/null and b/animateditems/26176.png differ
diff --git a/animateditems/26177.gif b/animateditems/26177.gif
new file mode 100644
index 00000000..a3662f6a
Binary files /dev/null and b/animateditems/26177.gif differ
diff --git a/animateditems/26177.png b/animateditems/26177.png
new file mode 100644
index 00000000..c603fbd9
Binary files /dev/null and b/animateditems/26177.png differ
diff --git a/animateditems/26178.gif b/animateditems/26178.gif
new file mode 100644
index 00000000..b83806c1
Binary files /dev/null and b/animateditems/26178.gif differ
diff --git a/animateditems/26178.png b/animateditems/26178.png
new file mode 100644
index 00000000..aa237fb9
Binary files /dev/null and b/animateditems/26178.png differ
diff --git a/animateditems/26179.gif b/animateditems/26179.gif
new file mode 100644
index 00000000..0539e4bf
Binary files /dev/null and b/animateditems/26179.gif differ
diff --git a/animateditems/26179.png b/animateditems/26179.png
new file mode 100644
index 00000000..163af189
Binary files /dev/null and b/animateditems/26179.png differ
diff --git a/animateditems/26180.gif b/animateditems/26180.gif
new file mode 100644
index 00000000..974b2f2e
Binary files /dev/null and b/animateditems/26180.gif differ
diff --git a/animateditems/26180.png b/animateditems/26180.png
new file mode 100644
index 00000000..dad124bb
Binary files /dev/null and b/animateditems/26180.png differ
diff --git a/animateditems/26181.gif b/animateditems/26181.gif
new file mode 100644
index 00000000..f7e53ca1
Binary files /dev/null and b/animateditems/26181.gif differ
diff --git a/animateditems/26181.png b/animateditems/26181.png
new file mode 100644
index 00000000..f8b9d5c4
Binary files /dev/null and b/animateditems/26181.png differ
diff --git a/animateditems/26182.gif b/animateditems/26182.gif
new file mode 100644
index 00000000..d3ac8160
Binary files /dev/null and b/animateditems/26182.gif differ
diff --git a/animateditems/26182.png b/animateditems/26182.png
new file mode 100644
index 00000000..89bfd21a
Binary files /dev/null and b/animateditems/26182.png differ
diff --git a/animateditems/26183.gif b/animateditems/26183.gif
new file mode 100644
index 00000000..fd97376e
Binary files /dev/null and b/animateditems/26183.gif differ
diff --git a/animateditems/26183.png b/animateditems/26183.png
new file mode 100644
index 00000000..1cc27a30
Binary files /dev/null and b/animateditems/26183.png differ
diff --git a/animateditems/26184.gif b/animateditems/26184.gif
new file mode 100644
index 00000000..7bd31c31
Binary files /dev/null and b/animateditems/26184.gif differ
diff --git a/animateditems/26184.png b/animateditems/26184.png
new file mode 100644
index 00000000..298aad45
Binary files /dev/null and b/animateditems/26184.png differ
diff --git a/animateditems/26185.gif b/animateditems/26185.gif
new file mode 100644
index 00000000..fd753ac1
Binary files /dev/null and b/animateditems/26185.gif differ
diff --git a/animateditems/26185.png b/animateditems/26185.png
new file mode 100644
index 00000000..4c76ca54
Binary files /dev/null and b/animateditems/26185.png differ
diff --git a/animateditems/26186.gif b/animateditems/26186.gif
new file mode 100644
index 00000000..69668011
Binary files /dev/null and b/animateditems/26186.gif differ
diff --git a/animateditems/26186.png b/animateditems/26186.png
new file mode 100644
index 00000000..b85bad36
Binary files /dev/null and b/animateditems/26186.png differ
diff --git a/animateditems/26187.gif b/animateditems/26187.gif
new file mode 100644
index 00000000..214d682f
Binary files /dev/null and b/animateditems/26187.gif differ
diff --git a/animateditems/26187.png b/animateditems/26187.png
new file mode 100644
index 00000000..003d5562
Binary files /dev/null and b/animateditems/26187.png differ
diff --git a/animateditems/26188.gif b/animateditems/26188.gif
new file mode 100644
index 00000000..2e0c5b37
Binary files /dev/null and b/animateditems/26188.gif differ
diff --git a/animateditems/26188.png b/animateditems/26188.png
new file mode 100644
index 00000000..f62a90ef
Binary files /dev/null and b/animateditems/26188.png differ
diff --git a/animateditems/26189.gif b/animateditems/26189.gif
new file mode 100644
index 00000000..9b415419
Binary files /dev/null and b/animateditems/26189.gif differ
diff --git a/animateditems/26189.png b/animateditems/26189.png
new file mode 100644
index 00000000..0e568404
Binary files /dev/null and b/animateditems/26189.png differ
diff --git a/animateditems/26190.gif b/animateditems/26190.gif
new file mode 100644
index 00000000..e21f2b96
Binary files /dev/null and b/animateditems/26190.gif differ
diff --git a/animateditems/26190.png b/animateditems/26190.png
new file mode 100644
index 00000000..e13c78e4
Binary files /dev/null and b/animateditems/26190.png differ
diff --git a/animateditems/26191.gif b/animateditems/26191.gif
new file mode 100644
index 00000000..46c7bd30
Binary files /dev/null and b/animateditems/26191.gif differ
diff --git a/animateditems/26191.png b/animateditems/26191.png
new file mode 100644
index 00000000..dcdcdc8a
Binary files /dev/null and b/animateditems/26191.png differ
diff --git a/animateditems/26192.gif b/animateditems/26192.gif
new file mode 100644
index 00000000..079d673a
Binary files /dev/null and b/animateditems/26192.gif differ
diff --git a/animateditems/26192.png b/animateditems/26192.png
new file mode 100644
index 00000000..14c0f43d
Binary files /dev/null and b/animateditems/26192.png differ
diff --git a/animateditems/26194.gif b/animateditems/26194.gif
new file mode 100644
index 00000000..de65a5c3
Binary files /dev/null and b/animateditems/26194.gif differ
diff --git a/animateditems/26194.png b/animateditems/26194.png
new file mode 100644
index 00000000..332fb910
Binary files /dev/null and b/animateditems/26194.png differ
diff --git a/animateditems/26197.gif b/animateditems/26197.gif
new file mode 100644
index 00000000..6b930942
Binary files /dev/null and b/animateditems/26197.gif differ
diff --git a/animateditems/26197.png b/animateditems/26197.png
new file mode 100644
index 00000000..5a5704cb
Binary files /dev/null and b/animateditems/26197.png differ
diff --git a/animateditems/26198.gif b/animateditems/26198.gif
new file mode 100644
index 00000000..ee8a417f
Binary files /dev/null and b/animateditems/26198.gif differ
diff --git a/animateditems/26198.png b/animateditems/26198.png
new file mode 100644
index 00000000..45e785d0
Binary files /dev/null and b/animateditems/26198.png differ
diff --git a/animateditems/26199.gif b/animateditems/26199.gif
new file mode 100644
index 00000000..05afa526
Binary files /dev/null and b/animateditems/26199.gif differ
diff --git a/animateditems/26199.png b/animateditems/26199.png
new file mode 100644
index 00000000..35a0aa3a
Binary files /dev/null and b/animateditems/26199.png differ
diff --git a/animateditems/26200.gif b/animateditems/26200.gif
new file mode 100644
index 00000000..f21a69cf
Binary files /dev/null and b/animateditems/26200.gif differ
diff --git a/animateditems/26200.png b/animateditems/26200.png
new file mode 100644
index 00000000..044b7d7b
Binary files /dev/null and b/animateditems/26200.png differ
diff --git a/animateditems/26201.gif b/animateditems/26201.gif
new file mode 100644
index 00000000..6a2ce2a6
Binary files /dev/null and b/animateditems/26201.gif differ
diff --git a/animateditems/26201.png b/animateditems/26201.png
new file mode 100644
index 00000000..3d071f81
Binary files /dev/null and b/animateditems/26201.png differ
diff --git a/animateditems/26203.gif b/animateditems/26203.gif
new file mode 100644
index 00000000..9790d4ba
Binary files /dev/null and b/animateditems/26203.gif differ
diff --git a/animateditems/26203.png b/animateditems/26203.png
new file mode 100644
index 00000000..b30a7bb1
Binary files /dev/null and b/animateditems/26203.png differ
diff --git a/animateditems/26228.gif b/animateditems/26228.gif
new file mode 100644
index 00000000..445bdab9
Binary files /dev/null and b/animateditems/26228.gif differ
diff --git a/animateditems/26228.png b/animateditems/26228.png
new file mode 100644
index 00000000..1d0bf539
Binary files /dev/null and b/animateditems/26228.png differ
diff --git a/animateditems/26229.gif b/animateditems/26229.gif
new file mode 100644
index 00000000..1e9528c0
Binary files /dev/null and b/animateditems/26229.gif differ
diff --git a/animateditems/26229.png b/animateditems/26229.png
new file mode 100644
index 00000000..53e99034
Binary files /dev/null and b/animateditems/26229.png differ
diff --git a/animateditems/26233.gif b/animateditems/26233.gif
new file mode 100644
index 00000000..5c4d36fe
Binary files /dev/null and b/animateditems/26233.gif differ
diff --git a/animateditems/26233.png b/animateditems/26233.png
new file mode 100644
index 00000000..5174c585
Binary files /dev/null and b/animateditems/26233.png differ
diff --git a/animateditems/26234.gif b/animateditems/26234.gif
new file mode 100644
index 00000000..1d5d3acb
Binary files /dev/null and b/animateditems/26234.gif differ
diff --git a/animateditems/26234.png b/animateditems/26234.png
new file mode 100644
index 00000000..618195ef
Binary files /dev/null and b/animateditems/26234.png differ
diff --git a/animateditems/26235.gif b/animateditems/26235.gif
new file mode 100644
index 00000000..f4fb9c0b
Binary files /dev/null and b/animateditems/26235.gif differ
diff --git a/animateditems/26235.png b/animateditems/26235.png
new file mode 100644
index 00000000..b257980d
Binary files /dev/null and b/animateditems/26235.png differ
diff --git a/animateditems/26236.gif b/animateditems/26236.gif
new file mode 100644
index 00000000..8d590610
Binary files /dev/null and b/animateditems/26236.gif differ
diff --git a/animateditems/26236.png b/animateditems/26236.png
new file mode 100644
index 00000000..ba1b36dd
Binary files /dev/null and b/animateditems/26236.png differ
diff --git a/animateditems/26237.gif b/animateditems/26237.gif
new file mode 100644
index 00000000..255d312b
Binary files /dev/null and b/animateditems/26237.gif differ
diff --git a/animateditems/26237.png b/animateditems/26237.png
new file mode 100644
index 00000000..8b8adb78
Binary files /dev/null and b/animateditems/26237.png differ
diff --git a/animateditems/26238.gif b/animateditems/26238.gif
new file mode 100644
index 00000000..21121983
Binary files /dev/null and b/animateditems/26238.gif differ
diff --git a/animateditems/26238.png b/animateditems/26238.png
new file mode 100644
index 00000000..521c6921
Binary files /dev/null and b/animateditems/26238.png differ
diff --git a/animateditems/26239.gif b/animateditems/26239.gif
new file mode 100644
index 00000000..2b2a651a
Binary files /dev/null and b/animateditems/26239.gif differ
diff --git a/animateditems/26239.png b/animateditems/26239.png
new file mode 100644
index 00000000..d9db5662
Binary files /dev/null and b/animateditems/26239.png differ
diff --git a/animateditems/2624.gif b/animateditems/2624.gif
new file mode 100644
index 00000000..635050f1
Binary files /dev/null and b/animateditems/2624.gif differ
diff --git a/animateditems/2624.png b/animateditems/2624.png
new file mode 100644
index 00000000..c9d714c5
Binary files /dev/null and b/animateditems/2624.png differ
diff --git a/animateditems/26240.gif b/animateditems/26240.gif
new file mode 100644
index 00000000..3217bcc8
Binary files /dev/null and b/animateditems/26240.gif differ
diff --git a/animateditems/26240.png b/animateditems/26240.png
new file mode 100644
index 00000000..b6c423ba
Binary files /dev/null and b/animateditems/26240.png differ
diff --git a/animateditems/26241.gif b/animateditems/26241.gif
new file mode 100644
index 00000000..a6680f00
Binary files /dev/null and b/animateditems/26241.gif differ
diff --git a/animateditems/26241.png b/animateditems/26241.png
new file mode 100644
index 00000000..03de250d
Binary files /dev/null and b/animateditems/26241.png differ
diff --git a/animateditems/26242.gif b/animateditems/26242.gif
new file mode 100644
index 00000000..b0a5921a
Binary files /dev/null and b/animateditems/26242.gif differ
diff --git a/animateditems/26242.png b/animateditems/26242.png
new file mode 100644
index 00000000..f4d9997d
Binary files /dev/null and b/animateditems/26242.png differ
diff --git a/animateditems/26243.gif b/animateditems/26243.gif
new file mode 100644
index 00000000..b23d36f9
Binary files /dev/null and b/animateditems/26243.gif differ
diff --git a/animateditems/26243.png b/animateditems/26243.png
new file mode 100644
index 00000000..cd9c2a2f
Binary files /dev/null and b/animateditems/26243.png differ
diff --git a/animateditems/26244.gif b/animateditems/26244.gif
new file mode 100644
index 00000000..58e1a671
Binary files /dev/null and b/animateditems/26244.gif differ
diff --git a/animateditems/26244.png b/animateditems/26244.png
new file mode 100644
index 00000000..4a19d2d9
Binary files /dev/null and b/animateditems/26244.png differ
diff --git a/animateditems/26245.gif b/animateditems/26245.gif
new file mode 100644
index 00000000..db4f0715
Binary files /dev/null and b/animateditems/26245.gif differ
diff --git a/animateditems/26245.png b/animateditems/26245.png
new file mode 100644
index 00000000..476f9670
Binary files /dev/null and b/animateditems/26245.png differ
diff --git a/animateditems/26246.gif b/animateditems/26246.gif
new file mode 100644
index 00000000..cc6f4784
Binary files /dev/null and b/animateditems/26246.gif differ
diff --git a/animateditems/26246.png b/animateditems/26246.png
new file mode 100644
index 00000000..20f5baff
Binary files /dev/null and b/animateditems/26246.png differ
diff --git a/animateditems/26247.gif b/animateditems/26247.gif
new file mode 100644
index 00000000..718652f1
Binary files /dev/null and b/animateditems/26247.gif differ
diff --git a/animateditems/26247.png b/animateditems/26247.png
new file mode 100644
index 00000000..28e4c764
Binary files /dev/null and b/animateditems/26247.png differ
diff --git a/animateditems/26248.gif b/animateditems/26248.gif
new file mode 100644
index 00000000..5a85d406
Binary files /dev/null and b/animateditems/26248.gif differ
diff --git a/animateditems/26248.png b/animateditems/26248.png
new file mode 100644
index 00000000..c31fa7e8
Binary files /dev/null and b/animateditems/26248.png differ
diff --git a/animateditems/26249.gif b/animateditems/26249.gif
new file mode 100644
index 00000000..a28b9bb6
Binary files /dev/null and b/animateditems/26249.gif differ
diff --git a/animateditems/26249.png b/animateditems/26249.png
new file mode 100644
index 00000000..601ec6c6
Binary files /dev/null and b/animateditems/26249.png differ
diff --git a/animateditems/2625.gif b/animateditems/2625.gif
new file mode 100644
index 00000000..bbaa4df3
Binary files /dev/null and b/animateditems/2625.gif differ
diff --git a/animateditems/2625.png b/animateditems/2625.png
new file mode 100644
index 00000000..132391df
Binary files /dev/null and b/animateditems/2625.png differ
diff --git a/animateditems/26250.gif b/animateditems/26250.gif
new file mode 100644
index 00000000..536e219a
Binary files /dev/null and b/animateditems/26250.gif differ
diff --git a/animateditems/26250.png b/animateditems/26250.png
new file mode 100644
index 00000000..8e4f3312
Binary files /dev/null and b/animateditems/26250.png differ
diff --git a/animateditems/26251.gif b/animateditems/26251.gif
new file mode 100644
index 00000000..c5ca54ed
Binary files /dev/null and b/animateditems/26251.gif differ
diff --git a/animateditems/26251.png b/animateditems/26251.png
new file mode 100644
index 00000000..34f85fbe
Binary files /dev/null and b/animateditems/26251.png differ
diff --git a/animateditems/26252.gif b/animateditems/26252.gif
new file mode 100644
index 00000000..727bace7
Binary files /dev/null and b/animateditems/26252.gif differ
diff --git a/animateditems/26252.png b/animateditems/26252.png
new file mode 100644
index 00000000..67307026
Binary files /dev/null and b/animateditems/26252.png differ
diff --git a/animateditems/26253.gif b/animateditems/26253.gif
new file mode 100644
index 00000000..5993ef14
Binary files /dev/null and b/animateditems/26253.gif differ
diff --git a/animateditems/26253.png b/animateditems/26253.png
new file mode 100644
index 00000000..8554ed14
Binary files /dev/null and b/animateditems/26253.png differ
diff --git a/animateditems/26254.gif b/animateditems/26254.gif
new file mode 100644
index 00000000..7e097c50
Binary files /dev/null and b/animateditems/26254.gif differ
diff --git a/animateditems/26254.png b/animateditems/26254.png
new file mode 100644
index 00000000..718cc54d
Binary files /dev/null and b/animateditems/26254.png differ
diff --git a/animateditems/26255.gif b/animateditems/26255.gif
new file mode 100644
index 00000000..5f0ad3e9
Binary files /dev/null and b/animateditems/26255.gif differ
diff --git a/animateditems/26255.png b/animateditems/26255.png
new file mode 100644
index 00000000..02140c4e
Binary files /dev/null and b/animateditems/26255.png differ
diff --git a/animateditems/26256.gif b/animateditems/26256.gif
new file mode 100644
index 00000000..d8ce2ec5
Binary files /dev/null and b/animateditems/26256.gif differ
diff --git a/animateditems/26256.png b/animateditems/26256.png
new file mode 100644
index 00000000..252a0ab2
Binary files /dev/null and b/animateditems/26256.png differ
diff --git a/animateditems/26257.gif b/animateditems/26257.gif
new file mode 100644
index 00000000..2cf3744a
Binary files /dev/null and b/animateditems/26257.gif differ
diff --git a/animateditems/26257.png b/animateditems/26257.png
new file mode 100644
index 00000000..c991f6dc
Binary files /dev/null and b/animateditems/26257.png differ
diff --git a/animateditems/26258.gif b/animateditems/26258.gif
new file mode 100644
index 00000000..c168afe3
Binary files /dev/null and b/animateditems/26258.gif differ
diff --git a/animateditems/26258.png b/animateditems/26258.png
new file mode 100644
index 00000000..62a63494
Binary files /dev/null and b/animateditems/26258.png differ
diff --git a/animateditems/2626.gif b/animateditems/2626.gif
new file mode 100644
index 00000000..2f5db9e3
Binary files /dev/null and b/animateditems/2626.gif differ
diff --git a/animateditems/2626.png b/animateditems/2626.png
new file mode 100644
index 00000000..1200d501
Binary files /dev/null and b/animateditems/2626.png differ
diff --git a/animateditems/26260.gif b/animateditems/26260.gif
new file mode 100644
index 00000000..7fcd1d33
Binary files /dev/null and b/animateditems/26260.gif differ
diff --git a/animateditems/26260.png b/animateditems/26260.png
new file mode 100644
index 00000000..d5f0b38f
Binary files /dev/null and b/animateditems/26260.png differ
diff --git a/animateditems/26261.gif b/animateditems/26261.gif
new file mode 100644
index 00000000..7d89159a
Binary files /dev/null and b/animateditems/26261.gif differ
diff --git a/animateditems/26261.png b/animateditems/26261.png
new file mode 100644
index 00000000..bfffbc1b
Binary files /dev/null and b/animateditems/26261.png differ
diff --git a/animateditems/26262.gif b/animateditems/26262.gif
new file mode 100644
index 00000000..7cb89203
Binary files /dev/null and b/animateditems/26262.gif differ
diff --git a/animateditems/26262.png b/animateditems/26262.png
new file mode 100644
index 00000000..c8e210e7
Binary files /dev/null and b/animateditems/26262.png differ
diff --git a/animateditems/26263.gif b/animateditems/26263.gif
new file mode 100644
index 00000000..248fbb65
Binary files /dev/null and b/animateditems/26263.gif differ
diff --git a/animateditems/26263.png b/animateditems/26263.png
new file mode 100644
index 00000000..678b147f
Binary files /dev/null and b/animateditems/26263.png differ
diff --git a/animateditems/26264.gif b/animateditems/26264.gif
new file mode 100644
index 00000000..4096c182
Binary files /dev/null and b/animateditems/26264.gif differ
diff --git a/animateditems/26264.png b/animateditems/26264.png
new file mode 100644
index 00000000..8c5dcc2b
Binary files /dev/null and b/animateditems/26264.png differ
diff --git a/animateditems/26265.gif b/animateditems/26265.gif
new file mode 100644
index 00000000..26af8a81
Binary files /dev/null and b/animateditems/26265.gif differ
diff --git a/animateditems/26265.png b/animateditems/26265.png
new file mode 100644
index 00000000..1d3b4bef
Binary files /dev/null and b/animateditems/26265.png differ
diff --git a/animateditems/26266.gif b/animateditems/26266.gif
new file mode 100644
index 00000000..5ce4d587
Binary files /dev/null and b/animateditems/26266.gif differ
diff --git a/animateditems/26266.png b/animateditems/26266.png
new file mode 100644
index 00000000..e3b98248
Binary files /dev/null and b/animateditems/26266.png differ
diff --git a/animateditems/26267.gif b/animateditems/26267.gif
new file mode 100644
index 00000000..3902254c
Binary files /dev/null and b/animateditems/26267.gif differ
diff --git a/animateditems/26267.png b/animateditems/26267.png
new file mode 100644
index 00000000..accd1629
Binary files /dev/null and b/animateditems/26267.png differ
diff --git a/animateditems/26268.gif b/animateditems/26268.gif
new file mode 100644
index 00000000..f3c83038
Binary files /dev/null and b/animateditems/26268.gif differ
diff --git a/animateditems/26268.png b/animateditems/26268.png
new file mode 100644
index 00000000..3d7aa738
Binary files /dev/null and b/animateditems/26268.png differ
diff --git a/animateditems/26269.gif b/animateditems/26269.gif
new file mode 100644
index 00000000..87461b1f
Binary files /dev/null and b/animateditems/26269.gif differ
diff --git a/animateditems/26269.png b/animateditems/26269.png
new file mode 100644
index 00000000..7ace7eef
Binary files /dev/null and b/animateditems/26269.png differ
diff --git a/animateditems/2627.gif b/animateditems/2627.gif
new file mode 100644
index 00000000..edc19449
Binary files /dev/null and b/animateditems/2627.gif differ
diff --git a/animateditems/2627.png b/animateditems/2627.png
new file mode 100644
index 00000000..13a31434
Binary files /dev/null and b/animateditems/2627.png differ
diff --git a/animateditems/26270.gif b/animateditems/26270.gif
new file mode 100644
index 00000000..bf231216
Binary files /dev/null and b/animateditems/26270.gif differ
diff --git a/animateditems/26270.png b/animateditems/26270.png
new file mode 100644
index 00000000..e823ee7a
Binary files /dev/null and b/animateditems/26270.png differ
diff --git a/animateditems/26271.gif b/animateditems/26271.gif
new file mode 100644
index 00000000..eec42053
Binary files /dev/null and b/animateditems/26271.gif differ
diff --git a/animateditems/26271.png b/animateditems/26271.png
new file mode 100644
index 00000000..67c19aee
Binary files /dev/null and b/animateditems/26271.png differ
diff --git a/animateditems/26272.gif b/animateditems/26272.gif
new file mode 100644
index 00000000..b490ae5f
Binary files /dev/null and b/animateditems/26272.gif differ
diff --git a/animateditems/26272.png b/animateditems/26272.png
new file mode 100644
index 00000000..8a8185d6
Binary files /dev/null and b/animateditems/26272.png differ
diff --git a/animateditems/26273.gif b/animateditems/26273.gif
new file mode 100644
index 00000000..cecbe75b
Binary files /dev/null and b/animateditems/26273.gif differ
diff --git a/animateditems/26273.png b/animateditems/26273.png
new file mode 100644
index 00000000..750609e8
Binary files /dev/null and b/animateditems/26273.png differ
diff --git a/animateditems/26274.gif b/animateditems/26274.gif
new file mode 100644
index 00000000..144322de
Binary files /dev/null and b/animateditems/26274.gif differ
diff --git a/animateditems/26274.png b/animateditems/26274.png
new file mode 100644
index 00000000..444d4de3
Binary files /dev/null and b/animateditems/26274.png differ
diff --git a/animateditems/26275.gif b/animateditems/26275.gif
new file mode 100644
index 00000000..c1333962
Binary files /dev/null and b/animateditems/26275.gif differ
diff --git a/animateditems/26275.png b/animateditems/26275.png
new file mode 100644
index 00000000..c8156734
Binary files /dev/null and b/animateditems/26275.png differ
diff --git a/animateditems/26276.gif b/animateditems/26276.gif
new file mode 100644
index 00000000..c2087872
Binary files /dev/null and b/animateditems/26276.gif differ
diff --git a/animateditems/26276.png b/animateditems/26276.png
new file mode 100644
index 00000000..dcfef2f9
Binary files /dev/null and b/animateditems/26276.png differ
diff --git a/animateditems/26277.gif b/animateditems/26277.gif
new file mode 100644
index 00000000..1fa819b4
Binary files /dev/null and b/animateditems/26277.gif differ
diff --git a/animateditems/26277.png b/animateditems/26277.png
new file mode 100644
index 00000000..632ce0ba
Binary files /dev/null and b/animateditems/26277.png differ
diff --git a/animateditems/26278.gif b/animateditems/26278.gif
new file mode 100644
index 00000000..97727361
Binary files /dev/null and b/animateditems/26278.gif differ
diff --git a/animateditems/26278.png b/animateditems/26278.png
new file mode 100644
index 00000000..c6477e8c
Binary files /dev/null and b/animateditems/26278.png differ
diff --git a/animateditems/26279.gif b/animateditems/26279.gif
new file mode 100644
index 00000000..10c73569
Binary files /dev/null and b/animateditems/26279.gif differ
diff --git a/animateditems/26279.png b/animateditems/26279.png
new file mode 100644
index 00000000..bc1d3773
Binary files /dev/null and b/animateditems/26279.png differ
diff --git a/animateditems/2628.gif b/animateditems/2628.gif
new file mode 100644
index 00000000..b2cbdcfb
Binary files /dev/null and b/animateditems/2628.gif differ
diff --git a/animateditems/2628.png b/animateditems/2628.png
new file mode 100644
index 00000000..55ab832d
Binary files /dev/null and b/animateditems/2628.png differ
diff --git a/animateditems/26280.gif b/animateditems/26280.gif
new file mode 100644
index 00000000..ef7bfaeb
Binary files /dev/null and b/animateditems/26280.gif differ
diff --git a/animateditems/26280.png b/animateditems/26280.png
new file mode 100644
index 00000000..2b7dfb99
Binary files /dev/null and b/animateditems/26280.png differ
diff --git a/animateditems/26281.gif b/animateditems/26281.gif
new file mode 100644
index 00000000..92b84792
Binary files /dev/null and b/animateditems/26281.gif differ
diff --git a/animateditems/26281.png b/animateditems/26281.png
new file mode 100644
index 00000000..fb4e076e
Binary files /dev/null and b/animateditems/26281.png differ
diff --git a/animateditems/26282.gif b/animateditems/26282.gif
new file mode 100644
index 00000000..1b4d2f92
Binary files /dev/null and b/animateditems/26282.gif differ
diff --git a/animateditems/26282.png b/animateditems/26282.png
new file mode 100644
index 00000000..6e585eb7
Binary files /dev/null and b/animateditems/26282.png differ
diff --git a/animateditems/26283.gif b/animateditems/26283.gif
new file mode 100644
index 00000000..ccd2b662
Binary files /dev/null and b/animateditems/26283.gif differ
diff --git a/animateditems/26283.png b/animateditems/26283.png
new file mode 100644
index 00000000..4b1fdf35
Binary files /dev/null and b/animateditems/26283.png differ
diff --git a/animateditems/26284.gif b/animateditems/26284.gif
new file mode 100644
index 00000000..eee56197
Binary files /dev/null and b/animateditems/26284.gif differ
diff --git a/animateditems/26284.png b/animateditems/26284.png
new file mode 100644
index 00000000..98469322
Binary files /dev/null and b/animateditems/26284.png differ
diff --git a/animateditems/26285.gif b/animateditems/26285.gif
new file mode 100644
index 00000000..2a36b37d
Binary files /dev/null and b/animateditems/26285.gif differ
diff --git a/animateditems/26285.png b/animateditems/26285.png
new file mode 100644
index 00000000..67820706
Binary files /dev/null and b/animateditems/26285.png differ
diff --git a/animateditems/26286.gif b/animateditems/26286.gif
new file mode 100644
index 00000000..d75f03a9
Binary files /dev/null and b/animateditems/26286.gif differ
diff --git a/animateditems/26286.png b/animateditems/26286.png
new file mode 100644
index 00000000..9397b676
Binary files /dev/null and b/animateditems/26286.png differ
diff --git a/animateditems/26287.gif b/animateditems/26287.gif
new file mode 100644
index 00000000..18bc21b1
Binary files /dev/null and b/animateditems/26287.gif differ
diff --git a/animateditems/26287.png b/animateditems/26287.png
new file mode 100644
index 00000000..f8c58c31
Binary files /dev/null and b/animateditems/26287.png differ
diff --git a/animateditems/26288.gif b/animateditems/26288.gif
new file mode 100644
index 00000000..07a1bcd9
Binary files /dev/null and b/animateditems/26288.gif differ
diff --git a/animateditems/26288.png b/animateditems/26288.png
new file mode 100644
index 00000000..7c62e50c
Binary files /dev/null and b/animateditems/26288.png differ
diff --git a/animateditems/26289.gif b/animateditems/26289.gif
new file mode 100644
index 00000000..0335b13b
Binary files /dev/null and b/animateditems/26289.gif differ
diff --git a/animateditems/26289.png b/animateditems/26289.png
new file mode 100644
index 00000000..138c0348
Binary files /dev/null and b/animateditems/26289.png differ
diff --git a/animateditems/2629.gif b/animateditems/2629.gif
new file mode 100644
index 00000000..2372dee1
Binary files /dev/null and b/animateditems/2629.gif differ
diff --git a/animateditems/2629.png b/animateditems/2629.png
new file mode 100644
index 00000000..6e3d6853
Binary files /dev/null and b/animateditems/2629.png differ
diff --git a/animateditems/26290.gif b/animateditems/26290.gif
new file mode 100644
index 00000000..14a39f3d
Binary files /dev/null and b/animateditems/26290.gif differ
diff --git a/animateditems/26290.png b/animateditems/26290.png
new file mode 100644
index 00000000..075ac2ed
Binary files /dev/null and b/animateditems/26290.png differ
diff --git a/animateditems/26291.gif b/animateditems/26291.gif
new file mode 100644
index 00000000..463e35dc
Binary files /dev/null and b/animateditems/26291.gif differ
diff --git a/animateditems/26291.png b/animateditems/26291.png
new file mode 100644
index 00000000..2350aa8c
Binary files /dev/null and b/animateditems/26291.png differ
diff --git a/animateditems/26292.gif b/animateditems/26292.gif
new file mode 100644
index 00000000..4d9970ad
Binary files /dev/null and b/animateditems/26292.gif differ
diff --git a/animateditems/26292.png b/animateditems/26292.png
new file mode 100644
index 00000000..a4ee486a
Binary files /dev/null and b/animateditems/26292.png differ
diff --git a/animateditems/26293.gif b/animateditems/26293.gif
new file mode 100644
index 00000000..3a26d2f5
Binary files /dev/null and b/animateditems/26293.gif differ
diff --git a/animateditems/26293.png b/animateditems/26293.png
new file mode 100644
index 00000000..7a5d19f7
Binary files /dev/null and b/animateditems/26293.png differ
diff --git a/animateditems/26294.gif b/animateditems/26294.gif
new file mode 100644
index 00000000..701ef67f
Binary files /dev/null and b/animateditems/26294.gif differ
diff --git a/animateditems/26294.png b/animateditems/26294.png
new file mode 100644
index 00000000..910f7fb6
Binary files /dev/null and b/animateditems/26294.png differ
diff --git a/animateditems/26295.gif b/animateditems/26295.gif
new file mode 100644
index 00000000..6bd5e505
Binary files /dev/null and b/animateditems/26295.gif differ
diff --git a/animateditems/26295.png b/animateditems/26295.png
new file mode 100644
index 00000000..fb124c65
Binary files /dev/null and b/animateditems/26295.png differ
diff --git a/animateditems/26296.gif b/animateditems/26296.gif
new file mode 100644
index 00000000..6934b019
Binary files /dev/null and b/animateditems/26296.gif differ
diff --git a/animateditems/26296.png b/animateditems/26296.png
new file mode 100644
index 00000000..fc70784a
Binary files /dev/null and b/animateditems/26296.png differ
diff --git a/animateditems/26297.gif b/animateditems/26297.gif
new file mode 100644
index 00000000..f488b48b
Binary files /dev/null and b/animateditems/26297.gif differ
diff --git a/animateditems/26297.png b/animateditems/26297.png
new file mode 100644
index 00000000..6117ed3d
Binary files /dev/null and b/animateditems/26297.png differ
diff --git a/animateditems/26298.gif b/animateditems/26298.gif
new file mode 100644
index 00000000..c5a594b5
Binary files /dev/null and b/animateditems/26298.gif differ
diff --git a/animateditems/26298.png b/animateditems/26298.png
new file mode 100644
index 00000000..3a20ff07
Binary files /dev/null and b/animateditems/26298.png differ
diff --git a/animateditems/26299.gif b/animateditems/26299.gif
new file mode 100644
index 00000000..f0278ddf
Binary files /dev/null and b/animateditems/26299.gif differ
diff --git a/animateditems/26299.png b/animateditems/26299.png
new file mode 100644
index 00000000..7370c49b
Binary files /dev/null and b/animateditems/26299.png differ
diff --git a/animateditems/2630.gif b/animateditems/2630.gif
new file mode 100644
index 00000000..7bc365cb
Binary files /dev/null and b/animateditems/2630.gif differ
diff --git a/animateditems/2630.png b/animateditems/2630.png
new file mode 100644
index 00000000..8f7aec2d
Binary files /dev/null and b/animateditems/2630.png differ
diff --git a/animateditems/26300.gif b/animateditems/26300.gif
new file mode 100644
index 00000000..6b27f29f
Binary files /dev/null and b/animateditems/26300.gif differ
diff --git a/animateditems/26300.png b/animateditems/26300.png
new file mode 100644
index 00000000..7621ef4d
Binary files /dev/null and b/animateditems/26300.png differ
diff --git a/animateditems/26301.gif b/animateditems/26301.gif
new file mode 100644
index 00000000..93def840
Binary files /dev/null and b/animateditems/26301.gif differ
diff --git a/animateditems/26301.png b/animateditems/26301.png
new file mode 100644
index 00000000..c5c39766
Binary files /dev/null and b/animateditems/26301.png differ
diff --git a/animateditems/26302.gif b/animateditems/26302.gif
new file mode 100644
index 00000000..e0d74d57
Binary files /dev/null and b/animateditems/26302.gif differ
diff --git a/animateditems/26302.png b/animateditems/26302.png
new file mode 100644
index 00000000..bdf0feed
Binary files /dev/null and b/animateditems/26302.png differ
diff --git a/animateditems/26303.gif b/animateditems/26303.gif
new file mode 100644
index 00000000..7ebf66a9
Binary files /dev/null and b/animateditems/26303.gif differ
diff --git a/animateditems/26303.png b/animateditems/26303.png
new file mode 100644
index 00000000..78e62204
Binary files /dev/null and b/animateditems/26303.png differ
diff --git a/animateditems/26304.gif b/animateditems/26304.gif
new file mode 100644
index 00000000..636bfddb
Binary files /dev/null and b/animateditems/26304.gif differ
diff --git a/animateditems/26304.png b/animateditems/26304.png
new file mode 100644
index 00000000..cfa12f7f
Binary files /dev/null and b/animateditems/26304.png differ
diff --git a/animateditems/26305.gif b/animateditems/26305.gif
new file mode 100644
index 00000000..bfa87fab
Binary files /dev/null and b/animateditems/26305.gif differ
diff --git a/animateditems/26305.png b/animateditems/26305.png
new file mode 100644
index 00000000..a329cb06
Binary files /dev/null and b/animateditems/26305.png differ
diff --git a/animateditems/26306.gif b/animateditems/26306.gif
new file mode 100644
index 00000000..cb65e2ff
Binary files /dev/null and b/animateditems/26306.gif differ
diff --git a/animateditems/26306.png b/animateditems/26306.png
new file mode 100644
index 00000000..e1f7fb81
Binary files /dev/null and b/animateditems/26306.png differ
diff --git a/animateditems/26307.gif b/animateditems/26307.gif
new file mode 100644
index 00000000..2e7dacfc
Binary files /dev/null and b/animateditems/26307.gif differ
diff --git a/animateditems/26307.png b/animateditems/26307.png
new file mode 100644
index 00000000..7639909f
Binary files /dev/null and b/animateditems/26307.png differ
diff --git a/animateditems/26308.gif b/animateditems/26308.gif
new file mode 100644
index 00000000..2e447145
Binary files /dev/null and b/animateditems/26308.gif differ
diff --git a/animateditems/26308.png b/animateditems/26308.png
new file mode 100644
index 00000000..47d41086
Binary files /dev/null and b/animateditems/26308.png differ
diff --git a/animateditems/26309.gif b/animateditems/26309.gif
new file mode 100644
index 00000000..721988b0
Binary files /dev/null and b/animateditems/26309.gif differ
diff --git a/animateditems/26309.png b/animateditems/26309.png
new file mode 100644
index 00000000..717c82f5
Binary files /dev/null and b/animateditems/26309.png differ
diff --git a/animateditems/2631.gif b/animateditems/2631.gif
new file mode 100644
index 00000000..001604e6
Binary files /dev/null and b/animateditems/2631.gif differ
diff --git a/animateditems/2631.png b/animateditems/2631.png
new file mode 100644
index 00000000..6b5faddf
Binary files /dev/null and b/animateditems/2631.png differ
diff --git a/animateditems/26310.gif b/animateditems/26310.gif
new file mode 100644
index 00000000..60df5f4f
Binary files /dev/null and b/animateditems/26310.gif differ
diff --git a/animateditems/26310.png b/animateditems/26310.png
new file mode 100644
index 00000000..bd6cf3da
Binary files /dev/null and b/animateditems/26310.png differ
diff --git a/animateditems/26311.gif b/animateditems/26311.gif
new file mode 100644
index 00000000..62ff98ab
Binary files /dev/null and b/animateditems/26311.gif differ
diff --git a/animateditems/26311.png b/animateditems/26311.png
new file mode 100644
index 00000000..05366d84
Binary files /dev/null and b/animateditems/26311.png differ
diff --git a/animateditems/26312.gif b/animateditems/26312.gif
new file mode 100644
index 00000000..a7bc740d
Binary files /dev/null and b/animateditems/26312.gif differ
diff --git a/animateditems/26312.png b/animateditems/26312.png
new file mode 100644
index 00000000..48d4bfee
Binary files /dev/null and b/animateditems/26312.png differ
diff --git a/animateditems/26313.gif b/animateditems/26313.gif
new file mode 100644
index 00000000..0598ab0f
Binary files /dev/null and b/animateditems/26313.gif differ
diff --git a/animateditems/26313.png b/animateditems/26313.png
new file mode 100644
index 00000000..988433ef
Binary files /dev/null and b/animateditems/26313.png differ
diff --git a/animateditems/26314.gif b/animateditems/26314.gif
new file mode 100644
index 00000000..c40bd604
Binary files /dev/null and b/animateditems/26314.gif differ
diff --git a/animateditems/26314.png b/animateditems/26314.png
new file mode 100644
index 00000000..0677c9db
Binary files /dev/null and b/animateditems/26314.png differ
diff --git a/animateditems/26315.gif b/animateditems/26315.gif
new file mode 100644
index 00000000..ecbfcc34
Binary files /dev/null and b/animateditems/26315.gif differ
diff --git a/animateditems/26315.png b/animateditems/26315.png
new file mode 100644
index 00000000..0a428a38
Binary files /dev/null and b/animateditems/26315.png differ
diff --git a/animateditems/26316.gif b/animateditems/26316.gif
new file mode 100644
index 00000000..0955532d
Binary files /dev/null and b/animateditems/26316.gif differ
diff --git a/animateditems/26316.png b/animateditems/26316.png
new file mode 100644
index 00000000..2dc68762
Binary files /dev/null and b/animateditems/26316.png differ
diff --git a/animateditems/26317.gif b/animateditems/26317.gif
new file mode 100644
index 00000000..4c361c23
Binary files /dev/null and b/animateditems/26317.gif differ
diff --git a/animateditems/26317.png b/animateditems/26317.png
new file mode 100644
index 00000000..8883bbda
Binary files /dev/null and b/animateditems/26317.png differ
diff --git a/animateditems/26318.gif b/animateditems/26318.gif
new file mode 100644
index 00000000..25c6de4f
Binary files /dev/null and b/animateditems/26318.gif differ
diff --git a/animateditems/26318.png b/animateditems/26318.png
new file mode 100644
index 00000000..46fab17f
Binary files /dev/null and b/animateditems/26318.png differ
diff --git a/animateditems/26319.gif b/animateditems/26319.gif
new file mode 100644
index 00000000..4935d1fb
Binary files /dev/null and b/animateditems/26319.gif differ
diff --git a/animateditems/26319.png b/animateditems/26319.png
new file mode 100644
index 00000000..ad46a60d
Binary files /dev/null and b/animateditems/26319.png differ
diff --git a/animateditems/2632.gif b/animateditems/2632.gif
new file mode 100644
index 00000000..d0970a5e
Binary files /dev/null and b/animateditems/2632.gif differ
diff --git a/animateditems/2632.png b/animateditems/2632.png
new file mode 100644
index 00000000..12448398
Binary files /dev/null and b/animateditems/2632.png differ
diff --git a/animateditems/26320.gif b/animateditems/26320.gif
new file mode 100644
index 00000000..9b2cb9f9
Binary files /dev/null and b/animateditems/26320.gif differ
diff --git a/animateditems/26320.png b/animateditems/26320.png
new file mode 100644
index 00000000..874c7dac
Binary files /dev/null and b/animateditems/26320.png differ
diff --git a/animateditems/26321.gif b/animateditems/26321.gif
new file mode 100644
index 00000000..a3f47b73
Binary files /dev/null and b/animateditems/26321.gif differ
diff --git a/animateditems/26321.png b/animateditems/26321.png
new file mode 100644
index 00000000..1075c1d0
Binary files /dev/null and b/animateditems/26321.png differ
diff --git a/animateditems/26322.gif b/animateditems/26322.gif
new file mode 100644
index 00000000..4d81c393
Binary files /dev/null and b/animateditems/26322.gif differ
diff --git a/animateditems/26322.png b/animateditems/26322.png
new file mode 100644
index 00000000..42706c43
Binary files /dev/null and b/animateditems/26322.png differ
diff --git a/animateditems/26323.gif b/animateditems/26323.gif
new file mode 100644
index 00000000..86b51aef
Binary files /dev/null and b/animateditems/26323.gif differ
diff --git a/animateditems/26323.png b/animateditems/26323.png
new file mode 100644
index 00000000..b715496f
Binary files /dev/null and b/animateditems/26323.png differ
diff --git a/animateditems/2633.gif b/animateditems/2633.gif
new file mode 100644
index 00000000..d5bdfb83
Binary files /dev/null and b/animateditems/2633.gif differ
diff --git a/animateditems/2633.png b/animateditems/2633.png
new file mode 100644
index 00000000..58aadfb7
Binary files /dev/null and b/animateditems/2633.png differ
diff --git a/animateditems/26332.gif b/animateditems/26332.gif
new file mode 100644
index 00000000..c9c92d0d
Binary files /dev/null and b/animateditems/26332.gif differ
diff --git a/animateditems/26332.png b/animateditems/26332.png
new file mode 100644
index 00000000..0923bc2c
Binary files /dev/null and b/animateditems/26332.png differ
diff --git a/animateditems/26333.gif b/animateditems/26333.gif
new file mode 100644
index 00000000..b8a79f6e
Binary files /dev/null and b/animateditems/26333.gif differ
diff --git a/animateditems/26333.png b/animateditems/26333.png
new file mode 100644
index 00000000..c7b72006
Binary files /dev/null and b/animateditems/26333.png differ
diff --git a/animateditems/26334.gif b/animateditems/26334.gif
new file mode 100644
index 00000000..578f3be6
Binary files /dev/null and b/animateditems/26334.gif differ
diff --git a/animateditems/26334.png b/animateditems/26334.png
new file mode 100644
index 00000000..d2c60471
Binary files /dev/null and b/animateditems/26334.png differ
diff --git a/animateditems/26335.gif b/animateditems/26335.gif
new file mode 100644
index 00000000..738a3bf4
Binary files /dev/null and b/animateditems/26335.gif differ
diff --git a/animateditems/26335.png b/animateditems/26335.png
new file mode 100644
index 00000000..0bfe7fd5
Binary files /dev/null and b/animateditems/26335.png differ
diff --git a/animateditems/26336.gif b/animateditems/26336.gif
new file mode 100644
index 00000000..5336bb4a
Binary files /dev/null and b/animateditems/26336.gif differ
diff --git a/animateditems/26336.png b/animateditems/26336.png
new file mode 100644
index 00000000..d30303b8
Binary files /dev/null and b/animateditems/26336.png differ
diff --git a/animateditems/26337.gif b/animateditems/26337.gif
new file mode 100644
index 00000000..ac7c7339
Binary files /dev/null and b/animateditems/26337.gif differ
diff --git a/animateditems/26337.png b/animateditems/26337.png
new file mode 100644
index 00000000..742ad769
Binary files /dev/null and b/animateditems/26337.png differ
diff --git a/animateditems/26338.gif b/animateditems/26338.gif
new file mode 100644
index 00000000..8dbe8a9b
Binary files /dev/null and b/animateditems/26338.gif differ
diff --git a/animateditems/26338.png b/animateditems/26338.png
new file mode 100644
index 00000000..cc384a2c
Binary files /dev/null and b/animateditems/26338.png differ
diff --git a/animateditems/26339.gif b/animateditems/26339.gif
new file mode 100644
index 00000000..f5dfe12e
Binary files /dev/null and b/animateditems/26339.gif differ
diff --git a/animateditems/26339.png b/animateditems/26339.png
new file mode 100644
index 00000000..5517ed04
Binary files /dev/null and b/animateditems/26339.png differ
diff --git a/animateditems/2634.gif b/animateditems/2634.gif
new file mode 100644
index 00000000..45c598e3
Binary files /dev/null and b/animateditems/2634.gif differ
diff --git a/animateditems/2634.png b/animateditems/2634.png
new file mode 100644
index 00000000..377d2301
Binary files /dev/null and b/animateditems/2634.png differ
diff --git a/animateditems/26340.gif b/animateditems/26340.gif
new file mode 100644
index 00000000..b63a13fc
Binary files /dev/null and b/animateditems/26340.gif differ
diff --git a/animateditems/26340.png b/animateditems/26340.png
new file mode 100644
index 00000000..6be48633
Binary files /dev/null and b/animateditems/26340.png differ
diff --git a/animateditems/26341.gif b/animateditems/26341.gif
new file mode 100644
index 00000000..8fe7e864
Binary files /dev/null and b/animateditems/26341.gif differ
diff --git a/animateditems/26341.png b/animateditems/26341.png
new file mode 100644
index 00000000..523fb9e1
Binary files /dev/null and b/animateditems/26341.png differ
diff --git a/animateditems/26342.gif b/animateditems/26342.gif
new file mode 100644
index 00000000..2681c47f
Binary files /dev/null and b/animateditems/26342.gif differ
diff --git a/animateditems/26342.png b/animateditems/26342.png
new file mode 100644
index 00000000..7ad1d022
Binary files /dev/null and b/animateditems/26342.png differ
diff --git a/animateditems/26343.gif b/animateditems/26343.gif
new file mode 100644
index 00000000..9b4b88a2
Binary files /dev/null and b/animateditems/26343.gif differ
diff --git a/animateditems/26343.png b/animateditems/26343.png
new file mode 100644
index 00000000..3cdc8de6
Binary files /dev/null and b/animateditems/26343.png differ
diff --git a/animateditems/2635.gif b/animateditems/2635.gif
new file mode 100644
index 00000000..dcfef062
Binary files /dev/null and b/animateditems/2635.gif differ
diff --git a/animateditems/2635.png b/animateditems/2635.png
new file mode 100644
index 00000000..e91044b6
Binary files /dev/null and b/animateditems/2635.png differ
diff --git a/animateditems/2636.gif b/animateditems/2636.gif
new file mode 100644
index 00000000..006be340
Binary files /dev/null and b/animateditems/2636.gif differ
diff --git a/animateditems/2636.png b/animateditems/2636.png
new file mode 100644
index 00000000..e32c40fa
Binary files /dev/null and b/animateditems/2636.png differ
diff --git a/animateditems/2637.gif b/animateditems/2637.gif
new file mode 100644
index 00000000..609b9eaa
Binary files /dev/null and b/animateditems/2637.gif differ
diff --git a/animateditems/2637.png b/animateditems/2637.png
new file mode 100644
index 00000000..2fecd471
Binary files /dev/null and b/animateditems/2637.png differ
diff --git a/animateditems/26377.gif b/animateditems/26377.gif
new file mode 100644
index 00000000..b9f62517
Binary files /dev/null and b/animateditems/26377.gif differ
diff --git a/animateditems/26377.png b/animateditems/26377.png
new file mode 100644
index 00000000..d9349a77
Binary files /dev/null and b/animateditems/26377.png differ
diff --git a/animateditems/26378.gif b/animateditems/26378.gif
new file mode 100644
index 00000000..12a09565
Binary files /dev/null and b/animateditems/26378.gif differ
diff --git a/animateditems/26378.png b/animateditems/26378.png
new file mode 100644
index 00000000..52519f56
Binary files /dev/null and b/animateditems/26378.png differ
diff --git a/animateditems/2638.gif b/animateditems/2638.gif
new file mode 100644
index 00000000..a1d2ac4d
Binary files /dev/null and b/animateditems/2638.gif differ
diff --git a/animateditems/2638.png b/animateditems/2638.png
new file mode 100644
index 00000000..d784640f
Binary files /dev/null and b/animateditems/2638.png differ
diff --git a/animateditems/26385.gif b/animateditems/26385.gif
new file mode 100644
index 00000000..bb5d94a6
Binary files /dev/null and b/animateditems/26385.gif differ
diff --git a/animateditems/26385.png b/animateditems/26385.png
new file mode 100644
index 00000000..c71075c4
Binary files /dev/null and b/animateditems/26385.png differ
diff --git a/animateditems/26387.gif b/animateditems/26387.gif
new file mode 100644
index 00000000..1d458d41
Binary files /dev/null and b/animateditems/26387.gif differ
diff --git a/animateditems/26387.png b/animateditems/26387.png
new file mode 100644
index 00000000..b338208a
Binary files /dev/null and b/animateditems/26387.png differ
diff --git a/animateditems/26388.gif b/animateditems/26388.gif
new file mode 100644
index 00000000..e90a5131
Binary files /dev/null and b/animateditems/26388.gif differ
diff --git a/animateditems/26388.png b/animateditems/26388.png
new file mode 100644
index 00000000..b979699a
Binary files /dev/null and b/animateditems/26388.png differ
diff --git a/animateditems/26389.gif b/animateditems/26389.gif
new file mode 100644
index 00000000..eff231e9
Binary files /dev/null and b/animateditems/26389.gif differ
diff --git a/animateditems/26389.png b/animateditems/26389.png
new file mode 100644
index 00000000..bab4dd30
Binary files /dev/null and b/animateditems/26389.png differ
diff --git a/animateditems/2639.gif b/animateditems/2639.gif
new file mode 100644
index 00000000..75699fe2
Binary files /dev/null and b/animateditems/2639.gif differ
diff --git a/animateditems/2639.png b/animateditems/2639.png
new file mode 100644
index 00000000..369beb8f
Binary files /dev/null and b/animateditems/2639.png differ
diff --git a/animateditems/26390.gif b/animateditems/26390.gif
new file mode 100644
index 00000000..5434a7e3
Binary files /dev/null and b/animateditems/26390.gif differ
diff --git a/animateditems/26390.png b/animateditems/26390.png
new file mode 100644
index 00000000..26e79008
Binary files /dev/null and b/animateditems/26390.png differ
diff --git a/animateditems/26394.gif b/animateditems/26394.gif
new file mode 100644
index 00000000..f3b535f6
Binary files /dev/null and b/animateditems/26394.gif differ
diff --git a/animateditems/26394.png b/animateditems/26394.png
new file mode 100644
index 00000000..7014fece
Binary files /dev/null and b/animateditems/26394.png differ
diff --git a/animateditems/2640.gif b/animateditems/2640.gif
new file mode 100644
index 00000000..6922347d
Binary files /dev/null and b/animateditems/2640.gif differ
diff --git a/animateditems/2640.png b/animateditems/2640.png
new file mode 100644
index 00000000..125f8c66
Binary files /dev/null and b/animateditems/2640.png differ
diff --git a/animateditems/2641.gif b/animateditems/2641.gif
new file mode 100644
index 00000000..90c70fb6
Binary files /dev/null and b/animateditems/2641.gif differ
diff --git a/animateditems/2641.png b/animateditems/2641.png
new file mode 100644
index 00000000..0fe27b4a
Binary files /dev/null and b/animateditems/2641.png differ
diff --git a/animateditems/2642.gif b/animateditems/2642.gif
new file mode 100644
index 00000000..0d6ef90e
Binary files /dev/null and b/animateditems/2642.gif differ
diff --git a/animateditems/2642.png b/animateditems/2642.png
new file mode 100644
index 00000000..9f77fcc6
Binary files /dev/null and b/animateditems/2642.png differ
diff --git a/animateditems/2643.gif b/animateditems/2643.gif
new file mode 100644
index 00000000..f191b510
Binary files /dev/null and b/animateditems/2643.gif differ
diff --git a/animateditems/2643.png b/animateditems/2643.png
new file mode 100644
index 00000000..bc5ed6f2
Binary files /dev/null and b/animateditems/2643.png differ
diff --git a/animateditems/2644.gif b/animateditems/2644.gif
new file mode 100644
index 00000000..f1c232dd
Binary files /dev/null and b/animateditems/2644.gif differ
diff --git a/animateditems/2644.png b/animateditems/2644.png
new file mode 100644
index 00000000..7b32dac2
Binary files /dev/null and b/animateditems/2644.png differ
diff --git a/animateditems/2645.gif b/animateditems/2645.gif
new file mode 100644
index 00000000..f868e5dc
Binary files /dev/null and b/animateditems/2645.gif differ
diff --git a/animateditems/2645.png b/animateditems/2645.png
new file mode 100644
index 00000000..efb57ea5
Binary files /dev/null and b/animateditems/2645.png differ
diff --git a/animateditems/2646.gif b/animateditems/2646.gif
new file mode 100644
index 00000000..49662357
Binary files /dev/null and b/animateditems/2646.gif differ
diff --git a/animateditems/2646.png b/animateditems/2646.png
new file mode 100644
index 00000000..8925520a
Binary files /dev/null and b/animateditems/2646.png differ
diff --git a/animateditems/26466.gif b/animateditems/26466.gif
new file mode 100644
index 00000000..2260d720
Binary files /dev/null and b/animateditems/26466.gif differ
diff --git a/animateditems/26466.png b/animateditems/26466.png
new file mode 100644
index 00000000..c5d0a0cb
Binary files /dev/null and b/animateditems/26466.png differ
diff --git a/animateditems/26467.gif b/animateditems/26467.gif
new file mode 100644
index 00000000..7f28de62
Binary files /dev/null and b/animateditems/26467.gif differ
diff --git a/animateditems/26467.png b/animateditems/26467.png
new file mode 100644
index 00000000..69de34c7
Binary files /dev/null and b/animateditems/26467.png differ
diff --git a/animateditems/26468.gif b/animateditems/26468.gif
new file mode 100644
index 00000000..dac4823b
Binary files /dev/null and b/animateditems/26468.gif differ
diff --git a/animateditems/26468.png b/animateditems/26468.png
new file mode 100644
index 00000000..5e9eb257
Binary files /dev/null and b/animateditems/26468.png differ
diff --git a/animateditems/26469.gif b/animateditems/26469.gif
new file mode 100644
index 00000000..715f834b
Binary files /dev/null and b/animateditems/26469.gif differ
diff --git a/animateditems/26469.png b/animateditems/26469.png
new file mode 100644
index 00000000..051663c5
Binary files /dev/null and b/animateditems/26469.png differ
diff --git a/animateditems/2647.gif b/animateditems/2647.gif
new file mode 100644
index 00000000..56cbb743
Binary files /dev/null and b/animateditems/2647.gif differ
diff --git a/animateditems/2647.png b/animateditems/2647.png
new file mode 100644
index 00000000..08b22b8f
Binary files /dev/null and b/animateditems/2647.png differ
diff --git a/animateditems/2648.gif b/animateditems/2648.gif
new file mode 100644
index 00000000..a1892b2d
Binary files /dev/null and b/animateditems/2648.gif differ
diff --git a/animateditems/2648.png b/animateditems/2648.png
new file mode 100644
index 00000000..cc75e603
Binary files /dev/null and b/animateditems/2648.png differ
diff --git a/animateditems/2649.gif b/animateditems/2649.gif
new file mode 100644
index 00000000..9b75bfbe
Binary files /dev/null and b/animateditems/2649.gif differ
diff --git a/animateditems/2649.png b/animateditems/2649.png
new file mode 100644
index 00000000..d756d05a
Binary files /dev/null and b/animateditems/2649.png differ
diff --git a/animateditems/2650.gif b/animateditems/2650.gif
new file mode 100644
index 00000000..777acfd7
Binary files /dev/null and b/animateditems/2650.gif differ
diff --git a/animateditems/2650.png b/animateditems/2650.png
new file mode 100644
index 00000000..6b96ab6a
Binary files /dev/null and b/animateditems/2650.png differ
diff --git a/animateditems/2651.gif b/animateditems/2651.gif
new file mode 100644
index 00000000..51e23b7b
Binary files /dev/null and b/animateditems/2651.gif differ
diff --git a/animateditems/2651.png b/animateditems/2651.png
new file mode 100644
index 00000000..42e00cda
Binary files /dev/null and b/animateditems/2651.png differ
diff --git a/animateditems/2652.gif b/animateditems/2652.gif
new file mode 100644
index 00000000..05822511
Binary files /dev/null and b/animateditems/2652.gif differ
diff --git a/animateditems/2652.png b/animateditems/2652.png
new file mode 100644
index 00000000..63eee154
Binary files /dev/null and b/animateditems/2652.png differ
diff --git a/animateditems/2653.gif b/animateditems/2653.gif
new file mode 100644
index 00000000..79643d9d
Binary files /dev/null and b/animateditems/2653.gif differ
diff --git a/animateditems/2653.png b/animateditems/2653.png
new file mode 100644
index 00000000..e2d204e9
Binary files /dev/null and b/animateditems/2653.png differ
diff --git a/animateditems/2654.gif b/animateditems/2654.gif
new file mode 100644
index 00000000..682867f9
Binary files /dev/null and b/animateditems/2654.gif differ
diff --git a/animateditems/2654.png b/animateditems/2654.png
new file mode 100644
index 00000000..b40809a5
Binary files /dev/null and b/animateditems/2654.png differ
diff --git a/animateditems/2655.gif b/animateditems/2655.gif
new file mode 100644
index 00000000..35d23421
Binary files /dev/null and b/animateditems/2655.gif differ
diff --git a/animateditems/2655.png b/animateditems/2655.png
new file mode 100644
index 00000000..19f1f32c
Binary files /dev/null and b/animateditems/2655.png differ
diff --git a/animateditems/2656.gif b/animateditems/2656.gif
new file mode 100644
index 00000000..17177cba
Binary files /dev/null and b/animateditems/2656.gif differ
diff --git a/animateditems/2656.png b/animateditems/2656.png
new file mode 100644
index 00000000..cb5c638a
Binary files /dev/null and b/animateditems/2656.png differ
diff --git a/animateditems/2657.gif b/animateditems/2657.gif
new file mode 100644
index 00000000..bd5eaf46
Binary files /dev/null and b/animateditems/2657.gif differ
diff --git a/animateditems/2657.png b/animateditems/2657.png
new file mode 100644
index 00000000..59b6e56a
Binary files /dev/null and b/animateditems/2657.png differ
diff --git a/animateditems/2658.gif b/animateditems/2658.gif
new file mode 100644
index 00000000..4f7042b6
Binary files /dev/null and b/animateditems/2658.gif differ
diff --git a/animateditems/2658.png b/animateditems/2658.png
new file mode 100644
index 00000000..cbe102c9
Binary files /dev/null and b/animateditems/2658.png differ
diff --git a/animateditems/2659.gif b/animateditems/2659.gif
new file mode 100644
index 00000000..b09c382d
Binary files /dev/null and b/animateditems/2659.gif differ
diff --git a/animateditems/2659.png b/animateditems/2659.png
new file mode 100644
index 00000000..269458d1
Binary files /dev/null and b/animateditems/2659.png differ
diff --git a/animateditems/2660.gif b/animateditems/2660.gif
new file mode 100644
index 00000000..24a0084b
Binary files /dev/null and b/animateditems/2660.gif differ
diff --git a/animateditems/2660.png b/animateditems/2660.png
new file mode 100644
index 00000000..5f2d9c94
Binary files /dev/null and b/animateditems/2660.png differ
diff --git a/animateditems/2661.gif b/animateditems/2661.gif
new file mode 100644
index 00000000..14d031e8
Binary files /dev/null and b/animateditems/2661.gif differ
diff --git a/animateditems/2661.png b/animateditems/2661.png
new file mode 100644
index 00000000..76a2fe2b
Binary files /dev/null and b/animateditems/2661.png differ
diff --git a/animateditems/2662.gif b/animateditems/2662.gif
new file mode 100644
index 00000000..bc27fe27
Binary files /dev/null and b/animateditems/2662.gif differ
diff --git a/animateditems/2662.png b/animateditems/2662.png
new file mode 100644
index 00000000..621fa25d
Binary files /dev/null and b/animateditems/2662.png differ
diff --git a/animateditems/2663.gif b/animateditems/2663.gif
new file mode 100644
index 00000000..1c18ee35
Binary files /dev/null and b/animateditems/2663.gif differ
diff --git a/animateditems/2663.png b/animateditems/2663.png
new file mode 100644
index 00000000..6cdef1cc
Binary files /dev/null and b/animateditems/2663.png differ
diff --git a/animateditems/2664.gif b/animateditems/2664.gif
new file mode 100644
index 00000000..a79cf718
Binary files /dev/null and b/animateditems/2664.gif differ
diff --git a/animateditems/2664.png b/animateditems/2664.png
new file mode 100644
index 00000000..f002133e
Binary files /dev/null and b/animateditems/2664.png differ
diff --git a/animateditems/26641.gif b/animateditems/26641.gif
new file mode 100644
index 00000000..bbaab7db
Binary files /dev/null and b/animateditems/26641.gif differ
diff --git a/animateditems/26641.png b/animateditems/26641.png
new file mode 100644
index 00000000..489be532
Binary files /dev/null and b/animateditems/26641.png differ
diff --git a/animateditems/26642.gif b/animateditems/26642.gif
new file mode 100644
index 00000000..6c042719
Binary files /dev/null and b/animateditems/26642.gif differ
diff --git a/animateditems/26642.png b/animateditems/26642.png
new file mode 100644
index 00000000..c63f1c87
Binary files /dev/null and b/animateditems/26642.png differ
diff --git a/animateditems/2665.gif b/animateditems/2665.gif
new file mode 100644
index 00000000..b4463413
Binary files /dev/null and b/animateditems/2665.gif differ
diff --git a/animateditems/2665.png b/animateditems/2665.png
new file mode 100644
index 00000000..6a180d26
Binary files /dev/null and b/animateditems/2665.png differ
diff --git a/animateditems/2666.gif b/animateditems/2666.gif
new file mode 100644
index 00000000..2575f3e9
Binary files /dev/null and b/animateditems/2666.gif differ
diff --git a/animateditems/2666.png b/animateditems/2666.png
new file mode 100644
index 00000000..a4a00e83
Binary files /dev/null and b/animateditems/2666.png differ
diff --git a/animateditems/2667.gif b/animateditems/2667.gif
new file mode 100644
index 00000000..f1b90985
Binary files /dev/null and b/animateditems/2667.gif differ
diff --git a/animateditems/2667.png b/animateditems/2667.png
new file mode 100644
index 00000000..fcd013d2
Binary files /dev/null and b/animateditems/2667.png differ
diff --git a/animateditems/2668.gif b/animateditems/2668.gif
new file mode 100644
index 00000000..06116fd2
Binary files /dev/null and b/animateditems/2668.gif differ
diff --git a/animateditems/2668.png b/animateditems/2668.png
new file mode 100644
index 00000000..f35202bc
Binary files /dev/null and b/animateditems/2668.png differ
diff --git a/animateditems/2669.gif b/animateditems/2669.gif
new file mode 100644
index 00000000..3a0aea51
Binary files /dev/null and b/animateditems/2669.gif differ
diff --git a/animateditems/2669.png b/animateditems/2669.png
new file mode 100644
index 00000000..7de9fa8e
Binary files /dev/null and b/animateditems/2669.png differ
diff --git a/animateditems/2670.gif b/animateditems/2670.gif
new file mode 100644
index 00000000..384f43c3
Binary files /dev/null and b/animateditems/2670.gif differ
diff --git a/animateditems/2670.png b/animateditems/2670.png
new file mode 100644
index 00000000..6fd1583a
Binary files /dev/null and b/animateditems/2670.png differ
diff --git a/animateditems/2671.gif b/animateditems/2671.gif
new file mode 100644
index 00000000..9906293c
Binary files /dev/null and b/animateditems/2671.gif differ
diff --git a/animateditems/2671.png b/animateditems/2671.png
new file mode 100644
index 00000000..0b45a3c8
Binary files /dev/null and b/animateditems/2671.png differ
diff --git a/animateditems/2672.gif b/animateditems/2672.gif
new file mode 100644
index 00000000..56804d55
Binary files /dev/null and b/animateditems/2672.gif differ
diff --git a/animateditems/2672.png b/animateditems/2672.png
new file mode 100644
index 00000000..38905554
Binary files /dev/null and b/animateditems/2672.png differ
diff --git a/animateditems/2673.gif b/animateditems/2673.gif
new file mode 100644
index 00000000..8a96a6c8
Binary files /dev/null and b/animateditems/2673.gif differ
diff --git a/animateditems/2673.png b/animateditems/2673.png
new file mode 100644
index 00000000..09fb1902
Binary files /dev/null and b/animateditems/2673.png differ
diff --git a/animateditems/2674.gif b/animateditems/2674.gif
new file mode 100644
index 00000000..345ee486
Binary files /dev/null and b/animateditems/2674.gif differ
diff --git a/animateditems/2674.png b/animateditems/2674.png
new file mode 100644
index 00000000..679ef78a
Binary files /dev/null and b/animateditems/2674.png differ
diff --git a/animateditems/2675.gif b/animateditems/2675.gif
new file mode 100644
index 00000000..10e6dc36
Binary files /dev/null and b/animateditems/2675.gif differ
diff --git a/animateditems/2675.png b/animateditems/2675.png
new file mode 100644
index 00000000..8006fd20
Binary files /dev/null and b/animateditems/2675.png differ
diff --git a/animateditems/2676.gif b/animateditems/2676.gif
new file mode 100644
index 00000000..334a06e0
Binary files /dev/null and b/animateditems/2676.gif differ
diff --git a/animateditems/2676.png b/animateditems/2676.png
new file mode 100644
index 00000000..75ffd37e
Binary files /dev/null and b/animateditems/2676.png differ
diff --git a/animateditems/2677.gif b/animateditems/2677.gif
new file mode 100644
index 00000000..2b42a6f8
Binary files /dev/null and b/animateditems/2677.gif differ
diff --git a/animateditems/2677.png b/animateditems/2677.png
new file mode 100644
index 00000000..4f7b101d
Binary files /dev/null and b/animateditems/2677.png differ
diff --git a/animateditems/2678.gif b/animateditems/2678.gif
new file mode 100644
index 00000000..71a7e798
Binary files /dev/null and b/animateditems/2678.gif differ
diff --git a/animateditems/2678.png b/animateditems/2678.png
new file mode 100644
index 00000000..f4309af0
Binary files /dev/null and b/animateditems/2678.png differ
diff --git a/animateditems/2679.gif b/animateditems/2679.gif
new file mode 100644
index 00000000..0d5f4d13
Binary files /dev/null and b/animateditems/2679.gif differ
diff --git a/animateditems/2679.png b/animateditems/2679.png
new file mode 100644
index 00000000..5347ba4a
Binary files /dev/null and b/animateditems/2679.png differ
diff --git a/animateditems/2680.gif b/animateditems/2680.gif
new file mode 100644
index 00000000..5304b493
Binary files /dev/null and b/animateditems/2680.gif differ
diff --git a/animateditems/2680.png b/animateditems/2680.png
new file mode 100644
index 00000000..2802de32
Binary files /dev/null and b/animateditems/2680.png differ
diff --git a/animateditems/2681.gif b/animateditems/2681.gif
new file mode 100644
index 00000000..88324e88
Binary files /dev/null and b/animateditems/2681.gif differ
diff --git a/animateditems/2681.png b/animateditems/2681.png
new file mode 100644
index 00000000..c92fe356
Binary files /dev/null and b/animateditems/2681.png differ
diff --git a/animateditems/2682.gif b/animateditems/2682.gif
new file mode 100644
index 00000000..457ee277
Binary files /dev/null and b/animateditems/2682.gif differ
diff --git a/animateditems/2682.png b/animateditems/2682.png
new file mode 100644
index 00000000..bba5df99
Binary files /dev/null and b/animateditems/2682.png differ
diff --git a/animateditems/2683.gif b/animateditems/2683.gif
new file mode 100644
index 00000000..f1214e04
Binary files /dev/null and b/animateditems/2683.gif differ
diff --git a/animateditems/2683.png b/animateditems/2683.png
new file mode 100644
index 00000000..904d454e
Binary files /dev/null and b/animateditems/2683.png differ
diff --git a/animateditems/2684.gif b/animateditems/2684.gif
new file mode 100644
index 00000000..f852d4f4
Binary files /dev/null and b/animateditems/2684.gif differ
diff --git a/animateditems/2684.png b/animateditems/2684.png
new file mode 100644
index 00000000..eac20f47
Binary files /dev/null and b/animateditems/2684.png differ
diff --git a/animateditems/2685.gif b/animateditems/2685.gif
new file mode 100644
index 00000000..adf849d5
Binary files /dev/null and b/animateditems/2685.gif differ
diff --git a/animateditems/2685.png b/animateditems/2685.png
new file mode 100644
index 00000000..fd79ff5b
Binary files /dev/null and b/animateditems/2685.png differ
diff --git a/animateditems/2686.gif b/animateditems/2686.gif
new file mode 100644
index 00000000..66272467
Binary files /dev/null and b/animateditems/2686.gif differ
diff --git a/animateditems/2686.png b/animateditems/2686.png
new file mode 100644
index 00000000..ff97b9db
Binary files /dev/null and b/animateditems/2686.png differ
diff --git a/animateditems/2687.gif b/animateditems/2687.gif
new file mode 100644
index 00000000..f26c8044
Binary files /dev/null and b/animateditems/2687.gif differ
diff --git a/animateditems/2687.png b/animateditems/2687.png
new file mode 100644
index 00000000..9b13557f
Binary files /dev/null and b/animateditems/2687.png differ
diff --git a/animateditems/2688.gif b/animateditems/2688.gif
new file mode 100644
index 00000000..ac5a2238
Binary files /dev/null and b/animateditems/2688.gif differ
diff --git a/animateditems/2688.png b/animateditems/2688.png
new file mode 100644
index 00000000..95a57130
Binary files /dev/null and b/animateditems/2688.png differ
diff --git a/animateditems/2689.gif b/animateditems/2689.gif
new file mode 100644
index 00000000..3e0b5d36
Binary files /dev/null and b/animateditems/2689.gif differ
diff --git a/animateditems/2689.png b/animateditems/2689.png
new file mode 100644
index 00000000..c04d16d6
Binary files /dev/null and b/animateditems/2689.png differ
diff --git a/animateditems/2690.gif b/animateditems/2690.gif
new file mode 100644
index 00000000..c16f31d9
Binary files /dev/null and b/animateditems/2690.gif differ
diff --git a/animateditems/2690.png b/animateditems/2690.png
new file mode 100644
index 00000000..4bf61bd9
Binary files /dev/null and b/animateditems/2690.png differ
diff --git a/animateditems/2691.gif b/animateditems/2691.gif
new file mode 100644
index 00000000..656fc34a
Binary files /dev/null and b/animateditems/2691.gif differ
diff --git a/animateditems/2691.png b/animateditems/2691.png
new file mode 100644
index 00000000..09cf6dd1
Binary files /dev/null and b/animateditems/2691.png differ
diff --git a/animateditems/2692.gif b/animateditems/2692.gif
new file mode 100644
index 00000000..5dfa66e1
Binary files /dev/null and b/animateditems/2692.gif differ
diff --git a/animateditems/2692.png b/animateditems/2692.png
new file mode 100644
index 00000000..4bf3c483
Binary files /dev/null and b/animateditems/2692.png differ
diff --git a/animateditems/2693.gif b/animateditems/2693.gif
new file mode 100644
index 00000000..a70eff34
Binary files /dev/null and b/animateditems/2693.gif differ
diff --git a/animateditems/2693.png b/animateditems/2693.png
new file mode 100644
index 00000000..24321966
Binary files /dev/null and b/animateditems/2693.png differ
diff --git a/animateditems/2694.gif b/animateditems/2694.gif
new file mode 100644
index 00000000..4b1632b6
Binary files /dev/null and b/animateditems/2694.gif differ
diff --git a/animateditems/2694.png b/animateditems/2694.png
new file mode 100644
index 00000000..fc9522c5
Binary files /dev/null and b/animateditems/2694.png differ
diff --git a/animateditems/2695.gif b/animateditems/2695.gif
new file mode 100644
index 00000000..93d2d96d
Binary files /dev/null and b/animateditems/2695.gif differ
diff --git a/animateditems/2695.png b/animateditems/2695.png
new file mode 100644
index 00000000..4527d58d
Binary files /dev/null and b/animateditems/2695.png differ
diff --git a/animateditems/2696.gif b/animateditems/2696.gif
new file mode 100644
index 00000000..632e65e5
Binary files /dev/null and b/animateditems/2696.gif differ
diff --git a/animateditems/2696.png b/animateditems/2696.png
new file mode 100644
index 00000000..79728ca1
Binary files /dev/null and b/animateditems/2696.png differ
diff --git a/animateditems/27.gif b/animateditems/27.gif
new file mode 100644
index 00000000..ecce4bf2
Binary files /dev/null and b/animateditems/27.gif differ
diff --git a/animateditems/27.png b/animateditems/27.png
new file mode 100644
index 00000000..42402e83
Binary files /dev/null and b/animateditems/27.png differ
diff --git a/animateditems/27036.gif b/animateditems/27036.gif
new file mode 100644
index 00000000..3acc0537
Binary files /dev/null and b/animateditems/27036.gif differ
diff --git a/animateditems/27036.png b/animateditems/27036.png
new file mode 100644
index 00000000..e09dbc3f
Binary files /dev/null and b/animateditems/27036.png differ
diff --git a/animateditems/27037.gif b/animateditems/27037.gif
new file mode 100644
index 00000000..24eebef6
Binary files /dev/null and b/animateditems/27037.gif differ
diff --git a/animateditems/27037.png b/animateditems/27037.png
new file mode 100644
index 00000000..db060050
Binary files /dev/null and b/animateditems/27037.png differ
diff --git a/animateditems/27038.gif b/animateditems/27038.gif
new file mode 100644
index 00000000..2f1e2b69
Binary files /dev/null and b/animateditems/27038.gif differ
diff --git a/animateditems/27038.png b/animateditems/27038.png
new file mode 100644
index 00000000..e344aeff
Binary files /dev/null and b/animateditems/27038.png differ
diff --git a/animateditems/27039.gif b/animateditems/27039.gif
new file mode 100644
index 00000000..151c9084
Binary files /dev/null and b/animateditems/27039.gif differ
diff --git a/animateditems/27039.png b/animateditems/27039.png
new file mode 100644
index 00000000..31c3ffc8
Binary files /dev/null and b/animateditems/27039.png differ
diff --git a/animateditems/27040.gif b/animateditems/27040.gif
new file mode 100644
index 00000000..c9bc305e
Binary files /dev/null and b/animateditems/27040.gif differ
diff --git a/animateditems/27040.png b/animateditems/27040.png
new file mode 100644
index 00000000..da7ea423
Binary files /dev/null and b/animateditems/27040.png differ
diff --git a/animateditems/27041.gif b/animateditems/27041.gif
new file mode 100644
index 00000000..4f621b86
Binary files /dev/null and b/animateditems/27041.gif differ
diff --git a/animateditems/27041.png b/animateditems/27041.png
new file mode 100644
index 00000000..e3dbdaf1
Binary files /dev/null and b/animateditems/27041.png differ
diff --git a/animateditems/27042.gif b/animateditems/27042.gif
new file mode 100644
index 00000000..653e3b76
Binary files /dev/null and b/animateditems/27042.gif differ
diff --git a/animateditems/27042.png b/animateditems/27042.png
new file mode 100644
index 00000000..5dc2de40
Binary files /dev/null and b/animateditems/27042.png differ
diff --git a/animateditems/27043.gif b/animateditems/27043.gif
new file mode 100644
index 00000000..c485c870
Binary files /dev/null and b/animateditems/27043.gif differ
diff --git a/animateditems/27043.png b/animateditems/27043.png
new file mode 100644
index 00000000..8831541f
Binary files /dev/null and b/animateditems/27043.png differ
diff --git a/animateditems/27044.gif b/animateditems/27044.gif
new file mode 100644
index 00000000..753b6793
Binary files /dev/null and b/animateditems/27044.gif differ
diff --git a/animateditems/27044.png b/animateditems/27044.png
new file mode 100644
index 00000000..7257ea74
Binary files /dev/null and b/animateditems/27044.png differ
diff --git a/animateditems/27045.gif b/animateditems/27045.gif
new file mode 100644
index 00000000..206acd4d
Binary files /dev/null and b/animateditems/27045.gif differ
diff --git a/animateditems/27045.png b/animateditems/27045.png
new file mode 100644
index 00000000..043408c9
Binary files /dev/null and b/animateditems/27045.png differ
diff --git a/animateditems/27046.gif b/animateditems/27046.gif
new file mode 100644
index 00000000..47b4345c
Binary files /dev/null and b/animateditems/27046.gif differ
diff --git a/animateditems/27046.png b/animateditems/27046.png
new file mode 100644
index 00000000..7cacb3c9
Binary files /dev/null and b/animateditems/27046.png differ
diff --git a/animateditems/27047.gif b/animateditems/27047.gif
new file mode 100644
index 00000000..ec759fbb
Binary files /dev/null and b/animateditems/27047.gif differ
diff --git a/animateditems/27047.png b/animateditems/27047.png
new file mode 100644
index 00000000..58fc0855
Binary files /dev/null and b/animateditems/27047.png differ
diff --git a/animateditems/27048.gif b/animateditems/27048.gif
new file mode 100644
index 00000000..9f83d1da
Binary files /dev/null and b/animateditems/27048.gif differ
diff --git a/animateditems/27048.png b/animateditems/27048.png
new file mode 100644
index 00000000..a0056746
Binary files /dev/null and b/animateditems/27048.png differ
diff --git a/animateditems/27049.gif b/animateditems/27049.gif
new file mode 100644
index 00000000..ffa8405b
Binary files /dev/null and b/animateditems/27049.gif differ
diff --git a/animateditems/27049.png b/animateditems/27049.png
new file mode 100644
index 00000000..e1ba50d3
Binary files /dev/null and b/animateditems/27049.png differ
diff --git a/animateditems/27050.gif b/animateditems/27050.gif
new file mode 100644
index 00000000..c251d91c
Binary files /dev/null and b/animateditems/27050.gif differ
diff --git a/animateditems/27050.png b/animateditems/27050.png
new file mode 100644
index 00000000..edd72e3c
Binary files /dev/null and b/animateditems/27050.png differ
diff --git a/animateditems/27051.gif b/animateditems/27051.gif
new file mode 100644
index 00000000..40f0b0dd
Binary files /dev/null and b/animateditems/27051.gif differ
diff --git a/animateditems/27051.png b/animateditems/27051.png
new file mode 100644
index 00000000..9b03dc50
Binary files /dev/null and b/animateditems/27051.png differ
diff --git a/animateditems/27052.gif b/animateditems/27052.gif
new file mode 100644
index 00000000..85512048
Binary files /dev/null and b/animateditems/27052.gif differ
diff --git a/animateditems/27052.png b/animateditems/27052.png
new file mode 100644
index 00000000..2ed5fc2e
Binary files /dev/null and b/animateditems/27052.png differ
diff --git a/animateditems/27053.gif b/animateditems/27053.gif
new file mode 100644
index 00000000..c84505da
Binary files /dev/null and b/animateditems/27053.gif differ
diff --git a/animateditems/27053.png b/animateditems/27053.png
new file mode 100644
index 00000000..3583215a
Binary files /dev/null and b/animateditems/27053.png differ
diff --git a/animateditems/27058.gif b/animateditems/27058.gif
new file mode 100644
index 00000000..26811389
Binary files /dev/null and b/animateditems/27058.gif differ
diff --git a/animateditems/27058.png b/animateditems/27058.png
new file mode 100644
index 00000000..d81b9aad
Binary files /dev/null and b/animateditems/27058.png differ
diff --git a/animateditems/27060.gif b/animateditems/27060.gif
new file mode 100644
index 00000000..b78f82e6
Binary files /dev/null and b/animateditems/27060.gif differ
diff --git a/animateditems/27060.png b/animateditems/27060.png
new file mode 100644
index 00000000..05f77b30
Binary files /dev/null and b/animateditems/27060.png differ
diff --git a/animateditems/27061.gif b/animateditems/27061.gif
new file mode 100644
index 00000000..e3c620d6
Binary files /dev/null and b/animateditems/27061.gif differ
diff --git a/animateditems/27061.png b/animateditems/27061.png
new file mode 100644
index 00000000..79f2bd0b
Binary files /dev/null and b/animateditems/27061.png differ
diff --git a/animateditems/27065.gif b/animateditems/27065.gif
new file mode 100644
index 00000000..82b523a0
Binary files /dev/null and b/animateditems/27065.gif differ
diff --git a/animateditems/27065.png b/animateditems/27065.png
new file mode 100644
index 00000000..9d570281
Binary files /dev/null and b/animateditems/27065.png differ
diff --git a/animateditems/27071.gif b/animateditems/27071.gif
new file mode 100644
index 00000000..45909c47
Binary files /dev/null and b/animateditems/27071.gif differ
diff --git a/animateditems/27071.png b/animateditems/27071.png
new file mode 100644
index 00000000..3be207d6
Binary files /dev/null and b/animateditems/27071.png differ
diff --git a/animateditems/27094.gif b/animateditems/27094.gif
new file mode 100644
index 00000000..0b0cfa71
Binary files /dev/null and b/animateditems/27094.gif differ
diff --git a/animateditems/27094.png b/animateditems/27094.png
new file mode 100644
index 00000000..8181b605
Binary files /dev/null and b/animateditems/27094.png differ
diff --git a/animateditems/2741.gif b/animateditems/2741.gif
new file mode 100644
index 00000000..8867e2fa
Binary files /dev/null and b/animateditems/2741.gif differ
diff --git a/animateditems/2741.png b/animateditems/2741.png
new file mode 100644
index 00000000..fa927c08
Binary files /dev/null and b/animateditems/2741.png differ
diff --git a/animateditems/2744.gif b/animateditems/2744.gif
new file mode 100644
index 00000000..8e650fd6
Binary files /dev/null and b/animateditems/2744.gif differ
diff --git a/animateditems/2744.png b/animateditems/2744.png
new file mode 100644
index 00000000..2cb24c60
Binary files /dev/null and b/animateditems/2744.png differ
diff --git a/animateditems/2745.gif b/animateditems/2745.gif
new file mode 100644
index 00000000..34c4bfc3
Binary files /dev/null and b/animateditems/2745.gif differ
diff --git a/animateditems/2745.png b/animateditems/2745.png
new file mode 100644
index 00000000..5cbb3ffb
Binary files /dev/null and b/animateditems/2745.png differ
diff --git a/animateditems/2746.gif b/animateditems/2746.gif
new file mode 100644
index 00000000..7156c211
Binary files /dev/null and b/animateditems/2746.gif differ
diff --git a/animateditems/2746.png b/animateditems/2746.png
new file mode 100644
index 00000000..bedeae5c
Binary files /dev/null and b/animateditems/2746.png differ
diff --git a/animateditems/2747.gif b/animateditems/2747.gif
new file mode 100644
index 00000000..c3087f12
Binary files /dev/null and b/animateditems/2747.gif differ
diff --git a/animateditems/2747.png b/animateditems/2747.png
new file mode 100644
index 00000000..b0185907
Binary files /dev/null and b/animateditems/2747.png differ
diff --git a/animateditems/27517.gif b/animateditems/27517.gif
new file mode 100644
index 00000000..c170c868
Binary files /dev/null and b/animateditems/27517.gif differ
diff --git a/animateditems/27517.png b/animateditems/27517.png
new file mode 100644
index 00000000..176f5335
Binary files /dev/null and b/animateditems/27517.png differ
diff --git a/animateditems/27518.gif b/animateditems/27518.gif
new file mode 100644
index 00000000..4edeb918
Binary files /dev/null and b/animateditems/27518.gif differ
diff --git a/animateditems/27518.png b/animateditems/27518.png
new file mode 100644
index 00000000..026b0391
Binary files /dev/null and b/animateditems/27518.png differ
diff --git a/animateditems/27529.gif b/animateditems/27529.gif
new file mode 100644
index 00000000..ff4f4aa0
Binary files /dev/null and b/animateditems/27529.gif differ
diff --git a/animateditems/27529.png b/animateditems/27529.png
new file mode 100644
index 00000000..1cd0261c
Binary files /dev/null and b/animateditems/27529.png differ
diff --git a/animateditems/2754.gif b/animateditems/2754.gif
new file mode 100644
index 00000000..5cd2c5c7
Binary files /dev/null and b/animateditems/2754.gif differ
diff --git a/animateditems/2754.png b/animateditems/2754.png
new file mode 100644
index 00000000..66e87c47
Binary files /dev/null and b/animateditems/2754.png differ
diff --git a/animateditems/27585.gif b/animateditems/27585.gif
new file mode 100644
index 00000000..a51f8219
Binary files /dev/null and b/animateditems/27585.gif differ
diff --git a/animateditems/27585.png b/animateditems/27585.png
new file mode 100644
index 00000000..475c5131
Binary files /dev/null and b/animateditems/27585.png differ
diff --git a/animateditems/2759.gif b/animateditems/2759.gif
new file mode 100644
index 00000000..dd3f6fb7
Binary files /dev/null and b/animateditems/2759.gif differ
diff --git a/animateditems/2759.png b/animateditems/2759.png
new file mode 100644
index 00000000..85b2f655
Binary files /dev/null and b/animateditems/2759.png differ
diff --git a/animateditems/27593.gif b/animateditems/27593.gif
new file mode 100644
index 00000000..9372f211
Binary files /dev/null and b/animateditems/27593.gif differ
diff --git a/animateditems/27593.png b/animateditems/27593.png
new file mode 100644
index 00000000..04d63285
Binary files /dev/null and b/animateditems/27593.png differ
diff --git a/animateditems/27594.gif b/animateditems/27594.gif
new file mode 100644
index 00000000..77a03d12
Binary files /dev/null and b/animateditems/27594.gif differ
diff --git a/animateditems/27594.png b/animateditems/27594.png
new file mode 100644
index 00000000..bc94e890
Binary files /dev/null and b/animateditems/27594.png differ
diff --git a/animateditems/27595.gif b/animateditems/27595.gif
new file mode 100644
index 00000000..15684941
Binary files /dev/null and b/animateditems/27595.gif differ
diff --git a/animateditems/27595.png b/animateditems/27595.png
new file mode 100644
index 00000000..0e505ea9
Binary files /dev/null and b/animateditems/27595.png differ
diff --git a/animateditems/27596.gif b/animateditems/27596.gif
new file mode 100644
index 00000000..1d0ec300
Binary files /dev/null and b/animateditems/27596.gif differ
diff --git a/animateditems/27596.png b/animateditems/27596.png
new file mode 100644
index 00000000..09a65348
Binary files /dev/null and b/animateditems/27596.png differ
diff --git a/animateditems/27597.gif b/animateditems/27597.gif
new file mode 100644
index 00000000..1a0f118e
Binary files /dev/null and b/animateditems/27597.gif differ
diff --git a/animateditems/27597.png b/animateditems/27597.png
new file mode 100644
index 00000000..54859afe
Binary files /dev/null and b/animateditems/27597.png differ
diff --git a/animateditems/27598.gif b/animateditems/27598.gif
new file mode 100644
index 00000000..e8682104
Binary files /dev/null and b/animateditems/27598.gif differ
diff --git a/animateditems/27598.png b/animateditems/27598.png
new file mode 100644
index 00000000..09722ac0
Binary files /dev/null and b/animateditems/27598.png differ
diff --git a/animateditems/27599.gif b/animateditems/27599.gif
new file mode 100644
index 00000000..ee2055ab
Binary files /dev/null and b/animateditems/27599.gif differ
diff --git a/animateditems/27599.png b/animateditems/27599.png
new file mode 100644
index 00000000..20d867db
Binary files /dev/null and b/animateditems/27599.png differ
diff --git a/animateditems/2760.gif b/animateditems/2760.gif
new file mode 100644
index 00000000..6f457490
Binary files /dev/null and b/animateditems/2760.gif differ
diff --git a/animateditems/2760.png b/animateditems/2760.png
new file mode 100644
index 00000000..0f9a65c6
Binary files /dev/null and b/animateditems/2760.png differ
diff --git a/animateditems/27600.gif b/animateditems/27600.gif
new file mode 100644
index 00000000..3c80518b
Binary files /dev/null and b/animateditems/27600.gif differ
diff --git a/animateditems/27600.png b/animateditems/27600.png
new file mode 100644
index 00000000..569e8771
Binary files /dev/null and b/animateditems/27600.png differ
diff --git a/animateditems/27601.gif b/animateditems/27601.gif
new file mode 100644
index 00000000..8df06fae
Binary files /dev/null and b/animateditems/27601.gif differ
diff --git a/animateditems/27601.png b/animateditems/27601.png
new file mode 100644
index 00000000..0a50b5d9
Binary files /dev/null and b/animateditems/27601.png differ
diff --git a/animateditems/27602.gif b/animateditems/27602.gif
new file mode 100644
index 00000000..1a963ae4
Binary files /dev/null and b/animateditems/27602.gif differ
diff --git a/animateditems/27602.png b/animateditems/27602.png
new file mode 100644
index 00000000..133bbe5c
Binary files /dev/null and b/animateditems/27602.png differ
diff --git a/animateditems/27603.gif b/animateditems/27603.gif
new file mode 100644
index 00000000..1d064ddd
Binary files /dev/null and b/animateditems/27603.gif differ
diff --git a/animateditems/27603.png b/animateditems/27603.png
new file mode 100644
index 00000000..e70aaf76
Binary files /dev/null and b/animateditems/27603.png differ
diff --git a/animateditems/27604.gif b/animateditems/27604.gif
new file mode 100644
index 00000000..cf59c54f
Binary files /dev/null and b/animateditems/27604.gif differ
diff --git a/animateditems/27604.png b/animateditems/27604.png
new file mode 100644
index 00000000..8088aa8d
Binary files /dev/null and b/animateditems/27604.png differ
diff --git a/animateditems/27605.gif b/animateditems/27605.gif
new file mode 100644
index 00000000..3a78675c
Binary files /dev/null and b/animateditems/27605.gif differ
diff --git a/animateditems/27605.png b/animateditems/27605.png
new file mode 100644
index 00000000..30db75d4
Binary files /dev/null and b/animateditems/27605.png differ
diff --git a/animateditems/27606.gif b/animateditems/27606.gif
new file mode 100644
index 00000000..60841e6c
Binary files /dev/null and b/animateditems/27606.gif differ
diff --git a/animateditems/27606.png b/animateditems/27606.png
new file mode 100644
index 00000000..4b06e5eb
Binary files /dev/null and b/animateditems/27606.png differ
diff --git a/animateditems/27607.gif b/animateditems/27607.gif
new file mode 100644
index 00000000..07a54987
Binary files /dev/null and b/animateditems/27607.gif differ
diff --git a/animateditems/27607.png b/animateditems/27607.png
new file mode 100644
index 00000000..4cea0f11
Binary files /dev/null and b/animateditems/27607.png differ
diff --git a/animateditems/27610.gif b/animateditems/27610.gif
new file mode 100644
index 00000000..de615bb0
Binary files /dev/null and b/animateditems/27610.gif differ
diff --git a/animateditems/27610.png b/animateditems/27610.png
new file mode 100644
index 00000000..d85a1851
Binary files /dev/null and b/animateditems/27610.png differ
diff --git a/animateditems/27611.gif b/animateditems/27611.gif
new file mode 100644
index 00000000..09d527f8
Binary files /dev/null and b/animateditems/27611.gif differ
diff --git a/animateditems/27611.png b/animateditems/27611.png
new file mode 100644
index 00000000..db9a6e1e
Binary files /dev/null and b/animateditems/27611.png differ
diff --git a/animateditems/27612.gif b/animateditems/27612.gif
new file mode 100644
index 00000000..b77d00cf
Binary files /dev/null and b/animateditems/27612.gif differ
diff --git a/animateditems/27612.png b/animateditems/27612.png
new file mode 100644
index 00000000..ccbf7cdc
Binary files /dev/null and b/animateditems/27612.png differ
diff --git a/animateditems/27613.gif b/animateditems/27613.gif
new file mode 100644
index 00000000..bc74d2cd
Binary files /dev/null and b/animateditems/27613.gif differ
diff --git a/animateditems/27613.png b/animateditems/27613.png
new file mode 100644
index 00000000..6d6463c2
Binary files /dev/null and b/animateditems/27613.png differ
diff --git a/animateditems/27614.gif b/animateditems/27614.gif
new file mode 100644
index 00000000..3791a288
Binary files /dev/null and b/animateditems/27614.gif differ
diff --git a/animateditems/27614.png b/animateditems/27614.png
new file mode 100644
index 00000000..affca1b8
Binary files /dev/null and b/animateditems/27614.png differ
diff --git a/animateditems/27615.gif b/animateditems/27615.gif
new file mode 100644
index 00000000..86283f02
Binary files /dev/null and b/animateditems/27615.gif differ
diff --git a/animateditems/27615.png b/animateditems/27615.png
new file mode 100644
index 00000000..56c82986
Binary files /dev/null and b/animateditems/27615.png differ
diff --git a/animateditems/27616.gif b/animateditems/27616.gif
new file mode 100644
index 00000000..2bd96afd
Binary files /dev/null and b/animateditems/27616.gif differ
diff --git a/animateditems/27616.png b/animateditems/27616.png
new file mode 100644
index 00000000..cc804887
Binary files /dev/null and b/animateditems/27616.png differ
diff --git a/animateditems/27617.gif b/animateditems/27617.gif
new file mode 100644
index 00000000..980506d7
Binary files /dev/null and b/animateditems/27617.gif differ
diff --git a/animateditems/27617.png b/animateditems/27617.png
new file mode 100644
index 00000000..a6189a3d
Binary files /dev/null and b/animateditems/27617.png differ
diff --git a/animateditems/27618.gif b/animateditems/27618.gif
new file mode 100644
index 00000000..e81f7818
Binary files /dev/null and b/animateditems/27618.gif differ
diff --git a/animateditems/27618.png b/animateditems/27618.png
new file mode 100644
index 00000000..63967285
Binary files /dev/null and b/animateditems/27618.png differ
diff --git a/animateditems/27619.gif b/animateditems/27619.gif
new file mode 100644
index 00000000..d22b78ad
Binary files /dev/null and b/animateditems/27619.gif differ
diff --git a/animateditems/27619.png b/animateditems/27619.png
new file mode 100644
index 00000000..3b9ee834
Binary files /dev/null and b/animateditems/27619.png differ
diff --git a/animateditems/27620.gif b/animateditems/27620.gif
new file mode 100644
index 00000000..e7200093
Binary files /dev/null and b/animateditems/27620.gif differ
diff --git a/animateditems/27620.png b/animateditems/27620.png
new file mode 100644
index 00000000..cde723db
Binary files /dev/null and b/animateditems/27620.png differ
diff --git a/animateditems/27621.gif b/animateditems/27621.gif
new file mode 100644
index 00000000..41ff2f82
Binary files /dev/null and b/animateditems/27621.gif differ
diff --git a/animateditems/27621.png b/animateditems/27621.png
new file mode 100644
index 00000000..3bb21d8d
Binary files /dev/null and b/animateditems/27621.png differ
diff --git a/animateditems/27622.gif b/animateditems/27622.gif
new file mode 100644
index 00000000..cd540b05
Binary files /dev/null and b/animateditems/27622.gif differ
diff --git a/animateditems/27622.png b/animateditems/27622.png
new file mode 100644
index 00000000..2da82d18
Binary files /dev/null and b/animateditems/27622.png differ
diff --git a/animateditems/27623.gif b/animateditems/27623.gif
new file mode 100644
index 00000000..632af422
Binary files /dev/null and b/animateditems/27623.gif differ
diff --git a/animateditems/27623.png b/animateditems/27623.png
new file mode 100644
index 00000000..a0e6aba6
Binary files /dev/null and b/animateditems/27623.png differ
diff --git a/animateditems/27624.gif b/animateditems/27624.gif
new file mode 100644
index 00000000..41ad716c
Binary files /dev/null and b/animateditems/27624.gif differ
diff --git a/animateditems/27624.png b/animateditems/27624.png
new file mode 100644
index 00000000..74028bbc
Binary files /dev/null and b/animateditems/27624.png differ
diff --git a/animateditems/27625.gif b/animateditems/27625.gif
new file mode 100644
index 00000000..3780f305
Binary files /dev/null and b/animateditems/27625.gif differ
diff --git a/animateditems/27625.png b/animateditems/27625.png
new file mode 100644
index 00000000..5827931d
Binary files /dev/null and b/animateditems/27625.png differ
diff --git a/animateditems/27626.gif b/animateditems/27626.gif
new file mode 100644
index 00000000..c30ba802
Binary files /dev/null and b/animateditems/27626.gif differ
diff --git a/animateditems/27626.png b/animateditems/27626.png
new file mode 100644
index 00000000..a39d3b1d
Binary files /dev/null and b/animateditems/27626.png differ
diff --git a/animateditems/27627.gif b/animateditems/27627.gif
new file mode 100644
index 00000000..886c3093
Binary files /dev/null and b/animateditems/27627.gif differ
diff --git a/animateditems/27627.png b/animateditems/27627.png
new file mode 100644
index 00000000..6dee5668
Binary files /dev/null and b/animateditems/27627.png differ
diff --git a/animateditems/27628.gif b/animateditems/27628.gif
new file mode 100644
index 00000000..cf22e089
Binary files /dev/null and b/animateditems/27628.gif differ
diff --git a/animateditems/27628.png b/animateditems/27628.png
new file mode 100644
index 00000000..51ee8361
Binary files /dev/null and b/animateditems/27628.png differ
diff --git a/animateditems/27629.gif b/animateditems/27629.gif
new file mode 100644
index 00000000..b998c0c5
Binary files /dev/null and b/animateditems/27629.gif differ
diff --git a/animateditems/27629.png b/animateditems/27629.png
new file mode 100644
index 00000000..fd7bb9ba
Binary files /dev/null and b/animateditems/27629.png differ
diff --git a/animateditems/27630.gif b/animateditems/27630.gif
new file mode 100644
index 00000000..a248a2fe
Binary files /dev/null and b/animateditems/27630.gif differ
diff --git a/animateditems/27630.png b/animateditems/27630.png
new file mode 100644
index 00000000..20f9ec88
Binary files /dev/null and b/animateditems/27630.png differ
diff --git a/animateditems/27631.gif b/animateditems/27631.gif
new file mode 100644
index 00000000..2310bdf9
Binary files /dev/null and b/animateditems/27631.gif differ
diff --git a/animateditems/27631.png b/animateditems/27631.png
new file mode 100644
index 00000000..4ba03b5b
Binary files /dev/null and b/animateditems/27631.png differ
diff --git a/animateditems/27632.gif b/animateditems/27632.gif
new file mode 100644
index 00000000..2ab87361
Binary files /dev/null and b/animateditems/27632.gif differ
diff --git a/animateditems/27632.png b/animateditems/27632.png
new file mode 100644
index 00000000..348654fe
Binary files /dev/null and b/animateditems/27632.png differ
diff --git a/animateditems/27633.gif b/animateditems/27633.gif
new file mode 100644
index 00000000..fffab64f
Binary files /dev/null and b/animateditems/27633.gif differ
diff --git a/animateditems/27633.png b/animateditems/27633.png
new file mode 100644
index 00000000..0b70e60c
Binary files /dev/null and b/animateditems/27633.png differ
diff --git a/animateditems/27715.gif b/animateditems/27715.gif
new file mode 100644
index 00000000..d55817c4
Binary files /dev/null and b/animateditems/27715.gif differ
diff --git a/animateditems/27715.png b/animateditems/27715.png
new file mode 100644
index 00000000..a72569d8
Binary files /dev/null and b/animateditems/27715.png differ
diff --git a/animateditems/27718.gif b/animateditems/27718.gif
new file mode 100644
index 00000000..e563f063
Binary files /dev/null and b/animateditems/27718.gif differ
diff --git a/animateditems/27718.png b/animateditems/27718.png
new file mode 100644
index 00000000..0be2e338
Binary files /dev/null and b/animateditems/27718.png differ
diff --git a/animateditems/27744.gif b/animateditems/27744.gif
new file mode 100644
index 00000000..cb2b427b
Binary files /dev/null and b/animateditems/27744.gif differ
diff --git a/animateditems/27744.png b/animateditems/27744.png
new file mode 100644
index 00000000..18505292
Binary files /dev/null and b/animateditems/27744.png differ
diff --git a/animateditems/27745.gif b/animateditems/27745.gif
new file mode 100644
index 00000000..30c12f98
Binary files /dev/null and b/animateditems/27745.gif differ
diff --git a/animateditems/27745.png b/animateditems/27745.png
new file mode 100644
index 00000000..fb1b9acb
Binary files /dev/null and b/animateditems/27745.png differ
diff --git a/animateditems/27861.gif b/animateditems/27861.gif
new file mode 100644
index 00000000..dd278814
Binary files /dev/null and b/animateditems/27861.gif differ
diff --git a/animateditems/27861.png b/animateditems/27861.png
new file mode 100644
index 00000000..89c8cf5d
Binary files /dev/null and b/animateditems/27861.png differ
diff --git a/animateditems/27862.gif b/animateditems/27862.gif
new file mode 100644
index 00000000..dd278814
Binary files /dev/null and b/animateditems/27862.gif differ
diff --git a/animateditems/27862.png b/animateditems/27862.png
new file mode 100644
index 00000000..89c8cf5d
Binary files /dev/null and b/animateditems/27862.png differ
diff --git a/animateditems/27863.gif b/animateditems/27863.gif
new file mode 100644
index 00000000..dd278814
Binary files /dev/null and b/animateditems/27863.gif differ
diff --git a/animateditems/27863.png b/animateditems/27863.png
new file mode 100644
index 00000000..89c8cf5d
Binary files /dev/null and b/animateditems/27863.png differ
diff --git a/animateditems/27864.gif b/animateditems/27864.gif
new file mode 100644
index 00000000..dd278814
Binary files /dev/null and b/animateditems/27864.gif differ
diff --git a/animateditems/27864.png b/animateditems/27864.png
new file mode 100644
index 00000000..89c8cf5d
Binary files /dev/null and b/animateditems/27864.png differ
diff --git a/animateditems/27865.gif b/animateditems/27865.gif
new file mode 100644
index 00000000..dd278814
Binary files /dev/null and b/animateditems/27865.gif differ
diff --git a/animateditems/27865.png b/animateditems/27865.png
new file mode 100644
index 00000000..89c8cf5d
Binary files /dev/null and b/animateditems/27865.png differ
diff --git a/animateditems/2787.gif b/animateditems/2787.gif
new file mode 100644
index 00000000..9eb0c945
Binary files /dev/null and b/animateditems/2787.gif differ
diff --git a/animateditems/2787.png b/animateditems/2787.png
new file mode 100644
index 00000000..f64661db
Binary files /dev/null and b/animateditems/2787.png differ
diff --git a/animateditems/2788.gif b/animateditems/2788.gif
new file mode 100644
index 00000000..b0517512
Binary files /dev/null and b/animateditems/2788.gif differ
diff --git a/animateditems/2788.png b/animateditems/2788.png
new file mode 100644
index 00000000..475c132d
Binary files /dev/null and b/animateditems/2788.png differ
diff --git a/animateditems/2789.gif b/animateditems/2789.gif
new file mode 100644
index 00000000..8e3f1dca
Binary files /dev/null and b/animateditems/2789.gif differ
diff --git a/animateditems/2789.png b/animateditems/2789.png
new file mode 100644
index 00000000..a7904fd8
Binary files /dev/null and b/animateditems/2789.png differ
diff --git a/animateditems/27891.gif b/animateditems/27891.gif
new file mode 100644
index 00000000..3fa9b955
Binary files /dev/null and b/animateditems/27891.gif differ
diff --git a/animateditems/27891.png b/animateditems/27891.png
new file mode 100644
index 00000000..944c953e
Binary files /dev/null and b/animateditems/27891.png differ
diff --git a/animateditems/27894.gif b/animateditems/27894.gif
new file mode 100644
index 00000000..f16edaad
Binary files /dev/null and b/animateditems/27894.gif differ
diff --git a/animateditems/27894.png b/animateditems/27894.png
new file mode 100644
index 00000000..67906e4c
Binary files /dev/null and b/animateditems/27894.png differ
diff --git a/animateditems/27895.gif b/animateditems/27895.gif
new file mode 100644
index 00000000..3fa9b955
Binary files /dev/null and b/animateditems/27895.gif differ
diff --git a/animateditems/27895.png b/animateditems/27895.png
new file mode 100644
index 00000000..944c953e
Binary files /dev/null and b/animateditems/27895.png differ
diff --git a/animateditems/27898.gif b/animateditems/27898.gif
new file mode 100644
index 00000000..1d458d41
Binary files /dev/null and b/animateditems/27898.gif differ
diff --git a/animateditems/27898.png b/animateditems/27898.png
new file mode 100644
index 00000000..b338208a
Binary files /dev/null and b/animateditems/27898.png differ
diff --git a/animateditems/2790.gif b/animateditems/2790.gif
new file mode 100644
index 00000000..963f6fc4
Binary files /dev/null and b/animateditems/2790.gif differ
diff --git a/animateditems/2790.png b/animateditems/2790.png
new file mode 100644
index 00000000..34d04d6e
Binary files /dev/null and b/animateditems/2790.png differ
diff --git a/animateditems/27900.gif b/animateditems/27900.gif
new file mode 100644
index 00000000..65cf5752
Binary files /dev/null and b/animateditems/27900.gif differ
diff --git a/animateditems/27900.png b/animateditems/27900.png
new file mode 100644
index 00000000..ff73e531
Binary files /dev/null and b/animateditems/27900.png differ
diff --git a/animateditems/2791.gif b/animateditems/2791.gif
new file mode 100644
index 00000000..0c5569d3
Binary files /dev/null and b/animateditems/2791.gif differ
diff --git a/animateditems/2791.png b/animateditems/2791.png
new file mode 100644
index 00000000..42b3ed90
Binary files /dev/null and b/animateditems/2791.png differ
diff --git a/animateditems/2792.gif b/animateditems/2792.gif
new file mode 100644
index 00000000..0f2e0077
Binary files /dev/null and b/animateditems/2792.gif differ
diff --git a/animateditems/2792.png b/animateditems/2792.png
new file mode 100644
index 00000000..9875bae2
Binary files /dev/null and b/animateditems/2792.png differ
diff --git a/animateditems/2793.gif b/animateditems/2793.gif
new file mode 100644
index 00000000..357a0dc7
Binary files /dev/null and b/animateditems/2793.gif differ
diff --git a/animateditems/2793.png b/animateditems/2793.png
new file mode 100644
index 00000000..54f66eee
Binary files /dev/null and b/animateditems/2793.png differ
diff --git a/animateditems/2794.gif b/animateditems/2794.gif
new file mode 100644
index 00000000..55f9ac73
Binary files /dev/null and b/animateditems/2794.gif differ
diff --git a/animateditems/2794.png b/animateditems/2794.png
new file mode 100644
index 00000000..e99a677f
Binary files /dev/null and b/animateditems/2794.png differ
diff --git a/animateditems/2795.gif b/animateditems/2795.gif
new file mode 100644
index 00000000..0b67a4f2
Binary files /dev/null and b/animateditems/2795.gif differ
diff --git a/animateditems/2795.png b/animateditems/2795.png
new file mode 100644
index 00000000..7df77cba
Binary files /dev/null and b/animateditems/2795.png differ
diff --git a/animateditems/27951.gif b/animateditems/27951.gif
new file mode 100644
index 00000000..2b80e08a
Binary files /dev/null and b/animateditems/27951.gif differ
diff --git a/animateditems/27951.png b/animateditems/27951.png
new file mode 100644
index 00000000..f2fafc8e
Binary files /dev/null and b/animateditems/27951.png differ
diff --git a/animateditems/27952.gif b/animateditems/27952.gif
new file mode 100644
index 00000000..0f47602f
Binary files /dev/null and b/animateditems/27952.gif differ
diff --git a/animateditems/27952.png b/animateditems/27952.png
new file mode 100644
index 00000000..ed4d35f8
Binary files /dev/null and b/animateditems/27952.png differ
diff --git a/animateditems/27953.gif b/animateditems/27953.gif
new file mode 100644
index 00000000..0f47602f
Binary files /dev/null and b/animateditems/27953.gif differ
diff --git a/animateditems/27953.png b/animateditems/27953.png
new file mode 100644
index 00000000..ed4d35f8
Binary files /dev/null and b/animateditems/27953.png differ
diff --git a/animateditems/27958.gif b/animateditems/27958.gif
new file mode 100644
index 00000000..ab226741
Binary files /dev/null and b/animateditems/27958.gif differ
diff --git a/animateditems/27958.png b/animateditems/27958.png
new file mode 100644
index 00000000..68bcfd4d
Binary files /dev/null and b/animateditems/27958.png differ
diff --git a/animateditems/27959.gif b/animateditems/27959.gif
new file mode 100644
index 00000000..22050ba0
Binary files /dev/null and b/animateditems/27959.gif differ
diff --git a/animateditems/27959.png b/animateditems/27959.png
new file mode 100644
index 00000000..799ef0d3
Binary files /dev/null and b/animateditems/27959.png differ
diff --git a/animateditems/2796.gif b/animateditems/2796.gif
new file mode 100644
index 00000000..1ccdb6e6
Binary files /dev/null and b/animateditems/2796.gif differ
diff --git a/animateditems/2796.png b/animateditems/2796.png
new file mode 100644
index 00000000..0e131aa4
Binary files /dev/null and b/animateditems/2796.png differ
diff --git a/animateditems/27960.gif b/animateditems/27960.gif
new file mode 100644
index 00000000..8e448fb6
Binary files /dev/null and b/animateditems/27960.gif differ
diff --git a/animateditems/27960.png b/animateditems/27960.png
new file mode 100644
index 00000000..7f2e7555
Binary files /dev/null and b/animateditems/27960.png differ
diff --git a/animateditems/27961.gif b/animateditems/27961.gif
new file mode 100644
index 00000000..57d8303a
Binary files /dev/null and b/animateditems/27961.gif differ
diff --git a/animateditems/27961.png b/animateditems/27961.png
new file mode 100644
index 00000000..d0e7f774
Binary files /dev/null and b/animateditems/27961.png differ
diff --git a/animateditems/27962.gif b/animateditems/27962.gif
new file mode 100644
index 00000000..1b13f5d9
Binary files /dev/null and b/animateditems/27962.gif differ
diff --git a/animateditems/27962.png b/animateditems/27962.png
new file mode 100644
index 00000000..0cf6bf9e
Binary files /dev/null and b/animateditems/27962.png differ
diff --git a/animateditems/2798.gif b/animateditems/2798.gif
new file mode 100644
index 00000000..2f7192bb
Binary files /dev/null and b/animateditems/2798.gif differ
diff --git a/animateditems/2798.png b/animateditems/2798.png
new file mode 100644
index 00000000..d02e3e73
Binary files /dev/null and b/animateditems/2798.png differ
diff --git a/animateditems/2799.gif b/animateditems/2799.gif
new file mode 100644
index 00000000..51dc6e19
Binary files /dev/null and b/animateditems/2799.gif differ
diff --git a/animateditems/2799.png b/animateditems/2799.png
new file mode 100644
index 00000000..e7584e19
Binary files /dev/null and b/animateditems/2799.png differ
diff --git a/animateditems/28.gif b/animateditems/28.gif
new file mode 100644
index 00000000..65ba925c
Binary files /dev/null and b/animateditems/28.gif differ
diff --git a/animateditems/28.png b/animateditems/28.png
new file mode 100644
index 00000000..9ce8303e
Binary files /dev/null and b/animateditems/28.png differ
diff --git a/animateditems/2800.gif b/animateditems/2800.gif
new file mode 100644
index 00000000..84c5837b
Binary files /dev/null and b/animateditems/2800.gif differ
diff --git a/animateditems/2800.png b/animateditems/2800.png
new file mode 100644
index 00000000..b5df78b6
Binary files /dev/null and b/animateditems/2800.png differ
diff --git a/animateditems/2801.gif b/animateditems/2801.gif
new file mode 100644
index 00000000..b34ec90e
Binary files /dev/null and b/animateditems/2801.gif differ
diff --git a/animateditems/2801.png b/animateditems/2801.png
new file mode 100644
index 00000000..278ed666
Binary files /dev/null and b/animateditems/2801.png differ
diff --git a/animateditems/28016.gif b/animateditems/28016.gif
new file mode 100644
index 00000000..dae56e16
Binary files /dev/null and b/animateditems/28016.gif differ
diff --git a/animateditems/28016.png b/animateditems/28016.png
new file mode 100644
index 00000000..eb55bde2
Binary files /dev/null and b/animateditems/28016.png differ
diff --git a/animateditems/28017.gif b/animateditems/28017.gif
new file mode 100644
index 00000000..264643c0
Binary files /dev/null and b/animateditems/28017.gif differ
diff --git a/animateditems/28017.png b/animateditems/28017.png
new file mode 100644
index 00000000..d4d1804c
Binary files /dev/null and b/animateditems/28017.png differ
diff --git a/animateditems/2802.gif b/animateditems/2802.gif
new file mode 100644
index 00000000..12ed5848
Binary files /dev/null and b/animateditems/2802.gif differ
diff --git a/animateditems/2802.png b/animateditems/2802.png
new file mode 100644
index 00000000..6fd41de2
Binary files /dev/null and b/animateditems/2802.png differ
diff --git a/animateditems/2803.gif b/animateditems/2803.gif
new file mode 100644
index 00000000..d5836ef8
Binary files /dev/null and b/animateditems/2803.gif differ
diff --git a/animateditems/2803.png b/animateditems/2803.png
new file mode 100644
index 00000000..1296c264
Binary files /dev/null and b/animateditems/2803.png differ
diff --git a/animateditems/2804.gif b/animateditems/2804.gif
new file mode 100644
index 00000000..7fe7b7d7
Binary files /dev/null and b/animateditems/2804.gif differ
diff --git a/animateditems/2804.png b/animateditems/2804.png
new file mode 100644
index 00000000..cdc646ac
Binary files /dev/null and b/animateditems/2804.png differ
diff --git a/animateditems/2805.gif b/animateditems/2805.gif
new file mode 100644
index 00000000..7f36c559
Binary files /dev/null and b/animateditems/2805.gif differ
diff --git a/animateditems/2805.png b/animateditems/2805.png
new file mode 100644
index 00000000..f7da0ab8
Binary files /dev/null and b/animateditems/2805.png differ
diff --git a/animateditems/2806.gif b/animateditems/2806.gif
new file mode 100644
index 00000000..7d3e82b5
Binary files /dev/null and b/animateditems/2806.gif differ
diff --git a/animateditems/2806.png b/animateditems/2806.png
new file mode 100644
index 00000000..fd5c4109
Binary files /dev/null and b/animateditems/2806.png differ
diff --git a/animateditems/2807.gif b/animateditems/2807.gif
new file mode 100644
index 00000000..06e31d92
Binary files /dev/null and b/animateditems/2807.gif differ
diff --git a/animateditems/2807.png b/animateditems/2807.png
new file mode 100644
index 00000000..71aa16ff
Binary files /dev/null and b/animateditems/2807.png differ
diff --git a/animateditems/2809.gif b/animateditems/2809.gif
new file mode 100644
index 00000000..070dccc8
Binary files /dev/null and b/animateditems/2809.gif differ
diff --git a/animateditems/2809.png b/animateditems/2809.png
new file mode 100644
index 00000000..d54bbb19
Binary files /dev/null and b/animateditems/2809.png differ
diff --git a/animateditems/2810.gif b/animateditems/2810.gif
new file mode 100644
index 00000000..dc191f01
Binary files /dev/null and b/animateditems/2810.gif differ
diff --git a/animateditems/2810.png b/animateditems/2810.png
new file mode 100644
index 00000000..196c1e74
Binary files /dev/null and b/animateditems/2810.png differ
diff --git a/animateditems/2811.gif b/animateditems/2811.gif
new file mode 100644
index 00000000..e11522aa
Binary files /dev/null and b/animateditems/2811.gif differ
diff --git a/animateditems/2811.png b/animateditems/2811.png
new file mode 100644
index 00000000..9d7967cc
Binary files /dev/null and b/animateditems/2811.png differ
diff --git a/animateditems/2813.gif b/animateditems/2813.gif
new file mode 100644
index 00000000..1a7707c6
Binary files /dev/null and b/animateditems/2813.gif differ
diff --git a/animateditems/2813.png b/animateditems/2813.png
new file mode 100644
index 00000000..224ee46e
Binary files /dev/null and b/animateditems/2813.png differ
diff --git a/animateditems/2814.gif b/animateditems/2814.gif
new file mode 100644
index 00000000..97e86e86
Binary files /dev/null and b/animateditems/2814.gif differ
diff --git a/animateditems/2814.png b/animateditems/2814.png
new file mode 100644
index 00000000..beef3dec
Binary files /dev/null and b/animateditems/2814.png differ
diff --git a/animateditems/2815.gif b/animateditems/2815.gif
new file mode 100644
index 00000000..6b3ce389
Binary files /dev/null and b/animateditems/2815.gif differ
diff --git a/animateditems/2815.png b/animateditems/2815.png
new file mode 100644
index 00000000..a428e166
Binary files /dev/null and b/animateditems/2815.png differ
diff --git a/animateditems/2816.gif b/animateditems/2816.gif
new file mode 100644
index 00000000..6b3ce389
Binary files /dev/null and b/animateditems/2816.gif differ
diff --git a/animateditems/2816.png b/animateditems/2816.png
new file mode 100644
index 00000000..a428e166
Binary files /dev/null and b/animateditems/2816.png differ
diff --git a/animateditems/2817.gif b/animateditems/2817.gif
new file mode 100644
index 00000000..0178df6b
Binary files /dev/null and b/animateditems/2817.gif differ
diff --git a/animateditems/2817.png b/animateditems/2817.png
new file mode 100644
index 00000000..a0cf456d
Binary files /dev/null and b/animateditems/2817.png differ
diff --git a/animateditems/2818.gif b/animateditems/2818.gif
new file mode 100644
index 00000000..541f6a61
Binary files /dev/null and b/animateditems/2818.gif differ
diff --git a/animateditems/2818.png b/animateditems/2818.png
new file mode 100644
index 00000000..45b80bdd
Binary files /dev/null and b/animateditems/2818.png differ
diff --git a/animateditems/2819.gif b/animateditems/2819.gif
new file mode 100644
index 00000000..5cf044f8
Binary files /dev/null and b/animateditems/2819.gif differ
diff --git a/animateditems/2819.png b/animateditems/2819.png
new file mode 100644
index 00000000..22c628c4
Binary files /dev/null and b/animateditems/2819.png differ
diff --git a/animateditems/2820.gif b/animateditems/2820.gif
new file mode 100644
index 00000000..853e5c5d
Binary files /dev/null and b/animateditems/2820.gif differ
diff --git a/animateditems/2820.png b/animateditems/2820.png
new file mode 100644
index 00000000..372b7b41
Binary files /dev/null and b/animateditems/2820.png differ
diff --git a/animateditems/2821.gif b/animateditems/2821.gif
new file mode 100644
index 00000000..e19aeff7
Binary files /dev/null and b/animateditems/2821.gif differ
diff --git a/animateditems/2821.png b/animateditems/2821.png
new file mode 100644
index 00000000..268932cd
Binary files /dev/null and b/animateditems/2821.png differ
diff --git a/animateditems/2822.gif b/animateditems/2822.gif
new file mode 100644
index 00000000..b025aa27
Binary files /dev/null and b/animateditems/2822.gif differ
diff --git a/animateditems/2822.png b/animateditems/2822.png
new file mode 100644
index 00000000..ae847cf1
Binary files /dev/null and b/animateditems/2822.png differ
diff --git a/animateditems/2823.gif b/animateditems/2823.gif
new file mode 100644
index 00000000..591910bc
Binary files /dev/null and b/animateditems/2823.gif differ
diff --git a/animateditems/2823.png b/animateditems/2823.png
new file mode 100644
index 00000000..0882f6f9
Binary files /dev/null and b/animateditems/2823.png differ
diff --git a/animateditems/2826.gif b/animateditems/2826.gif
new file mode 100644
index 00000000..e226e1f6
Binary files /dev/null and b/animateditems/2826.gif differ
diff --git a/animateditems/2826.png b/animateditems/2826.png
new file mode 100644
index 00000000..a7925e90
Binary files /dev/null and b/animateditems/2826.png differ
diff --git a/animateditems/2827.gif b/animateditems/2827.gif
new file mode 100644
index 00000000..1143dd81
Binary files /dev/null and b/animateditems/2827.gif differ
diff --git a/animateditems/2827.png b/animateditems/2827.png
new file mode 100644
index 00000000..7f510398
Binary files /dev/null and b/animateditems/2827.png differ
diff --git a/animateditems/2828.gif b/animateditems/2828.gif
new file mode 100644
index 00000000..d5fb4ef5
Binary files /dev/null and b/animateditems/2828.gif differ
diff --git a/animateditems/2828.png b/animateditems/2828.png
new file mode 100644
index 00000000..672fc67c
Binary files /dev/null and b/animateditems/2828.png differ
diff --git a/animateditems/28288.gif b/animateditems/28288.gif
new file mode 100644
index 00000000..3cfb92f9
Binary files /dev/null and b/animateditems/28288.gif differ
diff --git a/animateditems/28288.png b/animateditems/28288.png
new file mode 100644
index 00000000..c3cd43f6
Binary files /dev/null and b/animateditems/28288.png differ
diff --git a/animateditems/28289.gif b/animateditems/28289.gif
new file mode 100644
index 00000000..bd19bf79
Binary files /dev/null and b/animateditems/28289.gif differ
diff --git a/animateditems/28289.png b/animateditems/28289.png
new file mode 100644
index 00000000..2ff36719
Binary files /dev/null and b/animateditems/28289.png differ
diff --git a/animateditems/2829.gif b/animateditems/2829.gif
new file mode 100644
index 00000000..d5fb4ef5
Binary files /dev/null and b/animateditems/2829.gif differ
diff --git a/animateditems/2829.png b/animateditems/2829.png
new file mode 100644
index 00000000..672fc67c
Binary files /dev/null and b/animateditems/2829.png differ
diff --git a/animateditems/28290.gif b/animateditems/28290.gif
new file mode 100644
index 00000000..3cfb92f9
Binary files /dev/null and b/animateditems/28290.gif differ
diff --git a/animateditems/28290.png b/animateditems/28290.png
new file mode 100644
index 00000000..c3cd43f6
Binary files /dev/null and b/animateditems/28290.png differ
diff --git a/animateditems/2830.gif b/animateditems/2830.gif
new file mode 100644
index 00000000..fdfd4f3c
Binary files /dev/null and b/animateditems/2830.gif differ
diff --git a/animateditems/2830.png b/animateditems/2830.png
new file mode 100644
index 00000000..1f7246e7
Binary files /dev/null and b/animateditems/2830.png differ
diff --git a/animateditems/2831.gif b/animateditems/2831.gif
new file mode 100644
index 00000000..6f755b1d
Binary files /dev/null and b/animateditems/2831.gif differ
diff --git a/animateditems/2831.png b/animateditems/2831.png
new file mode 100644
index 00000000..2c443f24
Binary files /dev/null and b/animateditems/2831.png differ
diff --git a/animateditems/2832.gif b/animateditems/2832.gif
new file mode 100644
index 00000000..a0026e46
Binary files /dev/null and b/animateditems/2832.gif differ
diff --git a/animateditems/2832.png b/animateditems/2832.png
new file mode 100644
index 00000000..5daa2fef
Binary files /dev/null and b/animateditems/2832.png differ
diff --git a/animateditems/2833.gif b/animateditems/2833.gif
new file mode 100644
index 00000000..a0026e46
Binary files /dev/null and b/animateditems/2833.gif differ
diff --git a/animateditems/2833.png b/animateditems/2833.png
new file mode 100644
index 00000000..5daa2fef
Binary files /dev/null and b/animateditems/2833.png differ
diff --git a/animateditems/2834.gif b/animateditems/2834.gif
new file mode 100644
index 00000000..a0026e46
Binary files /dev/null and b/animateditems/2834.gif differ
diff --git a/animateditems/2834.png b/animateditems/2834.png
new file mode 100644
index 00000000..5daa2fef
Binary files /dev/null and b/animateditems/2834.png differ
diff --git a/animateditems/28345.gif b/animateditems/28345.gif
new file mode 100644
index 00000000..87ae0ba3
Binary files /dev/null and b/animateditems/28345.gif differ
diff --git a/animateditems/28345.png b/animateditems/28345.png
new file mode 100644
index 00000000..30756a7f
Binary files /dev/null and b/animateditems/28345.png differ
diff --git a/animateditems/28347.gif b/animateditems/28347.gif
new file mode 100644
index 00000000..76751e9e
Binary files /dev/null and b/animateditems/28347.gif differ
diff --git a/animateditems/28347.png b/animateditems/28347.png
new file mode 100644
index 00000000..18a974f6
Binary files /dev/null and b/animateditems/28347.png differ
diff --git a/animateditems/28348.gif b/animateditems/28348.gif
new file mode 100644
index 00000000..5f85af50
Binary files /dev/null and b/animateditems/28348.gif differ
diff --git a/animateditems/28348.png b/animateditems/28348.png
new file mode 100644
index 00000000..f242ae1c
Binary files /dev/null and b/animateditems/28348.png differ
diff --git a/animateditems/28349.gif b/animateditems/28349.gif
new file mode 100644
index 00000000..e5554ee1
Binary files /dev/null and b/animateditems/28349.gif differ
diff --git a/animateditems/28349.png b/animateditems/28349.png
new file mode 100644
index 00000000..c4d111a1
Binary files /dev/null and b/animateditems/28349.png differ
diff --git a/animateditems/2835.gif b/animateditems/2835.gif
new file mode 100644
index 00000000..d466a4ea
Binary files /dev/null and b/animateditems/2835.gif differ
diff --git a/animateditems/2835.png b/animateditems/2835.png
new file mode 100644
index 00000000..a4318393
Binary files /dev/null and b/animateditems/2835.png differ
diff --git a/animateditems/28350.gif b/animateditems/28350.gif
new file mode 100644
index 00000000..414da243
Binary files /dev/null and b/animateditems/28350.gif differ
diff --git a/animateditems/28350.png b/animateditems/28350.png
new file mode 100644
index 00000000..853a1e36
Binary files /dev/null and b/animateditems/28350.png differ
diff --git a/animateditems/28351.gif b/animateditems/28351.gif
new file mode 100644
index 00000000..23c5f153
Binary files /dev/null and b/animateditems/28351.gif differ
diff --git a/animateditems/28351.png b/animateditems/28351.png
new file mode 100644
index 00000000..8a32d37b
Binary files /dev/null and b/animateditems/28351.png differ
diff --git a/animateditems/28352.gif b/animateditems/28352.gif
new file mode 100644
index 00000000..0a9110f9
Binary files /dev/null and b/animateditems/28352.gif differ
diff --git a/animateditems/28352.png b/animateditems/28352.png
new file mode 100644
index 00000000..f0c58b0c
Binary files /dev/null and b/animateditems/28352.png differ
diff --git a/animateditems/28353.gif b/animateditems/28353.gif
new file mode 100644
index 00000000..179b96a9
Binary files /dev/null and b/animateditems/28353.gif differ
diff --git a/animateditems/28353.png b/animateditems/28353.png
new file mode 100644
index 00000000..d3d84c71
Binary files /dev/null and b/animateditems/28353.png differ
diff --git a/animateditems/28354.gif b/animateditems/28354.gif
new file mode 100644
index 00000000..833b5c1c
Binary files /dev/null and b/animateditems/28354.gif differ
diff --git a/animateditems/28354.png b/animateditems/28354.png
new file mode 100644
index 00000000..5d1bdf5e
Binary files /dev/null and b/animateditems/28354.png differ
diff --git a/animateditems/28355.gif b/animateditems/28355.gif
new file mode 100644
index 00000000..822fe05a
Binary files /dev/null and b/animateditems/28355.gif differ
diff --git a/animateditems/28355.png b/animateditems/28355.png
new file mode 100644
index 00000000..5b564e92
Binary files /dev/null and b/animateditems/28355.png differ
diff --git a/animateditems/28356.gif b/animateditems/28356.gif
new file mode 100644
index 00000000..a6205f89
Binary files /dev/null and b/animateditems/28356.gif differ
diff --git a/animateditems/28356.png b/animateditems/28356.png
new file mode 100644
index 00000000..d69026d2
Binary files /dev/null and b/animateditems/28356.png differ
diff --git a/animateditems/28357.gif b/animateditems/28357.gif
new file mode 100644
index 00000000..c5ba6ab5
Binary files /dev/null and b/animateditems/28357.gif differ
diff --git a/animateditems/28357.png b/animateditems/28357.png
new file mode 100644
index 00000000..e0761ea6
Binary files /dev/null and b/animateditems/28357.png differ
diff --git a/animateditems/28358.gif b/animateditems/28358.gif
new file mode 100644
index 00000000..060d0142
Binary files /dev/null and b/animateditems/28358.gif differ
diff --git a/animateditems/28358.png b/animateditems/28358.png
new file mode 100644
index 00000000..53d2f082
Binary files /dev/null and b/animateditems/28358.png differ
diff --git a/animateditems/2836.gif b/animateditems/2836.gif
new file mode 100644
index 00000000..596146a3
Binary files /dev/null and b/animateditems/2836.gif differ
diff --git a/animateditems/2836.png b/animateditems/2836.png
new file mode 100644
index 00000000..311f3c92
Binary files /dev/null and b/animateditems/2836.png differ
diff --git a/animateditems/2837.gif b/animateditems/2837.gif
new file mode 100644
index 00000000..a8fca2b2
Binary files /dev/null and b/animateditems/2837.gif differ
diff --git a/animateditems/2837.png b/animateditems/2837.png
new file mode 100644
index 00000000..97ec3736
Binary files /dev/null and b/animateditems/2837.png differ
diff --git a/animateditems/28374.gif b/animateditems/28374.gif
new file mode 100644
index 00000000..55f123fc
Binary files /dev/null and b/animateditems/28374.gif differ
diff --git a/animateditems/28374.png b/animateditems/28374.png
new file mode 100644
index 00000000..850101e9
Binary files /dev/null and b/animateditems/28374.png differ
diff --git a/animateditems/28375.gif b/animateditems/28375.gif
new file mode 100644
index 00000000..12a09565
Binary files /dev/null and b/animateditems/28375.gif differ
diff --git a/animateditems/28375.png b/animateditems/28375.png
new file mode 100644
index 00000000..52519f56
Binary files /dev/null and b/animateditems/28375.png differ
diff --git a/animateditems/2838.gif b/animateditems/2838.gif
new file mode 100644
index 00000000..a8fca2b2
Binary files /dev/null and b/animateditems/2838.gif differ
diff --git a/animateditems/2838.png b/animateditems/2838.png
new file mode 100644
index 00000000..97ec3736
Binary files /dev/null and b/animateditems/2838.png differ
diff --git a/animateditems/28385.gif b/animateditems/28385.gif
new file mode 100644
index 00000000..d8b7383f
Binary files /dev/null and b/animateditems/28385.gif differ
diff --git a/animateditems/28385.png b/animateditems/28385.png
new file mode 100644
index 00000000..c07c4923
Binary files /dev/null and b/animateditems/28385.png differ
diff --git a/animateditems/28386.gif b/animateditems/28386.gif
new file mode 100644
index 00000000..4399ac85
Binary files /dev/null and b/animateditems/28386.gif differ
diff --git a/animateditems/28386.png b/animateditems/28386.png
new file mode 100644
index 00000000..cea47a57
Binary files /dev/null and b/animateditems/28386.png differ
diff --git a/animateditems/28387.gif b/animateditems/28387.gif
new file mode 100644
index 00000000..df4b9fa8
Binary files /dev/null and b/animateditems/28387.gif differ
diff --git a/animateditems/28387.png b/animateditems/28387.png
new file mode 100644
index 00000000..f4391138
Binary files /dev/null and b/animateditems/28387.png differ
diff --git a/animateditems/28388.gif b/animateditems/28388.gif
new file mode 100644
index 00000000..a948fe7c
Binary files /dev/null and b/animateditems/28388.gif differ
diff --git a/animateditems/28388.png b/animateditems/28388.png
new file mode 100644
index 00000000..0f416dbd
Binary files /dev/null and b/animateditems/28388.png differ
diff --git a/animateditems/28389.gif b/animateditems/28389.gif
new file mode 100644
index 00000000..a83ff443
Binary files /dev/null and b/animateditems/28389.gif differ
diff --git a/animateditems/28389.png b/animateditems/28389.png
new file mode 100644
index 00000000..89e20709
Binary files /dev/null and b/animateditems/28389.png differ
diff --git a/animateditems/2839.gif b/animateditems/2839.gif
new file mode 100644
index 00000000..f924970b
Binary files /dev/null and b/animateditems/2839.gif differ
diff --git a/animateditems/2839.png b/animateditems/2839.png
new file mode 100644
index 00000000..5e214146
Binary files /dev/null and b/animateditems/2839.png differ
diff --git a/animateditems/28390.gif b/animateditems/28390.gif
new file mode 100644
index 00000000..c4d7e2e5
Binary files /dev/null and b/animateditems/28390.gif differ
diff --git a/animateditems/28390.png b/animateditems/28390.png
new file mode 100644
index 00000000..3f81ebbd
Binary files /dev/null and b/animateditems/28390.png differ
diff --git a/animateditems/28391.gif b/animateditems/28391.gif
new file mode 100644
index 00000000..ab52290c
Binary files /dev/null and b/animateditems/28391.gif differ
diff --git a/animateditems/28391.png b/animateditems/28391.png
new file mode 100644
index 00000000..0edf9633
Binary files /dev/null and b/animateditems/28391.png differ
diff --git a/animateditems/28393.gif b/animateditems/28393.gif
new file mode 100644
index 00000000..51d11f09
Binary files /dev/null and b/animateditems/28393.gif differ
diff --git a/animateditems/28393.png b/animateditems/28393.png
new file mode 100644
index 00000000..88682501
Binary files /dev/null and b/animateditems/28393.png differ
diff --git a/animateditems/28398.gif b/animateditems/28398.gif
new file mode 100644
index 00000000..77955dcc
Binary files /dev/null and b/animateditems/28398.gif differ
diff --git a/animateditems/28398.png b/animateditems/28398.png
new file mode 100644
index 00000000..c11f2253
Binary files /dev/null and b/animateditems/28398.png differ
diff --git a/animateditems/28399.gif b/animateditems/28399.gif
new file mode 100644
index 00000000..b1a3b247
Binary files /dev/null and b/animateditems/28399.gif differ
diff --git a/animateditems/28399.png b/animateditems/28399.png
new file mode 100644
index 00000000..98221e77
Binary files /dev/null and b/animateditems/28399.png differ
diff --git a/animateditems/2840.gif b/animateditems/2840.gif
new file mode 100644
index 00000000..de82e0e9
Binary files /dev/null and b/animateditems/2840.gif differ
diff --git a/animateditems/2840.png b/animateditems/2840.png
new file mode 100644
index 00000000..5c98005a
Binary files /dev/null and b/animateditems/2840.png differ
diff --git a/animateditems/28400.gif b/animateditems/28400.gif
new file mode 100644
index 00000000..91b116c1
Binary files /dev/null and b/animateditems/28400.gif differ
diff --git a/animateditems/28400.png b/animateditems/28400.png
new file mode 100644
index 00000000..1782e40a
Binary files /dev/null and b/animateditems/28400.png differ
diff --git a/animateditems/28401.gif b/animateditems/28401.gif
new file mode 100644
index 00000000..5aac84b9
Binary files /dev/null and b/animateditems/28401.gif differ
diff --git a/animateditems/28401.png b/animateditems/28401.png
new file mode 100644
index 00000000..a9215309
Binary files /dev/null and b/animateditems/28401.png differ
diff --git a/animateditems/28402.gif b/animateditems/28402.gif
new file mode 100644
index 00000000..eecae394
Binary files /dev/null and b/animateditems/28402.gif differ
diff --git a/animateditems/28402.png b/animateditems/28402.png
new file mode 100644
index 00000000..e9a04612
Binary files /dev/null and b/animateditems/28402.png differ
diff --git a/animateditems/2841.gif b/animateditems/2841.gif
new file mode 100644
index 00000000..f0e66334
Binary files /dev/null and b/animateditems/2841.gif differ
diff --git a/animateditems/2841.png b/animateditems/2841.png
new file mode 100644
index 00000000..ebf70f1b
Binary files /dev/null and b/animateditems/2841.png differ
diff --git a/animateditems/28413.gif b/animateditems/28413.gif
new file mode 100644
index 00000000..4bb3d4a7
Binary files /dev/null and b/animateditems/28413.gif differ
diff --git a/animateditems/28413.png b/animateditems/28413.png
new file mode 100644
index 00000000..a2f498a4
Binary files /dev/null and b/animateditems/28413.png differ
diff --git a/animateditems/28414.gif b/animateditems/28414.gif
new file mode 100644
index 00000000..15ce04e6
Binary files /dev/null and b/animateditems/28414.gif differ
diff --git a/animateditems/28414.png b/animateditems/28414.png
new file mode 100644
index 00000000..4d0b4cc6
Binary files /dev/null and b/animateditems/28414.png differ
diff --git a/animateditems/28415.gif b/animateditems/28415.gif
new file mode 100644
index 00000000..4bad04ce
Binary files /dev/null and b/animateditems/28415.gif differ
diff --git a/animateditems/28415.png b/animateditems/28415.png
new file mode 100644
index 00000000..d7b0089f
Binary files /dev/null and b/animateditems/28415.png differ
diff --git a/animateditems/28416.gif b/animateditems/28416.gif
new file mode 100644
index 00000000..aa630828
Binary files /dev/null and b/animateditems/28416.gif differ
diff --git a/animateditems/28416.png b/animateditems/28416.png
new file mode 100644
index 00000000..1879a236
Binary files /dev/null and b/animateditems/28416.png differ
diff --git a/animateditems/2842.gif b/animateditems/2842.gif
new file mode 100644
index 00000000..f0e66334
Binary files /dev/null and b/animateditems/2842.gif differ
diff --git a/animateditems/2842.png b/animateditems/2842.png
new file mode 100644
index 00000000..ebf70f1b
Binary files /dev/null and b/animateditems/2842.png differ
diff --git a/animateditems/2843.gif b/animateditems/2843.gif
new file mode 100644
index 00000000..48a0bf9f
Binary files /dev/null and b/animateditems/2843.gif differ
diff --git a/animateditems/2843.png b/animateditems/2843.png
new file mode 100644
index 00000000..245d81e3
Binary files /dev/null and b/animateditems/2843.png differ
diff --git a/animateditems/28435.gif b/animateditems/28435.gif
new file mode 100644
index 00000000..362a91c7
Binary files /dev/null and b/animateditems/28435.gif differ
diff --git a/animateditems/28435.png b/animateditems/28435.png
new file mode 100644
index 00000000..df75e209
Binary files /dev/null and b/animateditems/28435.png differ
diff --git a/animateditems/28438.gif b/animateditems/28438.gif
new file mode 100644
index 00000000..1a05a061
Binary files /dev/null and b/animateditems/28438.gif differ
diff --git a/animateditems/28438.png b/animateditems/28438.png
new file mode 100644
index 00000000..5180b3b6
Binary files /dev/null and b/animateditems/28438.png differ
diff --git a/animateditems/28451.gif b/animateditems/28451.gif
new file mode 100644
index 00000000..884091d5
Binary files /dev/null and b/animateditems/28451.gif differ
diff --git a/animateditems/28451.png b/animateditems/28451.png
new file mode 100644
index 00000000..e6034c27
Binary files /dev/null and b/animateditems/28451.png differ
diff --git a/animateditems/2848.gif b/animateditems/2848.gif
new file mode 100644
index 00000000..a9aa58d2
Binary files /dev/null and b/animateditems/2848.gif differ
diff --git a/animateditems/2848.png b/animateditems/2848.png
new file mode 100644
index 00000000..601213f6
Binary files /dev/null and b/animateditems/2848.png differ
diff --git a/animateditems/2853.gif b/animateditems/2853.gif
new file mode 100644
index 00000000..61282e7f
Binary files /dev/null and b/animateditems/2853.gif differ
diff --git a/animateditems/2853.png b/animateditems/2853.png
new file mode 100644
index 00000000..8b646b79
Binary files /dev/null and b/animateditems/2853.png differ
diff --git a/animateditems/2854.gif b/animateditems/2854.gif
new file mode 100644
index 00000000..2d2ce6ba
Binary files /dev/null and b/animateditems/2854.gif differ
diff --git a/animateditems/2854.png b/animateditems/2854.png
new file mode 100644
index 00000000..728f282a
Binary files /dev/null and b/animateditems/2854.png differ
diff --git a/animateditems/2855.gif b/animateditems/2855.gif
new file mode 100644
index 00000000..0774fd8b
Binary files /dev/null and b/animateditems/2855.gif differ
diff --git a/animateditems/2855.png b/animateditems/2855.png
new file mode 100644
index 00000000..b20118e0
Binary files /dev/null and b/animateditems/2855.png differ
diff --git a/animateditems/28559.gif b/animateditems/28559.gif
new file mode 100644
index 00000000..f7585634
Binary files /dev/null and b/animateditems/28559.gif differ
diff --git a/animateditems/28559.png b/animateditems/28559.png
new file mode 100644
index 00000000..35f4fb63
Binary files /dev/null and b/animateditems/28559.png differ
diff --git a/animateditems/2856.gif b/animateditems/2856.gif
new file mode 100644
index 00000000..0774fd8b
Binary files /dev/null and b/animateditems/2856.gif differ
diff --git a/animateditems/2856.png b/animateditems/2856.png
new file mode 100644
index 00000000..b20118e0
Binary files /dev/null and b/animateditems/2856.png differ
diff --git a/animateditems/28560.gif b/animateditems/28560.gif
new file mode 100644
index 00000000..2359f8ea
Binary files /dev/null and b/animateditems/28560.gif differ
diff --git a/animateditems/28560.png b/animateditems/28560.png
new file mode 100644
index 00000000..6106ed6d
Binary files /dev/null and b/animateditems/28560.png differ
diff --git a/animateditems/28561.gif b/animateditems/28561.gif
new file mode 100644
index 00000000..92978a7c
Binary files /dev/null and b/animateditems/28561.gif differ
diff --git a/animateditems/28561.png b/animateditems/28561.png
new file mode 100644
index 00000000..28d10269
Binary files /dev/null and b/animateditems/28561.png differ
diff --git a/animateditems/28562.gif b/animateditems/28562.gif
new file mode 100644
index 00000000..db9cc93a
Binary files /dev/null and b/animateditems/28562.gif differ
diff --git a/animateditems/28562.png b/animateditems/28562.png
new file mode 100644
index 00000000..5d13f5ef
Binary files /dev/null and b/animateditems/28562.png differ
diff --git a/animateditems/28563.gif b/animateditems/28563.gif
new file mode 100644
index 00000000..1ea0bd00
Binary files /dev/null and b/animateditems/28563.gif differ
diff --git a/animateditems/28563.png b/animateditems/28563.png
new file mode 100644
index 00000000..beedefcc
Binary files /dev/null and b/animateditems/28563.png differ
diff --git a/animateditems/28564.gif b/animateditems/28564.gif
new file mode 100644
index 00000000..7ace8dd5
Binary files /dev/null and b/animateditems/28564.gif differ
diff --git a/animateditems/28564.png b/animateditems/28564.png
new file mode 100644
index 00000000..13fb6c88
Binary files /dev/null and b/animateditems/28564.png differ
diff --git a/animateditems/28565.gif b/animateditems/28565.gif
new file mode 100644
index 00000000..a07972ae
Binary files /dev/null and b/animateditems/28565.gif differ
diff --git a/animateditems/28565.png b/animateditems/28565.png
new file mode 100644
index 00000000..d8d699f0
Binary files /dev/null and b/animateditems/28565.png differ
diff --git a/animateditems/28566.gif b/animateditems/28566.gif
new file mode 100644
index 00000000..a5944d64
Binary files /dev/null and b/animateditems/28566.gif differ
diff --git a/animateditems/28566.png b/animateditems/28566.png
new file mode 100644
index 00000000..640623d3
Binary files /dev/null and b/animateditems/28566.png differ
diff --git a/animateditems/28567.gif b/animateditems/28567.gif
new file mode 100644
index 00000000..0c289240
Binary files /dev/null and b/animateditems/28567.gif differ
diff --git a/animateditems/28567.png b/animateditems/28567.png
new file mode 100644
index 00000000..11fc09eb
Binary files /dev/null and b/animateditems/28567.png differ
diff --git a/animateditems/28568.gif b/animateditems/28568.gif
new file mode 100644
index 00000000..983c67cd
Binary files /dev/null and b/animateditems/28568.gif differ
diff --git a/animateditems/28568.png b/animateditems/28568.png
new file mode 100644
index 00000000..6dd35e32
Binary files /dev/null and b/animateditems/28568.png differ
diff --git a/animateditems/28569.gif b/animateditems/28569.gif
new file mode 100644
index 00000000..7b1f9dd8
Binary files /dev/null and b/animateditems/28569.gif differ
diff --git a/animateditems/28569.png b/animateditems/28569.png
new file mode 100644
index 00000000..f0b3019e
Binary files /dev/null and b/animateditems/28569.png differ
diff --git a/animateditems/28570.gif b/animateditems/28570.gif
new file mode 100644
index 00000000..87e6ffb7
Binary files /dev/null and b/animateditems/28570.gif differ
diff --git a/animateditems/28570.png b/animateditems/28570.png
new file mode 100644
index 00000000..c9cdbbc6
Binary files /dev/null and b/animateditems/28570.png differ
diff --git a/animateditems/28571.gif b/animateditems/28571.gif
new file mode 100644
index 00000000..b59001a4
Binary files /dev/null and b/animateditems/28571.gif differ
diff --git a/animateditems/28571.png b/animateditems/28571.png
new file mode 100644
index 00000000..4304acdf
Binary files /dev/null and b/animateditems/28571.png differ
diff --git a/animateditems/28572.gif b/animateditems/28572.gif
new file mode 100644
index 00000000..20e794ae
Binary files /dev/null and b/animateditems/28572.gif differ
diff --git a/animateditems/28572.png b/animateditems/28572.png
new file mode 100644
index 00000000..5f2a57fe
Binary files /dev/null and b/animateditems/28572.png differ
diff --git a/animateditems/28573.gif b/animateditems/28573.gif
new file mode 100644
index 00000000..8c7d66c7
Binary files /dev/null and b/animateditems/28573.gif differ
diff --git a/animateditems/28573.png b/animateditems/28573.png
new file mode 100644
index 00000000..3496bade
Binary files /dev/null and b/animateditems/28573.png differ
diff --git a/animateditems/28574.gif b/animateditems/28574.gif
new file mode 100644
index 00000000..9c2a764a
Binary files /dev/null and b/animateditems/28574.gif differ
diff --git a/animateditems/28574.png b/animateditems/28574.png
new file mode 100644
index 00000000..048e4696
Binary files /dev/null and b/animateditems/28574.png differ
diff --git a/animateditems/28575.gif b/animateditems/28575.gif
new file mode 100644
index 00000000..f0c8f9ba
Binary files /dev/null and b/animateditems/28575.gif differ
diff --git a/animateditems/28575.png b/animateditems/28575.png
new file mode 100644
index 00000000..2f9ff89c
Binary files /dev/null and b/animateditems/28575.png differ
diff --git a/animateditems/28576.gif b/animateditems/28576.gif
new file mode 100644
index 00000000..4c2d8ebf
Binary files /dev/null and b/animateditems/28576.gif differ
diff --git a/animateditems/28576.png b/animateditems/28576.png
new file mode 100644
index 00000000..a9f951f7
Binary files /dev/null and b/animateditems/28576.png differ
diff --git a/animateditems/28577.gif b/animateditems/28577.gif
new file mode 100644
index 00000000..0a9a4d6e
Binary files /dev/null and b/animateditems/28577.gif differ
diff --git a/animateditems/28577.png b/animateditems/28577.png
new file mode 100644
index 00000000..7145c8f7
Binary files /dev/null and b/animateditems/28577.png differ
diff --git a/animateditems/28578.gif b/animateditems/28578.gif
new file mode 100644
index 00000000..6397d17b
Binary files /dev/null and b/animateditems/28578.gif differ
diff --git a/animateditems/28578.png b/animateditems/28578.png
new file mode 100644
index 00000000..48538008
Binary files /dev/null and b/animateditems/28578.png differ
diff --git a/animateditems/28579.gif b/animateditems/28579.gif
new file mode 100644
index 00000000..0bb03d9f
Binary files /dev/null and b/animateditems/28579.gif differ
diff --git a/animateditems/28579.png b/animateditems/28579.png
new file mode 100644
index 00000000..0e4a9a47
Binary files /dev/null and b/animateditems/28579.png differ
diff --git a/animateditems/28580.gif b/animateditems/28580.gif
new file mode 100644
index 00000000..97f80e58
Binary files /dev/null and b/animateditems/28580.gif differ
diff --git a/animateditems/28580.png b/animateditems/28580.png
new file mode 100644
index 00000000..a7a9199d
Binary files /dev/null and b/animateditems/28580.png differ
diff --git a/animateditems/28581.gif b/animateditems/28581.gif
new file mode 100644
index 00000000..08f79781
Binary files /dev/null and b/animateditems/28581.gif differ
diff --git a/animateditems/28581.png b/animateditems/28581.png
new file mode 100644
index 00000000..49c32e57
Binary files /dev/null and b/animateditems/28581.png differ
diff --git a/animateditems/28582.gif b/animateditems/28582.gif
new file mode 100644
index 00000000..a849927b
Binary files /dev/null and b/animateditems/28582.gif differ
diff --git a/animateditems/28582.png b/animateditems/28582.png
new file mode 100644
index 00000000..85f6eb3c
Binary files /dev/null and b/animateditems/28582.png differ
diff --git a/animateditems/28583.gif b/animateditems/28583.gif
new file mode 100644
index 00000000..79b91377
Binary files /dev/null and b/animateditems/28583.gif differ
diff --git a/animateditems/28583.png b/animateditems/28583.png
new file mode 100644
index 00000000..4ba2b044
Binary files /dev/null and b/animateditems/28583.png differ
diff --git a/animateditems/28584.gif b/animateditems/28584.gif
new file mode 100644
index 00000000..6091aed2
Binary files /dev/null and b/animateditems/28584.gif differ
diff --git a/animateditems/28584.png b/animateditems/28584.png
new file mode 100644
index 00000000..11361a7a
Binary files /dev/null and b/animateditems/28584.png differ
diff --git a/animateditems/28585.gif b/animateditems/28585.gif
new file mode 100644
index 00000000..b24373c1
Binary files /dev/null and b/animateditems/28585.gif differ
diff --git a/animateditems/28585.png b/animateditems/28585.png
new file mode 100644
index 00000000..580b14e1
Binary files /dev/null and b/animateditems/28585.png differ
diff --git a/animateditems/28586.gif b/animateditems/28586.gif
new file mode 100644
index 00000000..ad7443f1
Binary files /dev/null and b/animateditems/28586.gif differ
diff --git a/animateditems/28586.png b/animateditems/28586.png
new file mode 100644
index 00000000..2b339f8a
Binary files /dev/null and b/animateditems/28586.png differ
diff --git a/animateditems/28587.gif b/animateditems/28587.gif
new file mode 100644
index 00000000..aac882b8
Binary files /dev/null and b/animateditems/28587.gif differ
diff --git a/animateditems/28587.png b/animateditems/28587.png
new file mode 100644
index 00000000..65dc4eb9
Binary files /dev/null and b/animateditems/28587.png differ
diff --git a/animateditems/28588.gif b/animateditems/28588.gif
new file mode 100644
index 00000000..66024171
Binary files /dev/null and b/animateditems/28588.gif differ
diff --git a/animateditems/28588.png b/animateditems/28588.png
new file mode 100644
index 00000000..a0dc4e79
Binary files /dev/null and b/animateditems/28588.png differ
diff --git a/animateditems/28589.gif b/animateditems/28589.gif
new file mode 100644
index 00000000..9dde0ed6
Binary files /dev/null and b/animateditems/28589.gif differ
diff --git a/animateditems/28589.png b/animateditems/28589.png
new file mode 100644
index 00000000..b1c70cad
Binary files /dev/null and b/animateditems/28589.png differ
diff --git a/animateditems/28590.gif b/animateditems/28590.gif
new file mode 100644
index 00000000..c8bf5115
Binary files /dev/null and b/animateditems/28590.gif differ
diff --git a/animateditems/28590.png b/animateditems/28590.png
new file mode 100644
index 00000000..719e9bbf
Binary files /dev/null and b/animateditems/28590.png differ
diff --git a/animateditems/28591.gif b/animateditems/28591.gif
new file mode 100644
index 00000000..a6d2f30a
Binary files /dev/null and b/animateditems/28591.gif differ
diff --git a/animateditems/28591.png b/animateditems/28591.png
new file mode 100644
index 00000000..760981e0
Binary files /dev/null and b/animateditems/28591.png differ
diff --git a/animateditems/28592.gif b/animateditems/28592.gif
new file mode 100644
index 00000000..5297613b
Binary files /dev/null and b/animateditems/28592.gif differ
diff --git a/animateditems/28592.png b/animateditems/28592.png
new file mode 100644
index 00000000..b2d20fc8
Binary files /dev/null and b/animateditems/28592.png differ
diff --git a/animateditems/28593.gif b/animateditems/28593.gif
new file mode 100644
index 00000000..509b6f3b
Binary files /dev/null and b/animateditems/28593.gif differ
diff --git a/animateditems/28593.png b/animateditems/28593.png
new file mode 100644
index 00000000..08f7ccb5
Binary files /dev/null and b/animateditems/28593.png differ
diff --git a/animateditems/28594.gif b/animateditems/28594.gif
new file mode 100644
index 00000000..d16d80be
Binary files /dev/null and b/animateditems/28594.gif differ
diff --git a/animateditems/28594.png b/animateditems/28594.png
new file mode 100644
index 00000000..d2987579
Binary files /dev/null and b/animateditems/28594.png differ
diff --git a/animateditems/28595.gif b/animateditems/28595.gif
new file mode 100644
index 00000000..733b9418
Binary files /dev/null and b/animateditems/28595.gif differ
diff --git a/animateditems/28595.png b/animateditems/28595.png
new file mode 100644
index 00000000..89c041a8
Binary files /dev/null and b/animateditems/28595.png differ
diff --git a/animateditems/28596.gif b/animateditems/28596.gif
new file mode 100644
index 00000000..abd753a6
Binary files /dev/null and b/animateditems/28596.gif differ
diff --git a/animateditems/28596.png b/animateditems/28596.png
new file mode 100644
index 00000000..35e0d7c9
Binary files /dev/null and b/animateditems/28596.png differ
diff --git a/animateditems/28597.gif b/animateditems/28597.gif
new file mode 100644
index 00000000..3b199628
Binary files /dev/null and b/animateditems/28597.gif differ
diff --git a/animateditems/28597.png b/animateditems/28597.png
new file mode 100644
index 00000000..589eb024
Binary files /dev/null and b/animateditems/28597.png differ
diff --git a/animateditems/28598.gif b/animateditems/28598.gif
new file mode 100644
index 00000000..a0eecd5c
Binary files /dev/null and b/animateditems/28598.gif differ
diff --git a/animateditems/28598.png b/animateditems/28598.png
new file mode 100644
index 00000000..0f4e9808
Binary files /dev/null and b/animateditems/28598.png differ
diff --git a/animateditems/28599.gif b/animateditems/28599.gif
new file mode 100644
index 00000000..d97e7a18
Binary files /dev/null and b/animateditems/28599.gif differ
diff --git a/animateditems/28599.png b/animateditems/28599.png
new file mode 100644
index 00000000..b9ed6876
Binary files /dev/null and b/animateditems/28599.png differ
diff --git a/animateditems/2860.gif b/animateditems/2860.gif
new file mode 100644
index 00000000..344431b1
Binary files /dev/null and b/animateditems/2860.gif differ
diff --git a/animateditems/2860.png b/animateditems/2860.png
new file mode 100644
index 00000000..9f304322
Binary files /dev/null and b/animateditems/2860.png differ
diff --git a/animateditems/28600.gif b/animateditems/28600.gif
new file mode 100644
index 00000000..949178af
Binary files /dev/null and b/animateditems/28600.gif differ
diff --git a/animateditems/28600.png b/animateditems/28600.png
new file mode 100644
index 00000000..6b047a65
Binary files /dev/null and b/animateditems/28600.png differ
diff --git a/animateditems/28601.gif b/animateditems/28601.gif
new file mode 100644
index 00000000..ddb1e835
Binary files /dev/null and b/animateditems/28601.gif differ
diff --git a/animateditems/28601.png b/animateditems/28601.png
new file mode 100644
index 00000000..d7ade5e3
Binary files /dev/null and b/animateditems/28601.png differ
diff --git a/animateditems/28602.gif b/animateditems/28602.gif
new file mode 100644
index 00000000..7a8c52ed
Binary files /dev/null and b/animateditems/28602.gif differ
diff --git a/animateditems/28602.png b/animateditems/28602.png
new file mode 100644
index 00000000..cb7c9544
Binary files /dev/null and b/animateditems/28602.png differ
diff --git a/animateditems/28603.gif b/animateditems/28603.gif
new file mode 100644
index 00000000..2f3c20dc
Binary files /dev/null and b/animateditems/28603.gif differ
diff --git a/animateditems/28603.png b/animateditems/28603.png
new file mode 100644
index 00000000..f2a64e7b
Binary files /dev/null and b/animateditems/28603.png differ
diff --git a/animateditems/28604.gif b/animateditems/28604.gif
new file mode 100644
index 00000000..d4e3566d
Binary files /dev/null and b/animateditems/28604.gif differ
diff --git a/animateditems/28604.png b/animateditems/28604.png
new file mode 100644
index 00000000..72f2fdb4
Binary files /dev/null and b/animateditems/28604.png differ
diff --git a/animateditems/28605.gif b/animateditems/28605.gif
new file mode 100644
index 00000000..700d9ca6
Binary files /dev/null and b/animateditems/28605.gif differ
diff --git a/animateditems/28605.png b/animateditems/28605.png
new file mode 100644
index 00000000..08b88abc
Binary files /dev/null and b/animateditems/28605.png differ
diff --git a/animateditems/28606.gif b/animateditems/28606.gif
new file mode 100644
index 00000000..c360bb81
Binary files /dev/null and b/animateditems/28606.gif differ
diff --git a/animateditems/28606.png b/animateditems/28606.png
new file mode 100644
index 00000000..604d488d
Binary files /dev/null and b/animateditems/28606.png differ
diff --git a/animateditems/28607.gif b/animateditems/28607.gif
new file mode 100644
index 00000000..0a75b128
Binary files /dev/null and b/animateditems/28607.gif differ
diff --git a/animateditems/28607.png b/animateditems/28607.png
new file mode 100644
index 00000000..af7d22c3
Binary files /dev/null and b/animateditems/28607.png differ
diff --git a/animateditems/28608.gif b/animateditems/28608.gif
new file mode 100644
index 00000000..69ff5a2f
Binary files /dev/null and b/animateditems/28608.gif differ
diff --git a/animateditems/28608.png b/animateditems/28608.png
new file mode 100644
index 00000000..bdac6c8b
Binary files /dev/null and b/animateditems/28608.png differ
diff --git a/animateditems/28609.gif b/animateditems/28609.gif
new file mode 100644
index 00000000..317e621d
Binary files /dev/null and b/animateditems/28609.gif differ
diff --git a/animateditems/28609.png b/animateditems/28609.png
new file mode 100644
index 00000000..61789675
Binary files /dev/null and b/animateditems/28609.png differ
diff --git a/animateditems/2861.gif b/animateditems/2861.gif
new file mode 100644
index 00000000..02718d08
Binary files /dev/null and b/animateditems/2861.gif differ
diff --git a/animateditems/2861.png b/animateditems/2861.png
new file mode 100644
index 00000000..8f3eea9a
Binary files /dev/null and b/animateditems/2861.png differ
diff --git a/animateditems/28610.gif b/animateditems/28610.gif
new file mode 100644
index 00000000..76105381
Binary files /dev/null and b/animateditems/28610.gif differ
diff --git a/animateditems/28610.png b/animateditems/28610.png
new file mode 100644
index 00000000..3810be81
Binary files /dev/null and b/animateditems/28610.png differ
diff --git a/animateditems/28611.gif b/animateditems/28611.gif
new file mode 100644
index 00000000..6c73c661
Binary files /dev/null and b/animateditems/28611.gif differ
diff --git a/animateditems/28611.png b/animateditems/28611.png
new file mode 100644
index 00000000..fbf13290
Binary files /dev/null and b/animateditems/28611.png differ
diff --git a/animateditems/28612.gif b/animateditems/28612.gif
new file mode 100644
index 00000000..94804695
Binary files /dev/null and b/animateditems/28612.gif differ
diff --git a/animateditems/28612.png b/animateditems/28612.png
new file mode 100644
index 00000000..17174dbd
Binary files /dev/null and b/animateditems/28612.png differ
diff --git a/animateditems/28613.gif b/animateditems/28613.gif
new file mode 100644
index 00000000..571004c7
Binary files /dev/null and b/animateditems/28613.gif differ
diff --git a/animateditems/28613.png b/animateditems/28613.png
new file mode 100644
index 00000000..ff0eff78
Binary files /dev/null and b/animateditems/28613.png differ
diff --git a/animateditems/28614.gif b/animateditems/28614.gif
new file mode 100644
index 00000000..7644b6b3
Binary files /dev/null and b/animateditems/28614.gif differ
diff --git a/animateditems/28614.png b/animateditems/28614.png
new file mode 100644
index 00000000..3f5d6888
Binary files /dev/null and b/animateditems/28614.png differ
diff --git a/animateditems/28615.gif b/animateditems/28615.gif
new file mode 100644
index 00000000..d1de4044
Binary files /dev/null and b/animateditems/28615.gif differ
diff --git a/animateditems/28615.png b/animateditems/28615.png
new file mode 100644
index 00000000..86b18d8b
Binary files /dev/null and b/animateditems/28615.png differ
diff --git a/animateditems/28616.gif b/animateditems/28616.gif
new file mode 100644
index 00000000..d2d6a6a6
Binary files /dev/null and b/animateditems/28616.gif differ
diff --git a/animateditems/28616.png b/animateditems/28616.png
new file mode 100644
index 00000000..9fe1652f
Binary files /dev/null and b/animateditems/28616.png differ
diff --git a/animateditems/28617.gif b/animateditems/28617.gif
new file mode 100644
index 00000000..c21040b2
Binary files /dev/null and b/animateditems/28617.gif differ
diff --git a/animateditems/28617.png b/animateditems/28617.png
new file mode 100644
index 00000000..b6120432
Binary files /dev/null and b/animateditems/28617.png differ
diff --git a/animateditems/28618.gif b/animateditems/28618.gif
new file mode 100644
index 00000000..9627bbb8
Binary files /dev/null and b/animateditems/28618.gif differ
diff --git a/animateditems/28618.png b/animateditems/28618.png
new file mode 100644
index 00000000..78a3f915
Binary files /dev/null and b/animateditems/28618.png differ
diff --git a/animateditems/28619.gif b/animateditems/28619.gif
new file mode 100644
index 00000000..3035ecc5
Binary files /dev/null and b/animateditems/28619.gif differ
diff --git a/animateditems/28619.png b/animateditems/28619.png
new file mode 100644
index 00000000..a9310198
Binary files /dev/null and b/animateditems/28619.png differ
diff --git a/animateditems/2862.gif b/animateditems/2862.gif
new file mode 100644
index 00000000..e2be52d7
Binary files /dev/null and b/animateditems/2862.gif differ
diff --git a/animateditems/2862.png b/animateditems/2862.png
new file mode 100644
index 00000000..0e2256c2
Binary files /dev/null and b/animateditems/2862.png differ
diff --git a/animateditems/28620.gif b/animateditems/28620.gif
new file mode 100644
index 00000000..cf0c9107
Binary files /dev/null and b/animateditems/28620.gif differ
diff --git a/animateditems/28620.png b/animateditems/28620.png
new file mode 100644
index 00000000..4f02a3e8
Binary files /dev/null and b/animateditems/28620.png differ
diff --git a/animateditems/28621.gif b/animateditems/28621.gif
new file mode 100644
index 00000000..7b331387
Binary files /dev/null and b/animateditems/28621.gif differ
diff --git a/animateditems/28621.png b/animateditems/28621.png
new file mode 100644
index 00000000..a465be04
Binary files /dev/null and b/animateditems/28621.png differ
diff --git a/animateditems/28622.gif b/animateditems/28622.gif
new file mode 100644
index 00000000..aed5b64f
Binary files /dev/null and b/animateditems/28622.gif differ
diff --git a/animateditems/28622.png b/animateditems/28622.png
new file mode 100644
index 00000000..8d629693
Binary files /dev/null and b/animateditems/28622.png differ
diff --git a/animateditems/28623.gif b/animateditems/28623.gif
new file mode 100644
index 00000000..c2654826
Binary files /dev/null and b/animateditems/28623.gif differ
diff --git a/animateditems/28623.png b/animateditems/28623.png
new file mode 100644
index 00000000..be0df83f
Binary files /dev/null and b/animateditems/28623.png differ
diff --git a/animateditems/28624.gif b/animateditems/28624.gif
new file mode 100644
index 00000000..7f2e14d9
Binary files /dev/null and b/animateditems/28624.gif differ
diff --git a/animateditems/28624.png b/animateditems/28624.png
new file mode 100644
index 00000000..f60750f0
Binary files /dev/null and b/animateditems/28624.png differ
diff --git a/animateditems/28625.gif b/animateditems/28625.gif
new file mode 100644
index 00000000..a888b64b
Binary files /dev/null and b/animateditems/28625.gif differ
diff --git a/animateditems/28625.png b/animateditems/28625.png
new file mode 100644
index 00000000..8736ea0b
Binary files /dev/null and b/animateditems/28625.png differ
diff --git a/animateditems/28626.gif b/animateditems/28626.gif
new file mode 100644
index 00000000..59f6516b
Binary files /dev/null and b/animateditems/28626.gif differ
diff --git a/animateditems/28626.png b/animateditems/28626.png
new file mode 100644
index 00000000..3727a51c
Binary files /dev/null and b/animateditems/28626.png differ
diff --git a/animateditems/28627.gif b/animateditems/28627.gif
new file mode 100644
index 00000000..013e64b3
Binary files /dev/null and b/animateditems/28627.gif differ
diff --git a/animateditems/28627.png b/animateditems/28627.png
new file mode 100644
index 00000000..c6d75692
Binary files /dev/null and b/animateditems/28627.png differ
diff --git a/animateditems/28628.gif b/animateditems/28628.gif
new file mode 100644
index 00000000..e374e9dc
Binary files /dev/null and b/animateditems/28628.gif differ
diff --git a/animateditems/28628.png b/animateditems/28628.png
new file mode 100644
index 00000000..8878b3b1
Binary files /dev/null and b/animateditems/28628.png differ
diff --git a/animateditems/28629.gif b/animateditems/28629.gif
new file mode 100644
index 00000000..543b913c
Binary files /dev/null and b/animateditems/28629.gif differ
diff --git a/animateditems/28629.png b/animateditems/28629.png
new file mode 100644
index 00000000..3a88c39e
Binary files /dev/null and b/animateditems/28629.png differ
diff --git a/animateditems/2863.gif b/animateditems/2863.gif
new file mode 100644
index 00000000..be959abc
Binary files /dev/null and b/animateditems/2863.gif differ
diff --git a/animateditems/2863.png b/animateditems/2863.png
new file mode 100644
index 00000000..5c085e87
Binary files /dev/null and b/animateditems/2863.png differ
diff --git a/animateditems/28630.gif b/animateditems/28630.gif
new file mode 100644
index 00000000..d806775a
Binary files /dev/null and b/animateditems/28630.gif differ
diff --git a/animateditems/28630.png b/animateditems/28630.png
new file mode 100644
index 00000000..46fa660b
Binary files /dev/null and b/animateditems/28630.png differ
diff --git a/animateditems/28631.gif b/animateditems/28631.gif
new file mode 100644
index 00000000..4399ac85
Binary files /dev/null and b/animateditems/28631.gif differ
diff --git a/animateditems/28631.png b/animateditems/28631.png
new file mode 100644
index 00000000..cea47a57
Binary files /dev/null and b/animateditems/28631.png differ
diff --git a/animateditems/28632.gif b/animateditems/28632.gif
new file mode 100644
index 00000000..a948fe7c
Binary files /dev/null and b/animateditems/28632.gif differ
diff --git a/animateditems/28632.png b/animateditems/28632.png
new file mode 100644
index 00000000..0f416dbd
Binary files /dev/null and b/animateditems/28632.png differ
diff --git a/animateditems/28635.gif b/animateditems/28635.gif
new file mode 100644
index 00000000..9ccddcca
Binary files /dev/null and b/animateditems/28635.gif differ
diff --git a/animateditems/28635.png b/animateditems/28635.png
new file mode 100644
index 00000000..8e253a37
Binary files /dev/null and b/animateditems/28635.png differ
diff --git a/animateditems/28636.gif b/animateditems/28636.gif
new file mode 100644
index 00000000..10c04e51
Binary files /dev/null and b/animateditems/28636.gif differ
diff --git a/animateditems/28636.png b/animateditems/28636.png
new file mode 100644
index 00000000..1da5b0a0
Binary files /dev/null and b/animateditems/28636.png differ
diff --git a/animateditems/28637.gif b/animateditems/28637.gif
new file mode 100644
index 00000000..e103889b
Binary files /dev/null and b/animateditems/28637.gif differ
diff --git a/animateditems/28637.png b/animateditems/28637.png
new file mode 100644
index 00000000..5ec19b2e
Binary files /dev/null and b/animateditems/28637.png differ
diff --git a/animateditems/28638.gif b/animateditems/28638.gif
new file mode 100644
index 00000000..041973e9
Binary files /dev/null and b/animateditems/28638.gif differ
diff --git a/animateditems/28638.png b/animateditems/28638.png
new file mode 100644
index 00000000..816b3a18
Binary files /dev/null and b/animateditems/28638.png differ
diff --git a/animateditems/28639.gif b/animateditems/28639.gif
new file mode 100644
index 00000000..5c4d36fe
Binary files /dev/null and b/animateditems/28639.gif differ
diff --git a/animateditems/28639.png b/animateditems/28639.png
new file mode 100644
index 00000000..5174c585
Binary files /dev/null and b/animateditems/28639.png differ
diff --git a/animateditems/2864.gif b/animateditems/2864.gif
new file mode 100644
index 00000000..8839cd33
Binary files /dev/null and b/animateditems/2864.gif differ
diff --git a/animateditems/2864.png b/animateditems/2864.png
new file mode 100644
index 00000000..eea394d1
Binary files /dev/null and b/animateditems/2864.png differ
diff --git a/animateditems/28640.gif b/animateditems/28640.gif
new file mode 100644
index 00000000..1d5d3acb
Binary files /dev/null and b/animateditems/28640.gif differ
diff --git a/animateditems/28640.png b/animateditems/28640.png
new file mode 100644
index 00000000..618195ef
Binary files /dev/null and b/animateditems/28640.png differ
diff --git a/animateditems/28641.gif b/animateditems/28641.gif
new file mode 100644
index 00000000..f4fb9c0b
Binary files /dev/null and b/animateditems/28641.gif differ
diff --git a/animateditems/28641.png b/animateditems/28641.png
new file mode 100644
index 00000000..b257980d
Binary files /dev/null and b/animateditems/28641.png differ
diff --git a/animateditems/28642.gif b/animateditems/28642.gif
new file mode 100644
index 00000000..8d590610
Binary files /dev/null and b/animateditems/28642.gif differ
diff --git a/animateditems/28642.png b/animateditems/28642.png
new file mode 100644
index 00000000..ba1b36dd
Binary files /dev/null and b/animateditems/28642.png differ
diff --git a/animateditems/28643.gif b/animateditems/28643.gif
new file mode 100644
index 00000000..255d312b
Binary files /dev/null and b/animateditems/28643.gif differ
diff --git a/animateditems/28643.png b/animateditems/28643.png
new file mode 100644
index 00000000..8b8adb78
Binary files /dev/null and b/animateditems/28643.png differ
diff --git a/animateditems/28644.gif b/animateditems/28644.gif
new file mode 100644
index 00000000..21121983
Binary files /dev/null and b/animateditems/28644.gif differ
diff --git a/animateditems/28644.png b/animateditems/28644.png
new file mode 100644
index 00000000..521c6921
Binary files /dev/null and b/animateditems/28644.png differ
diff --git a/animateditems/28645.gif b/animateditems/28645.gif
new file mode 100644
index 00000000..2b2a651a
Binary files /dev/null and b/animateditems/28645.gif differ
diff --git a/animateditems/28645.png b/animateditems/28645.png
new file mode 100644
index 00000000..d9db5662
Binary files /dev/null and b/animateditems/28645.png differ
diff --git a/animateditems/28646.gif b/animateditems/28646.gif
new file mode 100644
index 00000000..3217bcc8
Binary files /dev/null and b/animateditems/28646.gif differ
diff --git a/animateditems/28646.png b/animateditems/28646.png
new file mode 100644
index 00000000..b6c423ba
Binary files /dev/null and b/animateditems/28646.png differ
diff --git a/animateditems/28647.gif b/animateditems/28647.gif
new file mode 100644
index 00000000..a6680f00
Binary files /dev/null and b/animateditems/28647.gif differ
diff --git a/animateditems/28647.png b/animateditems/28647.png
new file mode 100644
index 00000000..03de250d
Binary files /dev/null and b/animateditems/28647.png differ
diff --git a/animateditems/28648.gif b/animateditems/28648.gif
new file mode 100644
index 00000000..b0a5921a
Binary files /dev/null and b/animateditems/28648.gif differ
diff --git a/animateditems/28648.png b/animateditems/28648.png
new file mode 100644
index 00000000..f4d9997d
Binary files /dev/null and b/animateditems/28648.png differ
diff --git a/animateditems/28649.gif b/animateditems/28649.gif
new file mode 100644
index 00000000..b23d36f9
Binary files /dev/null and b/animateditems/28649.gif differ
diff --git a/animateditems/28649.png b/animateditems/28649.png
new file mode 100644
index 00000000..cd9c2a2f
Binary files /dev/null and b/animateditems/28649.png differ
diff --git a/animateditems/2865.gif b/animateditems/2865.gif
new file mode 100644
index 00000000..f8ddb7c7
Binary files /dev/null and b/animateditems/2865.gif differ
diff --git a/animateditems/2865.png b/animateditems/2865.png
new file mode 100644
index 00000000..a3918bec
Binary files /dev/null and b/animateditems/2865.png differ
diff --git a/animateditems/28650.gif b/animateditems/28650.gif
new file mode 100644
index 00000000..58e1a671
Binary files /dev/null and b/animateditems/28650.gif differ
diff --git a/animateditems/28650.png b/animateditems/28650.png
new file mode 100644
index 00000000..4a19d2d9
Binary files /dev/null and b/animateditems/28650.png differ
diff --git a/animateditems/28651.gif b/animateditems/28651.gif
new file mode 100644
index 00000000..db4f0715
Binary files /dev/null and b/animateditems/28651.gif differ
diff --git a/animateditems/28651.png b/animateditems/28651.png
new file mode 100644
index 00000000..476f9670
Binary files /dev/null and b/animateditems/28651.png differ
diff --git a/animateditems/28652.gif b/animateditems/28652.gif
new file mode 100644
index 00000000..cc6f4784
Binary files /dev/null and b/animateditems/28652.gif differ
diff --git a/animateditems/28652.png b/animateditems/28652.png
new file mode 100644
index 00000000..20f5baff
Binary files /dev/null and b/animateditems/28652.png differ
diff --git a/animateditems/28653.gif b/animateditems/28653.gif
new file mode 100644
index 00000000..718652f1
Binary files /dev/null and b/animateditems/28653.gif differ
diff --git a/animateditems/28653.png b/animateditems/28653.png
new file mode 100644
index 00000000..28e4c764
Binary files /dev/null and b/animateditems/28653.png differ
diff --git a/animateditems/28654.gif b/animateditems/28654.gif
new file mode 100644
index 00000000..5a85d406
Binary files /dev/null and b/animateditems/28654.gif differ
diff --git a/animateditems/28654.png b/animateditems/28654.png
new file mode 100644
index 00000000..c31fa7e8
Binary files /dev/null and b/animateditems/28654.png differ
diff --git a/animateditems/28655.gif b/animateditems/28655.gif
new file mode 100644
index 00000000..a28b9bb6
Binary files /dev/null and b/animateditems/28655.gif differ
diff --git a/animateditems/28655.png b/animateditems/28655.png
new file mode 100644
index 00000000..601ec6c6
Binary files /dev/null and b/animateditems/28655.png differ
diff --git a/animateditems/28656.gif b/animateditems/28656.gif
new file mode 100644
index 00000000..536e219a
Binary files /dev/null and b/animateditems/28656.gif differ
diff --git a/animateditems/28656.png b/animateditems/28656.png
new file mode 100644
index 00000000..8e4f3312
Binary files /dev/null and b/animateditems/28656.png differ
diff --git a/animateditems/28657.gif b/animateditems/28657.gif
new file mode 100644
index 00000000..c5ca54ed
Binary files /dev/null and b/animateditems/28657.gif differ
diff --git a/animateditems/28657.png b/animateditems/28657.png
new file mode 100644
index 00000000..34f85fbe
Binary files /dev/null and b/animateditems/28657.png differ
diff --git a/animateditems/28658.gif b/animateditems/28658.gif
new file mode 100644
index 00000000..5993ef14
Binary files /dev/null and b/animateditems/28658.gif differ
diff --git a/animateditems/28658.png b/animateditems/28658.png
new file mode 100644
index 00000000..8554ed14
Binary files /dev/null and b/animateditems/28658.png differ
diff --git a/animateditems/28659.gif b/animateditems/28659.gif
new file mode 100644
index 00000000..7e097c50
Binary files /dev/null and b/animateditems/28659.gif differ
diff --git a/animateditems/28659.png b/animateditems/28659.png
new file mode 100644
index 00000000..718cc54d
Binary files /dev/null and b/animateditems/28659.png differ
diff --git a/animateditems/2866.gif b/animateditems/2866.gif
new file mode 100644
index 00000000..80a0caa8
Binary files /dev/null and b/animateditems/2866.gif differ
diff --git a/animateditems/2866.png b/animateditems/2866.png
new file mode 100644
index 00000000..73a7ff49
Binary files /dev/null and b/animateditems/2866.png differ
diff --git a/animateditems/28660.gif b/animateditems/28660.gif
new file mode 100644
index 00000000..4096c182
Binary files /dev/null and b/animateditems/28660.gif differ
diff --git a/animateditems/28660.png b/animateditems/28660.png
new file mode 100644
index 00000000..8c5dcc2b
Binary files /dev/null and b/animateditems/28660.png differ
diff --git a/animateditems/28661.gif b/animateditems/28661.gif
new file mode 100644
index 00000000..5ce4d587
Binary files /dev/null and b/animateditems/28661.gif differ
diff --git a/animateditems/28661.png b/animateditems/28661.png
new file mode 100644
index 00000000..e3b98248
Binary files /dev/null and b/animateditems/28661.png differ
diff --git a/animateditems/28662.gif b/animateditems/28662.gif
new file mode 100644
index 00000000..f3c83038
Binary files /dev/null and b/animateditems/28662.gif differ
diff --git a/animateditems/28662.png b/animateditems/28662.png
new file mode 100644
index 00000000..3d7aa738
Binary files /dev/null and b/animateditems/28662.png differ
diff --git a/animateditems/28663.gif b/animateditems/28663.gif
new file mode 100644
index 00000000..25c6de4f
Binary files /dev/null and b/animateditems/28663.gif differ
diff --git a/animateditems/28663.png b/animateditems/28663.png
new file mode 100644
index 00000000..46fab17f
Binary files /dev/null and b/animateditems/28663.png differ
diff --git a/animateditems/28664.gif b/animateditems/28664.gif
new file mode 100644
index 00000000..4935d1fb
Binary files /dev/null and b/animateditems/28664.gif differ
diff --git a/animateditems/28664.png b/animateditems/28664.png
new file mode 100644
index 00000000..ad46a60d
Binary files /dev/null and b/animateditems/28664.png differ
diff --git a/animateditems/28665.gif b/animateditems/28665.gif
new file mode 100644
index 00000000..9b2cb9f9
Binary files /dev/null and b/animateditems/28665.gif differ
diff --git a/animateditems/28665.png b/animateditems/28665.png
new file mode 100644
index 00000000..874c7dac
Binary files /dev/null and b/animateditems/28665.png differ
diff --git a/animateditems/28666.gif b/animateditems/28666.gif
new file mode 100644
index 00000000..a3f47b73
Binary files /dev/null and b/animateditems/28666.gif differ
diff --git a/animateditems/28666.png b/animateditems/28666.png
new file mode 100644
index 00000000..1075c1d0
Binary files /dev/null and b/animateditems/28666.png differ
diff --git a/animateditems/28667.gif b/animateditems/28667.gif
new file mode 100644
index 00000000..4d81c393
Binary files /dev/null and b/animateditems/28667.gif differ
diff --git a/animateditems/28667.png b/animateditems/28667.png
new file mode 100644
index 00000000..42706c43
Binary files /dev/null and b/animateditems/28667.png differ
diff --git a/animateditems/2867.gif b/animateditems/2867.gif
new file mode 100644
index 00000000..ac03413f
Binary files /dev/null and b/animateditems/2867.gif differ
diff --git a/animateditems/2867.png b/animateditems/2867.png
new file mode 100644
index 00000000..aa0985b1
Binary files /dev/null and b/animateditems/2867.png differ
diff --git a/animateditems/28670.gif b/animateditems/28670.gif
new file mode 100644
index 00000000..727bace7
Binary files /dev/null and b/animateditems/28670.gif differ
diff --git a/animateditems/28670.png b/animateditems/28670.png
new file mode 100644
index 00000000..67307026
Binary files /dev/null and b/animateditems/28670.png differ
diff --git a/animateditems/28671.gif b/animateditems/28671.gif
new file mode 100644
index 00000000..5f0ad3e9
Binary files /dev/null and b/animateditems/28671.gif differ
diff --git a/animateditems/28671.png b/animateditems/28671.png
new file mode 100644
index 00000000..02140c4e
Binary files /dev/null and b/animateditems/28671.png differ
diff --git a/animateditems/28672.gif b/animateditems/28672.gif
new file mode 100644
index 00000000..d8ce2ec5
Binary files /dev/null and b/animateditems/28672.gif differ
diff --git a/animateditems/28672.png b/animateditems/28672.png
new file mode 100644
index 00000000..252a0ab2
Binary files /dev/null and b/animateditems/28672.png differ
diff --git a/animateditems/28673.gif b/animateditems/28673.gif
new file mode 100644
index 00000000..2cf3744a
Binary files /dev/null and b/animateditems/28673.gif differ
diff --git a/animateditems/28673.png b/animateditems/28673.png
new file mode 100644
index 00000000..c991f6dc
Binary files /dev/null and b/animateditems/28673.png differ
diff --git a/animateditems/28674.gif b/animateditems/28674.gif
new file mode 100644
index 00000000..c168afe3
Binary files /dev/null and b/animateditems/28674.gif differ
diff --git a/animateditems/28674.png b/animateditems/28674.png
new file mode 100644
index 00000000..62a63494
Binary files /dev/null and b/animateditems/28674.png differ
diff --git a/animateditems/28675.gif b/animateditems/28675.gif
new file mode 100644
index 00000000..7fcd1d33
Binary files /dev/null and b/animateditems/28675.gif differ
diff --git a/animateditems/28675.png b/animateditems/28675.png
new file mode 100644
index 00000000..d5f0b38f
Binary files /dev/null and b/animateditems/28675.png differ
diff --git a/animateditems/28676.gif b/animateditems/28676.gif
new file mode 100644
index 00000000..7cb89203
Binary files /dev/null and b/animateditems/28676.gif differ
diff --git a/animateditems/28676.png b/animateditems/28676.png
new file mode 100644
index 00000000..c8e210e7
Binary files /dev/null and b/animateditems/28676.png differ
diff --git a/animateditems/28677.gif b/animateditems/28677.gif
new file mode 100644
index 00000000..248fbb65
Binary files /dev/null and b/animateditems/28677.gif differ
diff --git a/animateditems/28677.png b/animateditems/28677.png
new file mode 100644
index 00000000..678b147f
Binary files /dev/null and b/animateditems/28677.png differ
diff --git a/animateditems/28678.gif b/animateditems/28678.gif
new file mode 100644
index 00000000..3902254c
Binary files /dev/null and b/animateditems/28678.gif differ
diff --git a/animateditems/28678.png b/animateditems/28678.png
new file mode 100644
index 00000000..accd1629
Binary files /dev/null and b/animateditems/28678.png differ
diff --git a/animateditems/28679.gif b/animateditems/28679.gif
new file mode 100644
index 00000000..87461b1f
Binary files /dev/null and b/animateditems/28679.gif differ
diff --git a/animateditems/28679.png b/animateditems/28679.png
new file mode 100644
index 00000000..7ace7eef
Binary files /dev/null and b/animateditems/28679.png differ
diff --git a/animateditems/2868.gif b/animateditems/2868.gif
new file mode 100644
index 00000000..a0026e46
Binary files /dev/null and b/animateditems/2868.gif differ
diff --git a/animateditems/2868.png b/animateditems/2868.png
new file mode 100644
index 00000000..5daa2fef
Binary files /dev/null and b/animateditems/2868.png differ
diff --git a/animateditems/28680.gif b/animateditems/28680.gif
new file mode 100644
index 00000000..eec42053
Binary files /dev/null and b/animateditems/28680.gif differ
diff --git a/animateditems/28680.png b/animateditems/28680.png
new file mode 100644
index 00000000..67c19aee
Binary files /dev/null and b/animateditems/28680.png differ
diff --git a/animateditems/28681.gif b/animateditems/28681.gif
new file mode 100644
index 00000000..cecbe75b
Binary files /dev/null and b/animateditems/28681.gif differ
diff --git a/animateditems/28681.png b/animateditems/28681.png
new file mode 100644
index 00000000..750609e8
Binary files /dev/null and b/animateditems/28681.png differ
diff --git a/animateditems/28682.gif b/animateditems/28682.gif
new file mode 100644
index 00000000..c1333962
Binary files /dev/null and b/animateditems/28682.gif differ
diff --git a/animateditems/28682.png b/animateditems/28682.png
new file mode 100644
index 00000000..c8156734
Binary files /dev/null and b/animateditems/28682.png differ
diff --git a/animateditems/28683.gif b/animateditems/28683.gif
new file mode 100644
index 00000000..c2087872
Binary files /dev/null and b/animateditems/28683.gif differ
diff --git a/animateditems/28683.png b/animateditems/28683.png
new file mode 100644
index 00000000..dcfef2f9
Binary files /dev/null and b/animateditems/28683.png differ
diff --git a/animateditems/28684.gif b/animateditems/28684.gif
new file mode 100644
index 00000000..97727361
Binary files /dev/null and b/animateditems/28684.gif differ
diff --git a/animateditems/28684.png b/animateditems/28684.png
new file mode 100644
index 00000000..c6477e8c
Binary files /dev/null and b/animateditems/28684.png differ
diff --git a/animateditems/28685.gif b/animateditems/28685.gif
new file mode 100644
index 00000000..10c73569
Binary files /dev/null and b/animateditems/28685.gif differ
diff --git a/animateditems/28685.png b/animateditems/28685.png
new file mode 100644
index 00000000..bc1d3773
Binary files /dev/null and b/animateditems/28685.png differ
diff --git a/animateditems/28686.gif b/animateditems/28686.gif
new file mode 100644
index 00000000..92b84792
Binary files /dev/null and b/animateditems/28686.gif differ
diff --git a/animateditems/28686.png b/animateditems/28686.png
new file mode 100644
index 00000000..fb4e076e
Binary files /dev/null and b/animateditems/28686.png differ
diff --git a/animateditems/28687.gif b/animateditems/28687.gif
new file mode 100644
index 00000000..ccd2b662
Binary files /dev/null and b/animateditems/28687.gif differ
diff --git a/animateditems/28687.png b/animateditems/28687.png
new file mode 100644
index 00000000..4b1fdf35
Binary files /dev/null and b/animateditems/28687.png differ
diff --git a/animateditems/28688.gif b/animateditems/28688.gif
new file mode 100644
index 00000000..2a36b37d
Binary files /dev/null and b/animateditems/28688.gif differ
diff --git a/animateditems/28688.png b/animateditems/28688.png
new file mode 100644
index 00000000..67820706
Binary files /dev/null and b/animateditems/28688.png differ
diff --git a/animateditems/28689.gif b/animateditems/28689.gif
new file mode 100644
index 00000000..d75f03a9
Binary files /dev/null and b/animateditems/28689.gif differ
diff --git a/animateditems/28689.png b/animateditems/28689.png
new file mode 100644
index 00000000..9397b676
Binary files /dev/null and b/animateditems/28689.png differ
diff --git a/animateditems/28690.gif b/animateditems/28690.gif
new file mode 100644
index 00000000..07a1bcd9
Binary files /dev/null and b/animateditems/28690.gif differ
diff --git a/animateditems/28690.png b/animateditems/28690.png
new file mode 100644
index 00000000..7c62e50c
Binary files /dev/null and b/animateditems/28690.png differ
diff --git a/animateditems/28691.gif b/animateditems/28691.gif
new file mode 100644
index 00000000..0335b13b
Binary files /dev/null and b/animateditems/28691.gif differ
diff --git a/animateditems/28691.png b/animateditems/28691.png
new file mode 100644
index 00000000..138c0348
Binary files /dev/null and b/animateditems/28691.png differ
diff --git a/animateditems/28692.gif b/animateditems/28692.gif
new file mode 100644
index 00000000..463e35dc
Binary files /dev/null and b/animateditems/28692.gif differ
diff --git a/animateditems/28692.png b/animateditems/28692.png
new file mode 100644
index 00000000..2350aa8c
Binary files /dev/null and b/animateditems/28692.png differ
diff --git a/animateditems/28693.gif b/animateditems/28693.gif
new file mode 100644
index 00000000..4d9970ad
Binary files /dev/null and b/animateditems/28693.gif differ
diff --git a/animateditems/28693.png b/animateditems/28693.png
new file mode 100644
index 00000000..a4ee486a
Binary files /dev/null and b/animateditems/28693.png differ
diff --git a/animateditems/28694.gif b/animateditems/28694.gif
new file mode 100644
index 00000000..701ef67f
Binary files /dev/null and b/animateditems/28694.gif differ
diff --git a/animateditems/28694.png b/animateditems/28694.png
new file mode 100644
index 00000000..910f7fb6
Binary files /dev/null and b/animateditems/28694.png differ
diff --git a/animateditems/28695.gif b/animateditems/28695.gif
new file mode 100644
index 00000000..6bd5e505
Binary files /dev/null and b/animateditems/28695.gif differ
diff --git a/animateditems/28695.png b/animateditems/28695.png
new file mode 100644
index 00000000..fb124c65
Binary files /dev/null and b/animateditems/28695.png differ
diff --git a/animateditems/28696.gif b/animateditems/28696.gif
new file mode 100644
index 00000000..f488b48b
Binary files /dev/null and b/animateditems/28696.gif differ
diff --git a/animateditems/28696.png b/animateditems/28696.png
new file mode 100644
index 00000000..6117ed3d
Binary files /dev/null and b/animateditems/28696.png differ
diff --git a/animateditems/28697.gif b/animateditems/28697.gif
new file mode 100644
index 00000000..f0278ddf
Binary files /dev/null and b/animateditems/28697.gif differ
diff --git a/animateditems/28697.png b/animateditems/28697.png
new file mode 100644
index 00000000..7370c49b
Binary files /dev/null and b/animateditems/28697.png differ
diff --git a/animateditems/28698.gif b/animateditems/28698.gif
new file mode 100644
index 00000000..93def840
Binary files /dev/null and b/animateditems/28698.gif differ
diff --git a/animateditems/28698.png b/animateditems/28698.png
new file mode 100644
index 00000000..c5c39766
Binary files /dev/null and b/animateditems/28698.png differ
diff --git a/animateditems/28699.gif b/animateditems/28699.gif
new file mode 100644
index 00000000..e0d74d57
Binary files /dev/null and b/animateditems/28699.gif differ
diff --git a/animateditems/28699.png b/animateditems/28699.png
new file mode 100644
index 00000000..bdf0feed
Binary files /dev/null and b/animateditems/28699.png differ
diff --git a/animateditems/28700.gif b/animateditems/28700.gif
new file mode 100644
index 00000000..7d89159a
Binary files /dev/null and b/animateditems/28700.gif differ
diff --git a/animateditems/28700.png b/animateditems/28700.png
new file mode 100644
index 00000000..bfffbc1b
Binary files /dev/null and b/animateditems/28700.png differ
diff --git a/animateditems/28701.gif b/animateditems/28701.gif
new file mode 100644
index 00000000..26af8a81
Binary files /dev/null and b/animateditems/28701.gif differ
diff --git a/animateditems/28701.png b/animateditems/28701.png
new file mode 100644
index 00000000..1d3b4bef
Binary files /dev/null and b/animateditems/28701.png differ
diff --git a/animateditems/28702.gif b/animateditems/28702.gif
new file mode 100644
index 00000000..bf231216
Binary files /dev/null and b/animateditems/28702.gif differ
diff --git a/animateditems/28702.png b/animateditems/28702.png
new file mode 100644
index 00000000..e823ee7a
Binary files /dev/null and b/animateditems/28702.png differ
diff --git a/animateditems/28703.gif b/animateditems/28703.gif
new file mode 100644
index 00000000..b490ae5f
Binary files /dev/null and b/animateditems/28703.gif differ
diff --git a/animateditems/28703.png b/animateditems/28703.png
new file mode 100644
index 00000000..8a8185d6
Binary files /dev/null and b/animateditems/28703.png differ
diff --git a/animateditems/28704.gif b/animateditems/28704.gif
new file mode 100644
index 00000000..144322de
Binary files /dev/null and b/animateditems/28704.gif differ
diff --git a/animateditems/28704.png b/animateditems/28704.png
new file mode 100644
index 00000000..444d4de3
Binary files /dev/null and b/animateditems/28704.png differ
diff --git a/animateditems/28705.gif b/animateditems/28705.gif
new file mode 100644
index 00000000..1fa819b4
Binary files /dev/null and b/animateditems/28705.gif differ
diff --git a/animateditems/28705.png b/animateditems/28705.png
new file mode 100644
index 00000000..632ce0ba
Binary files /dev/null and b/animateditems/28705.png differ
diff --git a/animateditems/28706.gif b/animateditems/28706.gif
new file mode 100644
index 00000000..ef7bfaeb
Binary files /dev/null and b/animateditems/28706.gif differ
diff --git a/animateditems/28706.png b/animateditems/28706.png
new file mode 100644
index 00000000..2b7dfb99
Binary files /dev/null and b/animateditems/28706.png differ
diff --git a/animateditems/28707.gif b/animateditems/28707.gif
new file mode 100644
index 00000000..1b4d2f92
Binary files /dev/null and b/animateditems/28707.gif differ
diff --git a/animateditems/28707.png b/animateditems/28707.png
new file mode 100644
index 00000000..6e585eb7
Binary files /dev/null and b/animateditems/28707.png differ
diff --git a/animateditems/28708.gif b/animateditems/28708.gif
new file mode 100644
index 00000000..eee56197
Binary files /dev/null and b/animateditems/28708.gif differ
diff --git a/animateditems/28708.png b/animateditems/28708.png
new file mode 100644
index 00000000..98469322
Binary files /dev/null and b/animateditems/28708.png differ
diff --git a/animateditems/28709.gif b/animateditems/28709.gif
new file mode 100644
index 00000000..18bc21b1
Binary files /dev/null and b/animateditems/28709.gif differ
diff --git a/animateditems/28709.png b/animateditems/28709.png
new file mode 100644
index 00000000..f8c58c31
Binary files /dev/null and b/animateditems/28709.png differ
diff --git a/animateditems/2871.gif b/animateditems/2871.gif
new file mode 100644
index 00000000..699118a9
Binary files /dev/null and b/animateditems/2871.gif differ
diff --git a/animateditems/2871.png b/animateditems/2871.png
new file mode 100644
index 00000000..9bb2e16f
Binary files /dev/null and b/animateditems/2871.png differ
diff --git a/animateditems/28710.gif b/animateditems/28710.gif
new file mode 100644
index 00000000..14a39f3d
Binary files /dev/null and b/animateditems/28710.gif differ
diff --git a/animateditems/28710.png b/animateditems/28710.png
new file mode 100644
index 00000000..075ac2ed
Binary files /dev/null and b/animateditems/28710.png differ
diff --git a/animateditems/28711.gif b/animateditems/28711.gif
new file mode 100644
index 00000000..3a26d2f5
Binary files /dev/null and b/animateditems/28711.gif differ
diff --git a/animateditems/28711.png b/animateditems/28711.png
new file mode 100644
index 00000000..7a5d19f7
Binary files /dev/null and b/animateditems/28711.png differ
diff --git a/animateditems/28712.gif b/animateditems/28712.gif
new file mode 100644
index 00000000..6934b019
Binary files /dev/null and b/animateditems/28712.gif differ
diff --git a/animateditems/28712.png b/animateditems/28712.png
new file mode 100644
index 00000000..fc70784a
Binary files /dev/null and b/animateditems/28712.png differ
diff --git a/animateditems/28713.gif b/animateditems/28713.gif
new file mode 100644
index 00000000..c5a594b5
Binary files /dev/null and b/animateditems/28713.gif differ
diff --git a/animateditems/28713.png b/animateditems/28713.png
new file mode 100644
index 00000000..3a20ff07
Binary files /dev/null and b/animateditems/28713.png differ
diff --git a/animateditems/28714.gif b/animateditems/28714.gif
new file mode 100644
index 00000000..6b27f29f
Binary files /dev/null and b/animateditems/28714.gif differ
diff --git a/animateditems/28714.png b/animateditems/28714.png
new file mode 100644
index 00000000..7621ef4d
Binary files /dev/null and b/animateditems/28714.png differ
diff --git a/animateditems/28715.gif b/animateditems/28715.gif
new file mode 100644
index 00000000..7ebf66a9
Binary files /dev/null and b/animateditems/28715.gif differ
diff --git a/animateditems/28715.png b/animateditems/28715.png
new file mode 100644
index 00000000..78e62204
Binary files /dev/null and b/animateditems/28715.png differ
diff --git a/animateditems/28716.gif b/animateditems/28716.gif
new file mode 100644
index 00000000..636bfddb
Binary files /dev/null and b/animateditems/28716.gif differ
diff --git a/animateditems/28716.png b/animateditems/28716.png
new file mode 100644
index 00000000..cfa12f7f
Binary files /dev/null and b/animateditems/28716.png differ
diff --git a/animateditems/28717.gif b/animateditems/28717.gif
new file mode 100644
index 00000000..bfa87fab
Binary files /dev/null and b/animateditems/28717.gif differ
diff --git a/animateditems/28717.png b/animateditems/28717.png
new file mode 100644
index 00000000..a329cb06
Binary files /dev/null and b/animateditems/28717.png differ
diff --git a/animateditems/28718.gif b/animateditems/28718.gif
new file mode 100644
index 00000000..cb65e2ff
Binary files /dev/null and b/animateditems/28718.gif differ
diff --git a/animateditems/28718.png b/animateditems/28718.png
new file mode 100644
index 00000000..e1f7fb81
Binary files /dev/null and b/animateditems/28718.png differ
diff --git a/animateditems/28719.gif b/animateditems/28719.gif
new file mode 100644
index 00000000..2e7dacfc
Binary files /dev/null and b/animateditems/28719.gif differ
diff --git a/animateditems/28719.png b/animateditems/28719.png
new file mode 100644
index 00000000..7639909f
Binary files /dev/null and b/animateditems/28719.png differ
diff --git a/animateditems/2872.gif b/animateditems/2872.gif
new file mode 100644
index 00000000..fc31bbe2
Binary files /dev/null and b/animateditems/2872.gif differ
diff --git a/animateditems/2872.png b/animateditems/2872.png
new file mode 100644
index 00000000..d22846ed
Binary files /dev/null and b/animateditems/2872.png differ
diff --git a/animateditems/28720.gif b/animateditems/28720.gif
new file mode 100644
index 00000000..2e447145
Binary files /dev/null and b/animateditems/28720.gif differ
diff --git a/animateditems/28720.png b/animateditems/28720.png
new file mode 100644
index 00000000..47d41086
Binary files /dev/null and b/animateditems/28720.png differ
diff --git a/animateditems/28721.gif b/animateditems/28721.gif
new file mode 100644
index 00000000..721988b0
Binary files /dev/null and b/animateditems/28721.gif differ
diff --git a/animateditems/28721.png b/animateditems/28721.png
new file mode 100644
index 00000000..717c82f5
Binary files /dev/null and b/animateditems/28721.png differ
diff --git a/animateditems/28722.gif b/animateditems/28722.gif
new file mode 100644
index 00000000..60df5f4f
Binary files /dev/null and b/animateditems/28722.gif differ
diff --git a/animateditems/28722.png b/animateditems/28722.png
new file mode 100644
index 00000000..bd6cf3da
Binary files /dev/null and b/animateditems/28722.png differ
diff --git a/animateditems/28723.gif b/animateditems/28723.gif
new file mode 100644
index 00000000..62ff98ab
Binary files /dev/null and b/animateditems/28723.gif differ
diff --git a/animateditems/28723.png b/animateditems/28723.png
new file mode 100644
index 00000000..05366d84
Binary files /dev/null and b/animateditems/28723.png differ
diff --git a/animateditems/28724.gif b/animateditems/28724.gif
new file mode 100644
index 00000000..a7bc740d
Binary files /dev/null and b/animateditems/28724.gif differ
diff --git a/animateditems/28724.png b/animateditems/28724.png
new file mode 100644
index 00000000..48d4bfee
Binary files /dev/null and b/animateditems/28724.png differ
diff --git a/animateditems/28725.gif b/animateditems/28725.gif
new file mode 100644
index 00000000..0598ab0f
Binary files /dev/null and b/animateditems/28725.gif differ
diff --git a/animateditems/28725.png b/animateditems/28725.png
new file mode 100644
index 00000000..988433ef
Binary files /dev/null and b/animateditems/28725.png differ
diff --git a/animateditems/28726.gif b/animateditems/28726.gif
new file mode 100644
index 00000000..c40bd604
Binary files /dev/null and b/animateditems/28726.gif differ
diff --git a/animateditems/28726.png b/animateditems/28726.png
new file mode 100644
index 00000000..0677c9db
Binary files /dev/null and b/animateditems/28726.png differ
diff --git a/animateditems/28727.gif b/animateditems/28727.gif
new file mode 100644
index 00000000..ecbfcc34
Binary files /dev/null and b/animateditems/28727.gif differ
diff --git a/animateditems/28727.png b/animateditems/28727.png
new file mode 100644
index 00000000..0a428a38
Binary files /dev/null and b/animateditems/28727.png differ
diff --git a/animateditems/28728.gif b/animateditems/28728.gif
new file mode 100644
index 00000000..0955532d
Binary files /dev/null and b/animateditems/28728.gif differ
diff --git a/animateditems/28728.png b/animateditems/28728.png
new file mode 100644
index 00000000..2dc68762
Binary files /dev/null and b/animateditems/28728.png differ
diff --git a/animateditems/28729.gif b/animateditems/28729.gif
new file mode 100644
index 00000000..4c361c23
Binary files /dev/null and b/animateditems/28729.gif differ
diff --git a/animateditems/28729.png b/animateditems/28729.png
new file mode 100644
index 00000000..8883bbda
Binary files /dev/null and b/animateditems/28729.png differ
diff --git a/animateditems/2873.gif b/animateditems/2873.gif
new file mode 100644
index 00000000..a0026e46
Binary files /dev/null and b/animateditems/2873.gif differ
diff --git a/animateditems/2873.png b/animateditems/2873.png
new file mode 100644
index 00000000..5daa2fef
Binary files /dev/null and b/animateditems/2873.png differ
diff --git a/animateditems/28730.gif b/animateditems/28730.gif
new file mode 100644
index 00000000..45627902
Binary files /dev/null and b/animateditems/28730.gif differ
diff --git a/animateditems/28730.png b/animateditems/28730.png
new file mode 100644
index 00000000..413362b9
Binary files /dev/null and b/animateditems/28730.png differ
diff --git a/animateditems/28741.gif b/animateditems/28741.gif
new file mode 100644
index 00000000..e423ab0a
Binary files /dev/null and b/animateditems/28741.gif differ
diff --git a/animateditems/28741.png b/animateditems/28741.png
new file mode 100644
index 00000000..616b6cb7
Binary files /dev/null and b/animateditems/28741.png differ
diff --git a/animateditems/28742.gif b/animateditems/28742.gif
new file mode 100644
index 00000000..77066565
Binary files /dev/null and b/animateditems/28742.gif differ
diff --git a/animateditems/28742.png b/animateditems/28742.png
new file mode 100644
index 00000000..f8286a2d
Binary files /dev/null and b/animateditems/28742.png differ
diff --git a/animateditems/2876.gif b/animateditems/2876.gif
new file mode 100644
index 00000000..80ff07d8
Binary files /dev/null and b/animateditems/2876.gif differ
diff --git a/animateditems/2876.png b/animateditems/2876.png
new file mode 100644
index 00000000..aa77a73d
Binary files /dev/null and b/animateditems/2876.png differ
diff --git a/animateditems/2877.gif b/animateditems/2877.gif
new file mode 100644
index 00000000..7118e1e5
Binary files /dev/null and b/animateditems/2877.gif differ
diff --git a/animateditems/2877.png b/animateditems/2877.png
new file mode 100644
index 00000000..686aac88
Binary files /dev/null and b/animateditems/2877.png differ
diff --git a/animateditems/28837.gif b/animateditems/28837.gif
new file mode 100644
index 00000000..65cf5752
Binary files /dev/null and b/animateditems/28837.gif differ
diff --git a/animateditems/28837.png b/animateditems/28837.png
new file mode 100644
index 00000000..ff73e531
Binary files /dev/null and b/animateditems/28837.png differ
diff --git a/animateditems/28842.gif b/animateditems/28842.gif
new file mode 100644
index 00000000..c8986da8
Binary files /dev/null and b/animateditems/28842.gif differ
diff --git a/animateditems/28842.png b/animateditems/28842.png
new file mode 100644
index 00000000..5b60e20a
Binary files /dev/null and b/animateditems/28842.png differ
diff --git a/animateditems/28843.gif b/animateditems/28843.gif
new file mode 100644
index 00000000..e88094a6
Binary files /dev/null and b/animateditems/28843.gif differ
diff --git a/animateditems/28843.png b/animateditems/28843.png
new file mode 100644
index 00000000..05fa13f7
Binary files /dev/null and b/animateditems/28843.png differ
diff --git a/animateditems/28844.gif b/animateditems/28844.gif
new file mode 100644
index 00000000..ff9a4a1f
Binary files /dev/null and b/animateditems/28844.gif differ
diff --git a/animateditems/28844.png b/animateditems/28844.png
new file mode 100644
index 00000000..e8242b76
Binary files /dev/null and b/animateditems/28844.png differ
diff --git a/animateditems/28845.gif b/animateditems/28845.gif
new file mode 100644
index 00000000..1b026aee
Binary files /dev/null and b/animateditems/28845.gif differ
diff --git a/animateditems/28845.png b/animateditems/28845.png
new file mode 100644
index 00000000..44e7848c
Binary files /dev/null and b/animateditems/28845.png differ
diff --git a/animateditems/28846.gif b/animateditems/28846.gif
new file mode 100644
index 00000000..38f4065d
Binary files /dev/null and b/animateditems/28846.gif differ
diff --git a/animateditems/28846.png b/animateditems/28846.png
new file mode 100644
index 00000000..ea169494
Binary files /dev/null and b/animateditems/28846.png differ
diff --git a/animateditems/2885.gif b/animateditems/2885.gif
new file mode 100644
index 00000000..9c20e265
Binary files /dev/null and b/animateditems/2885.gif differ
diff --git a/animateditems/2885.png b/animateditems/2885.png
new file mode 100644
index 00000000..7cb99538
Binary files /dev/null and b/animateditems/2885.png differ
diff --git a/animateditems/2886.gif b/animateditems/2886.gif
new file mode 100644
index 00000000..fd55c05b
Binary files /dev/null and b/animateditems/2886.gif differ
diff --git a/animateditems/2886.png b/animateditems/2886.png
new file mode 100644
index 00000000..719b90ac
Binary files /dev/null and b/animateditems/2886.png differ
diff --git a/animateditems/2887.gif b/animateditems/2887.gif
new file mode 100644
index 00000000..a66cdc6b
Binary files /dev/null and b/animateditems/2887.gif differ
diff --git a/animateditems/2887.png b/animateditems/2887.png
new file mode 100644
index 00000000..172148a4
Binary files /dev/null and b/animateditems/2887.png differ
diff --git a/animateditems/2888.gif b/animateditems/2888.gif
new file mode 100644
index 00000000..86e61d6c
Binary files /dev/null and b/animateditems/2888.gif differ
diff --git a/animateditems/2888.png b/animateditems/2888.png
new file mode 100644
index 00000000..172502d9
Binary files /dev/null and b/animateditems/2888.png differ
diff --git a/animateditems/2897.gif b/animateditems/2897.gif
new file mode 100644
index 00000000..aa0f024b
Binary files /dev/null and b/animateditems/2897.gif differ
diff --git a/animateditems/2897.png b/animateditems/2897.png
new file mode 100644
index 00000000..ce138c40
Binary files /dev/null and b/animateditems/2897.png differ
diff --git a/animateditems/2898.gif b/animateditems/2898.gif
new file mode 100644
index 00000000..bd9bce6d
Binary files /dev/null and b/animateditems/2898.gif differ
diff --git a/animateditems/2898.png b/animateditems/2898.png
new file mode 100644
index 00000000..ee367b43
Binary files /dev/null and b/animateditems/2898.png differ
diff --git a/animateditems/2899.gif b/animateditems/2899.gif
new file mode 100644
index 00000000..1eeac2d2
Binary files /dev/null and b/animateditems/2899.gif differ
diff --git a/animateditems/2899.png b/animateditems/2899.png
new file mode 100644
index 00000000..e0fa26c4
Binary files /dev/null and b/animateditems/2899.png differ
diff --git a/animateditems/2900.gif b/animateditems/2900.gif
new file mode 100644
index 00000000..f4eab639
Binary files /dev/null and b/animateditems/2900.gif differ
diff --git a/animateditems/2900.png b/animateditems/2900.png
new file mode 100644
index 00000000..ac32e572
Binary files /dev/null and b/animateditems/2900.png differ
diff --git a/animateditems/2901.gif b/animateditems/2901.gif
new file mode 100644
index 00000000..149e68cc
Binary files /dev/null and b/animateditems/2901.gif differ
diff --git a/animateditems/2901.png b/animateditems/2901.png
new file mode 100644
index 00000000..55500182
Binary files /dev/null and b/animateditems/2901.png differ
diff --git a/animateditems/2902.gif b/animateditems/2902.gif
new file mode 100644
index 00000000..7bb9ab74
Binary files /dev/null and b/animateditems/2902.gif differ
diff --git a/animateditems/2902.png b/animateditems/2902.png
new file mode 100644
index 00000000..1f80d135
Binary files /dev/null and b/animateditems/2902.png differ
diff --git a/animateditems/2903.gif b/animateditems/2903.gif
new file mode 100644
index 00000000..73a2be8e
Binary files /dev/null and b/animateditems/2903.gif differ
diff --git a/animateditems/2903.png b/animateditems/2903.png
new file mode 100644
index 00000000..aa94541c
Binary files /dev/null and b/animateditems/2903.png differ
diff --git a/animateditems/2904.gif b/animateditems/2904.gif
new file mode 100644
index 00000000..cb607d24
Binary files /dev/null and b/animateditems/2904.gif differ
diff --git a/animateditems/2904.png b/animateditems/2904.png
new file mode 100644
index 00000000..5aa9e696
Binary files /dev/null and b/animateditems/2904.png differ
diff --git a/animateditems/2905.gif b/animateditems/2905.gif
new file mode 100644
index 00000000..c2997321
Binary files /dev/null and b/animateditems/2905.gif differ
diff --git a/animateditems/2905.png b/animateditems/2905.png
new file mode 100644
index 00000000..8c7927f9
Binary files /dev/null and b/animateditems/2905.png differ
diff --git a/animateditems/2906.gif b/animateditems/2906.gif
new file mode 100644
index 00000000..72aee899
Binary files /dev/null and b/animateditems/2906.gif differ
diff --git a/animateditems/2906.png b/animateditems/2906.png
new file mode 100644
index 00000000..3c637448
Binary files /dev/null and b/animateditems/2906.png differ
diff --git a/animateditems/2907.gif b/animateditems/2907.gif
new file mode 100644
index 00000000..ddb94658
Binary files /dev/null and b/animateditems/2907.gif differ
diff --git a/animateditems/2907.png b/animateditems/2907.png
new file mode 100644
index 00000000..a63386fa
Binary files /dev/null and b/animateditems/2907.png differ
diff --git a/animateditems/2913.gif b/animateditems/2913.gif
new file mode 100644
index 00000000..30434d38
Binary files /dev/null and b/animateditems/2913.gif differ
diff --git a/animateditems/2913.png b/animateditems/2913.png
new file mode 100644
index 00000000..469987f1
Binary files /dev/null and b/animateditems/2913.png differ
diff --git a/animateditems/2914.gif b/animateditems/2914.gif
new file mode 100644
index 00000000..c59ff33e
Binary files /dev/null and b/animateditems/2914.gif differ
diff --git a/animateditems/2914.png b/animateditems/2914.png
new file mode 100644
index 00000000..98129d83
Binary files /dev/null and b/animateditems/2914.png differ
diff --git a/animateditems/2915.gif b/animateditems/2915.gif
new file mode 100644
index 00000000..eae685b0
Binary files /dev/null and b/animateditems/2915.gif differ
diff --git a/animateditems/2915.png b/animateditems/2915.png
new file mode 100644
index 00000000..38af74a3
Binary files /dev/null and b/animateditems/2915.png differ
diff --git a/animateditems/2920.gif b/animateditems/2920.gif
new file mode 100644
index 00000000..c9cebab6
Binary files /dev/null and b/animateditems/2920.gif differ
diff --git a/animateditems/2920.png b/animateditems/2920.png
new file mode 100644
index 00000000..0987df40
Binary files /dev/null and b/animateditems/2920.png differ
diff --git a/animateditems/2921.gif b/animateditems/2921.gif
new file mode 100644
index 00000000..96428818
Binary files /dev/null and b/animateditems/2921.gif differ
diff --git a/animateditems/2921.png b/animateditems/2921.png
new file mode 100644
index 00000000..7bb3f7ce
Binary files /dev/null and b/animateditems/2921.png differ
diff --git a/animateditems/2922.gif b/animateditems/2922.gif
new file mode 100644
index 00000000..ebb646ca
Binary files /dev/null and b/animateditems/2922.gif differ
diff --git a/animateditems/2922.png b/animateditems/2922.png
new file mode 100644
index 00000000..c867e75a
Binary files /dev/null and b/animateditems/2922.png differ
diff --git a/animateditems/2923.gif b/animateditems/2923.gif
new file mode 100644
index 00000000..1e1864df
Binary files /dev/null and b/animateditems/2923.gif differ
diff --git a/animateditems/2923.png b/animateditems/2923.png
new file mode 100644
index 00000000..eda96dfc
Binary files /dev/null and b/animateditems/2923.png differ
diff --git a/animateditems/2924.gif b/animateditems/2924.gif
new file mode 100644
index 00000000..4b44675b
Binary files /dev/null and b/animateditems/2924.gif differ
diff --git a/animateditems/2924.png b/animateditems/2924.png
new file mode 100644
index 00000000..11ec6e38
Binary files /dev/null and b/animateditems/2924.png differ
diff --git a/animateditems/2925.gif b/animateditems/2925.gif
new file mode 100644
index 00000000..1143dd81
Binary files /dev/null and b/animateditems/2925.gif differ
diff --git a/animateditems/2925.png b/animateditems/2925.png
new file mode 100644
index 00000000..7f510398
Binary files /dev/null and b/animateditems/2925.png differ
diff --git a/animateditems/2926.gif b/animateditems/2926.gif
new file mode 100644
index 00000000..d5fb4ef5
Binary files /dev/null and b/animateditems/2926.gif differ
diff --git a/animateditems/2926.png b/animateditems/2926.png
new file mode 100644
index 00000000..672fc67c
Binary files /dev/null and b/animateditems/2926.png differ
diff --git a/animateditems/2927.gif b/animateditems/2927.gif
new file mode 100644
index 00000000..d5fb4ef5
Binary files /dev/null and b/animateditems/2927.gif differ
diff --git a/animateditems/2927.png b/animateditems/2927.png
new file mode 100644
index 00000000..672fc67c
Binary files /dev/null and b/animateditems/2927.png differ
diff --git a/animateditems/2928.gif b/animateditems/2928.gif
new file mode 100644
index 00000000..66fe1aac
Binary files /dev/null and b/animateditems/2928.gif differ
diff --git a/animateditems/2928.png b/animateditems/2928.png
new file mode 100644
index 00000000..c21ca7f8
Binary files /dev/null and b/animateditems/2928.png differ
diff --git a/animateditems/2929.gif b/animateditems/2929.gif
new file mode 100644
index 00000000..3cc6e33d
Binary files /dev/null and b/animateditems/2929.gif differ
diff --git a/animateditems/2929.png b/animateditems/2929.png
new file mode 100644
index 00000000..af8e2e69
Binary files /dev/null and b/animateditems/2929.png differ
diff --git a/animateditems/2930.gif b/animateditems/2930.gif
new file mode 100644
index 00000000..e11522aa
Binary files /dev/null and b/animateditems/2930.gif differ
diff --git a/animateditems/2930.png b/animateditems/2930.png
new file mode 100644
index 00000000..9d7967cc
Binary files /dev/null and b/animateditems/2930.png differ
diff --git a/animateditems/2935.gif b/animateditems/2935.gif
new file mode 100644
index 00000000..b59e5197
Binary files /dev/null and b/animateditems/2935.gif differ
diff --git a/animateditems/2935.png b/animateditems/2935.png
new file mode 100644
index 00000000..75b69d09
Binary files /dev/null and b/animateditems/2935.png differ
diff --git a/animateditems/2936.gif b/animateditems/2936.gif
new file mode 100644
index 00000000..68764d60
Binary files /dev/null and b/animateditems/2936.gif differ
diff --git a/animateditems/2936.png b/animateditems/2936.png
new file mode 100644
index 00000000..4243c07e
Binary files /dev/null and b/animateditems/2936.png differ
diff --git a/animateditems/2937.gif b/animateditems/2937.gif
new file mode 100644
index 00000000..63a566f9
Binary files /dev/null and b/animateditems/2937.gif differ
diff --git a/animateditems/2937.png b/animateditems/2937.png
new file mode 100644
index 00000000..15e8bda2
Binary files /dev/null and b/animateditems/2937.png differ
diff --git a/animateditems/2938.gif b/animateditems/2938.gif
new file mode 100644
index 00000000..5e7f6e6d
Binary files /dev/null and b/animateditems/2938.gif differ
diff --git a/animateditems/2938.png b/animateditems/2938.png
new file mode 100644
index 00000000..8fabc4c1
Binary files /dev/null and b/animateditems/2938.png differ
diff --git a/animateditems/2939.gif b/animateditems/2939.gif
new file mode 100644
index 00000000..baac4184
Binary files /dev/null and b/animateditems/2939.gif differ
diff --git a/animateditems/2939.png b/animateditems/2939.png
new file mode 100644
index 00000000..f049c843
Binary files /dev/null and b/animateditems/2939.png differ
diff --git a/animateditems/2940.gif b/animateditems/2940.gif
new file mode 100644
index 00000000..0183ccab
Binary files /dev/null and b/animateditems/2940.gif differ
diff --git a/animateditems/2940.png b/animateditems/2940.png
new file mode 100644
index 00000000..7439a086
Binary files /dev/null and b/animateditems/2940.png differ
diff --git a/animateditems/2941.gif b/animateditems/2941.gif
new file mode 100644
index 00000000..1c59c3b3
Binary files /dev/null and b/animateditems/2941.gif differ
diff --git a/animateditems/2941.png b/animateditems/2941.png
new file mode 100644
index 00000000..f1bfc3cd
Binary files /dev/null and b/animateditems/2941.png differ
diff --git a/animateditems/2942.gif b/animateditems/2942.gif
new file mode 100644
index 00000000..148f4df8
Binary files /dev/null and b/animateditems/2942.gif differ
diff --git a/animateditems/2942.png b/animateditems/2942.png
new file mode 100644
index 00000000..c6c35ec4
Binary files /dev/null and b/animateditems/2942.png differ
diff --git a/animateditems/2943.gif b/animateditems/2943.gif
new file mode 100644
index 00000000..148f4df8
Binary files /dev/null and b/animateditems/2943.gif differ
diff --git a/animateditems/2943.png b/animateditems/2943.png
new file mode 100644
index 00000000..c6c35ec4
Binary files /dev/null and b/animateditems/2943.png differ
diff --git a/animateditems/2944.gif b/animateditems/2944.gif
new file mode 100644
index 00000000..f8d3082f
Binary files /dev/null and b/animateditems/2944.gif differ
diff --git a/animateditems/2944.png b/animateditems/2944.png
new file mode 100644
index 00000000..f8bd0cb3
Binary files /dev/null and b/animateditems/2944.png differ
diff --git a/animateditems/2945.gif b/animateditems/2945.gif
new file mode 100644
index 00000000..bcbd9ebc
Binary files /dev/null and b/animateditems/2945.gif differ
diff --git a/animateditems/2945.png b/animateditems/2945.png
new file mode 100644
index 00000000..7abbe75e
Binary files /dev/null and b/animateditems/2945.png differ
diff --git a/animateditems/2946.gif b/animateditems/2946.gif
new file mode 100644
index 00000000..1a6fbb10
Binary files /dev/null and b/animateditems/2946.gif differ
diff --git a/animateditems/2946.png b/animateditems/2946.png
new file mode 100644
index 00000000..93593c8e
Binary files /dev/null and b/animateditems/2946.png differ
diff --git a/animateditems/2947.gif b/animateditems/2947.gif
new file mode 100644
index 00000000..6ef6f6cd
Binary files /dev/null and b/animateditems/2947.gif differ
diff --git a/animateditems/2947.png b/animateditems/2947.png
new file mode 100644
index 00000000..243e6175
Binary files /dev/null and b/animateditems/2947.png differ
diff --git a/animateditems/2948.gif b/animateditems/2948.gif
new file mode 100644
index 00000000..6ef6f6cd
Binary files /dev/null and b/animateditems/2948.gif differ
diff --git a/animateditems/2948.png b/animateditems/2948.png
new file mode 100644
index 00000000..243e6175
Binary files /dev/null and b/animateditems/2948.png differ
diff --git a/animateditems/2949.gif b/animateditems/2949.gif
new file mode 100644
index 00000000..9c559da7
Binary files /dev/null and b/animateditems/2949.gif differ
diff --git a/animateditems/2949.png b/animateditems/2949.png
new file mode 100644
index 00000000..5207c8c7
Binary files /dev/null and b/animateditems/2949.png differ
diff --git a/animateditems/2950.gif b/animateditems/2950.gif
new file mode 100644
index 00000000..1f940dd4
Binary files /dev/null and b/animateditems/2950.gif differ
diff --git a/animateditems/2950.png b/animateditems/2950.png
new file mode 100644
index 00000000..e059784c
Binary files /dev/null and b/animateditems/2950.png differ
diff --git a/animateditems/2951.gif b/animateditems/2951.gif
new file mode 100644
index 00000000..a976b91f
Binary files /dev/null and b/animateditems/2951.gif differ
diff --git a/animateditems/2951.png b/animateditems/2951.png
new file mode 100644
index 00000000..fbd54a5d
Binary files /dev/null and b/animateditems/2951.png differ
diff --git a/animateditems/2956.gif b/animateditems/2956.gif
new file mode 100644
index 00000000..eda2e54f
Binary files /dev/null and b/animateditems/2956.gif differ
diff --git a/animateditems/2956.png b/animateditems/2956.png
new file mode 100644
index 00000000..766440b7
Binary files /dev/null and b/animateditems/2956.png differ
diff --git a/animateditems/2957.gif b/animateditems/2957.gif
new file mode 100644
index 00000000..8ef14455
Binary files /dev/null and b/animateditems/2957.gif differ
diff --git a/animateditems/2957.png b/animateditems/2957.png
new file mode 100644
index 00000000..22c0d285
Binary files /dev/null and b/animateditems/2957.png differ
diff --git a/animateditems/2958.gif b/animateditems/2958.gif
new file mode 100644
index 00000000..92371848
Binary files /dev/null and b/animateditems/2958.gif differ
diff --git a/animateditems/2958.png b/animateditems/2958.png
new file mode 100644
index 00000000..7fb00f30
Binary files /dev/null and b/animateditems/2958.png differ
diff --git a/animateditems/2959.gif b/animateditems/2959.gif
new file mode 100644
index 00000000..92371848
Binary files /dev/null and b/animateditems/2959.gif differ
diff --git a/animateditems/2959.png b/animateditems/2959.png
new file mode 100644
index 00000000..7fb00f30
Binary files /dev/null and b/animateditems/2959.png differ
diff --git a/animateditems/2960.gif b/animateditems/2960.gif
new file mode 100644
index 00000000..f89f6a80
Binary files /dev/null and b/animateditems/2960.gif differ
diff --git a/animateditems/2960.png b/animateditems/2960.png
new file mode 100644
index 00000000..a437d449
Binary files /dev/null and b/animateditems/2960.png differ
diff --git a/animateditems/29603.gif b/animateditems/29603.gif
new file mode 100644
index 00000000..d3d1090f
Binary files /dev/null and b/animateditems/29603.gif differ
diff --git a/animateditems/29603.png b/animateditems/29603.png
new file mode 100644
index 00000000..11001be1
Binary files /dev/null and b/animateditems/29603.png differ
diff --git a/animateditems/29604.gif b/animateditems/29604.gif
new file mode 100644
index 00000000..d3d1090f
Binary files /dev/null and b/animateditems/29604.gif differ
diff --git a/animateditems/29604.png b/animateditems/29604.png
new file mode 100644
index 00000000..11001be1
Binary files /dev/null and b/animateditems/29604.png differ
diff --git a/animateditems/2961.gif b/animateditems/2961.gif
new file mode 100644
index 00000000..cd018789
Binary files /dev/null and b/animateditems/2961.gif differ
diff --git a/animateditems/2961.png b/animateditems/2961.png
new file mode 100644
index 00000000..5dac1c82
Binary files /dev/null and b/animateditems/2961.png differ
diff --git a/animateditems/2962.gif b/animateditems/2962.gif
new file mode 100644
index 00000000..79412398
Binary files /dev/null and b/animateditems/2962.gif differ
diff --git a/animateditems/2962.png b/animateditems/2962.png
new file mode 100644
index 00000000..923ea1ac
Binary files /dev/null and b/animateditems/2962.png differ
diff --git a/animateditems/2963.gif b/animateditems/2963.gif
new file mode 100644
index 00000000..79412398
Binary files /dev/null and b/animateditems/2963.gif differ
diff --git a/animateditems/2963.png b/animateditems/2963.png
new file mode 100644
index 00000000..923ea1ac
Binary files /dev/null and b/animateditems/2963.png differ
diff --git a/animateditems/2964.gif b/animateditems/2964.gif
new file mode 100644
index 00000000..b73d5820
Binary files /dev/null and b/animateditems/2964.gif differ
diff --git a/animateditems/2964.png b/animateditems/2964.png
new file mode 100644
index 00000000..ae0ee105
Binary files /dev/null and b/animateditems/2964.png differ
diff --git a/animateditems/2965.gif b/animateditems/2965.gif
new file mode 100644
index 00000000..c91805c9
Binary files /dev/null and b/animateditems/2965.gif differ
diff --git a/animateditems/2965.png b/animateditems/2965.png
new file mode 100644
index 00000000..03fcded7
Binary files /dev/null and b/animateditems/2965.png differ
diff --git a/animateditems/2966.gif b/animateditems/2966.gif
new file mode 100644
index 00000000..517e2e38
Binary files /dev/null and b/animateditems/2966.gif differ
diff --git a/animateditems/2966.png b/animateditems/2966.png
new file mode 100644
index 00000000..0642c0cb
Binary files /dev/null and b/animateditems/2966.png differ
diff --git a/animateditems/2967.gif b/animateditems/2967.gif
new file mode 100644
index 00000000..0a09d515
Binary files /dev/null and b/animateditems/2967.gif differ
diff --git a/animateditems/2967.png b/animateditems/2967.png
new file mode 100644
index 00000000..0cb30847
Binary files /dev/null and b/animateditems/2967.png differ
diff --git a/animateditems/2968.gif b/animateditems/2968.gif
new file mode 100644
index 00000000..baac4184
Binary files /dev/null and b/animateditems/2968.gif differ
diff --git a/animateditems/2968.png b/animateditems/2968.png
new file mode 100644
index 00000000..f049c843
Binary files /dev/null and b/animateditems/2968.png differ
diff --git a/animateditems/2975.gif b/animateditems/2975.gif
new file mode 100644
index 00000000..ae5a813d
Binary files /dev/null and b/animateditems/2975.gif differ
diff --git a/animateditems/2975.png b/animateditems/2975.png
new file mode 100644
index 00000000..e25e0910
Binary files /dev/null and b/animateditems/2975.png differ
diff --git a/animateditems/2976.gif b/animateditems/2976.gif
new file mode 100644
index 00000000..463498a7
Binary files /dev/null and b/animateditems/2976.gif differ
diff --git a/animateditems/2976.png b/animateditems/2976.png
new file mode 100644
index 00000000..ba2d5e87
Binary files /dev/null and b/animateditems/2976.png differ
diff --git a/animateditems/2977.gif b/animateditems/2977.gif
new file mode 100644
index 00000000..cba29919
Binary files /dev/null and b/animateditems/2977.gif differ
diff --git a/animateditems/2977.png b/animateditems/2977.png
new file mode 100644
index 00000000..3e6bd37f
Binary files /dev/null and b/animateditems/2977.png differ
diff --git a/animateditems/2978.gif b/animateditems/2978.gif
new file mode 100644
index 00000000..49da96ea
Binary files /dev/null and b/animateditems/2978.gif differ
diff --git a/animateditems/2978.png b/animateditems/2978.png
new file mode 100644
index 00000000..83df20cd
Binary files /dev/null and b/animateditems/2978.png differ
diff --git a/animateditems/2979.gif b/animateditems/2979.gif
new file mode 100644
index 00000000..5857664f
Binary files /dev/null and b/animateditems/2979.gif differ
diff --git a/animateditems/2979.png b/animateditems/2979.png
new file mode 100644
index 00000000..2d12d76f
Binary files /dev/null and b/animateditems/2979.png differ
diff --git a/animateditems/2980.gif b/animateditems/2980.gif
new file mode 100644
index 00000000..d66894b6
Binary files /dev/null and b/animateditems/2980.gif differ
diff --git a/animateditems/2980.png b/animateditems/2980.png
new file mode 100644
index 00000000..5dc30a81
Binary files /dev/null and b/animateditems/2980.png differ
diff --git a/animateditems/2981.gif b/animateditems/2981.gif
new file mode 100644
index 00000000..a0f9e2b6
Binary files /dev/null and b/animateditems/2981.gif differ
diff --git a/animateditems/2981.png b/animateditems/2981.png
new file mode 100644
index 00000000..10e21349
Binary files /dev/null and b/animateditems/2981.png differ
diff --git a/animateditems/2982.gif b/animateditems/2982.gif
new file mode 100644
index 00000000..8eeaa85d
Binary files /dev/null and b/animateditems/2982.gif differ
diff --git a/animateditems/2982.png b/animateditems/2982.png
new file mode 100644
index 00000000..a697639c
Binary files /dev/null and b/animateditems/2982.png differ
diff --git a/animateditems/2983.gif b/animateditems/2983.gif
new file mode 100644
index 00000000..2cdb05af
Binary files /dev/null and b/animateditems/2983.gif differ
diff --git a/animateditems/2983.png b/animateditems/2983.png
new file mode 100644
index 00000000..9397407d
Binary files /dev/null and b/animateditems/2983.png differ
diff --git a/animateditems/2984.gif b/animateditems/2984.gif
new file mode 100644
index 00000000..f33256b8
Binary files /dev/null and b/animateditems/2984.gif differ
diff --git a/animateditems/2984.png b/animateditems/2984.png
new file mode 100644
index 00000000..aa233fef
Binary files /dev/null and b/animateditems/2984.png differ
diff --git a/animateditems/2985.gif b/animateditems/2985.gif
new file mode 100644
index 00000000..d3777fb8
Binary files /dev/null and b/animateditems/2985.gif differ
diff --git a/animateditems/2985.png b/animateditems/2985.png
new file mode 100644
index 00000000..df162033
Binary files /dev/null and b/animateditems/2985.png differ
diff --git a/animateditems/2986.gif b/animateditems/2986.gif
new file mode 100644
index 00000000..658b9adc
Binary files /dev/null and b/animateditems/2986.gif differ
diff --git a/animateditems/2986.png b/animateditems/2986.png
new file mode 100644
index 00000000..d771726c
Binary files /dev/null and b/animateditems/2986.png differ
diff --git a/animateditems/2987.gif b/animateditems/2987.gif
new file mode 100644
index 00000000..ae621a45
Binary files /dev/null and b/animateditems/2987.gif differ
diff --git a/animateditems/2987.png b/animateditems/2987.png
new file mode 100644
index 00000000..9911e9a5
Binary files /dev/null and b/animateditems/2987.png differ
diff --git a/animateditems/2988.gif b/animateditems/2988.gif
new file mode 100644
index 00000000..088ef118
Binary files /dev/null and b/animateditems/2988.gif differ
diff --git a/animateditems/2988.png b/animateditems/2988.png
new file mode 100644
index 00000000..3d2c44b7
Binary files /dev/null and b/animateditems/2988.png differ
diff --git a/animateditems/29917.gif b/animateditems/29917.gif
new file mode 100644
index 00000000..e763b3ce
Binary files /dev/null and b/animateditems/29917.gif differ
diff --git a/animateditems/29917.png b/animateditems/29917.png
new file mode 100644
index 00000000..2fa22f2d
Binary files /dev/null and b/animateditems/29917.png differ
diff --git a/animateditems/29918.gif b/animateditems/29918.gif
new file mode 100644
index 00000000..f9b12cf0
Binary files /dev/null and b/animateditems/29918.gif differ
diff --git a/animateditems/29918.png b/animateditems/29918.png
new file mode 100644
index 00000000..d8daa939
Binary files /dev/null and b/animateditems/29918.png differ
diff --git a/animateditems/29919.gif b/animateditems/29919.gif
new file mode 100644
index 00000000..5e240753
Binary files /dev/null and b/animateditems/29919.gif differ
diff --git a/animateditems/29919.png b/animateditems/29919.png
new file mode 100644
index 00000000..60abadfb
Binary files /dev/null and b/animateditems/29919.png differ
diff --git a/animateditems/2992.gif b/animateditems/2992.gif
new file mode 100644
index 00000000..89295f68
Binary files /dev/null and b/animateditems/2992.gif differ
diff --git a/animateditems/2992.png b/animateditems/2992.png
new file mode 100644
index 00000000..71d13255
Binary files /dev/null and b/animateditems/2992.png differ
diff --git a/animateditems/29920.gif b/animateditems/29920.gif
new file mode 100644
index 00000000..b5de4fb2
Binary files /dev/null and b/animateditems/29920.gif differ
diff --git a/animateditems/29920.png b/animateditems/29920.png
new file mode 100644
index 00000000..04269889
Binary files /dev/null and b/animateditems/29920.png differ
diff --git a/animateditems/29921.gif b/animateditems/29921.gif
new file mode 100644
index 00000000..16307fb0
Binary files /dev/null and b/animateditems/29921.gif differ
diff --git a/animateditems/29921.png b/animateditems/29921.png
new file mode 100644
index 00000000..313edb18
Binary files /dev/null and b/animateditems/29921.png differ
diff --git a/animateditems/29922.gif b/animateditems/29922.gif
new file mode 100644
index 00000000..d758d8fe
Binary files /dev/null and b/animateditems/29922.gif differ
diff --git a/animateditems/29922.png b/animateditems/29922.png
new file mode 100644
index 00000000..c0c68686
Binary files /dev/null and b/animateditems/29922.png differ
diff --git a/animateditems/29923.gif b/animateditems/29923.gif
new file mode 100644
index 00000000..7e3a8ddd
Binary files /dev/null and b/animateditems/29923.gif differ
diff --git a/animateditems/29923.png b/animateditems/29923.png
new file mode 100644
index 00000000..02328c80
Binary files /dev/null and b/animateditems/29923.png differ
diff --git a/animateditems/29924.gif b/animateditems/29924.gif
new file mode 100644
index 00000000..54011cea
Binary files /dev/null and b/animateditems/29924.gif differ
diff --git a/animateditems/29924.png b/animateditems/29924.png
new file mode 100644
index 00000000..752c3961
Binary files /dev/null and b/animateditems/29924.png differ
diff --git a/animateditems/29925.gif b/animateditems/29925.gif
new file mode 100644
index 00000000..cd586b0c
Binary files /dev/null and b/animateditems/29925.gif differ
diff --git a/animateditems/29925.png b/animateditems/29925.png
new file mode 100644
index 00000000..c7b569d1
Binary files /dev/null and b/animateditems/29925.png differ
diff --git a/animateditems/29926.gif b/animateditems/29926.gif
new file mode 100644
index 00000000..1a6fcf25
Binary files /dev/null and b/animateditems/29926.gif differ
diff --git a/animateditems/29926.png b/animateditems/29926.png
new file mode 100644
index 00000000..c49587fd
Binary files /dev/null and b/animateditems/29926.png differ
diff --git a/animateditems/2993.gif b/animateditems/2993.gif
new file mode 100644
index 00000000..f131a5e3
Binary files /dev/null and b/animateditems/2993.gif differ
diff --git a/animateditems/2993.png b/animateditems/2993.png
new file mode 100644
index 00000000..929b3f0a
Binary files /dev/null and b/animateditems/2993.png differ
diff --git a/animateditems/2994.gif b/animateditems/2994.gif
new file mode 100644
index 00000000..c80fe96e
Binary files /dev/null and b/animateditems/2994.gif differ
diff --git a/animateditems/2994.png b/animateditems/2994.png
new file mode 100644
index 00000000..516a85f2
Binary files /dev/null and b/animateditems/2994.png differ
diff --git a/animateditems/2995.gif b/animateditems/2995.gif
new file mode 100644
index 00000000..5bd1544e
Binary files /dev/null and b/animateditems/2995.gif differ
diff --git a/animateditems/2995.png b/animateditems/2995.png
new file mode 100644
index 00000000..88a3acd2
Binary files /dev/null and b/animateditems/2995.png differ
diff --git a/animateditems/29957.gif b/animateditems/29957.gif
new file mode 100644
index 00000000..6957ce8a
Binary files /dev/null and b/animateditems/29957.gif differ
diff --git a/animateditems/29957.png b/animateditems/29957.png
new file mode 100644
index 00000000..23f0ddcd
Binary files /dev/null and b/animateditems/29957.png differ
diff --git a/animateditems/2996.gif b/animateditems/2996.gif
new file mode 100644
index 00000000..025bdf4b
Binary files /dev/null and b/animateditems/2996.gif differ
diff --git a/animateditems/2996.png b/animateditems/2996.png
new file mode 100644
index 00000000..ead05eec
Binary files /dev/null and b/animateditems/2996.png differ
diff --git a/animateditems/29963.gif b/animateditems/29963.gif
new file mode 100644
index 00000000..6364e24b
Binary files /dev/null and b/animateditems/29963.gif differ
diff --git a/animateditems/29963.png b/animateditems/29963.png
new file mode 100644
index 00000000..2845b10a
Binary files /dev/null and b/animateditems/29963.png differ
diff --git a/animateditems/29964.gif b/animateditems/29964.gif
new file mode 100644
index 00000000..079158f1
Binary files /dev/null and b/animateditems/29964.gif differ
diff --git a/animateditems/29964.png b/animateditems/29964.png
new file mode 100644
index 00000000..130351a9
Binary files /dev/null and b/animateditems/29964.png differ
diff --git a/animateditems/2997.gif b/animateditems/2997.gif
new file mode 100644
index 00000000..e11522aa
Binary files /dev/null and b/animateditems/2997.gif differ
diff --git a/animateditems/2997.png b/animateditems/2997.png
new file mode 100644
index 00000000..9d7967cc
Binary files /dev/null and b/animateditems/2997.png differ
diff --git a/animateditems/2998.gif b/animateditems/2998.gif
new file mode 100644
index 00000000..fa2eb4b9
Binary files /dev/null and b/animateditems/2998.gif differ
diff --git a/animateditems/2998.png b/animateditems/2998.png
new file mode 100644
index 00000000..e60cf879
Binary files /dev/null and b/animateditems/2998.png differ
diff --git a/animateditems/2999.gif b/animateditems/2999.gif
new file mode 100644
index 00000000..2af7778d
Binary files /dev/null and b/animateditems/2999.gif differ
diff --git a/animateditems/2999.png b/animateditems/2999.png
new file mode 100644
index 00000000..bbef591e
Binary files /dev/null and b/animateditems/2999.png differ
diff --git a/animateditems/3.gif b/animateditems/3.gif
new file mode 100644
index 00000000..12b7f21b
Binary files /dev/null and b/animateditems/3.gif differ
diff --git a/animateditems/3000.gif b/animateditems/3000.gif
new file mode 100644
index 00000000..addffeb1
Binary files /dev/null and b/animateditems/3000.gif differ
diff --git a/animateditems/3000.png b/animateditems/3000.png
new file mode 100644
index 00000000..dc8f2c06
Binary files /dev/null and b/animateditems/3000.png differ
diff --git a/animateditems/3007.gif b/animateditems/3007.gif
new file mode 100644
index 00000000..dd8f2d6c
Binary files /dev/null and b/animateditems/3007.gif differ
diff --git a/animateditems/3007.png b/animateditems/3007.png
new file mode 100644
index 00000000..7670494f
Binary files /dev/null and b/animateditems/3007.png differ
diff --git a/animateditems/3008.gif b/animateditems/3008.gif
new file mode 100644
index 00000000..949d68be
Binary files /dev/null and b/animateditems/3008.gif differ
diff --git a/animateditems/3008.png b/animateditems/3008.png
new file mode 100644
index 00000000..d4e17907
Binary files /dev/null and b/animateditems/3008.png differ
diff --git a/animateditems/3009.gif b/animateditems/3009.gif
new file mode 100644
index 00000000..7ad1a0d0
Binary files /dev/null and b/animateditems/3009.gif differ
diff --git a/animateditems/3009.png b/animateditems/3009.png
new file mode 100644
index 00000000..85d49330
Binary files /dev/null and b/animateditems/3009.png differ
diff --git a/animateditems/3010.gif b/animateditems/3010.gif
new file mode 100644
index 00000000..532627c6
Binary files /dev/null and b/animateditems/3010.gif differ
diff --git a/animateditems/3010.png b/animateditems/3010.png
new file mode 100644
index 00000000..f93c6853
Binary files /dev/null and b/animateditems/3010.png differ
diff --git a/animateditems/30100.gif b/animateditems/30100.gif
new file mode 100644
index 00000000..76bae873
Binary files /dev/null and b/animateditems/30100.gif differ
diff --git a/animateditems/30100.png b/animateditems/30100.png
new file mode 100644
index 00000000..eed57afa
Binary files /dev/null and b/animateditems/30100.png differ
diff --git a/animateditems/30101.gif b/animateditems/30101.gif
new file mode 100644
index 00000000..7d296d48
Binary files /dev/null and b/animateditems/30101.gif differ
diff --git a/animateditems/30101.png b/animateditems/30101.png
new file mode 100644
index 00000000..baf7d162
Binary files /dev/null and b/animateditems/30101.png differ
diff --git a/animateditems/30102.gif b/animateditems/30102.gif
new file mode 100644
index 00000000..6d2b866c
Binary files /dev/null and b/animateditems/30102.gif differ
diff --git a/animateditems/30102.png b/animateditems/30102.png
new file mode 100644
index 00000000..403f1eeb
Binary files /dev/null and b/animateditems/30102.png differ
diff --git a/animateditems/30103.gif b/animateditems/30103.gif
new file mode 100644
index 00000000..c233ad54
Binary files /dev/null and b/animateditems/30103.gif differ
diff --git a/animateditems/30103.png b/animateditems/30103.png
new file mode 100644
index 00000000..70eb3c59
Binary files /dev/null and b/animateditems/30103.png differ
diff --git a/animateditems/30105.gif b/animateditems/30105.gif
new file mode 100644
index 00000000..df6b7fe4
Binary files /dev/null and b/animateditems/30105.gif differ
diff --git a/animateditems/30105.png b/animateditems/30105.png
new file mode 100644
index 00000000..fa08481e
Binary files /dev/null and b/animateditems/30105.png differ
diff --git a/animateditems/30106.gif b/animateditems/30106.gif
new file mode 100644
index 00000000..22a638b8
Binary files /dev/null and b/animateditems/30106.gif differ
diff --git a/animateditems/30106.png b/animateditems/30106.png
new file mode 100644
index 00000000..bed47626
Binary files /dev/null and b/animateditems/30106.png differ
diff --git a/animateditems/30107.gif b/animateditems/30107.gif
new file mode 100644
index 00000000..ab922d6d
Binary files /dev/null and b/animateditems/30107.gif differ
diff --git a/animateditems/30107.png b/animateditems/30107.png
new file mode 100644
index 00000000..4ecc8787
Binary files /dev/null and b/animateditems/30107.png differ
diff --git a/animateditems/30108.gif b/animateditems/30108.gif
new file mode 100644
index 00000000..a008cfe6
Binary files /dev/null and b/animateditems/30108.gif differ
diff --git a/animateditems/30108.png b/animateditems/30108.png
new file mode 100644
index 00000000..a0765dfa
Binary files /dev/null and b/animateditems/30108.png differ
diff --git a/animateditems/30109.gif b/animateditems/30109.gif
new file mode 100644
index 00000000..f6029fc0
Binary files /dev/null and b/animateditems/30109.gif differ
diff --git a/animateditems/30109.png b/animateditems/30109.png
new file mode 100644
index 00000000..ed69356c
Binary files /dev/null and b/animateditems/30109.png differ
diff --git a/animateditems/3011.gif b/animateditems/3011.gif
new file mode 100644
index 00000000..da0ff4f5
Binary files /dev/null and b/animateditems/3011.gif differ
diff --git a/animateditems/3011.png b/animateditems/3011.png
new file mode 100644
index 00000000..9c5b38b5
Binary files /dev/null and b/animateditems/3011.png differ
diff --git a/animateditems/30110.gif b/animateditems/30110.gif
new file mode 100644
index 00000000..4d1536d2
Binary files /dev/null and b/animateditems/30110.gif differ
diff --git a/animateditems/30110.png b/animateditems/30110.png
new file mode 100644
index 00000000..090f73b3
Binary files /dev/null and b/animateditems/30110.png differ
diff --git a/animateditems/30111.gif b/animateditems/30111.gif
new file mode 100644
index 00000000..a4e3b5a8
Binary files /dev/null and b/animateditems/30111.gif differ
diff --git a/animateditems/30111.png b/animateditems/30111.png
new file mode 100644
index 00000000..fee8a5b5
Binary files /dev/null and b/animateditems/30111.png differ
diff --git a/animateditems/30112.gif b/animateditems/30112.gif
new file mode 100644
index 00000000..c1e556d2
Binary files /dev/null and b/animateditems/30112.gif differ
diff --git a/animateditems/30112.png b/animateditems/30112.png
new file mode 100644
index 00000000..5fe1f822
Binary files /dev/null and b/animateditems/30112.png differ
diff --git a/animateditems/30113.gif b/animateditems/30113.gif
new file mode 100644
index 00000000..06f9ac1a
Binary files /dev/null and b/animateditems/30113.gif differ
diff --git a/animateditems/30113.png b/animateditems/30113.png
new file mode 100644
index 00000000..082136df
Binary files /dev/null and b/animateditems/30113.png differ
diff --git a/animateditems/30114.gif b/animateditems/30114.gif
new file mode 100644
index 00000000..e116cdb7
Binary files /dev/null and b/animateditems/30114.gif differ
diff --git a/animateditems/30114.png b/animateditems/30114.png
new file mode 100644
index 00000000..7b2c3b1d
Binary files /dev/null and b/animateditems/30114.png differ
diff --git a/animateditems/30116.gif b/animateditems/30116.gif
new file mode 100644
index 00000000..45e25eac
Binary files /dev/null and b/animateditems/30116.gif differ
diff --git a/animateditems/30116.png b/animateditems/30116.png
new file mode 100644
index 00000000..b63a66f8
Binary files /dev/null and b/animateditems/30116.png differ
diff --git a/animateditems/30117.gif b/animateditems/30117.gif
new file mode 100644
index 00000000..7c0e4910
Binary files /dev/null and b/animateditems/30117.gif differ
diff --git a/animateditems/30117.png b/animateditems/30117.png
new file mode 100644
index 00000000..4f49d88d
Binary files /dev/null and b/animateditems/30117.png differ
diff --git a/animateditems/30118.gif b/animateditems/30118.gif
new file mode 100644
index 00000000..e8069259
Binary files /dev/null and b/animateditems/30118.gif differ
diff --git a/animateditems/30118.png b/animateditems/30118.png
new file mode 100644
index 00000000..e789608a
Binary files /dev/null and b/animateditems/30118.png differ
diff --git a/animateditems/30119.gif b/animateditems/30119.gif
new file mode 100644
index 00000000..4accd57c
Binary files /dev/null and b/animateditems/30119.gif differ
diff --git a/animateditems/30119.png b/animateditems/30119.png
new file mode 100644
index 00000000..7dfa1b43
Binary files /dev/null and b/animateditems/30119.png differ
diff --git a/animateditems/3012.gif b/animateditems/3012.gif
new file mode 100644
index 00000000..5e742098
Binary files /dev/null and b/animateditems/3012.gif differ
diff --git a/animateditems/3012.png b/animateditems/3012.png
new file mode 100644
index 00000000..35b4ec1c
Binary files /dev/null and b/animateditems/3012.png differ
diff --git a/animateditems/30120.gif b/animateditems/30120.gif
new file mode 100644
index 00000000..cbed3cfc
Binary files /dev/null and b/animateditems/30120.gif differ
diff --git a/animateditems/30120.png b/animateditems/30120.png
new file mode 100644
index 00000000..66f8a356
Binary files /dev/null and b/animateditems/30120.png differ
diff --git a/animateditems/30121.gif b/animateditems/30121.gif
new file mode 100644
index 00000000..ee765f9c
Binary files /dev/null and b/animateditems/30121.gif differ
diff --git a/animateditems/30121.png b/animateditems/30121.png
new file mode 100644
index 00000000..f8ed82ad
Binary files /dev/null and b/animateditems/30121.png differ
diff --git a/animateditems/3013.gif b/animateditems/3013.gif
new file mode 100644
index 00000000..595f057b
Binary files /dev/null and b/animateditems/3013.gif differ
diff --git a/animateditems/3013.png b/animateditems/3013.png
new file mode 100644
index 00000000..4e52ffca
Binary files /dev/null and b/animateditems/3013.png differ
diff --git a/animateditems/3014.gif b/animateditems/3014.gif
new file mode 100644
index 00000000..3fd09d3c
Binary files /dev/null and b/animateditems/3014.gif differ
diff --git a/animateditems/3014.png b/animateditems/3014.png
new file mode 100644
index 00000000..0428369b
Binary files /dev/null and b/animateditems/3014.png differ
diff --git a/animateditems/3015.gif b/animateditems/3015.gif
new file mode 100644
index 00000000..506782ce
Binary files /dev/null and b/animateditems/3015.gif differ
diff --git a/animateditems/3015.png b/animateditems/3015.png
new file mode 100644
index 00000000..32e87756
Binary files /dev/null and b/animateditems/3015.png differ
diff --git a/animateditems/30154.gif b/animateditems/30154.gif
new file mode 100644
index 00000000..14e9dfb8
Binary files /dev/null and b/animateditems/30154.gif differ
diff --git a/animateditems/30154.png b/animateditems/30154.png
new file mode 100644
index 00000000..fa6d9bd7
Binary files /dev/null and b/animateditems/30154.png differ
diff --git a/animateditems/30155.gif b/animateditems/30155.gif
new file mode 100644
index 00000000..af7755a6
Binary files /dev/null and b/animateditems/30155.gif differ
diff --git a/animateditems/30155.png b/animateditems/30155.png
new file mode 100644
index 00000000..8f09e87c
Binary files /dev/null and b/animateditems/30155.png differ
diff --git a/animateditems/30165.gif b/animateditems/30165.gif
new file mode 100644
index 00000000..e930f25b
Binary files /dev/null and b/animateditems/30165.gif differ
diff --git a/animateditems/30165.png b/animateditems/30165.png
new file mode 100644
index 00000000..7760be88
Binary files /dev/null and b/animateditems/30165.png differ
diff --git a/animateditems/30167.gif b/animateditems/30167.gif
new file mode 100644
index 00000000..6cdb3bcf
Binary files /dev/null and b/animateditems/30167.gif differ
diff --git a/animateditems/30167.png b/animateditems/30167.png
new file mode 100644
index 00000000..0d7c1685
Binary files /dev/null and b/animateditems/30167.png differ
diff --git a/animateditems/30178.gif b/animateditems/30178.gif
new file mode 100644
index 00000000..353d1bad
Binary files /dev/null and b/animateditems/30178.gif differ
diff --git a/animateditems/30178.png b/animateditems/30178.png
new file mode 100644
index 00000000..400682cf
Binary files /dev/null and b/animateditems/30178.png differ
diff --git a/animateditems/30179.gif b/animateditems/30179.gif
new file mode 100644
index 00000000..c67f524b
Binary files /dev/null and b/animateditems/30179.gif differ
diff --git a/animateditems/30179.png b/animateditems/30179.png
new file mode 100644
index 00000000..29b34c21
Binary files /dev/null and b/animateditems/30179.png differ
diff --git a/animateditems/30180.gif b/animateditems/30180.gif
new file mode 100644
index 00000000..4ef38ec4
Binary files /dev/null and b/animateditems/30180.gif differ
diff --git a/animateditems/30180.png b/animateditems/30180.png
new file mode 100644
index 00000000..df90c304
Binary files /dev/null and b/animateditems/30180.png differ
diff --git a/animateditems/30181.gif b/animateditems/30181.gif
new file mode 100644
index 00000000..0c70ed86
Binary files /dev/null and b/animateditems/30181.gif differ
diff --git a/animateditems/30181.png b/animateditems/30181.png
new file mode 100644
index 00000000..b5c7f2df
Binary files /dev/null and b/animateditems/30181.png differ
diff --git a/animateditems/30182.gif b/animateditems/30182.gif
new file mode 100644
index 00000000..d36fa3dc
Binary files /dev/null and b/animateditems/30182.gif differ
diff --git a/animateditems/30182.png b/animateditems/30182.png
new file mode 100644
index 00000000..12b1306a
Binary files /dev/null and b/animateditems/30182.png differ
diff --git a/animateditems/3019.gif b/animateditems/3019.gif
new file mode 100644
index 00000000..ca4ea27b
Binary files /dev/null and b/animateditems/3019.gif differ
diff --git a/animateditems/3019.png b/animateditems/3019.png
new file mode 100644
index 00000000..f0063124
Binary files /dev/null and b/animateditems/3019.png differ
diff --git a/animateditems/3020.gif b/animateditems/3020.gif
new file mode 100644
index 00000000..b20c8ae6
Binary files /dev/null and b/animateditems/3020.gif differ
diff --git a/animateditems/3020.png b/animateditems/3020.png
new file mode 100644
index 00000000..9cb04173
Binary files /dev/null and b/animateditems/3020.png differ
diff --git a/animateditems/3021.gif b/animateditems/3021.gif
new file mode 100644
index 00000000..6d819108
Binary files /dev/null and b/animateditems/3021.gif differ
diff --git a/animateditems/3021.png b/animateditems/3021.png
new file mode 100644
index 00000000..91830369
Binary files /dev/null and b/animateditems/3021.png differ
diff --git a/animateditems/30247.gif b/animateditems/30247.gif
new file mode 100644
index 00000000..895b066c
Binary files /dev/null and b/animateditems/30247.gif differ
diff --git a/animateditems/30247.png b/animateditems/30247.png
new file mode 100644
index 00000000..ecbb2ae9
Binary files /dev/null and b/animateditems/30247.png differ
diff --git a/animateditems/30248.gif b/animateditems/30248.gif
new file mode 100644
index 00000000..e1fdbf78
Binary files /dev/null and b/animateditems/30248.gif differ
diff --git a/animateditems/30248.png b/animateditems/30248.png
new file mode 100644
index 00000000..2e737a98
Binary files /dev/null and b/animateditems/30248.png differ
diff --git a/animateditems/30249.gif b/animateditems/30249.gif
new file mode 100644
index 00000000..a7a646e5
Binary files /dev/null and b/animateditems/30249.gif differ
diff --git a/animateditems/30249.png b/animateditems/30249.png
new file mode 100644
index 00000000..8c6eb422
Binary files /dev/null and b/animateditems/30249.png differ
diff --git a/animateditems/30250.gif b/animateditems/30250.gif
new file mode 100644
index 00000000..de58c8bd
Binary files /dev/null and b/animateditems/30250.gif differ
diff --git a/animateditems/30250.png b/animateditems/30250.png
new file mode 100644
index 00000000..5767442d
Binary files /dev/null and b/animateditems/30250.png differ
diff --git a/animateditems/30251.gif b/animateditems/30251.gif
new file mode 100644
index 00000000..f1e8313f
Binary files /dev/null and b/animateditems/30251.gif differ
diff --git a/animateditems/30251.png b/animateditems/30251.png
new file mode 100644
index 00000000..96dcb4cb
Binary files /dev/null and b/animateditems/30251.png differ
diff --git a/animateditems/30252.gif b/animateditems/30252.gif
new file mode 100644
index 00000000..3acbd59c
Binary files /dev/null and b/animateditems/30252.gif differ
diff --git a/animateditems/30252.png b/animateditems/30252.png
new file mode 100644
index 00000000..2653b4a2
Binary files /dev/null and b/animateditems/30252.png differ
diff --git a/animateditems/30253.gif b/animateditems/30253.gif
new file mode 100644
index 00000000..edc58b5a
Binary files /dev/null and b/animateditems/30253.gif differ
diff --git a/animateditems/30253.png b/animateditems/30253.png
new file mode 100644
index 00000000..5e9bb6d9
Binary files /dev/null and b/animateditems/30253.png differ
diff --git a/animateditems/30254.gif b/animateditems/30254.gif
new file mode 100644
index 00000000..072d6790
Binary files /dev/null and b/animateditems/30254.gif differ
diff --git a/animateditems/30254.png b/animateditems/30254.png
new file mode 100644
index 00000000..53a149da
Binary files /dev/null and b/animateditems/30254.png differ
diff --git a/animateditems/30255.gif b/animateditems/30255.gif
new file mode 100644
index 00000000..027cc1e3
Binary files /dev/null and b/animateditems/30255.gif differ
diff --git a/animateditems/30255.png b/animateditems/30255.png
new file mode 100644
index 00000000..bacd56c3
Binary files /dev/null and b/animateditems/30255.png differ
diff --git a/animateditems/30256.gif b/animateditems/30256.gif
new file mode 100644
index 00000000..414fe882
Binary files /dev/null and b/animateditems/30256.gif differ
diff --git a/animateditems/30256.png b/animateditems/30256.png
new file mode 100644
index 00000000..19fb4dbf
Binary files /dev/null and b/animateditems/30256.png differ
diff --git a/animateditems/30257.gif b/animateditems/30257.gif
new file mode 100644
index 00000000..06a8072e
Binary files /dev/null and b/animateditems/30257.gif differ
diff --git a/animateditems/30257.png b/animateditems/30257.png
new file mode 100644
index 00000000..a9f63f68
Binary files /dev/null and b/animateditems/30257.png differ
diff --git a/animateditems/30258.gif b/animateditems/30258.gif
new file mode 100644
index 00000000..52ce3539
Binary files /dev/null and b/animateditems/30258.gif differ
diff --git a/animateditems/30258.png b/animateditems/30258.png
new file mode 100644
index 00000000..e6f6f4e4
Binary files /dev/null and b/animateditems/30258.png differ
diff --git a/animateditems/30259.gif b/animateditems/30259.gif
new file mode 100644
index 00000000..85844d4b
Binary files /dev/null and b/animateditems/30259.gif differ
diff --git a/animateditems/30259.png b/animateditems/30259.png
new file mode 100644
index 00000000..de6315b2
Binary files /dev/null and b/animateditems/30259.png differ
diff --git a/animateditems/30260.gif b/animateditems/30260.gif
new file mode 100644
index 00000000..1df157f0
Binary files /dev/null and b/animateditems/30260.gif differ
diff --git a/animateditems/30260.png b/animateditems/30260.png
new file mode 100644
index 00000000..71c495c2
Binary files /dev/null and b/animateditems/30260.png differ
diff --git a/animateditems/30261.gif b/animateditems/30261.gif
new file mode 100644
index 00000000..c42e080d
Binary files /dev/null and b/animateditems/30261.gif differ
diff --git a/animateditems/30261.png b/animateditems/30261.png
new file mode 100644
index 00000000..fcf538b6
Binary files /dev/null and b/animateditems/30261.png differ
diff --git a/animateditems/30262.gif b/animateditems/30262.gif
new file mode 100644
index 00000000..30aaa195
Binary files /dev/null and b/animateditems/30262.gif differ
diff --git a/animateditems/30262.png b/animateditems/30262.png
new file mode 100644
index 00000000..1519585d
Binary files /dev/null and b/animateditems/30262.png differ
diff --git a/animateditems/30263.gif b/animateditems/30263.gif
new file mode 100644
index 00000000..e07ac283
Binary files /dev/null and b/animateditems/30263.gif differ
diff --git a/animateditems/30263.png b/animateditems/30263.png
new file mode 100644
index 00000000..686abce9
Binary files /dev/null and b/animateditems/30263.png differ
diff --git a/animateditems/30274.gif b/animateditems/30274.gif
new file mode 100644
index 00000000..caf49564
Binary files /dev/null and b/animateditems/30274.gif differ
diff --git a/animateditems/30274.png b/animateditems/30274.png
new file mode 100644
index 00000000..ca7cb20a
Binary files /dev/null and b/animateditems/30274.png differ
diff --git a/animateditems/30275.gif b/animateditems/30275.gif
new file mode 100644
index 00000000..20820889
Binary files /dev/null and b/animateditems/30275.gif differ
diff --git a/animateditems/30275.png b/animateditems/30275.png
new file mode 100644
index 00000000..c052208e
Binary files /dev/null and b/animateditems/30275.png differ
diff --git a/animateditems/30276.gif b/animateditems/30276.gif
new file mode 100644
index 00000000..1f9ae7f7
Binary files /dev/null and b/animateditems/30276.gif differ
diff --git a/animateditems/30276.png b/animateditems/30276.png
new file mode 100644
index 00000000..1b071b82
Binary files /dev/null and b/animateditems/30276.png differ
diff --git a/animateditems/30277.gif b/animateditems/30277.gif
new file mode 100644
index 00000000..cfe767ae
Binary files /dev/null and b/animateditems/30277.gif differ
diff --git a/animateditems/30277.png b/animateditems/30277.png
new file mode 100644
index 00000000..e8267ed2
Binary files /dev/null and b/animateditems/30277.png differ
diff --git a/animateditems/30278.gif b/animateditems/30278.gif
new file mode 100644
index 00000000..fc86662d
Binary files /dev/null and b/animateditems/30278.gif differ
diff --git a/animateditems/30278.png b/animateditems/30278.png
new file mode 100644
index 00000000..6dc6a026
Binary files /dev/null and b/animateditems/30278.png differ
diff --git a/animateditems/30279.gif b/animateditems/30279.gif
new file mode 100644
index 00000000..fb922c13
Binary files /dev/null and b/animateditems/30279.gif differ
diff --git a/animateditems/30279.png b/animateditems/30279.png
new file mode 100644
index 00000000..e8523143
Binary files /dev/null and b/animateditems/30279.png differ
diff --git a/animateditems/3028.gif b/animateditems/3028.gif
new file mode 100644
index 00000000..ed4f9433
Binary files /dev/null and b/animateditems/3028.gif differ
diff --git a/animateditems/3028.png b/animateditems/3028.png
new file mode 100644
index 00000000..869c1a1b
Binary files /dev/null and b/animateditems/3028.png differ
diff --git a/animateditems/30280.gif b/animateditems/30280.gif
new file mode 100644
index 00000000..e1816f97
Binary files /dev/null and b/animateditems/30280.gif differ
diff --git a/animateditems/30280.png b/animateditems/30280.png
new file mode 100644
index 00000000..988a6a7b
Binary files /dev/null and b/animateditems/30280.png differ
diff --git a/animateditems/30281.gif b/animateditems/30281.gif
new file mode 100644
index 00000000..42851261
Binary files /dev/null and b/animateditems/30281.gif differ
diff --git a/animateditems/30281.png b/animateditems/30281.png
new file mode 100644
index 00000000..2a24c475
Binary files /dev/null and b/animateditems/30281.png differ
diff --git a/animateditems/30282.gif b/animateditems/30282.gif
new file mode 100644
index 00000000..12fc42de
Binary files /dev/null and b/animateditems/30282.gif differ
diff --git a/animateditems/30282.png b/animateditems/30282.png
new file mode 100644
index 00000000..bc601c3c
Binary files /dev/null and b/animateditems/30282.png differ
diff --git a/animateditems/30283.gif b/animateditems/30283.gif
new file mode 100644
index 00000000..19ba0322
Binary files /dev/null and b/animateditems/30283.gif differ
diff --git a/animateditems/30283.png b/animateditems/30283.png
new file mode 100644
index 00000000..ad87ef1b
Binary files /dev/null and b/animateditems/30283.png differ
diff --git a/animateditems/3029.gif b/animateditems/3029.gif
new file mode 100644
index 00000000..717ec0ae
Binary files /dev/null and b/animateditems/3029.gif differ
diff --git a/animateditems/3029.png b/animateditems/3029.png
new file mode 100644
index 00000000..b4860a16
Binary files /dev/null and b/animateditems/3029.png differ
diff --git a/animateditems/3030.gif b/animateditems/3030.gif
new file mode 100644
index 00000000..4169bfaa
Binary files /dev/null and b/animateditems/3030.gif differ
diff --git a/animateditems/3030.png b/animateditems/3030.png
new file mode 100644
index 00000000..9aeeb180
Binary files /dev/null and b/animateditems/3030.png differ
diff --git a/animateditems/30303.gif b/animateditems/30303.gif
new file mode 100644
index 00000000..cb549a73
Binary files /dev/null and b/animateditems/30303.gif differ
diff --git a/animateditems/30303.png b/animateditems/30303.png
new file mode 100644
index 00000000..1b9150c0
Binary files /dev/null and b/animateditems/30303.png differ
diff --git a/animateditems/30304.gif b/animateditems/30304.gif
new file mode 100644
index 00000000..fb63e456
Binary files /dev/null and b/animateditems/30304.gif differ
diff --git a/animateditems/30304.png b/animateditems/30304.png
new file mode 100644
index 00000000..475969e1
Binary files /dev/null and b/animateditems/30304.png differ
diff --git a/animateditems/30305.gif b/animateditems/30305.gif
new file mode 100644
index 00000000..01aa5c0c
Binary files /dev/null and b/animateditems/30305.gif differ
diff --git a/animateditems/30305.png b/animateditems/30305.png
new file mode 100644
index 00000000..4a37fd36
Binary files /dev/null and b/animateditems/30305.png differ
diff --git a/animateditems/30306.gif b/animateditems/30306.gif
new file mode 100644
index 00000000..f9ed1d56
Binary files /dev/null and b/animateditems/30306.gif differ
diff --git a/animateditems/30306.png b/animateditems/30306.png
new file mode 100644
index 00000000..ba2be789
Binary files /dev/null and b/animateditems/30306.png differ
diff --git a/animateditems/30307.gif b/animateditems/30307.gif
new file mode 100644
index 00000000..96c7acc5
Binary files /dev/null and b/animateditems/30307.gif differ
diff --git a/animateditems/30307.png b/animateditems/30307.png
new file mode 100644
index 00000000..4e7390b9
Binary files /dev/null and b/animateditems/30307.png differ
diff --git a/animateditems/30309.gif b/animateditems/30309.gif
new file mode 100644
index 00000000..cf069452
Binary files /dev/null and b/animateditems/30309.gif differ
diff --git a/animateditems/30309.png b/animateditems/30309.png
new file mode 100644
index 00000000..4823566f
Binary files /dev/null and b/animateditems/30309.png differ
diff --git a/animateditems/30310.gif b/animateditems/30310.gif
new file mode 100644
index 00000000..89834c42
Binary files /dev/null and b/animateditems/30310.gif differ
diff --git a/animateditems/30310.png b/animateditems/30310.png
new file mode 100644
index 00000000..a138db70
Binary files /dev/null and b/animateditems/30310.png differ
diff --git a/animateditems/30311.gif b/animateditems/30311.gif
new file mode 100644
index 00000000..febac916
Binary files /dev/null and b/animateditems/30311.gif differ
diff --git a/animateditems/30311.png b/animateditems/30311.png
new file mode 100644
index 00000000..071989e7
Binary files /dev/null and b/animateditems/30311.png differ
diff --git a/animateditems/30312.gif b/animateditems/30312.gif
new file mode 100644
index 00000000..33dd86e8
Binary files /dev/null and b/animateditems/30312.gif differ
diff --git a/animateditems/30312.png b/animateditems/30312.png
new file mode 100644
index 00000000..1f1f5585
Binary files /dev/null and b/animateditems/30312.png differ
diff --git a/animateditems/30313.gif b/animateditems/30313.gif
new file mode 100644
index 00000000..9c083660
Binary files /dev/null and b/animateditems/30313.gif differ
diff --git a/animateditems/30313.png b/animateditems/30313.png
new file mode 100644
index 00000000..9e183d43
Binary files /dev/null and b/animateditems/30313.png differ
diff --git a/animateditems/30362.gif b/animateditems/30362.gif
new file mode 100644
index 00000000..f20fdc5d
Binary files /dev/null and b/animateditems/30362.gif differ
diff --git a/animateditems/30362.png b/animateditems/30362.png
new file mode 100644
index 00000000..f5551c51
Binary files /dev/null and b/animateditems/30362.png differ
diff --git a/animateditems/30369.gif b/animateditems/30369.gif
new file mode 100644
index 00000000..e930f25b
Binary files /dev/null and b/animateditems/30369.gif differ
diff --git a/animateditems/30369.png b/animateditems/30369.png
new file mode 100644
index 00000000..7760be88
Binary files /dev/null and b/animateditems/30369.png differ
diff --git a/animateditems/3043.gif b/animateditems/3043.gif
new file mode 100644
index 00000000..163387fa
Binary files /dev/null and b/animateditems/3043.gif differ
diff --git a/animateditems/3043.png b/animateditems/3043.png
new file mode 100644
index 00000000..e542daea
Binary files /dev/null and b/animateditems/3043.png differ
diff --git a/animateditems/3044.gif b/animateditems/3044.gif
new file mode 100644
index 00000000..43ebfb12
Binary files /dev/null and b/animateditems/3044.gif differ
diff --git a/animateditems/3044.png b/animateditems/3044.png
new file mode 100644
index 00000000..3cce7280
Binary files /dev/null and b/animateditems/3044.png differ
diff --git a/animateditems/3045.gif b/animateditems/3045.gif
new file mode 100644
index 00000000..821def25
Binary files /dev/null and b/animateditems/3045.gif differ
diff --git a/animateditems/3045.png b/animateditems/3045.png
new file mode 100644
index 00000000..f71ab4da
Binary files /dev/null and b/animateditems/3045.png differ
diff --git a/animateditems/3046.gif b/animateditems/3046.gif
new file mode 100644
index 00000000..ab1bf89a
Binary files /dev/null and b/animateditems/3046.gif differ
diff --git a/animateditems/3046.png b/animateditems/3046.png
new file mode 100644
index 00000000..9d0f6dc4
Binary files /dev/null and b/animateditems/3046.png differ
diff --git a/animateditems/3047.gif b/animateditems/3047.gif
new file mode 100644
index 00000000..90ec8308
Binary files /dev/null and b/animateditems/3047.gif differ
diff --git a/animateditems/3047.png b/animateditems/3047.png
new file mode 100644
index 00000000..c8ab7d17
Binary files /dev/null and b/animateditems/3047.png differ
diff --git a/animateditems/3048.gif b/animateditems/3048.gif
new file mode 100644
index 00000000..a97ea5a4
Binary files /dev/null and b/animateditems/3048.gif differ
diff --git a/animateditems/3048.png b/animateditems/3048.png
new file mode 100644
index 00000000..de66ad51
Binary files /dev/null and b/animateditems/3048.png differ
diff --git a/animateditems/3049.gif b/animateditems/3049.gif
new file mode 100644
index 00000000..6ab63db6
Binary files /dev/null and b/animateditems/3049.gif differ
diff --git a/animateditems/3049.png b/animateditems/3049.png
new file mode 100644
index 00000000..157591c3
Binary files /dev/null and b/animateditems/3049.png differ
diff --git a/animateditems/3050.gif b/animateditems/3050.gif
new file mode 100644
index 00000000..188d78c7
Binary files /dev/null and b/animateditems/3050.gif differ
diff --git a/animateditems/3050.png b/animateditems/3050.png
new file mode 100644
index 00000000..71e1b561
Binary files /dev/null and b/animateditems/3050.png differ
diff --git a/animateditems/30501.gif b/animateditems/30501.gif
new file mode 100644
index 00000000..81ce5ba6
Binary files /dev/null and b/animateditems/30501.gif differ
diff --git a/animateditems/30501.png b/animateditems/30501.png
new file mode 100644
index 00000000..5f91952f
Binary files /dev/null and b/animateditems/30501.png differ
diff --git a/animateditems/30502.gif b/animateditems/30502.gif
new file mode 100644
index 00000000..81ce5ba6
Binary files /dev/null and b/animateditems/30502.gif differ
diff --git a/animateditems/30502.png b/animateditems/30502.png
new file mode 100644
index 00000000..5f91952f
Binary files /dev/null and b/animateditems/30502.png differ
diff --git a/animateditems/30503.gif b/animateditems/30503.gif
new file mode 100644
index 00000000..870b9f97
Binary files /dev/null and b/animateditems/30503.gif differ
diff --git a/animateditems/30503.png b/animateditems/30503.png
new file mode 100644
index 00000000..8309a363
Binary files /dev/null and b/animateditems/30503.png differ
diff --git a/animateditems/3051.gif b/animateditems/3051.gif
new file mode 100644
index 00000000..8c4acc53
Binary files /dev/null and b/animateditems/3051.gif differ
diff --git a/animateditems/3051.png b/animateditems/3051.png
new file mode 100644
index 00000000..44c335f9
Binary files /dev/null and b/animateditems/3051.png differ
diff --git a/animateditems/30523.gif b/animateditems/30523.gif
new file mode 100644
index 00000000..80fa3119
Binary files /dev/null and b/animateditems/30523.gif differ
diff --git a/animateditems/30523.png b/animateditems/30523.png
new file mode 100644
index 00000000..9a240df6
Binary files /dev/null and b/animateditems/30523.png differ
diff --git a/animateditems/30524.gif b/animateditems/30524.gif
new file mode 100644
index 00000000..6a40a648
Binary files /dev/null and b/animateditems/30524.gif differ
diff --git a/animateditems/30524.png b/animateditems/30524.png
new file mode 100644
index 00000000..b6e70ff4
Binary files /dev/null and b/animateditems/30524.png differ
diff --git a/animateditems/30525.gif b/animateditems/30525.gif
new file mode 100644
index 00000000..2ee43dc0
Binary files /dev/null and b/animateditems/30525.gif differ
diff --git a/animateditems/30525.png b/animateditems/30525.png
new file mode 100644
index 00000000..33efb287
Binary files /dev/null and b/animateditems/30525.png differ
diff --git a/animateditems/30585.gif b/animateditems/30585.gif
new file mode 100644
index 00000000..b5ddd171
Binary files /dev/null and b/animateditems/30585.gif differ
diff --git a/animateditems/30585.png b/animateditems/30585.png
new file mode 100644
index 00000000..2c53f346
Binary files /dev/null and b/animateditems/30585.png differ
diff --git a/animateditems/30586.gif b/animateditems/30586.gif
new file mode 100644
index 00000000..6a2285ac
Binary files /dev/null and b/animateditems/30586.gif differ
diff --git a/animateditems/30586.png b/animateditems/30586.png
new file mode 100644
index 00000000..c928faab
Binary files /dev/null and b/animateditems/30586.png differ
diff --git a/animateditems/30587.gif b/animateditems/30587.gif
new file mode 100644
index 00000000..75f0fbff
Binary files /dev/null and b/animateditems/30587.gif differ
diff --git a/animateditems/30587.png b/animateditems/30587.png
new file mode 100644
index 00000000..d94dcad8
Binary files /dev/null and b/animateditems/30587.png differ
diff --git a/animateditems/30588.gif b/animateditems/30588.gif
new file mode 100644
index 00000000..7b10107c
Binary files /dev/null and b/animateditems/30588.gif differ
diff --git a/animateditems/30588.png b/animateditems/30588.png
new file mode 100644
index 00000000..bfb27f02
Binary files /dev/null and b/animateditems/30588.png differ
diff --git a/animateditems/30589.gif b/animateditems/30589.gif
new file mode 100644
index 00000000..0096150d
Binary files /dev/null and b/animateditems/30589.gif differ
diff --git a/animateditems/30589.png b/animateditems/30589.png
new file mode 100644
index 00000000..a115a89f
Binary files /dev/null and b/animateditems/30589.png differ
diff --git a/animateditems/30590.gif b/animateditems/30590.gif
new file mode 100644
index 00000000..fcfd020b
Binary files /dev/null and b/animateditems/30590.gif differ
diff --git a/animateditems/30590.png b/animateditems/30590.png
new file mode 100644
index 00000000..df15b11c
Binary files /dev/null and b/animateditems/30590.png differ
diff --git a/animateditems/3060.gif b/animateditems/3060.gif
new file mode 100644
index 00000000..d4f13c9d
Binary files /dev/null and b/animateditems/3060.gif differ
diff --git a/animateditems/3060.png b/animateditems/3060.png
new file mode 100644
index 00000000..c54756ce
Binary files /dev/null and b/animateditems/3060.png differ
diff --git a/animateditems/3061.gif b/animateditems/3061.gif
new file mode 100644
index 00000000..d4f13c9d
Binary files /dev/null and b/animateditems/3061.gif differ
diff --git a/animateditems/3061.png b/animateditems/3061.png
new file mode 100644
index 00000000..c54756ce
Binary files /dev/null and b/animateditems/3061.png differ
diff --git a/animateditems/3062.gif b/animateditems/3062.gif
new file mode 100644
index 00000000..d4f13c9d
Binary files /dev/null and b/animateditems/3062.gif differ
diff --git a/animateditems/3062.png b/animateditems/3062.png
new file mode 100644
index 00000000..c54756ce
Binary files /dev/null and b/animateditems/3062.png differ
diff --git a/animateditems/3063.gif b/animateditems/3063.gif
new file mode 100644
index 00000000..d4f13c9d
Binary files /dev/null and b/animateditems/3063.gif differ
diff --git a/animateditems/3063.png b/animateditems/3063.png
new file mode 100644
index 00000000..c54756ce
Binary files /dev/null and b/animateditems/3063.png differ
diff --git a/animateditems/3064.gif b/animateditems/3064.gif
new file mode 100644
index 00000000..d4f13c9d
Binary files /dev/null and b/animateditems/3064.gif differ
diff --git a/animateditems/3064.png b/animateditems/3064.png
new file mode 100644
index 00000000..c54756ce
Binary files /dev/null and b/animateditems/3064.png differ
diff --git a/animateditems/3067.gif b/animateditems/3067.gif
new file mode 100644
index 00000000..7d3e82b5
Binary files /dev/null and b/animateditems/3067.gif differ
diff --git a/animateditems/3067.png b/animateditems/3067.png
new file mode 100644
index 00000000..fd5c4109
Binary files /dev/null and b/animateditems/3067.png differ
diff --git a/animateditems/3068.gif b/animateditems/3068.gif
new file mode 100644
index 00000000..06e31d92
Binary files /dev/null and b/animateditems/3068.gif differ
diff --git a/animateditems/3068.png b/animateditems/3068.png
new file mode 100644
index 00000000..71aa16ff
Binary files /dev/null and b/animateditems/3068.png differ
diff --git a/animateditems/3070.gif b/animateditems/3070.gif
new file mode 100644
index 00000000..dc191f01
Binary files /dev/null and b/animateditems/3070.gif differ
diff --git a/animateditems/3070.png b/animateditems/3070.png
new file mode 100644
index 00000000..196c1e74
Binary files /dev/null and b/animateditems/3070.png differ
diff --git a/animateditems/3071.gif b/animateditems/3071.gif
new file mode 100644
index 00000000..e11522aa
Binary files /dev/null and b/animateditems/3071.gif differ
diff --git a/animateditems/3071.png b/animateditems/3071.png
new file mode 100644
index 00000000..9d7967cc
Binary files /dev/null and b/animateditems/3071.png differ
diff --git a/animateditems/3072.gif b/animateditems/3072.gif
new file mode 100644
index 00000000..e11522aa
Binary files /dev/null and b/animateditems/3072.gif differ
diff --git a/animateditems/3072.png b/animateditems/3072.png
new file mode 100644
index 00000000..9d7967cc
Binary files /dev/null and b/animateditems/3072.png differ
diff --git a/animateditems/3073.gif b/animateditems/3073.gif
new file mode 100644
index 00000000..1a7707c6
Binary files /dev/null and b/animateditems/3073.gif differ
diff --git a/animateditems/3073.png b/animateditems/3073.png
new file mode 100644
index 00000000..224ee46e
Binary files /dev/null and b/animateditems/3073.png differ
diff --git a/animateditems/3074.gif b/animateditems/3074.gif
new file mode 100644
index 00000000..97e86e86
Binary files /dev/null and b/animateditems/3074.gif differ
diff --git a/animateditems/3074.png b/animateditems/3074.png
new file mode 100644
index 00000000..beef3dec
Binary files /dev/null and b/animateditems/3074.png differ
diff --git a/animateditems/3075.gif b/animateditems/3075.gif
new file mode 100644
index 00000000..6b3ce389
Binary files /dev/null and b/animateditems/3075.gif differ
diff --git a/animateditems/3075.png b/animateditems/3075.png
new file mode 100644
index 00000000..a428e166
Binary files /dev/null and b/animateditems/3075.png differ
diff --git a/animateditems/3076.gif b/animateditems/3076.gif
new file mode 100644
index 00000000..6b3ce389
Binary files /dev/null and b/animateditems/3076.gif differ
diff --git a/animateditems/3076.png b/animateditems/3076.png
new file mode 100644
index 00000000..a428e166
Binary files /dev/null and b/animateditems/3076.png differ
diff --git a/animateditems/3077.gif b/animateditems/3077.gif
new file mode 100644
index 00000000..0178df6b
Binary files /dev/null and b/animateditems/3077.gif differ
diff --git a/animateditems/3077.png b/animateditems/3077.png
new file mode 100644
index 00000000..a0cf456d
Binary files /dev/null and b/animateditems/3077.png differ
diff --git a/animateditems/3078.gif b/animateditems/3078.gif
new file mode 100644
index 00000000..541f6a61
Binary files /dev/null and b/animateditems/3078.gif differ
diff --git a/animateditems/3078.png b/animateditems/3078.png
new file mode 100644
index 00000000..45b80bdd
Binary files /dev/null and b/animateditems/3078.png differ
diff --git a/animateditems/3079.gif b/animateditems/3079.gif
new file mode 100644
index 00000000..5cf044f8
Binary files /dev/null and b/animateditems/3079.gif differ
diff --git a/animateditems/3079.png b/animateditems/3079.png
new file mode 100644
index 00000000..22c628c4
Binary files /dev/null and b/animateditems/3079.png differ
diff --git a/animateditems/3080.gif b/animateditems/3080.gif
new file mode 100644
index 00000000..853e5c5d
Binary files /dev/null and b/animateditems/3080.gif differ
diff --git a/animateditems/3080.png b/animateditems/3080.png
new file mode 100644
index 00000000..372b7b41
Binary files /dev/null and b/animateditems/3080.png differ
diff --git a/animateditems/3081.gif b/animateditems/3081.gif
new file mode 100644
index 00000000..e19aeff7
Binary files /dev/null and b/animateditems/3081.gif differ
diff --git a/animateditems/3081.png b/animateditems/3081.png
new file mode 100644
index 00000000..268932cd
Binary files /dev/null and b/animateditems/3081.png differ
diff --git a/animateditems/3082.gif b/animateditems/3082.gif
new file mode 100644
index 00000000..b025aa27
Binary files /dev/null and b/animateditems/3082.gif differ
diff --git a/animateditems/3082.png b/animateditems/3082.png
new file mode 100644
index 00000000..ae847cf1
Binary files /dev/null and b/animateditems/3082.png differ
diff --git a/animateditems/3083.gif b/animateditems/3083.gif
new file mode 100644
index 00000000..591910bc
Binary files /dev/null and b/animateditems/3083.gif differ
diff --git a/animateditems/3083.png b/animateditems/3083.png
new file mode 100644
index 00000000..0882f6f9
Binary files /dev/null and b/animateditems/3083.png differ
diff --git a/animateditems/3086.gif b/animateditems/3086.gif
new file mode 100644
index 00000000..e226e1f6
Binary files /dev/null and b/animateditems/3086.gif differ
diff --git a/animateditems/3086.png b/animateditems/3086.png
new file mode 100644
index 00000000..a7925e90
Binary files /dev/null and b/animateditems/3086.png differ
diff --git a/animateditems/3087.gif b/animateditems/3087.gif
new file mode 100644
index 00000000..1143dd81
Binary files /dev/null and b/animateditems/3087.gif differ
diff --git a/animateditems/3087.png b/animateditems/3087.png
new file mode 100644
index 00000000..7f510398
Binary files /dev/null and b/animateditems/3087.png differ
diff --git a/animateditems/3088.gif b/animateditems/3088.gif
new file mode 100644
index 00000000..d5fb4ef5
Binary files /dev/null and b/animateditems/3088.gif differ
diff --git a/animateditems/3088.png b/animateditems/3088.png
new file mode 100644
index 00000000..672fc67c
Binary files /dev/null and b/animateditems/3088.png differ
diff --git a/animateditems/3089.gif b/animateditems/3089.gif
new file mode 100644
index 00000000..d5fb4ef5
Binary files /dev/null and b/animateditems/3089.gif differ
diff --git a/animateditems/3089.png b/animateditems/3089.png
new file mode 100644
index 00000000..672fc67c
Binary files /dev/null and b/animateditems/3089.png differ
diff --git a/animateditems/3090.gif b/animateditems/3090.gif
new file mode 100644
index 00000000..fdfd4f3c
Binary files /dev/null and b/animateditems/3090.gif differ
diff --git a/animateditems/3090.png b/animateditems/3090.png
new file mode 100644
index 00000000..1f7246e7
Binary files /dev/null and b/animateditems/3090.png differ
diff --git a/animateditems/3091.gif b/animateditems/3091.gif
new file mode 100644
index 00000000..6f755b1d
Binary files /dev/null and b/animateditems/3091.gif differ
diff --git a/animateditems/3091.png b/animateditems/3091.png
new file mode 100644
index 00000000..2c443f24
Binary files /dev/null and b/animateditems/3091.png differ
diff --git a/animateditems/3092.gif b/animateditems/3092.gif
new file mode 100644
index 00000000..a0026e46
Binary files /dev/null and b/animateditems/3092.gif differ
diff --git a/animateditems/3092.png b/animateditems/3092.png
new file mode 100644
index 00000000..5daa2fef
Binary files /dev/null and b/animateditems/3092.png differ
diff --git a/animateditems/3093.gif b/animateditems/3093.gif
new file mode 100644
index 00000000..a0026e46
Binary files /dev/null and b/animateditems/3093.gif differ
diff --git a/animateditems/3093.png b/animateditems/3093.png
new file mode 100644
index 00000000..5daa2fef
Binary files /dev/null and b/animateditems/3093.png differ
diff --git a/animateditems/3094.gif b/animateditems/3094.gif
new file mode 100644
index 00000000..a0026e46
Binary files /dev/null and b/animateditems/3094.gif differ
diff --git a/animateditems/3094.png b/animateditems/3094.png
new file mode 100644
index 00000000..5daa2fef
Binary files /dev/null and b/animateditems/3094.png differ
diff --git a/animateditems/3095.gif b/animateditems/3095.gif
new file mode 100644
index 00000000..d466a4ea
Binary files /dev/null and b/animateditems/3095.gif differ
diff --git a/animateditems/3095.png b/animateditems/3095.png
new file mode 100644
index 00000000..a4318393
Binary files /dev/null and b/animateditems/3095.png differ
diff --git a/animateditems/3096.gif b/animateditems/3096.gif
new file mode 100644
index 00000000..596146a3
Binary files /dev/null and b/animateditems/3096.gif differ
diff --git a/animateditems/3096.png b/animateditems/3096.png
new file mode 100644
index 00000000..311f3c92
Binary files /dev/null and b/animateditems/3096.png differ
diff --git a/animateditems/3097.gif b/animateditems/3097.gif
new file mode 100644
index 00000000..a8fca2b2
Binary files /dev/null and b/animateditems/3097.gif differ
diff --git a/animateditems/3097.png b/animateditems/3097.png
new file mode 100644
index 00000000..97ec3736
Binary files /dev/null and b/animateditems/3097.png differ
diff --git a/animateditems/3098.gif b/animateditems/3098.gif
new file mode 100644
index 00000000..a8fca2b2
Binary files /dev/null and b/animateditems/3098.gif differ
diff --git a/animateditems/3098.png b/animateditems/3098.png
new file mode 100644
index 00000000..97ec3736
Binary files /dev/null and b/animateditems/3098.png differ
diff --git a/animateditems/3099.gif b/animateditems/3099.gif
new file mode 100644
index 00000000..f924970b
Binary files /dev/null and b/animateditems/3099.gif differ
diff --git a/animateditems/3099.png b/animateditems/3099.png
new file mode 100644
index 00000000..5e214146
Binary files /dev/null and b/animateditems/3099.png differ
diff --git a/animateditems/3100.gif b/animateditems/3100.gif
new file mode 100644
index 00000000..de82e0e9
Binary files /dev/null and b/animateditems/3100.gif differ
diff --git a/animateditems/3100.png b/animateditems/3100.png
new file mode 100644
index 00000000..5c98005a
Binary files /dev/null and b/animateditems/3100.png differ
diff --git a/animateditems/3101.gif b/animateditems/3101.gif
new file mode 100644
index 00000000..f0e66334
Binary files /dev/null and b/animateditems/3101.gif differ
diff --git a/animateditems/3101.png b/animateditems/3101.png
new file mode 100644
index 00000000..ebf70f1b
Binary files /dev/null and b/animateditems/3101.png differ
diff --git a/animateditems/3102.gif b/animateditems/3102.gif
new file mode 100644
index 00000000..f0e66334
Binary files /dev/null and b/animateditems/3102.gif differ
diff --git a/animateditems/3102.png b/animateditems/3102.png
new file mode 100644
index 00000000..ebf70f1b
Binary files /dev/null and b/animateditems/3102.png differ
diff --git a/animateditems/3103.gif b/animateditems/3103.gif
new file mode 100644
index 00000000..48a0bf9f
Binary files /dev/null and b/animateditems/3103.gif differ
diff --git a/animateditems/3103.png b/animateditems/3103.png
new file mode 100644
index 00000000..245d81e3
Binary files /dev/null and b/animateditems/3103.png differ
diff --git a/animateditems/3108.gif b/animateditems/3108.gif
new file mode 100644
index 00000000..30434d38
Binary files /dev/null and b/animateditems/3108.gif differ
diff --git a/animateditems/3108.png b/animateditems/3108.png
new file mode 100644
index 00000000..469987f1
Binary files /dev/null and b/animateditems/3108.png differ
diff --git a/animateditems/31117.gif b/animateditems/31117.gif
new file mode 100644
index 00000000..74d2d0ed
Binary files /dev/null and b/animateditems/31117.gif differ
diff --git a/animateditems/31117.png b/animateditems/31117.png
new file mode 100644
index 00000000..33b4afce
Binary files /dev/null and b/animateditems/31117.png differ
diff --git a/animateditems/31119.gif b/animateditems/31119.gif
new file mode 100644
index 00000000..adff75d9
Binary files /dev/null and b/animateditems/31119.gif differ
diff --git a/animateditems/31119.png b/animateditems/31119.png
new file mode 100644
index 00000000..484b650a
Binary files /dev/null and b/animateditems/31119.png differ
diff --git a/animateditems/31120.gif b/animateditems/31120.gif
new file mode 100644
index 00000000..ebf14171
Binary files /dev/null and b/animateditems/31120.gif differ
diff --git a/animateditems/31120.png b/animateditems/31120.png
new file mode 100644
index 00000000..11c2252f
Binary files /dev/null and b/animateditems/31120.png differ
diff --git a/animateditems/31121.gif b/animateditems/31121.gif
new file mode 100644
index 00000000..a4e3b5a8
Binary files /dev/null and b/animateditems/31121.gif differ
diff --git a/animateditems/31121.png b/animateditems/31121.png
new file mode 100644
index 00000000..fee8a5b5
Binary files /dev/null and b/animateditems/31121.png differ
diff --git a/animateditems/31122.gif b/animateditems/31122.gif
new file mode 100644
index 00000000..a6205f89
Binary files /dev/null and b/animateditems/31122.gif differ
diff --git a/animateditems/31122.png b/animateditems/31122.png
new file mode 100644
index 00000000..d69026d2
Binary files /dev/null and b/animateditems/31122.png differ
diff --git a/animateditems/31124.gif b/animateditems/31124.gif
new file mode 100644
index 00000000..9ab771ac
Binary files /dev/null and b/animateditems/31124.gif differ
diff --git a/animateditems/31124.png b/animateditems/31124.png
new file mode 100644
index 00000000..ac397ee4
Binary files /dev/null and b/animateditems/31124.png differ
diff --git a/animateditems/3113.gif b/animateditems/3113.gif
new file mode 100644
index 00000000..61282e7f
Binary files /dev/null and b/animateditems/3113.gif differ
diff --git a/animateditems/3113.png b/animateditems/3113.png
new file mode 100644
index 00000000..8b646b79
Binary files /dev/null and b/animateditems/3113.png differ
diff --git a/animateditems/31131.gif b/animateditems/31131.gif
new file mode 100644
index 00000000..339e6670
Binary files /dev/null and b/animateditems/31131.gif differ
diff --git a/animateditems/31131.png b/animateditems/31131.png
new file mode 100644
index 00000000..b2ec00b2
Binary files /dev/null and b/animateditems/31131.png differ
diff --git a/animateditems/31132.gif b/animateditems/31132.gif
new file mode 100644
index 00000000..900f01ca
Binary files /dev/null and b/animateditems/31132.gif differ
diff --git a/animateditems/31132.png b/animateditems/31132.png
new file mode 100644
index 00000000..52885adb
Binary files /dev/null and b/animateditems/31132.png differ
diff --git a/animateditems/31133.gif b/animateditems/31133.gif
new file mode 100644
index 00000000..cb4a8674
Binary files /dev/null and b/animateditems/31133.gif differ
diff --git a/animateditems/31133.png b/animateditems/31133.png
new file mode 100644
index 00000000..7bdfbcf9
Binary files /dev/null and b/animateditems/31133.png differ
diff --git a/animateditems/31134.gif b/animateditems/31134.gif
new file mode 100644
index 00000000..a77c0946
Binary files /dev/null and b/animateditems/31134.gif differ
diff --git a/animateditems/31134.png b/animateditems/31134.png
new file mode 100644
index 00000000..4344cb60
Binary files /dev/null and b/animateditems/31134.png differ
diff --git a/animateditems/31139.gif b/animateditems/31139.gif
new file mode 100644
index 00000000..fbdd18df
Binary files /dev/null and b/animateditems/31139.gif differ
diff --git a/animateditems/31139.png b/animateditems/31139.png
new file mode 100644
index 00000000..d1a5c80a
Binary files /dev/null and b/animateditems/31139.png differ
diff --git a/animateditems/3114.gif b/animateditems/3114.gif
new file mode 100644
index 00000000..2d2ce6ba
Binary files /dev/null and b/animateditems/3114.gif differ
diff --git a/animateditems/3114.png b/animateditems/3114.png
new file mode 100644
index 00000000..728f282a
Binary files /dev/null and b/animateditems/3114.png differ
diff --git a/animateditems/31140.gif b/animateditems/31140.gif
new file mode 100644
index 00000000..1f487a1d
Binary files /dev/null and b/animateditems/31140.gif differ
diff --git a/animateditems/31140.png b/animateditems/31140.png
new file mode 100644
index 00000000..40d1bfba
Binary files /dev/null and b/animateditems/31140.png differ
diff --git a/animateditems/31141.gif b/animateditems/31141.gif
new file mode 100644
index 00000000..6cfa27c0
Binary files /dev/null and b/animateditems/31141.gif differ
diff --git a/animateditems/31141.png b/animateditems/31141.png
new file mode 100644
index 00000000..5b35de09
Binary files /dev/null and b/animateditems/31141.png differ
diff --git a/animateditems/31144.gif b/animateditems/31144.gif
new file mode 100644
index 00000000..3f020ae3
Binary files /dev/null and b/animateditems/31144.gif differ
diff --git a/animateditems/31144.png b/animateditems/31144.png
new file mode 100644
index 00000000..5827ed24
Binary files /dev/null and b/animateditems/31144.png differ
diff --git a/animateditems/31145.gif b/animateditems/31145.gif
new file mode 100644
index 00000000..9ab56832
Binary files /dev/null and b/animateditems/31145.gif differ
diff --git a/animateditems/31145.png b/animateditems/31145.png
new file mode 100644
index 00000000..11d2c55d
Binary files /dev/null and b/animateditems/31145.png differ
diff --git a/animateditems/31146.gif b/animateditems/31146.gif
new file mode 100644
index 00000000..983b1258
Binary files /dev/null and b/animateditems/31146.gif differ
diff --git a/animateditems/31146.png b/animateditems/31146.png
new file mode 100644
index 00000000..951c5111
Binary files /dev/null and b/animateditems/31146.png differ
diff --git a/animateditems/31147.gif b/animateditems/31147.gif
new file mode 100644
index 00000000..7ac53902
Binary files /dev/null and b/animateditems/31147.gif differ
diff --git a/animateditems/31147.png b/animateditems/31147.png
new file mode 100644
index 00000000..e2223f9d
Binary files /dev/null and b/animateditems/31147.png differ
diff --git a/animateditems/31148.gif b/animateditems/31148.gif
new file mode 100644
index 00000000..6e725588
Binary files /dev/null and b/animateditems/31148.gif differ
diff --git a/animateditems/31148.png b/animateditems/31148.png
new file mode 100644
index 00000000..c5103089
Binary files /dev/null and b/animateditems/31148.png differ
diff --git a/animateditems/31149.gif b/animateditems/31149.gif
new file mode 100644
index 00000000..cd1d7193
Binary files /dev/null and b/animateditems/31149.gif differ
diff --git a/animateditems/31149.png b/animateditems/31149.png
new file mode 100644
index 00000000..30eaf8ec
Binary files /dev/null and b/animateditems/31149.png differ
diff --git a/animateditems/3115.gif b/animateditems/3115.gif
new file mode 100644
index 00000000..0774fd8b
Binary files /dev/null and b/animateditems/3115.gif differ
diff --git a/animateditems/3115.png b/animateditems/3115.png
new file mode 100644
index 00000000..b20118e0
Binary files /dev/null and b/animateditems/3115.png differ
diff --git a/animateditems/31150.gif b/animateditems/31150.gif
new file mode 100644
index 00000000..6796edf0
Binary files /dev/null and b/animateditems/31150.gif differ
diff --git a/animateditems/31150.png b/animateditems/31150.png
new file mode 100644
index 00000000..77f1954e
Binary files /dev/null and b/animateditems/31150.png differ
diff --git a/animateditems/31151.gif b/animateditems/31151.gif
new file mode 100644
index 00000000..c2f26d6e
Binary files /dev/null and b/animateditems/31151.gif differ
diff --git a/animateditems/31151.png b/animateditems/31151.png
new file mode 100644
index 00000000..7c96bc8e
Binary files /dev/null and b/animateditems/31151.png differ
diff --git a/animateditems/3116.gif b/animateditems/3116.gif
new file mode 100644
index 00000000..0774fd8b
Binary files /dev/null and b/animateditems/3116.gif differ
diff --git a/animateditems/3116.png b/animateditems/3116.png
new file mode 100644
index 00000000..b20118e0
Binary files /dev/null and b/animateditems/3116.png differ
diff --git a/animateditems/31171.gif b/animateditems/31171.gif
new file mode 100644
index 00000000..1d458d41
Binary files /dev/null and b/animateditems/31171.gif differ
diff --git a/animateditems/31171.png b/animateditems/31171.png
new file mode 100644
index 00000000..b338208a
Binary files /dev/null and b/animateditems/31171.png differ
diff --git a/animateditems/31174.gif b/animateditems/31174.gif
new file mode 100644
index 00000000..607824b5
Binary files /dev/null and b/animateditems/31174.gif differ
diff --git a/animateditems/31174.png b/animateditems/31174.png
new file mode 100644
index 00000000..002df770
Binary files /dev/null and b/animateditems/31174.png differ
diff --git a/animateditems/31181.gif b/animateditems/31181.gif
new file mode 100644
index 00000000..fb2ce1f7
Binary files /dev/null and b/animateditems/31181.gif differ
diff --git a/animateditems/31181.png b/animateditems/31181.png
new file mode 100644
index 00000000..6767ceb8
Binary files /dev/null and b/animateditems/31181.png differ
diff --git a/animateditems/31182.gif b/animateditems/31182.gif
new file mode 100644
index 00000000..3ff19d28
Binary files /dev/null and b/animateditems/31182.gif differ
diff --git a/animateditems/31182.png b/animateditems/31182.png
new file mode 100644
index 00000000..dc549279
Binary files /dev/null and b/animateditems/31182.png differ
diff --git a/animateditems/3119.gif b/animateditems/3119.gif
new file mode 100644
index 00000000..89295f68
Binary files /dev/null and b/animateditems/3119.gif differ
diff --git a/animateditems/3119.png b/animateditems/3119.png
new file mode 100644
index 00000000..71d13255
Binary files /dev/null and b/animateditems/3119.png differ
diff --git a/animateditems/31191.gif b/animateditems/31191.gif
new file mode 100644
index 00000000..c80a6b5b
Binary files /dev/null and b/animateditems/31191.gif differ
diff --git a/animateditems/31191.png b/animateditems/31191.png
new file mode 100644
index 00000000..28f37a8f
Binary files /dev/null and b/animateditems/31191.png differ
diff --git a/animateditems/31192.gif b/animateditems/31192.gif
new file mode 100644
index 00000000..4f51b242
Binary files /dev/null and b/animateditems/31192.gif differ
diff --git a/animateditems/31192.png b/animateditems/31192.png
new file mode 100644
index 00000000..e03636b7
Binary files /dev/null and b/animateditems/31192.png differ
diff --git a/animateditems/31193.gif b/animateditems/31193.gif
new file mode 100644
index 00000000..3e1aad88
Binary files /dev/null and b/animateditems/31193.gif differ
diff --git a/animateditems/31193.png b/animateditems/31193.png
new file mode 100644
index 00000000..12dbc49e
Binary files /dev/null and b/animateditems/31193.png differ
diff --git a/animateditems/31194.gif b/animateditems/31194.gif
new file mode 100644
index 00000000..36e7ab08
Binary files /dev/null and b/animateditems/31194.gif differ
diff --git a/animateditems/31194.png b/animateditems/31194.png
new file mode 100644
index 00000000..406891ff
Binary files /dev/null and b/animateditems/31194.png differ
diff --git a/animateditems/31196.gif b/animateditems/31196.gif
new file mode 100644
index 00000000..c257a180
Binary files /dev/null and b/animateditems/31196.gif differ
diff --git a/animateditems/31196.png b/animateditems/31196.png
new file mode 100644
index 00000000..4cd7a7c0
Binary files /dev/null and b/animateditems/31196.png differ
diff --git a/animateditems/31197.gif b/animateditems/31197.gif
new file mode 100644
index 00000000..4e50db03
Binary files /dev/null and b/animateditems/31197.gif differ
diff --git a/animateditems/31197.png b/animateditems/31197.png
new file mode 100644
index 00000000..42c8675f
Binary files /dev/null and b/animateditems/31197.png differ
diff --git a/animateditems/31198.gif b/animateditems/31198.gif
new file mode 100644
index 00000000..31509d08
Binary files /dev/null and b/animateditems/31198.gif differ
diff --git a/animateditems/31198.png b/animateditems/31198.png
new file mode 100644
index 00000000..7ad54932
Binary files /dev/null and b/animateditems/31198.png differ
diff --git a/animateditems/31199.gif b/animateditems/31199.gif
new file mode 100644
index 00000000..d877769e
Binary files /dev/null and b/animateditems/31199.gif differ
diff --git a/animateditems/31199.png b/animateditems/31199.png
new file mode 100644
index 00000000..5212dd2c
Binary files /dev/null and b/animateditems/31199.png differ
diff --git a/animateditems/3120.gif b/animateditems/3120.gif
new file mode 100644
index 00000000..f131a5e3
Binary files /dev/null and b/animateditems/3120.gif differ
diff --git a/animateditems/3120.png b/animateditems/3120.png
new file mode 100644
index 00000000..929b3f0a
Binary files /dev/null and b/animateditems/3120.png differ
diff --git a/animateditems/31200.gif b/animateditems/31200.gif
new file mode 100644
index 00000000..c8097f56
Binary files /dev/null and b/animateditems/31200.gif differ
diff --git a/animateditems/31200.png b/animateditems/31200.png
new file mode 100644
index 00000000..460e12d6
Binary files /dev/null and b/animateditems/31200.png differ
diff --git a/animateditems/31208.gif b/animateditems/31208.gif
new file mode 100644
index 00000000..43097b8c
Binary files /dev/null and b/animateditems/31208.gif differ
diff --git a/animateditems/31208.png b/animateditems/31208.png
new file mode 100644
index 00000000..f57f9d39
Binary files /dev/null and b/animateditems/31208.png differ
diff --git a/animateditems/31209.gif b/animateditems/31209.gif
new file mode 100644
index 00000000..12a4fe22
Binary files /dev/null and b/animateditems/31209.gif differ
diff --git a/animateditems/31209.png b/animateditems/31209.png
new file mode 100644
index 00000000..71a10002
Binary files /dev/null and b/animateditems/31209.png differ
diff --git a/animateditems/3121.gif b/animateditems/3121.gif
new file mode 100644
index 00000000..c80fe96e
Binary files /dev/null and b/animateditems/3121.gif differ
diff --git a/animateditems/3121.png b/animateditems/3121.png
new file mode 100644
index 00000000..516a85f2
Binary files /dev/null and b/animateditems/3121.png differ
diff --git a/animateditems/31210.gif b/animateditems/31210.gif
new file mode 100644
index 00000000..4ef55015
Binary files /dev/null and b/animateditems/31210.gif differ
diff --git a/animateditems/31210.png b/animateditems/31210.png
new file mode 100644
index 00000000..949666a2
Binary files /dev/null and b/animateditems/31210.png differ
diff --git a/animateditems/31211.gif b/animateditems/31211.gif
new file mode 100644
index 00000000..f96ba131
Binary files /dev/null and b/animateditems/31211.gif differ
diff --git a/animateditems/31211.png b/animateditems/31211.png
new file mode 100644
index 00000000..ae8dbd6b
Binary files /dev/null and b/animateditems/31211.png differ
diff --git a/animateditems/31212.gif b/animateditems/31212.gif
new file mode 100644
index 00000000..3056b75f
Binary files /dev/null and b/animateditems/31212.gif differ
diff --git a/animateditems/31212.png b/animateditems/31212.png
new file mode 100644
index 00000000..2657edc1
Binary files /dev/null and b/animateditems/31212.png differ
diff --git a/animateditems/31213.gif b/animateditems/31213.gif
new file mode 100644
index 00000000..67e19110
Binary files /dev/null and b/animateditems/31213.gif differ
diff --git a/animateditems/31213.png b/animateditems/31213.png
new file mode 100644
index 00000000..e3b7842c
Binary files /dev/null and b/animateditems/31213.png differ
diff --git a/animateditems/31222.gif b/animateditems/31222.gif
new file mode 100644
index 00000000..a83aa054
Binary files /dev/null and b/animateditems/31222.gif differ
diff --git a/animateditems/31222.png b/animateditems/31222.png
new file mode 100644
index 00000000..48aa1c07
Binary files /dev/null and b/animateditems/31222.png differ
diff --git a/animateditems/31223.gif b/animateditems/31223.gif
new file mode 100644
index 00000000..7880ec9a
Binary files /dev/null and b/animateditems/31223.gif differ
diff --git a/animateditems/31223.png b/animateditems/31223.png
new file mode 100644
index 00000000..e39f2540
Binary files /dev/null and b/animateditems/31223.png differ
diff --git a/animateditems/31224.gif b/animateditems/31224.gif
new file mode 100644
index 00000000..39cefd3e
Binary files /dev/null and b/animateditems/31224.gif differ
diff --git a/animateditems/31224.png b/animateditems/31224.png
new file mode 100644
index 00000000..70c8e31c
Binary files /dev/null and b/animateditems/31224.png differ
diff --git a/animateditems/31225.gif b/animateditems/31225.gif
new file mode 100644
index 00000000..a57128ae
Binary files /dev/null and b/animateditems/31225.gif differ
diff --git a/animateditems/31225.png b/animateditems/31225.png
new file mode 100644
index 00000000..d980b380
Binary files /dev/null and b/animateditems/31225.png differ
diff --git a/animateditems/31226.gif b/animateditems/31226.gif
new file mode 100644
index 00000000..92ea9f00
Binary files /dev/null and b/animateditems/31226.gif differ
diff --git a/animateditems/31226.png b/animateditems/31226.png
new file mode 100644
index 00000000..4d8a4e26
Binary files /dev/null and b/animateditems/31226.png differ
diff --git a/animateditems/31227.gif b/animateditems/31227.gif
new file mode 100644
index 00000000..e96d0b15
Binary files /dev/null and b/animateditems/31227.gif differ
diff --git a/animateditems/31227.png b/animateditems/31227.png
new file mode 100644
index 00000000..5a5cd5b2
Binary files /dev/null and b/animateditems/31227.png differ
diff --git a/animateditems/31228.gif b/animateditems/31228.gif
new file mode 100644
index 00000000..f53f8900
Binary files /dev/null and b/animateditems/31228.gif differ
diff --git a/animateditems/31228.png b/animateditems/31228.png
new file mode 100644
index 00000000..0340b41e
Binary files /dev/null and b/animateditems/31228.png differ
diff --git a/animateditems/3130.gif b/animateditems/3130.gif
new file mode 100644
index 00000000..14cf7ef3
Binary files /dev/null and b/animateditems/3130.gif differ
diff --git a/animateditems/3130.png b/animateditems/3130.png
new file mode 100644
index 00000000..3f3d0613
Binary files /dev/null and b/animateditems/3130.png differ
diff --git a/animateditems/31306.gif b/animateditems/31306.gif
new file mode 100644
index 00000000..e33a0274
Binary files /dev/null and b/animateditems/31306.gif differ
diff --git a/animateditems/31306.png b/animateditems/31306.png
new file mode 100644
index 00000000..0df99acc
Binary files /dev/null and b/animateditems/31306.png differ
diff --git a/animateditems/3131.gif b/animateditems/3131.gif
new file mode 100644
index 00000000..14cf7ef3
Binary files /dev/null and b/animateditems/3131.gif differ
diff --git a/animateditems/3131.png b/animateditems/3131.png
new file mode 100644
index 00000000..3f3d0613
Binary files /dev/null and b/animateditems/3131.png differ
diff --git a/animateditems/3132.gif b/animateditems/3132.gif
new file mode 100644
index 00000000..14cf7ef3
Binary files /dev/null and b/animateditems/3132.gif differ
diff --git a/animateditems/3132.png b/animateditems/3132.png
new file mode 100644
index 00000000..3f3d0613
Binary files /dev/null and b/animateditems/3132.png differ
diff --git a/animateditems/3133.gif b/animateditems/3133.gif
new file mode 100644
index 00000000..d4f13c9d
Binary files /dev/null and b/animateditems/3133.gif differ
diff --git a/animateditems/3133.png b/animateditems/3133.png
new file mode 100644
index 00000000..c54756ce
Binary files /dev/null and b/animateditems/3133.png differ
diff --git a/animateditems/3134.gif b/animateditems/3134.gif
new file mode 100644
index 00000000..d4f13c9d
Binary files /dev/null and b/animateditems/3134.gif differ
diff --git a/animateditems/3134.png b/animateditems/3134.png
new file mode 100644
index 00000000..c54756ce
Binary files /dev/null and b/animateditems/3134.png differ
diff --git a/animateditems/31358.gif b/animateditems/31358.gif
new file mode 100644
index 00000000..4ef29ebc
Binary files /dev/null and b/animateditems/31358.gif differ
diff --git a/animateditems/31358.png b/animateditems/31358.png
new file mode 100644
index 00000000..49493640
Binary files /dev/null and b/animateditems/31358.png differ
diff --git a/animateditems/31363.gif b/animateditems/31363.gif
new file mode 100644
index 00000000..83ca66ee
Binary files /dev/null and b/animateditems/31363.gif differ
diff --git a/animateditems/31363.png b/animateditems/31363.png
new file mode 100644
index 00000000..3f67f451
Binary files /dev/null and b/animateditems/31363.png differ
diff --git a/animateditems/31364.gif b/animateditems/31364.gif
new file mode 100644
index 00000000..17c11f04
Binary files /dev/null and b/animateditems/31364.gif differ
diff --git a/animateditems/31364.png b/animateditems/31364.png
new file mode 100644
index 00000000..9873e00d
Binary files /dev/null and b/animateditems/31364.png differ
diff --git a/animateditems/31365.gif b/animateditems/31365.gif
new file mode 100644
index 00000000..eb641475
Binary files /dev/null and b/animateditems/31365.gif differ
diff --git a/animateditems/31365.png b/animateditems/31365.png
new file mode 100644
index 00000000..753af371
Binary files /dev/null and b/animateditems/31365.png differ
diff --git a/animateditems/31366.gif b/animateditems/31366.gif
new file mode 100644
index 00000000..6f92e520
Binary files /dev/null and b/animateditems/31366.gif differ
diff --git a/animateditems/31366.png b/animateditems/31366.png
new file mode 100644
index 00000000..82dc0b3b
Binary files /dev/null and b/animateditems/31366.png differ
diff --git a/animateditems/31370.gif b/animateditems/31370.gif
new file mode 100644
index 00000000..c0363967
Binary files /dev/null and b/animateditems/31370.gif differ
diff --git a/animateditems/31370.png b/animateditems/31370.png
new file mode 100644
index 00000000..c59ed49b
Binary files /dev/null and b/animateditems/31370.png differ
diff --git a/animateditems/31371.gif b/animateditems/31371.gif
new file mode 100644
index 00000000..3d71d9cf
Binary files /dev/null and b/animateditems/31371.gif differ
diff --git a/animateditems/31371.png b/animateditems/31371.png
new file mode 100644
index 00000000..a7568c9f
Binary files /dev/null and b/animateditems/31371.png differ
diff --git a/animateditems/31372.gif b/animateditems/31372.gif
new file mode 100644
index 00000000..f1319cff
Binary files /dev/null and b/animateditems/31372.gif differ
diff --git a/animateditems/31372.png b/animateditems/31372.png
new file mode 100644
index 00000000..1d0295b0
Binary files /dev/null and b/animateditems/31372.png differ
diff --git a/animateditems/31373.gif b/animateditems/31373.gif
new file mode 100644
index 00000000..8d7cd633
Binary files /dev/null and b/animateditems/31373.gif differ
diff --git a/animateditems/31373.png b/animateditems/31373.png
new file mode 100644
index 00000000..b446b1c3
Binary files /dev/null and b/animateditems/31373.png differ
diff --git a/animateditems/31374.gif b/animateditems/31374.gif
new file mode 100644
index 00000000..432e4272
Binary files /dev/null and b/animateditems/31374.gif differ
diff --git a/animateditems/31374.png b/animateditems/31374.png
new file mode 100644
index 00000000..fc1042d5
Binary files /dev/null and b/animateditems/31374.png differ
diff --git a/animateditems/31375.gif b/animateditems/31375.gif
new file mode 100644
index 00000000..feac414c
Binary files /dev/null and b/animateditems/31375.gif differ
diff --git a/animateditems/31375.png b/animateditems/31375.png
new file mode 100644
index 00000000..9025770f
Binary files /dev/null and b/animateditems/31375.png differ
diff --git a/animateditems/31376.gif b/animateditems/31376.gif
new file mode 100644
index 00000000..052eccdf
Binary files /dev/null and b/animateditems/31376.gif differ
diff --git a/animateditems/31376.png b/animateditems/31376.png
new file mode 100644
index 00000000..f880182b
Binary files /dev/null and b/animateditems/31376.png differ
diff --git a/animateditems/31377.gif b/animateditems/31377.gif
new file mode 100644
index 00000000..9d2dacd7
Binary files /dev/null and b/animateditems/31377.gif differ
diff --git a/animateditems/31377.png b/animateditems/31377.png
new file mode 100644
index 00000000..ce73cc88
Binary files /dev/null and b/animateditems/31377.png differ
diff --git a/animateditems/31378.gif b/animateditems/31378.gif
new file mode 100644
index 00000000..9304114a
Binary files /dev/null and b/animateditems/31378.gif differ
diff --git a/animateditems/31378.png b/animateditems/31378.png
new file mode 100644
index 00000000..cb031536
Binary files /dev/null and b/animateditems/31378.png differ
diff --git a/animateditems/31379.gif b/animateditems/31379.gif
new file mode 100644
index 00000000..6819e8b2
Binary files /dev/null and b/animateditems/31379.gif differ
diff --git a/animateditems/31379.png b/animateditems/31379.png
new file mode 100644
index 00000000..b62c4997
Binary files /dev/null and b/animateditems/31379.png differ
diff --git a/animateditems/31380.gif b/animateditems/31380.gif
new file mode 100644
index 00000000..39401c54
Binary files /dev/null and b/animateditems/31380.gif differ
diff --git a/animateditems/31380.png b/animateditems/31380.png
new file mode 100644
index 00000000..d222f3a5
Binary files /dev/null and b/animateditems/31380.png differ
diff --git a/animateditems/31381.gif b/animateditems/31381.gif
new file mode 100644
index 00000000..3f2af014
Binary files /dev/null and b/animateditems/31381.gif differ
diff --git a/animateditems/31381.png b/animateditems/31381.png
new file mode 100644
index 00000000..3acf0788
Binary files /dev/null and b/animateditems/31381.png differ
diff --git a/animateditems/31402.gif b/animateditems/31402.gif
new file mode 100644
index 00000000..bf25c7db
Binary files /dev/null and b/animateditems/31402.gif differ
diff --git a/animateditems/31402.png b/animateditems/31402.png
new file mode 100644
index 00000000..06f12266
Binary files /dev/null and b/animateditems/31402.png differ
diff --git a/animateditems/31403.gif b/animateditems/31403.gif
new file mode 100644
index 00000000..bf25c7db
Binary files /dev/null and b/animateditems/31403.gif differ
diff --git a/animateditems/31403.png b/animateditems/31403.png
new file mode 100644
index 00000000..06f12266
Binary files /dev/null and b/animateditems/31403.png differ
diff --git a/animateditems/31404.gif b/animateditems/31404.gif
new file mode 100644
index 00000000..bf25c7db
Binary files /dev/null and b/animateditems/31404.gif differ
diff --git a/animateditems/31404.png b/animateditems/31404.png
new file mode 100644
index 00000000..06f12266
Binary files /dev/null and b/animateditems/31404.png differ
diff --git a/animateditems/31405.gif b/animateditems/31405.gif
new file mode 100644
index 00000000..bf25c7db
Binary files /dev/null and b/animateditems/31405.gif differ
diff --git a/animateditems/31405.png b/animateditems/31405.png
new file mode 100644
index 00000000..06f12266
Binary files /dev/null and b/animateditems/31405.png differ
diff --git a/animateditems/31447.gif b/animateditems/31447.gif
new file mode 100644
index 00000000..d0df2813
Binary files /dev/null and b/animateditems/31447.gif differ
diff --git a/animateditems/31447.png b/animateditems/31447.png
new file mode 100644
index 00000000..3d74043d
Binary files /dev/null and b/animateditems/31447.png differ
diff --git a/animateditems/31448.gif b/animateditems/31448.gif
new file mode 100644
index 00000000..e4636405
Binary files /dev/null and b/animateditems/31448.gif differ
diff --git a/animateditems/31448.png b/animateditems/31448.png
new file mode 100644
index 00000000..d445bace
Binary files /dev/null and b/animateditems/31448.png differ
diff --git a/animateditems/31449.gif b/animateditems/31449.gif
new file mode 100644
index 00000000..e71256e3
Binary files /dev/null and b/animateditems/31449.gif differ
diff --git a/animateditems/31449.png b/animateditems/31449.png
new file mode 100644
index 00000000..e18c86c3
Binary files /dev/null and b/animateditems/31449.png differ
diff --git a/animateditems/31477.gif b/animateditems/31477.gif
new file mode 100644
index 00000000..cea3e451
Binary files /dev/null and b/animateditems/31477.gif differ
diff --git a/animateditems/31477.png b/animateditems/31477.png
new file mode 100644
index 00000000..7281a73b
Binary files /dev/null and b/animateditems/31477.png differ
diff --git a/animateditems/31478.gif b/animateditems/31478.gif
new file mode 100644
index 00000000..973e3035
Binary files /dev/null and b/animateditems/31478.gif differ
diff --git a/animateditems/31478.png b/animateditems/31478.png
new file mode 100644
index 00000000..1cf3e93d
Binary files /dev/null and b/animateditems/31478.png differ
diff --git a/animateditems/31479.gif b/animateditems/31479.gif
new file mode 100644
index 00000000..8b38e302
Binary files /dev/null and b/animateditems/31479.gif differ
diff --git a/animateditems/31479.png b/animateditems/31479.png
new file mode 100644
index 00000000..79fdb885
Binary files /dev/null and b/animateditems/31479.png differ
diff --git a/animateditems/31480.gif b/animateditems/31480.gif
new file mode 100644
index 00000000..663cc07a
Binary files /dev/null and b/animateditems/31480.gif differ
diff --git a/animateditems/31480.png b/animateditems/31480.png
new file mode 100644
index 00000000..1fc84fb7
Binary files /dev/null and b/animateditems/31480.png differ
diff --git a/animateditems/31481.gif b/animateditems/31481.gif
new file mode 100644
index 00000000..054960c1
Binary files /dev/null and b/animateditems/31481.gif differ
diff --git a/animateditems/31481.png b/animateditems/31481.png
new file mode 100644
index 00000000..77ffdb37
Binary files /dev/null and b/animateditems/31481.png differ
diff --git a/animateditems/31482.gif b/animateditems/31482.gif
new file mode 100644
index 00000000..7e6bc0dc
Binary files /dev/null and b/animateditems/31482.gif differ
diff --git a/animateditems/31482.png b/animateditems/31482.png
new file mode 100644
index 00000000..dc594ad5
Binary files /dev/null and b/animateditems/31482.png differ
diff --git a/animateditems/31485.gif b/animateditems/31485.gif
new file mode 100644
index 00000000..3b2dfcb2
Binary files /dev/null and b/animateditems/31485.gif differ
diff --git a/animateditems/31485.png b/animateditems/31485.png
new file mode 100644
index 00000000..40425414
Binary files /dev/null and b/animateditems/31485.png differ
diff --git a/animateditems/31486.gif b/animateditems/31486.gif
new file mode 100644
index 00000000..3b2dfcb2
Binary files /dev/null and b/animateditems/31486.gif differ
diff --git a/animateditems/31486.png b/animateditems/31486.png
new file mode 100644
index 00000000..40425414
Binary files /dev/null and b/animateditems/31486.png differ
diff --git a/animateditems/31487.gif b/animateditems/31487.gif
new file mode 100644
index 00000000..3b2dfcb2
Binary files /dev/null and b/animateditems/31487.gif differ
diff --git a/animateditems/31487.png b/animateditems/31487.png
new file mode 100644
index 00000000..40425414
Binary files /dev/null and b/animateditems/31487.png differ
diff --git a/animateditems/31488.gif b/animateditems/31488.gif
new file mode 100644
index 00000000..3b2dfcb2
Binary files /dev/null and b/animateditems/31488.gif differ
diff --git a/animateditems/31488.png b/animateditems/31488.png
new file mode 100644
index 00000000..40425414
Binary files /dev/null and b/animateditems/31488.png differ
diff --git a/animateditems/31509.gif b/animateditems/31509.gif
new file mode 100644
index 00000000..c0de7aeb
Binary files /dev/null and b/animateditems/31509.gif differ
diff --git a/animateditems/31509.png b/animateditems/31509.png
new file mode 100644
index 00000000..aa783019
Binary files /dev/null and b/animateditems/31509.png differ
diff --git a/animateditems/31543.gif b/animateditems/31543.gif
new file mode 100644
index 00000000..d3d1090f
Binary files /dev/null and b/animateditems/31543.gif differ
diff --git a/animateditems/31543.png b/animateditems/31543.png
new file mode 100644
index 00000000..11001be1
Binary files /dev/null and b/animateditems/31543.png differ
diff --git a/animateditems/31550.gif b/animateditems/31550.gif
new file mode 100644
index 00000000..3c7f4b0e
Binary files /dev/null and b/animateditems/31550.gif differ
diff --git a/animateditems/31550.png b/animateditems/31550.png
new file mode 100644
index 00000000..a050472d
Binary files /dev/null and b/animateditems/31550.png differ
diff --git a/animateditems/31551.gif b/animateditems/31551.gif
new file mode 100644
index 00000000..49662554
Binary files /dev/null and b/animateditems/31551.gif differ
diff --git a/animateditems/31551.png b/animateditems/31551.png
new file mode 100644
index 00000000..72a823c8
Binary files /dev/null and b/animateditems/31551.png differ
diff --git a/animateditems/31552.gif b/animateditems/31552.gif
new file mode 100644
index 00000000..5701b96c
Binary files /dev/null and b/animateditems/31552.gif differ
diff --git a/animateditems/31552.png b/animateditems/31552.png
new file mode 100644
index 00000000..0d7e10c2
Binary files /dev/null and b/animateditems/31552.png differ
diff --git a/animateditems/31553.gif b/animateditems/31553.gif
new file mode 100644
index 00000000..199425c6
Binary files /dev/null and b/animateditems/31553.gif differ
diff --git a/animateditems/31553.png b/animateditems/31553.png
new file mode 100644
index 00000000..e70f6ce6
Binary files /dev/null and b/animateditems/31553.png differ
diff --git a/animateditems/31571.gif b/animateditems/31571.gif
new file mode 100644
index 00000000..8ea856a1
Binary files /dev/null and b/animateditems/31571.gif differ
diff --git a/animateditems/31571.png b/animateditems/31571.png
new file mode 100644
index 00000000..85744282
Binary files /dev/null and b/animateditems/31571.png differ
diff --git a/animateditems/31572.gif b/animateditems/31572.gif
new file mode 100644
index 00000000..8ea856a1
Binary files /dev/null and b/animateditems/31572.gif differ
diff --git a/animateditems/31572.png b/animateditems/31572.png
new file mode 100644
index 00000000..85744282
Binary files /dev/null and b/animateditems/31572.png differ
diff --git a/animateditems/31573.gif b/animateditems/31573.gif
new file mode 100644
index 00000000..6d1bd666
Binary files /dev/null and b/animateditems/31573.gif differ
diff --git a/animateditems/31573.png b/animateditems/31573.png
new file mode 100644
index 00000000..f06b4538
Binary files /dev/null and b/animateditems/31573.png differ
diff --git a/animateditems/31932.gif b/animateditems/31932.gif
new file mode 100644
index 00000000..fdbe91fe
Binary files /dev/null and b/animateditems/31932.gif differ
diff --git a/animateditems/31932.png b/animateditems/31932.png
new file mode 100644
index 00000000..b6f7d373
Binary files /dev/null and b/animateditems/31932.png differ
diff --git a/animateditems/31942.gif b/animateditems/31942.gif
new file mode 100644
index 00000000..9525d4d1
Binary files /dev/null and b/animateditems/31942.gif differ
diff --git a/animateditems/31942.png b/animateditems/31942.png
new file mode 100644
index 00000000..929e0421
Binary files /dev/null and b/animateditems/31942.png differ
diff --git a/animateditems/31943.gif b/animateditems/31943.gif
new file mode 100644
index 00000000..6d492cf9
Binary files /dev/null and b/animateditems/31943.gif differ
diff --git a/animateditems/31943.png b/animateditems/31943.png
new file mode 100644
index 00000000..1d8d5d17
Binary files /dev/null and b/animateditems/31943.png differ
diff --git a/animateditems/31944.gif b/animateditems/31944.gif
new file mode 100644
index 00000000..f07f9edf
Binary files /dev/null and b/animateditems/31944.gif differ
diff --git a/animateditems/31944.png b/animateditems/31944.png
new file mode 100644
index 00000000..83bee0b6
Binary files /dev/null and b/animateditems/31944.png differ
diff --git a/animateditems/31945.gif b/animateditems/31945.gif
new file mode 100644
index 00000000..734bfe24
Binary files /dev/null and b/animateditems/31945.gif differ
diff --git a/animateditems/31945.png b/animateditems/31945.png
new file mode 100644
index 00000000..61442832
Binary files /dev/null and b/animateditems/31945.png differ
diff --git a/animateditems/31947.gif b/animateditems/31947.gif
new file mode 100644
index 00000000..bb156763
Binary files /dev/null and b/animateditems/31947.gif differ
diff --git a/animateditems/31947.png b/animateditems/31947.png
new file mode 100644
index 00000000..d8008075
Binary files /dev/null and b/animateditems/31947.png differ
diff --git a/animateditems/31948.gif b/animateditems/31948.gif
new file mode 100644
index 00000000..db363295
Binary files /dev/null and b/animateditems/31948.gif differ
diff --git a/animateditems/31948.png b/animateditems/31948.png
new file mode 100644
index 00000000..0a030439
Binary files /dev/null and b/animateditems/31948.png differ
diff --git a/animateditems/31949.gif b/animateditems/31949.gif
new file mode 100644
index 00000000..0364b9c7
Binary files /dev/null and b/animateditems/31949.gif differ
diff --git a/animateditems/31949.png b/animateditems/31949.png
new file mode 100644
index 00000000..603ab595
Binary files /dev/null and b/animateditems/31949.png differ
diff --git a/animateditems/31950.gif b/animateditems/31950.gif
new file mode 100644
index 00000000..c0b57973
Binary files /dev/null and b/animateditems/31950.gif differ
diff --git a/animateditems/31950.png b/animateditems/31950.png
new file mode 100644
index 00000000..cfdc8454
Binary files /dev/null and b/animateditems/31950.png differ
diff --git a/animateditems/31955.gif b/animateditems/31955.gif
new file mode 100644
index 00000000..aa6dccca
Binary files /dev/null and b/animateditems/31955.gif differ
diff --git a/animateditems/31955.png b/animateditems/31955.png
new file mode 100644
index 00000000..75937548
Binary files /dev/null and b/animateditems/31955.png differ
diff --git a/animateditems/31960.gif b/animateditems/31960.gif
new file mode 100644
index 00000000..6c7fc0be
Binary files /dev/null and b/animateditems/31960.gif differ
diff --git a/animateditems/31960.png b/animateditems/31960.png
new file mode 100644
index 00000000..957026ba
Binary files /dev/null and b/animateditems/31960.png differ
diff --git a/animateditems/31963.gif b/animateditems/31963.gif
new file mode 100644
index 00000000..4416b1a5
Binary files /dev/null and b/animateditems/31963.gif differ
diff --git a/animateditems/31963.png b/animateditems/31963.png
new file mode 100644
index 00000000..5800a971
Binary files /dev/null and b/animateditems/31963.png differ
diff --git a/animateditems/31964.gif b/animateditems/31964.gif
new file mode 100644
index 00000000..ccf268a6
Binary files /dev/null and b/animateditems/31964.gif differ
diff --git a/animateditems/31964.png b/animateditems/31964.png
new file mode 100644
index 00000000..3e9e26cf
Binary files /dev/null and b/animateditems/31964.png differ
diff --git a/animateditems/31965.gif b/animateditems/31965.gif
new file mode 100644
index 00000000..a1ae2196
Binary files /dev/null and b/animateditems/31965.gif differ
diff --git a/animateditems/31965.png b/animateditems/31965.png
new file mode 100644
index 00000000..351d3746
Binary files /dev/null and b/animateditems/31965.png differ
diff --git a/animateditems/31966.gif b/animateditems/31966.gif
new file mode 100644
index 00000000..74e01502
Binary files /dev/null and b/animateditems/31966.gif differ
diff --git a/animateditems/31966.png b/animateditems/31966.png
new file mode 100644
index 00000000..cf534774
Binary files /dev/null and b/animateditems/31966.png differ
diff --git a/animateditems/32000.gif b/animateditems/32000.gif
new file mode 100644
index 00000000..6c5f028b
Binary files /dev/null and b/animateditems/32000.gif differ
diff --git a/animateditems/32000.png b/animateditems/32000.png
new file mode 100644
index 00000000..c3e29c96
Binary files /dev/null and b/animateditems/32000.png differ
diff --git a/animateditems/32001.gif b/animateditems/32001.gif
new file mode 100644
index 00000000..37cb6b8d
Binary files /dev/null and b/animateditems/32001.gif differ
diff --git a/animateditems/32001.png b/animateditems/32001.png
new file mode 100644
index 00000000..0184ed8e
Binary files /dev/null and b/animateditems/32001.png differ
diff --git a/animateditems/32002.gif b/animateditems/32002.gif
new file mode 100644
index 00000000..94ae6f06
Binary files /dev/null and b/animateditems/32002.gif differ
diff --git a/animateditems/32002.png b/animateditems/32002.png
new file mode 100644
index 00000000..bc8e16c0
Binary files /dev/null and b/animateditems/32002.png differ
diff --git a/animateditems/32003.gif b/animateditems/32003.gif
new file mode 100644
index 00000000..eee50de6
Binary files /dev/null and b/animateditems/32003.gif differ
diff --git a/animateditems/32003.png b/animateditems/32003.png
new file mode 100644
index 00000000..c0c1f895
Binary files /dev/null and b/animateditems/32003.png differ
diff --git a/animateditems/32004.gif b/animateditems/32004.gif
new file mode 100644
index 00000000..a7d5a653
Binary files /dev/null and b/animateditems/32004.gif differ
diff --git a/animateditems/32004.png b/animateditems/32004.png
new file mode 100644
index 00000000..bb188c68
Binary files /dev/null and b/animateditems/32004.png differ
diff --git a/animateditems/32007.gif b/animateditems/32007.gif
new file mode 100644
index 00000000..124df764
Binary files /dev/null and b/animateditems/32007.gif differ
diff --git a/animateditems/32007.png b/animateditems/32007.png
new file mode 100644
index 00000000..d8db45de
Binary files /dev/null and b/animateditems/32007.png differ
diff --git a/animateditems/32063.gif b/animateditems/32063.gif
new file mode 100644
index 00000000..4b5dad1e
Binary files /dev/null and b/animateditems/32063.gif differ
diff --git a/animateditems/32063.png b/animateditems/32063.png
new file mode 100644
index 00000000..40cad779
Binary files /dev/null and b/animateditems/32063.png differ
diff --git a/animateditems/32064.gif b/animateditems/32064.gif
new file mode 100644
index 00000000..26ec696d
Binary files /dev/null and b/animateditems/32064.gif differ
diff --git a/animateditems/32064.png b/animateditems/32064.png
new file mode 100644
index 00000000..d5292c41
Binary files /dev/null and b/animateditems/32064.png differ
diff --git a/animateditems/32065.gif b/animateditems/32065.gif
new file mode 100644
index 00000000..1995b789
Binary files /dev/null and b/animateditems/32065.gif differ
diff --git a/animateditems/32065.png b/animateditems/32065.png
new file mode 100644
index 00000000..cd361460
Binary files /dev/null and b/animateditems/32065.png differ
diff --git a/animateditems/32066.gif b/animateditems/32066.gif
new file mode 100644
index 00000000..67916e0f
Binary files /dev/null and b/animateditems/32066.gif differ
diff --git a/animateditems/32066.png b/animateditems/32066.png
new file mode 100644
index 00000000..a521f162
Binary files /dev/null and b/animateditems/32066.png differ
diff --git a/animateditems/32067.gif b/animateditems/32067.gif
new file mode 100644
index 00000000..475e9059
Binary files /dev/null and b/animateditems/32067.gif differ
diff --git a/animateditems/32067.png b/animateditems/32067.png
new file mode 100644
index 00000000..354a5f61
Binary files /dev/null and b/animateditems/32067.png differ
diff --git a/animateditems/32068.gif b/animateditems/32068.gif
new file mode 100644
index 00000000..1e96e8de
Binary files /dev/null and b/animateditems/32068.gif differ
diff --git a/animateditems/32068.png b/animateditems/32068.png
new file mode 100644
index 00000000..0f8b233d
Binary files /dev/null and b/animateditems/32068.png differ
diff --git a/animateditems/32069.gif b/animateditems/32069.gif
new file mode 100644
index 00000000..84a02017
Binary files /dev/null and b/animateditems/32069.gif differ
diff --git a/animateditems/32069.png b/animateditems/32069.png
new file mode 100644
index 00000000..01861e66
Binary files /dev/null and b/animateditems/32069.png differ
diff --git a/animateditems/32070.gif b/animateditems/32070.gif
new file mode 100644
index 00000000..81c1e87d
Binary files /dev/null and b/animateditems/32070.gif differ
diff --git a/animateditems/32070.png b/animateditems/32070.png
new file mode 100644
index 00000000..74102dff
Binary files /dev/null and b/animateditems/32070.png differ
diff --git a/animateditems/32071.gif b/animateditems/32071.gif
new file mode 100644
index 00000000..4f106782
Binary files /dev/null and b/animateditems/32071.gif differ
diff --git a/animateditems/32071.png b/animateditems/32071.png
new file mode 100644
index 00000000..46cb12ef
Binary files /dev/null and b/animateditems/32071.png differ
diff --git a/animateditems/32072.gif b/animateditems/32072.gif
new file mode 100644
index 00000000..c63d6773
Binary files /dev/null and b/animateditems/32072.gif differ
diff --git a/animateditems/32072.png b/animateditems/32072.png
new file mode 100644
index 00000000..80f67f0d
Binary files /dev/null and b/animateditems/32072.png differ
diff --git a/animateditems/32073.gif b/animateditems/32073.gif
new file mode 100644
index 00000000..d3adf3b6
Binary files /dev/null and b/animateditems/32073.gif differ
diff --git a/animateditems/32073.png b/animateditems/32073.png
new file mode 100644
index 00000000..5b58c25e
Binary files /dev/null and b/animateditems/32073.png differ
diff --git a/animateditems/32074.gif b/animateditems/32074.gif
new file mode 100644
index 00000000..dfd8ca66
Binary files /dev/null and b/animateditems/32074.gif differ
diff --git a/animateditems/32074.png b/animateditems/32074.png
new file mode 100644
index 00000000..511addd3
Binary files /dev/null and b/animateditems/32074.png differ
diff --git a/animateditems/32075.gif b/animateditems/32075.gif
new file mode 100644
index 00000000..b5e230cb
Binary files /dev/null and b/animateditems/32075.gif differ
diff --git a/animateditems/32075.png b/animateditems/32075.png
new file mode 100644
index 00000000..e8d81db5
Binary files /dev/null and b/animateditems/32075.png differ
diff --git a/animateditems/32076.gif b/animateditems/32076.gif
new file mode 100644
index 00000000..2d662b77
Binary files /dev/null and b/animateditems/32076.gif differ
diff --git a/animateditems/32076.png b/animateditems/32076.png
new file mode 100644
index 00000000..9e6be5ea
Binary files /dev/null and b/animateditems/32076.png differ
diff --git a/animateditems/32077.gif b/animateditems/32077.gif
new file mode 100644
index 00000000..fd3fc38f
Binary files /dev/null and b/animateditems/32077.gif differ
diff --git a/animateditems/32077.png b/animateditems/32077.png
new file mode 100644
index 00000000..e3a8a3c9
Binary files /dev/null and b/animateditems/32077.png differ
diff --git a/animateditems/32078.gif b/animateditems/32078.gif
new file mode 100644
index 00000000..101793f0
Binary files /dev/null and b/animateditems/32078.gif differ
diff --git a/animateditems/32078.png b/animateditems/32078.png
new file mode 100644
index 00000000..5a0e54e8
Binary files /dev/null and b/animateditems/32078.png differ
diff --git a/animateditems/32079.gif b/animateditems/32079.gif
new file mode 100644
index 00000000..bd19a804
Binary files /dev/null and b/animateditems/32079.gif differ
diff --git a/animateditems/32079.png b/animateditems/32079.png
new file mode 100644
index 00000000..9590e051
Binary files /dev/null and b/animateditems/32079.png differ
diff --git a/animateditems/32080.gif b/animateditems/32080.gif
new file mode 100644
index 00000000..df512218
Binary files /dev/null and b/animateditems/32080.gif differ
diff --git a/animateditems/32080.png b/animateditems/32080.png
new file mode 100644
index 00000000..4e8149f5
Binary files /dev/null and b/animateditems/32080.png differ
diff --git a/animateditems/32081.gif b/animateditems/32081.gif
new file mode 100644
index 00000000..9c2a9da0
Binary files /dev/null and b/animateditems/32081.gif differ
diff --git a/animateditems/32081.png b/animateditems/32081.png
new file mode 100644
index 00000000..de62accf
Binary files /dev/null and b/animateditems/32081.png differ
diff --git a/animateditems/32082.gif b/animateditems/32082.gif
new file mode 100644
index 00000000..f1039e4a
Binary files /dev/null and b/animateditems/32082.gif differ
diff --git a/animateditems/32082.png b/animateditems/32082.png
new file mode 100644
index 00000000..c8f02772
Binary files /dev/null and b/animateditems/32082.png differ
diff --git a/animateditems/32083.gif b/animateditems/32083.gif
new file mode 100644
index 00000000..7efd2d72
Binary files /dev/null and b/animateditems/32083.gif differ
diff --git a/animateditems/32083.png b/animateditems/32083.png
new file mode 100644
index 00000000..1c6dc64f
Binary files /dev/null and b/animateditems/32083.png differ
diff --git a/animateditems/32084.gif b/animateditems/32084.gif
new file mode 100644
index 00000000..d7f878c0
Binary files /dev/null and b/animateditems/32084.gif differ
diff --git a/animateditems/32084.png b/animateditems/32084.png
new file mode 100644
index 00000000..dfec40bd
Binary files /dev/null and b/animateditems/32084.png differ
diff --git a/animateditems/32085.gif b/animateditems/32085.gif
new file mode 100644
index 00000000..82dd821a
Binary files /dev/null and b/animateditems/32085.gif differ
diff --git a/animateditems/32085.png b/animateditems/32085.png
new file mode 100644
index 00000000..d90177dd
Binary files /dev/null and b/animateditems/32085.png differ
diff --git a/animateditems/32086.gif b/animateditems/32086.gif
new file mode 100644
index 00000000..bcfbfad7
Binary files /dev/null and b/animateditems/32086.gif differ
diff --git a/animateditems/32086.png b/animateditems/32086.png
new file mode 100644
index 00000000..d2080e6a
Binary files /dev/null and b/animateditems/32086.png differ
diff --git a/animateditems/32087.gif b/animateditems/32087.gif
new file mode 100644
index 00000000..86fd4091
Binary files /dev/null and b/animateditems/32087.gif differ
diff --git a/animateditems/32087.png b/animateditems/32087.png
new file mode 100644
index 00000000..22d47cc7
Binary files /dev/null and b/animateditems/32087.png differ
diff --git a/animateditems/32088.gif b/animateditems/32088.gif
new file mode 100644
index 00000000..123d730b
Binary files /dev/null and b/animateditems/32088.gif differ
diff --git a/animateditems/32088.png b/animateditems/32088.png
new file mode 100644
index 00000000..da164081
Binary files /dev/null and b/animateditems/32088.png differ
diff --git a/animateditems/32415.gif b/animateditems/32415.gif
new file mode 100644
index 00000000..d8142d86
Binary files /dev/null and b/animateditems/32415.gif differ
diff --git a/animateditems/32416.gif b/animateditems/32416.gif
new file mode 100644
index 00000000..b03285e3
Binary files /dev/null and b/animateditems/32416.gif differ
diff --git a/animateditems/32417.gif b/animateditems/32417.gif
new file mode 100644
index 00000000..ba7ce28d
Binary files /dev/null and b/animateditems/32417.gif differ
diff --git a/animateditems/32418.gif b/animateditems/32418.gif
new file mode 100644
index 00000000..d1898924
Binary files /dev/null and b/animateditems/32418.gif differ
diff --git a/animateditems/32419.gif b/animateditems/32419.gif
new file mode 100644
index 00000000..7449c0a8
Binary files /dev/null and b/animateditems/32419.gif differ
diff --git a/animateditems/32420.gif b/animateditems/32420.gif
new file mode 100644
index 00000000..ce3d271c
Binary files /dev/null and b/animateditems/32420.gif differ
diff --git a/animateditems/32421.gif b/animateditems/32421.gif
new file mode 100644
index 00000000..3b57de35
Binary files /dev/null and b/animateditems/32421.gif differ
diff --git a/animateditems/32422.gif b/animateditems/32422.gif
new file mode 100644
index 00000000..ab84685d
Binary files /dev/null and b/animateditems/32422.gif differ
diff --git a/animateditems/32423.gif b/animateditems/32423.gif
new file mode 100644
index 00000000..080b8ff9
Binary files /dev/null and b/animateditems/32423.gif differ
diff --git a/animateditems/32424.gif b/animateditems/32424.gif
new file mode 100644
index 00000000..5529bb63
Binary files /dev/null and b/animateditems/32424.gif differ
diff --git a/animateditems/32425.gif b/animateditems/32425.gif
new file mode 100644
index 00000000..e2827e0a
Binary files /dev/null and b/animateditems/32425.gif differ
diff --git a/animateditems/32523.gif b/animateditems/32523.gif
new file mode 100644
index 00000000..eaacf095
Binary files /dev/null and b/animateditems/32523.gif differ
diff --git a/animateditems/32598.gif b/animateditems/32598.gif
new file mode 100644
index 00000000..651877fe
Binary files /dev/null and b/animateditems/32598.gif differ
diff --git a/animateditems/32598.png b/animateditems/32598.png
new file mode 100644
index 00000000..d0d7fcd6
Binary files /dev/null and b/animateditems/32598.png differ
diff --git a/animateditems/32599.gif b/animateditems/32599.gif
new file mode 100644
index 00000000..3d36f18a
Binary files /dev/null and b/animateditems/32599.gif differ
diff --git a/animateditems/32599.png b/animateditems/32599.png
new file mode 100644
index 00000000..f22f25ef
Binary files /dev/null and b/animateditems/32599.png differ
diff --git a/animateditems/32600.gif b/animateditems/32600.gif
new file mode 100644
index 00000000..2582b8ef
Binary files /dev/null and b/animateditems/32600.gif differ
diff --git a/animateditems/32600.png b/animateditems/32600.png
new file mode 100644
index 00000000..c2f1e543
Binary files /dev/null and b/animateditems/32600.png differ
diff --git a/animateditems/32601.gif b/animateditems/32601.gif
new file mode 100644
index 00000000..aa20ddb5
Binary files /dev/null and b/animateditems/32601.gif differ
diff --git a/animateditems/32601.png b/animateditems/32601.png
new file mode 100644
index 00000000..86dd3103
Binary files /dev/null and b/animateditems/32601.png differ
diff --git a/animateditems/32602.gif b/animateditems/32602.gif
new file mode 100644
index 00000000..ca0c70af
Binary files /dev/null and b/animateditems/32602.gif differ
diff --git a/animateditems/32602.png b/animateditems/32602.png
new file mode 100644
index 00000000..4cfb3f24
Binary files /dev/null and b/animateditems/32602.png differ
diff --git a/animateditems/32603.gif b/animateditems/32603.gif
new file mode 100644
index 00000000..b923d61e
Binary files /dev/null and b/animateditems/32603.gif differ
diff --git a/animateditems/32603.png b/animateditems/32603.png
new file mode 100644
index 00000000..845df08c
Binary files /dev/null and b/animateditems/32603.png differ
diff --git a/animateditems/32604.gif b/animateditems/32604.gif
new file mode 100644
index 00000000..3240cbee
Binary files /dev/null and b/animateditems/32604.gif differ
diff --git a/animateditems/32604.png b/animateditems/32604.png
new file mode 100644
index 00000000..a467dd9f
Binary files /dev/null and b/animateditems/32604.png differ
diff --git a/animateditems/32605.gif b/animateditems/32605.gif
new file mode 100644
index 00000000..3d83f450
Binary files /dev/null and b/animateditems/32605.gif differ
diff --git a/animateditems/32605.png b/animateditems/32605.png
new file mode 100644
index 00000000..dd20d6db
Binary files /dev/null and b/animateditems/32605.png differ
diff --git a/animateditems/32606.gif b/animateditems/32606.gif
new file mode 100644
index 00000000..163e58cc
Binary files /dev/null and b/animateditems/32606.gif differ
diff --git a/animateditems/32606.png b/animateditems/32606.png
new file mode 100644
index 00000000..f34c1828
Binary files /dev/null and b/animateditems/32606.png differ
diff --git a/animateditems/32644.gif b/animateditems/32644.gif
new file mode 100644
index 00000000..cc1a0517
Binary files /dev/null and b/animateditems/32644.gif differ
diff --git a/animateditems/32644.png b/animateditems/32644.png
new file mode 100644
index 00000000..0907ce9b
Binary files /dev/null and b/animateditems/32644.png differ
diff --git a/animateditems/32645.gif b/animateditems/32645.gif
new file mode 100644
index 00000000..c42ce09d
Binary files /dev/null and b/animateditems/32645.gif differ
diff --git a/animateditems/32645.png b/animateditems/32645.png
new file mode 100644
index 00000000..0733b269
Binary files /dev/null and b/animateditems/32645.png differ
diff --git a/animateditems/32646.gif b/animateditems/32646.gif
new file mode 100644
index 00000000..57ece20b
Binary files /dev/null and b/animateditems/32646.gif differ
diff --git a/animateditems/32646.png b/animateditems/32646.png
new file mode 100644
index 00000000..7a798f69
Binary files /dev/null and b/animateditems/32646.png differ
diff --git a/animateditems/32647.gif b/animateditems/32647.gif
new file mode 100644
index 00000000..c8890276
Binary files /dev/null and b/animateditems/32647.gif differ
diff --git a/animateditems/32647.png b/animateditems/32647.png
new file mode 100644
index 00000000..179e346e
Binary files /dev/null and b/animateditems/32647.png differ
diff --git a/animateditems/32648.gif b/animateditems/32648.gif
new file mode 100644
index 00000000..38068c7b
Binary files /dev/null and b/animateditems/32648.gif differ
diff --git a/animateditems/32648.png b/animateditems/32648.png
new file mode 100644
index 00000000..b3b1b7de
Binary files /dev/null and b/animateditems/32648.png differ
diff --git a/animateditems/32649.gif b/animateditems/32649.gif
new file mode 100644
index 00000000..dcd394ae
Binary files /dev/null and b/animateditems/32649.gif differ
diff --git a/animateditems/32649.png b/animateditems/32649.png
new file mode 100644
index 00000000..d83e4cff
Binary files /dev/null and b/animateditems/32649.png differ
diff --git a/animateditems/32650.gif b/animateditems/32650.gif
new file mode 100644
index 00000000..9dbd8762
Binary files /dev/null and b/animateditems/32650.gif differ
diff --git a/animateditems/32650.png b/animateditems/32650.png
new file mode 100644
index 00000000..4dce64d3
Binary files /dev/null and b/animateditems/32650.png differ
diff --git a/animateditems/32651.gif b/animateditems/32651.gif
new file mode 100644
index 00000000..d497de9c
Binary files /dev/null and b/animateditems/32651.gif differ
diff --git a/animateditems/32651.png b/animateditems/32651.png
new file mode 100644
index 00000000..10700734
Binary files /dev/null and b/animateditems/32651.png differ
diff --git a/animateditems/32659.gif b/animateditems/32659.gif
new file mode 100644
index 00000000..8c43c479
Binary files /dev/null and b/animateditems/32659.gif differ
diff --git a/animateditems/32659.png b/animateditems/32659.png
new file mode 100644
index 00000000..25077c6f
Binary files /dev/null and b/animateditems/32659.png differ
diff --git a/animateditems/32660.gif b/animateditems/32660.gif
new file mode 100644
index 00000000..533381aa
Binary files /dev/null and b/animateditems/32660.gif differ
diff --git a/animateditems/32660.png b/animateditems/32660.png
new file mode 100644
index 00000000..bb4e53e4
Binary files /dev/null and b/animateditems/32660.png differ
diff --git a/animateditems/32661.gif b/animateditems/32661.gif
new file mode 100644
index 00000000..dc2dfb67
Binary files /dev/null and b/animateditems/32661.gif differ
diff --git a/animateditems/32661.png b/animateditems/32661.png
new file mode 100644
index 00000000..b1a08123
Binary files /dev/null and b/animateditems/32661.png differ
diff --git a/animateditems/32662.gif b/animateditems/32662.gif
new file mode 100644
index 00000000..a88bc355
Binary files /dev/null and b/animateditems/32662.gif differ
diff --git a/animateditems/32662.png b/animateditems/32662.png
new file mode 100644
index 00000000..12ae117d
Binary files /dev/null and b/animateditems/32662.png differ
diff --git a/animateditems/32665.gif b/animateditems/32665.gif
new file mode 100644
index 00000000..c73c3380
Binary files /dev/null and b/animateditems/32665.gif differ
diff --git a/animateditems/32665.png b/animateditems/32665.png
new file mode 100644
index 00000000..f8720cf9
Binary files /dev/null and b/animateditems/32665.png differ
diff --git a/animateditems/32709.gif b/animateditems/32709.gif
new file mode 100644
index 00000000..dc4a4700
Binary files /dev/null and b/animateditems/32709.gif differ
diff --git a/animateditems/32709.png b/animateditems/32709.png
new file mode 100644
index 00000000..ce76de6f
Binary files /dev/null and b/animateditems/32709.png differ
diff --git a/animateditems/32710.gif b/animateditems/32710.gif
new file mode 100644
index 00000000..0ffc0194
Binary files /dev/null and b/animateditems/32710.gif differ
diff --git a/animateditems/32710.png b/animateditems/32710.png
new file mode 100644
index 00000000..834cca87
Binary files /dev/null and b/animateditems/32710.png differ
diff --git a/animateditems/32711.gif b/animateditems/32711.gif
new file mode 100644
index 00000000..08ec0f4d
Binary files /dev/null and b/animateditems/32711.gif differ
diff --git a/animateditems/32711.png b/animateditems/32711.png
new file mode 100644
index 00000000..24244b7d
Binary files /dev/null and b/animateditems/32711.png differ
diff --git a/animateditems/32712.gif b/animateditems/32712.gif
new file mode 100644
index 00000000..cd1f4da1
Binary files /dev/null and b/animateditems/32712.gif differ
diff --git a/animateditems/32712.png b/animateditems/32712.png
new file mode 100644
index 00000000..1af73944
Binary files /dev/null and b/animateditems/32712.png differ
diff --git a/animateditems/32714.gif b/animateditems/32714.gif
new file mode 100644
index 00000000..d66e9fe2
Binary files /dev/null and b/animateditems/32714.gif differ
diff --git a/animateditems/32714.png b/animateditems/32714.png
new file mode 100644
index 00000000..14e6fd5b
Binary files /dev/null and b/animateditems/32714.png differ
diff --git a/animateditems/32715.gif b/animateditems/32715.gif
new file mode 100644
index 00000000..e932a10b
Binary files /dev/null and b/animateditems/32715.gif differ
diff --git a/animateditems/32715.png b/animateditems/32715.png
new file mode 100644
index 00000000..728df60f
Binary files /dev/null and b/animateditems/32715.png differ
diff --git a/animateditems/32716.gif b/animateditems/32716.gif
new file mode 100644
index 00000000..5a58faa9
Binary files /dev/null and b/animateditems/32716.gif differ
diff --git a/animateditems/32716.png b/animateditems/32716.png
new file mode 100644
index 00000000..d0d8440d
Binary files /dev/null and b/animateditems/32716.png differ
diff --git a/animateditems/32717.gif b/animateditems/32717.gif
new file mode 100644
index 00000000..ee8cce93
Binary files /dev/null and b/animateditems/32717.gif differ
diff --git a/animateditems/32717.png b/animateditems/32717.png
new file mode 100644
index 00000000..edbc884a
Binary files /dev/null and b/animateditems/32717.png differ
diff --git a/animateditems/32738.gif b/animateditems/32738.gif
new file mode 100644
index 00000000..474eb353
Binary files /dev/null and b/animateditems/32738.gif differ
diff --git a/animateditems/32738.png b/animateditems/32738.png
new file mode 100644
index 00000000..6ec63716
Binary files /dev/null and b/animateditems/32738.png differ
diff --git a/animateditems/32739.gif b/animateditems/32739.gif
new file mode 100644
index 00000000..358260fa
Binary files /dev/null and b/animateditems/32739.gif differ
diff --git a/animateditems/32739.png b/animateditems/32739.png
new file mode 100644
index 00000000..63e8c336
Binary files /dev/null and b/animateditems/32739.png differ
diff --git a/animateditems/32740.gif b/animateditems/32740.gif
new file mode 100644
index 00000000..18d73f8c
Binary files /dev/null and b/animateditems/32740.gif differ
diff --git a/animateditems/32740.png b/animateditems/32740.png
new file mode 100644
index 00000000..61f063c7
Binary files /dev/null and b/animateditems/32740.png differ
diff --git a/animateditems/32741.gif b/animateditems/32741.gif
new file mode 100644
index 00000000..6c5f028b
Binary files /dev/null and b/animateditems/32741.gif differ
diff --git a/animateditems/32741.png b/animateditems/32741.png
new file mode 100644
index 00000000..c3e29c96
Binary files /dev/null and b/animateditems/32741.png differ
diff --git a/animateditems/32743.gif b/animateditems/32743.gif
new file mode 100644
index 00000000..aab944ca
Binary files /dev/null and b/animateditems/32743.gif differ
diff --git a/animateditems/32743.png b/animateditems/32743.png
new file mode 100644
index 00000000..6099524d
Binary files /dev/null and b/animateditems/32743.png differ
diff --git a/animateditems/32788.gif b/animateditems/32788.gif
new file mode 100644
index 00000000..91e9b665
Binary files /dev/null and b/animateditems/32788.gif differ
diff --git a/animateditems/32788.png b/animateditems/32788.png
new file mode 100644
index 00000000..4a77cf05
Binary files /dev/null and b/animateditems/32788.png differ
diff --git a/animateditems/32802.gif b/animateditems/32802.gif
new file mode 100644
index 00000000..a717508c
Binary files /dev/null and b/animateditems/32802.gif differ
diff --git a/animateditems/32802.png b/animateditems/32802.png
new file mode 100644
index 00000000..90b65dc4
Binary files /dev/null and b/animateditems/32802.png differ
diff --git a/animateditems/32803.gif b/animateditems/32803.gif
new file mode 100644
index 00000000..0ecd70d7
Binary files /dev/null and b/animateditems/32803.gif differ
diff --git a/animateditems/32803.png b/animateditems/32803.png
new file mode 100644
index 00000000..e5bfa4e7
Binary files /dev/null and b/animateditems/32803.png differ
diff --git a/animateditems/32824.gif b/animateditems/32824.gif
new file mode 100644
index 00000000..18b5b9f3
Binary files /dev/null and b/animateditems/32824.gif differ
diff --git a/animateditems/32824.png b/animateditems/32824.png
new file mode 100644
index 00000000..a8d6e53f
Binary files /dev/null and b/animateditems/32824.png differ
diff --git a/animateditems/32825.gif b/animateditems/32825.gif
new file mode 100644
index 00000000..cd776888
Binary files /dev/null and b/animateditems/32825.gif differ
diff --git a/animateditems/32825.png b/animateditems/32825.png
new file mode 100644
index 00000000..7112e46a
Binary files /dev/null and b/animateditems/32825.png differ
diff --git a/animateditems/32826.gif b/animateditems/32826.gif
new file mode 100644
index 00000000..88a9526f
Binary files /dev/null and b/animateditems/32826.gif differ
diff --git a/animateditems/32826.png b/animateditems/32826.png
new file mode 100644
index 00000000..328205fb
Binary files /dev/null and b/animateditems/32826.png differ
diff --git a/animateditems/32827.gif b/animateditems/32827.gif
new file mode 100644
index 00000000..d258bc64
Binary files /dev/null and b/animateditems/32827.gif differ
diff --git a/animateditems/32827.png b/animateditems/32827.png
new file mode 100644
index 00000000..a3555088
Binary files /dev/null and b/animateditems/32827.png differ
diff --git a/animateditems/32836.gif b/animateditems/32836.gif
new file mode 100644
index 00000000..7a037f3d
Binary files /dev/null and b/animateditems/32836.gif differ
diff --git a/animateditems/32836.png b/animateditems/32836.png
new file mode 100644
index 00000000..59847927
Binary files /dev/null and b/animateditems/32836.png differ
diff --git a/animateditems/32837.gif b/animateditems/32837.gif
new file mode 100644
index 00000000..a2a99d9b
Binary files /dev/null and b/animateditems/32837.gif differ
diff --git a/animateditems/32837.png b/animateditems/32837.png
new file mode 100644
index 00000000..ef16d2b6
Binary files /dev/null and b/animateditems/32837.png differ
diff --git a/animateditems/32838.gif b/animateditems/32838.gif
new file mode 100644
index 00000000..a2a99d9b
Binary files /dev/null and b/animateditems/32838.gif differ
diff --git a/animateditems/32838.png b/animateditems/32838.png
new file mode 100644
index 00000000..ef16d2b6
Binary files /dev/null and b/animateditems/32838.png differ
diff --git a/animateditems/32839.gif b/animateditems/32839.gif
new file mode 100644
index 00000000..5ac785c1
Binary files /dev/null and b/animateditems/32839.gif differ
diff --git a/animateditems/32839.png b/animateditems/32839.png
new file mode 100644
index 00000000..db571ba7
Binary files /dev/null and b/animateditems/32839.png differ
diff --git a/animateditems/32840.gif b/animateditems/32840.gif
new file mode 100644
index 00000000..79731edd
Binary files /dev/null and b/animateditems/32840.gif differ
diff --git a/animateditems/32840.png b/animateditems/32840.png
new file mode 100644
index 00000000..d18500b4
Binary files /dev/null and b/animateditems/32840.png differ
diff --git a/animateditems/32841.gif b/animateditems/32841.gif
new file mode 100644
index 00000000..821d0874
Binary files /dev/null and b/animateditems/32841.gif differ
diff --git a/animateditems/32841.png b/animateditems/32841.png
new file mode 100644
index 00000000..b1773f52
Binary files /dev/null and b/animateditems/32841.png differ
diff --git a/animateditems/32842.gif b/animateditems/32842.gif
new file mode 100644
index 00000000..4738f953
Binary files /dev/null and b/animateditems/32842.gif differ
diff --git a/animateditems/32842.png b/animateditems/32842.png
new file mode 100644
index 00000000..b97e0640
Binary files /dev/null and b/animateditems/32842.png differ
diff --git a/animateditems/32843.gif b/animateditems/32843.gif
new file mode 100644
index 00000000..ac4e5b9e
Binary files /dev/null and b/animateditems/32843.gif differ
diff --git a/animateditems/32843.png b/animateditems/32843.png
new file mode 100644
index 00000000..5a86e6fd
Binary files /dev/null and b/animateditems/32843.png differ
diff --git a/animateditems/32844.gif b/animateditems/32844.gif
new file mode 100644
index 00000000..ec1eecb5
Binary files /dev/null and b/animateditems/32844.gif differ
diff --git a/animateditems/32844.png b/animateditems/32844.png
new file mode 100644
index 00000000..32c4a477
Binary files /dev/null and b/animateditems/32844.png differ
diff --git a/animateditems/32845.gif b/animateditems/32845.gif
new file mode 100644
index 00000000..3f51a3ed
Binary files /dev/null and b/animateditems/32845.gif differ
diff --git a/animateditems/32845.png b/animateditems/32845.png
new file mode 100644
index 00000000..20b4abe8
Binary files /dev/null and b/animateditems/32845.png differ
diff --git a/animateditems/32846.gif b/animateditems/32846.gif
new file mode 100644
index 00000000..699a1a87
Binary files /dev/null and b/animateditems/32846.gif differ
diff --git a/animateditems/32846.png b/animateditems/32846.png
new file mode 100644
index 00000000..c3c867f2
Binary files /dev/null and b/animateditems/32846.png differ
diff --git a/animateditems/32847.gif b/animateditems/32847.gif
new file mode 100644
index 00000000..bba95558
Binary files /dev/null and b/animateditems/32847.gif differ
diff --git a/animateditems/32847.png b/animateditems/32847.png
new file mode 100644
index 00000000..d9b4fb3d
Binary files /dev/null and b/animateditems/32847.png differ
diff --git a/animateditems/32848.gif b/animateditems/32848.gif
new file mode 100644
index 00000000..195b3d1e
Binary files /dev/null and b/animateditems/32848.gif differ
diff --git a/animateditems/32848.png b/animateditems/32848.png
new file mode 100644
index 00000000..0451702d
Binary files /dev/null and b/animateditems/32848.png differ
diff --git a/animateditems/32849.gif b/animateditems/32849.gif
new file mode 100644
index 00000000..07170531
Binary files /dev/null and b/animateditems/32849.gif differ
diff --git a/animateditems/32849.png b/animateditems/32849.png
new file mode 100644
index 00000000..38a3005a
Binary files /dev/null and b/animateditems/32849.png differ
diff --git a/animateditems/32850.gif b/animateditems/32850.gif
new file mode 100644
index 00000000..5bc5bb02
Binary files /dev/null and b/animateditems/32850.gif differ
diff --git a/animateditems/32850.png b/animateditems/32850.png
new file mode 100644
index 00000000..e85c08e3
Binary files /dev/null and b/animateditems/32850.png differ
diff --git a/animateditems/32851.gif b/animateditems/32851.gif
new file mode 100644
index 00000000..67fd328f
Binary files /dev/null and b/animateditems/32851.gif differ
diff --git a/animateditems/32851.png b/animateditems/32851.png
new file mode 100644
index 00000000..eabb556b
Binary files /dev/null and b/animateditems/32851.png differ
diff --git a/animateditems/32852.gif b/animateditems/32852.gif
new file mode 100644
index 00000000..ef0463d1
Binary files /dev/null and b/animateditems/32852.gif differ
diff --git a/animateditems/32852.png b/animateditems/32852.png
new file mode 100644
index 00000000..d4df5766
Binary files /dev/null and b/animateditems/32852.png differ
diff --git a/animateditems/32853.gif b/animateditems/32853.gif
new file mode 100644
index 00000000..2001ce1f
Binary files /dev/null and b/animateditems/32853.gif differ
diff --git a/animateditems/32853.png b/animateditems/32853.png
new file mode 100644
index 00000000..cb7f5a3f
Binary files /dev/null and b/animateditems/32853.png differ
diff --git a/animateditems/32856.gif b/animateditems/32856.gif
new file mode 100644
index 00000000..68d0af6a
Binary files /dev/null and b/animateditems/32856.gif differ
diff --git a/animateditems/32856.png b/animateditems/32856.png
new file mode 100644
index 00000000..9327ff22
Binary files /dev/null and b/animateditems/32856.png differ
diff --git a/animateditems/32857.gif b/animateditems/32857.gif
new file mode 100644
index 00000000..87a14051
Binary files /dev/null and b/animateditems/32857.gif differ
diff --git a/animateditems/32857.png b/animateditems/32857.png
new file mode 100644
index 00000000..9c6626e6
Binary files /dev/null and b/animateditems/32857.png differ
diff --git a/animateditems/32858.gif b/animateditems/32858.gif
new file mode 100644
index 00000000..c0220641
Binary files /dev/null and b/animateditems/32858.gif differ
diff --git a/animateditems/32858.png b/animateditems/32858.png
new file mode 100644
index 00000000..d9e5348b
Binary files /dev/null and b/animateditems/32858.png differ
diff --git a/animateditems/32859.gif b/animateditems/32859.gif
new file mode 100644
index 00000000..474eb353
Binary files /dev/null and b/animateditems/32859.gif differ
diff --git a/animateditems/32859.png b/animateditems/32859.png
new file mode 100644
index 00000000..6ec63716
Binary files /dev/null and b/animateditems/32859.png differ
diff --git a/animateditems/32860.gif b/animateditems/32860.gif
new file mode 100644
index 00000000..358260fa
Binary files /dev/null and b/animateditems/32860.gif differ
diff --git a/animateditems/32860.png b/animateditems/32860.png
new file mode 100644
index 00000000..63e8c336
Binary files /dev/null and b/animateditems/32860.png differ
diff --git a/animateditems/32861.gif b/animateditems/32861.gif
new file mode 100644
index 00000000..18d73f8c
Binary files /dev/null and b/animateditems/32861.gif differ
diff --git a/animateditems/32861.png b/animateditems/32861.png
new file mode 100644
index 00000000..61f063c7
Binary files /dev/null and b/animateditems/32861.png differ
diff --git a/animateditems/32862.gif b/animateditems/32862.gif
new file mode 100644
index 00000000..bb7824e1
Binary files /dev/null and b/animateditems/32862.gif differ
diff --git a/animateditems/32862.png b/animateditems/32862.png
new file mode 100644
index 00000000..0179b67e
Binary files /dev/null and b/animateditems/32862.png differ
diff --git a/animateditems/32864.gif b/animateditems/32864.gif
new file mode 100644
index 00000000..71782d1b
Binary files /dev/null and b/animateditems/32864.gif differ
diff --git a/animateditems/32864.png b/animateditems/32864.png
new file mode 100644
index 00000000..9c823bc7
Binary files /dev/null and b/animateditems/32864.png differ
diff --git a/animateditems/32865.gif b/animateditems/32865.gif
new file mode 100644
index 00000000..d9addeba
Binary files /dev/null and b/animateditems/32865.gif differ
diff --git a/animateditems/32865.png b/animateditems/32865.png
new file mode 100644
index 00000000..3af26719
Binary files /dev/null and b/animateditems/32865.png differ
diff --git a/animateditems/32866.gif b/animateditems/32866.gif
new file mode 100644
index 00000000..700a2ccc
Binary files /dev/null and b/animateditems/32866.gif differ
diff --git a/animateditems/32866.png b/animateditems/32866.png
new file mode 100644
index 00000000..e4882869
Binary files /dev/null and b/animateditems/32866.png differ
diff --git a/animateditems/32867.gif b/animateditems/32867.gif
new file mode 100644
index 00000000..8b0c7c45
Binary files /dev/null and b/animateditems/32867.gif differ
diff --git a/animateditems/32867.png b/animateditems/32867.png
new file mode 100644
index 00000000..6ac7f32c
Binary files /dev/null and b/animateditems/32867.png differ
diff --git a/animateditems/32868.gif b/animateditems/32868.gif
new file mode 100644
index 00000000..647efd9a
Binary files /dev/null and b/animateditems/32868.gif differ
diff --git a/animateditems/32868.png b/animateditems/32868.png
new file mode 100644
index 00000000..b76802b0
Binary files /dev/null and b/animateditems/32868.png differ
diff --git a/animateditems/32869.gif b/animateditems/32869.gif
new file mode 100644
index 00000000..da7a1253
Binary files /dev/null and b/animateditems/32869.gif differ
diff --git a/animateditems/32869.png b/animateditems/32869.png
new file mode 100644
index 00000000..3c2671f3
Binary files /dev/null and b/animateditems/32869.png differ
diff --git a/animateditems/32870.gif b/animateditems/32870.gif
new file mode 100644
index 00000000..157868ec
Binary files /dev/null and b/animateditems/32870.gif differ
diff --git a/animateditems/32870.png b/animateditems/32870.png
new file mode 100644
index 00000000..9d7d29c4
Binary files /dev/null and b/animateditems/32870.png differ
diff --git a/animateditems/32882.gif b/animateditems/32882.gif
new file mode 100644
index 00000000..0baaac1b
Binary files /dev/null and b/animateditems/32882.gif differ
diff --git a/animateditems/32882.png b/animateditems/32882.png
new file mode 100644
index 00000000..3d82ee91
Binary files /dev/null and b/animateditems/32882.png differ
diff --git a/animateditems/32911.gif b/animateditems/32911.gif
new file mode 100644
index 00000000..90ba3ba7
Binary files /dev/null and b/animateditems/32911.gif differ
diff --git a/animateditems/32911.png b/animateditems/32911.png
new file mode 100644
index 00000000..69c3f9f5
Binary files /dev/null and b/animateditems/32911.png differ
diff --git a/animateditems/32912.gif b/animateditems/32912.gif
new file mode 100644
index 00000000..e8db53e5
Binary files /dev/null and b/animateditems/32912.gif differ
diff --git a/animateditems/32912.png b/animateditems/32912.png
new file mode 100644
index 00000000..7d87393e
Binary files /dev/null and b/animateditems/32912.png differ
diff --git a/animateditems/32913.gif b/animateditems/32913.gif
new file mode 100644
index 00000000..2d99ad40
Binary files /dev/null and b/animateditems/32913.gif differ
diff --git a/animateditems/32913.png b/animateditems/32913.png
new file mode 100644
index 00000000..4fccf681
Binary files /dev/null and b/animateditems/32913.png differ
diff --git a/animateditems/32914.gif b/animateditems/32914.gif
new file mode 100644
index 00000000..f30dd346
Binary files /dev/null and b/animateditems/32914.gif differ
diff --git a/animateditems/32914.png b/animateditems/32914.png
new file mode 100644
index 00000000..00665db7
Binary files /dev/null and b/animateditems/32914.png differ
diff --git a/animateditems/32915.gif b/animateditems/32915.gif
new file mode 100644
index 00000000..a715e97b
Binary files /dev/null and b/animateditems/32915.gif differ
diff --git a/animateditems/32915.png b/animateditems/32915.png
new file mode 100644
index 00000000..bd295277
Binary files /dev/null and b/animateditems/32915.png differ
diff --git a/animateditems/32916.gif b/animateditems/32916.gif
new file mode 100644
index 00000000..96dd157b
Binary files /dev/null and b/animateditems/32916.gif differ
diff --git a/animateditems/32916.png b/animateditems/32916.png
new file mode 100644
index 00000000..9f41fad8
Binary files /dev/null and b/animateditems/32916.png differ
diff --git a/animateditems/32917.gif b/animateditems/32917.gif
new file mode 100644
index 00000000..cbe12a7c
Binary files /dev/null and b/animateditems/32917.gif differ
diff --git a/animateditems/32917.png b/animateditems/32917.png
new file mode 100644
index 00000000..68e8969b
Binary files /dev/null and b/animateditems/32917.png differ
diff --git a/animateditems/32918.gif b/animateditems/32918.gif
new file mode 100644
index 00000000..7273cc70
Binary files /dev/null and b/animateditems/32918.gif differ
diff --git a/animateditems/32918.png b/animateditems/32918.png
new file mode 100644
index 00000000..b31a8903
Binary files /dev/null and b/animateditems/32918.png differ
diff --git a/animateditems/32919.gif b/animateditems/32919.gif
new file mode 100644
index 00000000..6469795d
Binary files /dev/null and b/animateditems/32919.gif differ
diff --git a/animateditems/32919.png b/animateditems/32919.png
new file mode 100644
index 00000000..135c55d2
Binary files /dev/null and b/animateditems/32919.png differ
diff --git a/animateditems/32920.gif b/animateditems/32920.gif
new file mode 100644
index 00000000..10c28106
Binary files /dev/null and b/animateditems/32920.gif differ
diff --git a/animateditems/32920.png b/animateditems/32920.png
new file mode 100644
index 00000000..dd555a91
Binary files /dev/null and b/animateditems/32920.png differ
diff --git a/animateditems/32921.gif b/animateditems/32921.gif
new file mode 100644
index 00000000..81b47386
Binary files /dev/null and b/animateditems/32921.gif differ
diff --git a/animateditems/32921.png b/animateditems/32921.png
new file mode 100644
index 00000000..87936afb
Binary files /dev/null and b/animateditems/32921.png differ
diff --git a/animateditems/32922.gif b/animateditems/32922.gif
new file mode 100644
index 00000000..cf963d72
Binary files /dev/null and b/animateditems/32922.gif differ
diff --git a/animateditems/32922.png b/animateditems/32922.png
new file mode 100644
index 00000000..e5f67876
Binary files /dev/null and b/animateditems/32922.png differ
diff --git a/animateditems/32923.gif b/animateditems/32923.gif
new file mode 100644
index 00000000..1ec8d5d8
Binary files /dev/null and b/animateditems/32923.gif differ
diff --git a/animateditems/32923.png b/animateditems/32923.png
new file mode 100644
index 00000000..b03a6b03
Binary files /dev/null and b/animateditems/32923.png differ
diff --git a/animateditems/32924.gif b/animateditems/32924.gif
new file mode 100644
index 00000000..87f2adc0
Binary files /dev/null and b/animateditems/32924.gif differ
diff --git a/animateditems/32924.png b/animateditems/32924.png
new file mode 100644
index 00000000..43d38a51
Binary files /dev/null and b/animateditems/32924.png differ
diff --git a/animateditems/32925.gif b/animateditems/32925.gif
new file mode 100644
index 00000000..66099d6a
Binary files /dev/null and b/animateditems/32925.gif differ
diff --git a/animateditems/32925.png b/animateditems/32925.png
new file mode 100644
index 00000000..c4de5f54
Binary files /dev/null and b/animateditems/32925.png differ
diff --git a/animateditems/32926.gif b/animateditems/32926.gif
new file mode 100644
index 00000000..4f1dbf22
Binary files /dev/null and b/animateditems/32926.gif differ
diff --git a/animateditems/32926.png b/animateditems/32926.png
new file mode 100644
index 00000000..0d4b20d0
Binary files /dev/null and b/animateditems/32926.png differ
diff --git a/animateditems/32927.gif b/animateditems/32927.gif
new file mode 100644
index 00000000..82476699
Binary files /dev/null and b/animateditems/32927.gif differ
diff --git a/animateditems/32927.png b/animateditems/32927.png
new file mode 100644
index 00000000..d3f1f19b
Binary files /dev/null and b/animateditems/32927.png differ
diff --git a/animateditems/32931.gif b/animateditems/32931.gif
new file mode 100644
index 00000000..8e54cd63
Binary files /dev/null and b/animateditems/32931.gif differ
diff --git a/animateditems/32931.png b/animateditems/32931.png
new file mode 100644
index 00000000..8fc568a0
Binary files /dev/null and b/animateditems/32931.png differ
diff --git a/animateditems/32932.gif b/animateditems/32932.gif
new file mode 100644
index 00000000..55ddbea4
Binary files /dev/null and b/animateditems/32932.gif differ
diff --git a/animateditems/32932.png b/animateditems/32932.png
new file mode 100644
index 00000000..20f565e2
Binary files /dev/null and b/animateditems/32932.png differ
diff --git a/animateditems/32933.gif b/animateditems/32933.gif
new file mode 100644
index 00000000..ba58f9db
Binary files /dev/null and b/animateditems/32933.gif differ
diff --git a/animateditems/32933.png b/animateditems/32933.png
new file mode 100644
index 00000000..cbd36302
Binary files /dev/null and b/animateditems/32933.png differ
diff --git a/animateditems/32934.gif b/animateditems/32934.gif
new file mode 100644
index 00000000..fea48260
Binary files /dev/null and b/animateditems/32934.gif differ
diff --git a/animateditems/32934.png b/animateditems/32934.png
new file mode 100644
index 00000000..1ac6f7ff
Binary files /dev/null and b/animateditems/32934.png differ
diff --git a/animateditems/32935.gif b/animateditems/32935.gif
new file mode 100644
index 00000000..228bb930
Binary files /dev/null and b/animateditems/32935.gif differ
diff --git a/animateditems/32935.png b/animateditems/32935.png
new file mode 100644
index 00000000..bfa948df
Binary files /dev/null and b/animateditems/32935.png differ
diff --git a/animateditems/32936.gif b/animateditems/32936.gif
new file mode 100644
index 00000000..ff021ceb
Binary files /dev/null and b/animateditems/32936.gif differ
diff --git a/animateditems/32936.png b/animateditems/32936.png
new file mode 100644
index 00000000..85069cb6
Binary files /dev/null and b/animateditems/32936.png differ
diff --git a/animateditems/32937.gif b/animateditems/32937.gif
new file mode 100644
index 00000000..dead4fee
Binary files /dev/null and b/animateditems/32937.gif differ
diff --git a/animateditems/32937.png b/animateditems/32937.png
new file mode 100644
index 00000000..8059be08
Binary files /dev/null and b/animateditems/32937.png differ
diff --git a/animateditems/32938.gif b/animateditems/32938.gif
new file mode 100644
index 00000000..4cc929eb
Binary files /dev/null and b/animateditems/32938.gif differ
diff --git a/animateditems/32938.png b/animateditems/32938.png
new file mode 100644
index 00000000..eb31c956
Binary files /dev/null and b/animateditems/32938.png differ
diff --git a/animateditems/32939.gif b/animateditems/32939.gif
new file mode 100644
index 00000000..f49dc412
Binary files /dev/null and b/animateditems/32939.gif differ
diff --git a/animateditems/32939.png b/animateditems/32939.png
new file mode 100644
index 00000000..a3674380
Binary files /dev/null and b/animateditems/32939.png differ
diff --git a/animateditems/32940.gif b/animateditems/32940.gif
new file mode 100644
index 00000000..08085515
Binary files /dev/null and b/animateditems/32940.gif differ
diff --git a/animateditems/32940.png b/animateditems/32940.png
new file mode 100644
index 00000000..5fa7e464
Binary files /dev/null and b/animateditems/32940.png differ
diff --git a/animateditems/32941.gif b/animateditems/32941.gif
new file mode 100644
index 00000000..b18ebfda
Binary files /dev/null and b/animateditems/32941.gif differ
diff --git a/animateditems/32941.png b/animateditems/32941.png
new file mode 100644
index 00000000..826ab2f9
Binary files /dev/null and b/animateditems/32941.png differ
diff --git a/animateditems/32971.gif b/animateditems/32971.gif
new file mode 100644
index 00000000..5a97f8fe
Binary files /dev/null and b/animateditems/32971.gif differ
diff --git a/animateditems/32971.png b/animateditems/32971.png
new file mode 100644
index 00000000..199f3a6a
Binary files /dev/null and b/animateditems/32971.png differ
diff --git a/animateditems/32972.gif b/animateditems/32972.gif
new file mode 100644
index 00000000..1d50a878
Binary files /dev/null and b/animateditems/32972.gif differ
diff --git a/animateditems/32972.png b/animateditems/32972.png
new file mode 100644
index 00000000..19608cf7
Binary files /dev/null and b/animateditems/32972.png differ
diff --git a/animateditems/32973.gif b/animateditems/32973.gif
new file mode 100644
index 00000000..ef810f53
Binary files /dev/null and b/animateditems/32973.gif differ
diff --git a/animateditems/32973.png b/animateditems/32973.png
new file mode 100644
index 00000000..4370722b
Binary files /dev/null and b/animateditems/32973.png differ
diff --git a/animateditems/32974.gif b/animateditems/32974.gif
new file mode 100644
index 00000000..750cb771
Binary files /dev/null and b/animateditems/32974.gif differ
diff --git a/animateditems/32974.png b/animateditems/32974.png
new file mode 100644
index 00000000..d202ae23
Binary files /dev/null and b/animateditems/32974.png differ
diff --git a/animateditems/32975.gif b/animateditems/32975.gif
new file mode 100644
index 00000000..60580d48
Binary files /dev/null and b/animateditems/32975.gif differ
diff --git a/animateditems/32975.png b/animateditems/32975.png
new file mode 100644
index 00000000..a4735dbb
Binary files /dev/null and b/animateditems/32975.png differ
diff --git a/animateditems/32976.gif b/animateditems/32976.gif
new file mode 100644
index 00000000..224ce648
Binary files /dev/null and b/animateditems/32976.gif differ
diff --git a/animateditems/32976.png b/animateditems/32976.png
new file mode 100644
index 00000000..cccfb43c
Binary files /dev/null and b/animateditems/32976.png differ
diff --git a/animateditems/32977.gif b/animateditems/32977.gif
new file mode 100644
index 00000000..5d76d896
Binary files /dev/null and b/animateditems/32977.gif differ
diff --git a/animateditems/32977.png b/animateditems/32977.png
new file mode 100644
index 00000000..37f49d13
Binary files /dev/null and b/animateditems/32977.png differ
diff --git a/animateditems/32978.gif b/animateditems/32978.gif
new file mode 100644
index 00000000..66bd72c6
Binary files /dev/null and b/animateditems/32978.gif differ
diff --git a/animateditems/32978.png b/animateditems/32978.png
new file mode 100644
index 00000000..de0eb005
Binary files /dev/null and b/animateditems/32978.png differ
diff --git a/animateditems/32979.gif b/animateditems/32979.gif
new file mode 100644
index 00000000..f6171774
Binary files /dev/null and b/animateditems/32979.gif differ
diff --git a/animateditems/32979.png b/animateditems/32979.png
new file mode 100644
index 00000000..8bc0d401
Binary files /dev/null and b/animateditems/32979.png differ
diff --git a/animateditems/32980.gif b/animateditems/32980.gif
new file mode 100644
index 00000000..00be5b2e
Binary files /dev/null and b/animateditems/32980.gif differ
diff --git a/animateditems/32980.png b/animateditems/32980.png
new file mode 100644
index 00000000..b63b1fbe
Binary files /dev/null and b/animateditems/32980.png differ
diff --git a/animateditems/32981.gif b/animateditems/32981.gif
new file mode 100644
index 00000000..617aa49f
Binary files /dev/null and b/animateditems/32981.gif differ
diff --git a/animateditems/32981.png b/animateditems/32981.png
new file mode 100644
index 00000000..198cd114
Binary files /dev/null and b/animateditems/32981.png differ
diff --git a/animateditems/32993.gif b/animateditems/32993.gif
new file mode 100644
index 00000000..70f3c2cf
Binary files /dev/null and b/animateditems/32993.gif differ
diff --git a/animateditems/32993.png b/animateditems/32993.png
new file mode 100644
index 00000000..8120e7f8
Binary files /dev/null and b/animateditems/32993.png differ
diff --git a/animateditems/32998.gif b/animateditems/32998.gif
new file mode 100644
index 00000000..e9a4beca
Binary files /dev/null and b/animateditems/32998.gif differ
diff --git a/animateditems/32998.png b/animateditems/32998.png
new file mode 100644
index 00000000..b3aa0a26
Binary files /dev/null and b/animateditems/32998.png differ
diff --git a/animateditems/32999.gif b/animateditems/32999.gif
new file mode 100644
index 00000000..e9a4beca
Binary files /dev/null and b/animateditems/32999.gif differ
diff --git a/animateditems/32999.png b/animateditems/32999.png
new file mode 100644
index 00000000..b3aa0a26
Binary files /dev/null and b/animateditems/32999.png differ
diff --git a/animateditems/33000.gif b/animateditems/33000.gif
new file mode 100644
index 00000000..80987451
Binary files /dev/null and b/animateditems/33000.gif differ
diff --git a/animateditems/33000.png b/animateditems/33000.png
new file mode 100644
index 00000000..adc6faf3
Binary files /dev/null and b/animateditems/33000.png differ
diff --git a/animateditems/33018.gif b/animateditems/33018.gif
new file mode 100644
index 00000000..db2dd14c
Binary files /dev/null and b/animateditems/33018.gif differ
diff --git a/animateditems/33018.png b/animateditems/33018.png
new file mode 100644
index 00000000..f507cc6c
Binary files /dev/null and b/animateditems/33018.png differ
diff --git a/animateditems/33019.gif b/animateditems/33019.gif
new file mode 100644
index 00000000..07c5d50a
Binary files /dev/null and b/animateditems/33019.gif differ
diff --git a/animateditems/33019.png b/animateditems/33019.png
new file mode 100644
index 00000000..d62e250b
Binary files /dev/null and b/animateditems/33019.png differ
diff --git a/animateditems/33020.gif b/animateditems/33020.gif
new file mode 100644
index 00000000..98d443c0
Binary files /dev/null and b/animateditems/33020.gif differ
diff --git a/animateditems/33020.png b/animateditems/33020.png
new file mode 100644
index 00000000..4b74d7fd
Binary files /dev/null and b/animateditems/33020.png differ
diff --git a/animateditems/33021.gif b/animateditems/33021.gif
new file mode 100644
index 00000000..b7638a76
Binary files /dev/null and b/animateditems/33021.gif differ
diff --git a/animateditems/33021.png b/animateditems/33021.png
new file mode 100644
index 00000000..4f98cf02
Binary files /dev/null and b/animateditems/33021.png differ
diff --git a/animateditems/33022.gif b/animateditems/33022.gif
new file mode 100644
index 00000000..69d1c463
Binary files /dev/null and b/animateditems/33022.gif differ
diff --git a/animateditems/33022.png b/animateditems/33022.png
new file mode 100644
index 00000000..e860ac0b
Binary files /dev/null and b/animateditems/33022.png differ
diff --git a/animateditems/33023.gif b/animateditems/33023.gif
new file mode 100644
index 00000000..2d18f1bf
Binary files /dev/null and b/animateditems/33023.gif differ
diff --git a/animateditems/33023.png b/animateditems/33023.png
new file mode 100644
index 00000000..9896be7e
Binary files /dev/null and b/animateditems/33023.png differ
diff --git a/animateditems/33027.gif b/animateditems/33027.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/33027.gif differ
diff --git a/animateditems/33027.png b/animateditems/33027.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/33027.png differ
diff --git a/animateditems/33028.gif b/animateditems/33028.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/33028.gif differ
diff --git a/animateditems/33028.png b/animateditems/33028.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/33028.png differ
diff --git a/animateditems/33049.gif b/animateditems/33049.gif
new file mode 100644
index 00000000..000cc82b
Binary files /dev/null and b/animateditems/33049.gif differ
diff --git a/animateditems/33049.png b/animateditems/33049.png
new file mode 100644
index 00000000..24d0afaa
Binary files /dev/null and b/animateditems/33049.png differ
diff --git a/animateditems/33050.gif b/animateditems/33050.gif
new file mode 100644
index 00000000..603f9559
Binary files /dev/null and b/animateditems/33050.gif differ
diff --git a/animateditems/33050.png b/animateditems/33050.png
new file mode 100644
index 00000000..f2b639fc
Binary files /dev/null and b/animateditems/33050.png differ
diff --git a/animateditems/33051.gif b/animateditems/33051.gif
new file mode 100644
index 00000000..86cac3f9
Binary files /dev/null and b/animateditems/33051.gif differ
diff --git a/animateditems/33051.png b/animateditems/33051.png
new file mode 100644
index 00000000..5ec710a5
Binary files /dev/null and b/animateditems/33051.png differ
diff --git a/animateditems/33052.gif b/animateditems/33052.gif
new file mode 100644
index 00000000..3bb2b915
Binary files /dev/null and b/animateditems/33052.gif differ
diff --git a/animateditems/33052.png b/animateditems/33052.png
new file mode 100644
index 00000000..774d0c19
Binary files /dev/null and b/animateditems/33052.png differ
diff --git a/animateditems/33053.gif b/animateditems/33053.gif
new file mode 100644
index 00000000..7032287b
Binary files /dev/null and b/animateditems/33053.gif differ
diff --git a/animateditems/33053.png b/animateditems/33053.png
new file mode 100644
index 00000000..7b0bd3bc
Binary files /dev/null and b/animateditems/33053.png differ
diff --git a/animateditems/33054.gif b/animateditems/33054.gif
new file mode 100644
index 00000000..7ae6f4d9
Binary files /dev/null and b/animateditems/33054.gif differ
diff --git a/animateditems/33054.png b/animateditems/33054.png
new file mode 100644
index 00000000..5760e50f
Binary files /dev/null and b/animateditems/33054.png differ
diff --git a/animateditems/33055.gif b/animateditems/33055.gif
new file mode 100644
index 00000000..7efea8ca
Binary files /dev/null and b/animateditems/33055.gif differ
diff --git a/animateditems/33055.png b/animateditems/33055.png
new file mode 100644
index 00000000..6060977c
Binary files /dev/null and b/animateditems/33055.png differ
diff --git a/animateditems/33056.gif b/animateditems/33056.gif
new file mode 100644
index 00000000..9eb2beac
Binary files /dev/null and b/animateditems/33056.gif differ
diff --git a/animateditems/33056.png b/animateditems/33056.png
new file mode 100644
index 00000000..1cf6b4d5
Binary files /dev/null and b/animateditems/33056.png differ
diff --git a/animateditems/33057.gif b/animateditems/33057.gif
new file mode 100644
index 00000000..f88b088a
Binary files /dev/null and b/animateditems/33057.gif differ
diff --git a/animateditems/33057.png b/animateditems/33057.png
new file mode 100644
index 00000000..94bb8875
Binary files /dev/null and b/animateditems/33057.png differ
diff --git a/animateditems/33058.gif b/animateditems/33058.gif
new file mode 100644
index 00000000..89073f3d
Binary files /dev/null and b/animateditems/33058.gif differ
diff --git a/animateditems/33058.png b/animateditems/33058.png
new file mode 100644
index 00000000..b1ddf863
Binary files /dev/null and b/animateditems/33058.png differ
diff --git a/animateditems/33631.gif b/animateditems/33631.gif
new file mode 100644
index 00000000..9ff74e0a
Binary files /dev/null and b/animateditems/33631.gif differ
diff --git a/animateditems/33631.png b/animateditems/33631.png
new file mode 100644
index 00000000..8e1e0298
Binary files /dev/null and b/animateditems/33631.png differ
diff --git a/animateditems/33859.gif b/animateditems/33859.gif
new file mode 100644
index 00000000..5b97fc27
Binary files /dev/null and b/animateditems/33859.gif differ
diff --git a/animateditems/33859.png b/animateditems/33859.png
new file mode 100644
index 00000000..09377897
Binary files /dev/null and b/animateditems/33859.png differ
diff --git a/animateditems/33860.gif b/animateditems/33860.gif
new file mode 100644
index 00000000..7c3a0e7c
Binary files /dev/null and b/animateditems/33860.gif differ
diff --git a/animateditems/33860.png b/animateditems/33860.png
new file mode 100644
index 00000000..edd1f030
Binary files /dev/null and b/animateditems/33860.png differ
diff --git a/animateditems/33861.gif b/animateditems/33861.gif
new file mode 100644
index 00000000..90419495
Binary files /dev/null and b/animateditems/33861.gif differ
diff --git a/animateditems/33861.png b/animateditems/33861.png
new file mode 100644
index 00000000..89b54618
Binary files /dev/null and b/animateditems/33861.png differ
diff --git a/animateditems/33862.gif b/animateditems/33862.gif
new file mode 100644
index 00000000..18d73786
Binary files /dev/null and b/animateditems/33862.gif differ
diff --git a/animateditems/33862.png b/animateditems/33862.png
new file mode 100644
index 00000000..194da974
Binary files /dev/null and b/animateditems/33862.png differ
diff --git a/animateditems/33919.gif b/animateditems/33919.gif
new file mode 100644
index 00000000..4ecaba1e
Binary files /dev/null and b/animateditems/33919.gif differ
diff --git a/animateditems/33919.png b/animateditems/33919.png
new file mode 100644
index 00000000..06d3b89c
Binary files /dev/null and b/animateditems/33919.png differ
diff --git a/animateditems/33920.gif b/animateditems/33920.gif
new file mode 100644
index 00000000..adff75d9
Binary files /dev/null and b/animateditems/33920.gif differ
diff --git a/animateditems/33920.png b/animateditems/33920.png
new file mode 100644
index 00000000..484b650a
Binary files /dev/null and b/animateditems/33920.png differ
diff --git a/animateditems/33921.gif b/animateditems/33921.gif
new file mode 100644
index 00000000..ba1eec6f
Binary files /dev/null and b/animateditems/33921.gif differ
diff --git a/animateditems/33921.png b/animateditems/33921.png
new file mode 100644
index 00000000..34a59549
Binary files /dev/null and b/animateditems/33921.png differ
diff --git a/animateditems/33922.gif b/animateditems/33922.gif
new file mode 100644
index 00000000..d631b044
Binary files /dev/null and b/animateditems/33922.gif differ
diff --git a/animateditems/33922.png b/animateditems/33922.png
new file mode 100644
index 00000000..14d825da
Binary files /dev/null and b/animateditems/33922.png differ
diff --git a/animateditems/33923.gif b/animateditems/33923.gif
new file mode 100644
index 00000000..3cfb92f9
Binary files /dev/null and b/animateditems/33923.gif differ
diff --git a/animateditems/33923.png b/animateditems/33923.png
new file mode 100644
index 00000000..c3cd43f6
Binary files /dev/null and b/animateditems/33923.png differ
diff --git a/animateditems/33924.gif b/animateditems/33924.gif
new file mode 100644
index 00000000..452d3520
Binary files /dev/null and b/animateditems/33924.gif differ
diff --git a/animateditems/33924.png b/animateditems/33924.png
new file mode 100644
index 00000000..b02559a1
Binary files /dev/null and b/animateditems/33924.png differ
diff --git a/animateditems/33952.gif b/animateditems/33952.gif
new file mode 100644
index 00000000..972bae7f
Binary files /dev/null and b/animateditems/33952.gif differ
diff --git a/animateditems/33952.png b/animateditems/33952.png
new file mode 100644
index 00000000..7e58500b
Binary files /dev/null and b/animateditems/33952.png differ
diff --git a/animateditems/33953.gif b/animateditems/33953.gif
new file mode 100644
index 00000000..1bcffd1b
Binary files /dev/null and b/animateditems/33953.gif differ
diff --git a/animateditems/33953.png b/animateditems/33953.png
new file mode 100644
index 00000000..1694853c
Binary files /dev/null and b/animateditems/33953.png differ
diff --git a/animateditems/33959.gif b/animateditems/33959.gif
new file mode 100644
index 00000000..dd8f2d6c
Binary files /dev/null and b/animateditems/33959.gif differ
diff --git a/animateditems/33959.png b/animateditems/33959.png
new file mode 100644
index 00000000..7670494f
Binary files /dev/null and b/animateditems/33959.png differ
diff --git a/animateditems/33960.gif b/animateditems/33960.gif
new file mode 100644
index 00000000..949d68be
Binary files /dev/null and b/animateditems/33960.gif differ
diff --git a/animateditems/33960.png b/animateditems/33960.png
new file mode 100644
index 00000000..d4e17907
Binary files /dev/null and b/animateditems/33960.png differ
diff --git a/animateditems/33961.gif b/animateditems/33961.gif
new file mode 100644
index 00000000..7ad1a0d0
Binary files /dev/null and b/animateditems/33961.gif differ
diff --git a/animateditems/33961.png b/animateditems/33961.png
new file mode 100644
index 00000000..85d49330
Binary files /dev/null and b/animateditems/33961.png differ
diff --git a/animateditems/33962.gif b/animateditems/33962.gif
new file mode 100644
index 00000000..ea100dce
Binary files /dev/null and b/animateditems/33962.gif differ
diff --git a/animateditems/33962.png b/animateditems/33962.png
new file mode 100644
index 00000000..53ad1edb
Binary files /dev/null and b/animateditems/33962.png differ
diff --git a/animateditems/33979.gif b/animateditems/33979.gif
new file mode 100644
index 00000000..2ebf0535
Binary files /dev/null and b/animateditems/33979.gif differ
diff --git a/animateditems/33979.png b/animateditems/33979.png
new file mode 100644
index 00000000..695fe449
Binary files /dev/null and b/animateditems/33979.png differ
diff --git a/animateditems/33980.gif b/animateditems/33980.gif
new file mode 100644
index 00000000..a318b494
Binary files /dev/null and b/animateditems/33980.gif differ
diff --git a/animateditems/33980.png b/animateditems/33980.png
new file mode 100644
index 00000000..104bca6f
Binary files /dev/null and b/animateditems/33980.png differ
diff --git a/animateditems/33981.gif b/animateditems/33981.gif
new file mode 100644
index 00000000..1d58e0d4
Binary files /dev/null and b/animateditems/33981.gif differ
diff --git a/animateditems/33981.png b/animateditems/33981.png
new file mode 100644
index 00000000..cf2f4521
Binary files /dev/null and b/animateditems/33981.png differ
diff --git a/animateditems/33983.gif b/animateditems/33983.gif
new file mode 100644
index 00000000..66de49c4
Binary files /dev/null and b/animateditems/33983.gif differ
diff --git a/animateditems/33983.png b/animateditems/33983.png
new file mode 100644
index 00000000..1211db03
Binary files /dev/null and b/animateditems/33983.png differ
diff --git a/animateditems/33984.gif b/animateditems/33984.gif
new file mode 100644
index 00000000..c036eec1
Binary files /dev/null and b/animateditems/33984.gif differ
diff --git a/animateditems/33984.png b/animateditems/33984.png
new file mode 100644
index 00000000..e529f43d
Binary files /dev/null and b/animateditems/33984.png differ
diff --git a/animateditems/33985.gif b/animateditems/33985.gif
new file mode 100644
index 00000000..4b7406c6
Binary files /dev/null and b/animateditems/33985.gif differ
diff --git a/animateditems/33985.png b/animateditems/33985.png
new file mode 100644
index 00000000..0fa85ea4
Binary files /dev/null and b/animateditems/33985.png differ
diff --git a/animateditems/33986.gif b/animateditems/33986.gif
new file mode 100644
index 00000000..6996b7aa
Binary files /dev/null and b/animateditems/33986.gif differ
diff --git a/animateditems/33986.png b/animateditems/33986.png
new file mode 100644
index 00000000..bc5dfafd
Binary files /dev/null and b/animateditems/33986.png differ
diff --git a/animateditems/33987.gif b/animateditems/33987.gif
new file mode 100644
index 00000000..2edb7cf1
Binary files /dev/null and b/animateditems/33987.gif differ
diff --git a/animateditems/33987.png b/animateditems/33987.png
new file mode 100644
index 00000000..b7d212c8
Binary files /dev/null and b/animateditems/33987.png differ
diff --git a/animateditems/33988.gif b/animateditems/33988.gif
new file mode 100644
index 00000000..1c788db5
Binary files /dev/null and b/animateditems/33988.gif differ
diff --git a/animateditems/33988.png b/animateditems/33988.png
new file mode 100644
index 00000000..547ab12d
Binary files /dev/null and b/animateditems/33988.png differ
diff --git a/animateditems/33989.gif b/animateditems/33989.gif
new file mode 100644
index 00000000..e3053ea6
Binary files /dev/null and b/animateditems/33989.gif differ
diff --git a/animateditems/33989.png b/animateditems/33989.png
new file mode 100644
index 00000000..46184503
Binary files /dev/null and b/animateditems/33989.png differ
diff --git a/animateditems/33990.gif b/animateditems/33990.gif
new file mode 100644
index 00000000..8c3c10e7
Binary files /dev/null and b/animateditems/33990.gif differ
diff --git a/animateditems/33990.png b/animateditems/33990.png
new file mode 100644
index 00000000..8a092029
Binary files /dev/null and b/animateditems/33990.png differ
diff --git a/animateditems/33991.gif b/animateditems/33991.gif
new file mode 100644
index 00000000..c2f26d6e
Binary files /dev/null and b/animateditems/33991.gif differ
diff --git a/animateditems/33991.png b/animateditems/33991.png
new file mode 100644
index 00000000..7c96bc8e
Binary files /dev/null and b/animateditems/33991.png differ
diff --git a/animateditems/33992.gif b/animateditems/33992.gif
new file mode 100644
index 00000000..fd42c259
Binary files /dev/null and b/animateditems/33992.gif differ
diff --git a/animateditems/33992.png b/animateditems/33992.png
new file mode 100644
index 00000000..03faf021
Binary files /dev/null and b/animateditems/33992.png differ
diff --git a/animateditems/33995.gif b/animateditems/33995.gif
new file mode 100644
index 00000000..3e378e66
Binary files /dev/null and b/animateditems/33995.gif differ
diff --git a/animateditems/33995.png b/animateditems/33995.png
new file mode 100644
index 00000000..bdc6862b
Binary files /dev/null and b/animateditems/33995.png differ
diff --git a/animateditems/33996.gif b/animateditems/33996.gif
new file mode 100644
index 00000000..2087a3ed
Binary files /dev/null and b/animateditems/33996.gif differ
diff --git a/animateditems/33996.png b/animateditems/33996.png
new file mode 100644
index 00000000..2ba5de49
Binary files /dev/null and b/animateditems/33996.png differ
diff --git a/animateditems/34006.gif b/animateditems/34006.gif
new file mode 100644
index 00000000..df2247a5
Binary files /dev/null and b/animateditems/34006.gif differ
diff --git a/animateditems/34006.png b/animateditems/34006.png
new file mode 100644
index 00000000..a57122ac
Binary files /dev/null and b/animateditems/34006.png differ
diff --git a/animateditems/34010.gif b/animateditems/34010.gif
new file mode 100644
index 00000000..ae4329e9
Binary files /dev/null and b/animateditems/34010.gif differ
diff --git a/animateditems/34010.png b/animateditems/34010.png
new file mode 100644
index 00000000..617516f1
Binary files /dev/null and b/animateditems/34010.png differ
diff --git a/animateditems/34011.gif b/animateditems/34011.gif
new file mode 100644
index 00000000..63211ee2
Binary files /dev/null and b/animateditems/34011.gif differ
diff --git a/animateditems/34011.png b/animateditems/34011.png
new file mode 100644
index 00000000..a443d83d
Binary files /dev/null and b/animateditems/34011.png differ
diff --git a/animateditems/34012.gif b/animateditems/34012.gif
new file mode 100644
index 00000000..1fbda6e1
Binary files /dev/null and b/animateditems/34012.gif differ
diff --git a/animateditems/34012.png b/animateditems/34012.png
new file mode 100644
index 00000000..5d34f3c2
Binary files /dev/null and b/animateditems/34012.png differ
diff --git a/animateditems/34023.gif b/animateditems/34023.gif
new file mode 100644
index 00000000..52f8aaea
Binary files /dev/null and b/animateditems/34023.gif differ
diff --git a/animateditems/34023.png b/animateditems/34023.png
new file mode 100644
index 00000000..ae21b459
Binary files /dev/null and b/animateditems/34023.png differ
diff --git a/animateditems/34024.gif b/animateditems/34024.gif
new file mode 100644
index 00000000..52f8aaea
Binary files /dev/null and b/animateditems/34024.gif differ
diff --git a/animateditems/34024.png b/animateditems/34024.png
new file mode 100644
index 00000000..ae21b459
Binary files /dev/null and b/animateditems/34024.png differ
diff --git a/animateditems/34025.gif b/animateditems/34025.gif
new file mode 100644
index 00000000..d53c318d
Binary files /dev/null and b/animateditems/34025.gif differ
diff --git a/animateditems/34025.png b/animateditems/34025.png
new file mode 100644
index 00000000..b206456e
Binary files /dev/null and b/animateditems/34025.png differ
diff --git a/animateditems/34026.gif b/animateditems/34026.gif
new file mode 100644
index 00000000..93e52664
Binary files /dev/null and b/animateditems/34026.gif differ
diff --git a/animateditems/34026.png b/animateditems/34026.png
new file mode 100644
index 00000000..1734c414
Binary files /dev/null and b/animateditems/34026.png differ
diff --git a/animateditems/34027.gif b/animateditems/34027.gif
new file mode 100644
index 00000000..404bd3fa
Binary files /dev/null and b/animateditems/34027.gif differ
diff --git a/animateditems/34027.png b/animateditems/34027.png
new file mode 100644
index 00000000..b7ca32cf
Binary files /dev/null and b/animateditems/34027.png differ
diff --git a/animateditems/34035.gif b/animateditems/34035.gif
new file mode 100644
index 00000000..987fef1d
Binary files /dev/null and b/animateditems/34035.gif differ
diff --git a/animateditems/34035.png b/animateditems/34035.png
new file mode 100644
index 00000000..52b86c6c
Binary files /dev/null and b/animateditems/34035.png differ
diff --git a/animateditems/34037.gif b/animateditems/34037.gif
new file mode 100644
index 00000000..34b534fa
Binary files /dev/null and b/animateditems/34037.gif differ
diff --git a/animateditems/34037.png b/animateditems/34037.png
new file mode 100644
index 00000000..4210aedd
Binary files /dev/null and b/animateditems/34037.png differ
diff --git a/animateditems/34058.gif b/animateditems/34058.gif
new file mode 100644
index 00000000..d53bcb2c
Binary files /dev/null and b/animateditems/34058.gif differ
diff --git a/animateditems/34084.gif b/animateditems/34084.gif
new file mode 100644
index 00000000..a303cb7b
Binary files /dev/null and b/animateditems/34084.gif differ
diff --git a/animateditems/34084.png b/animateditems/34084.png
new file mode 100644
index 00000000..ebd0f806
Binary files /dev/null and b/animateditems/34084.png differ
diff --git a/animateditems/34087.gif b/animateditems/34087.gif
new file mode 100644
index 00000000..59471bfc
Binary files /dev/null and b/animateditems/34087.gif differ
diff --git a/animateditems/34087.png b/animateditems/34087.png
new file mode 100644
index 00000000..6588d23c
Binary files /dev/null and b/animateditems/34087.png differ
diff --git a/animateditems/34089.gif b/animateditems/34089.gif
new file mode 100644
index 00000000..b6c881d9
Binary files /dev/null and b/animateditems/34089.gif differ
diff --git a/animateditems/34089.png b/animateditems/34089.png
new file mode 100644
index 00000000..ff690425
Binary files /dev/null and b/animateditems/34089.png differ
diff --git a/animateditems/34090.gif b/animateditems/34090.gif
new file mode 100644
index 00000000..b6c881d9
Binary files /dev/null and b/animateditems/34090.gif differ
diff --git a/animateditems/34090.png b/animateditems/34090.png
new file mode 100644
index 00000000..ff690425
Binary files /dev/null and b/animateditems/34090.png differ
diff --git a/animateditems/34091.gif b/animateditems/34091.gif
new file mode 100644
index 00000000..b6c881d9
Binary files /dev/null and b/animateditems/34091.gif differ
diff --git a/animateditems/34091.png b/animateditems/34091.png
new file mode 100644
index 00000000..ff690425
Binary files /dev/null and b/animateditems/34091.png differ
diff --git a/animateditems/34092.gif b/animateditems/34092.gif
new file mode 100644
index 00000000..b6c881d9
Binary files /dev/null and b/animateditems/34092.gif differ
diff --git a/animateditems/34092.png b/animateditems/34092.png
new file mode 100644
index 00000000..ff690425
Binary files /dev/null and b/animateditems/34092.png differ
diff --git a/animateditems/34093.gif b/animateditems/34093.gif
new file mode 100644
index 00000000..1d716979
Binary files /dev/null and b/animateditems/34093.gif differ
diff --git a/animateditems/34093.png b/animateditems/34093.png
new file mode 100644
index 00000000..166823a1
Binary files /dev/null and b/animateditems/34093.png differ
diff --git a/animateditems/34094.gif b/animateditems/34094.gif
new file mode 100644
index 00000000..bee16953
Binary files /dev/null and b/animateditems/34094.gif differ
diff --git a/animateditems/34094.png b/animateditems/34094.png
new file mode 100644
index 00000000..7f4304cf
Binary files /dev/null and b/animateditems/34094.png differ
diff --git a/animateditems/34095.gif b/animateditems/34095.gif
new file mode 100644
index 00000000..9a984347
Binary files /dev/null and b/animateditems/34095.gif differ
diff --git a/animateditems/34095.png b/animateditems/34095.png
new file mode 100644
index 00000000..f16d4fad
Binary files /dev/null and b/animateditems/34095.png differ
diff --git a/animateditems/34096.gif b/animateditems/34096.gif
new file mode 100644
index 00000000..ee7c8c09
Binary files /dev/null and b/animateditems/34096.gif differ
diff --git a/animateditems/34096.png b/animateditems/34096.png
new file mode 100644
index 00000000..e7c8c442
Binary files /dev/null and b/animateditems/34096.png differ
diff --git a/animateditems/34097.gif b/animateditems/34097.gif
new file mode 100644
index 00000000..cf99e8b6
Binary files /dev/null and b/animateditems/34097.gif differ
diff --git a/animateditems/34097.png b/animateditems/34097.png
new file mode 100644
index 00000000..31482466
Binary files /dev/null and b/animateditems/34097.png differ
diff --git a/animateditems/34098.gif b/animateditems/34098.gif
new file mode 100644
index 00000000..00cd0ea3
Binary files /dev/null and b/animateditems/34098.gif differ
diff --git a/animateditems/34098.png b/animateditems/34098.png
new file mode 100644
index 00000000..7e96954b
Binary files /dev/null and b/animateditems/34098.png differ
diff --git a/animateditems/34099.gif b/animateditems/34099.gif
new file mode 100644
index 00000000..fe483663
Binary files /dev/null and b/animateditems/34099.gif differ
diff --git a/animateditems/34099.png b/animateditems/34099.png
new file mode 100644
index 00000000..2ba864f3
Binary files /dev/null and b/animateditems/34099.png differ
diff --git a/animateditems/34101.gif b/animateditems/34101.gif
new file mode 100644
index 00000000..208c8de3
Binary files /dev/null and b/animateditems/34101.gif differ
diff --git a/animateditems/34101.png b/animateditems/34101.png
new file mode 100644
index 00000000..feef1604
Binary files /dev/null and b/animateditems/34101.png differ
diff --git a/animateditems/34102.gif b/animateditems/34102.gif
new file mode 100644
index 00000000..5e81c373
Binary files /dev/null and b/animateditems/34102.gif differ
diff --git a/animateditems/34102.png b/animateditems/34102.png
new file mode 100644
index 00000000..7ccedf09
Binary files /dev/null and b/animateditems/34102.png differ
diff --git a/animateditems/34103.gif b/animateditems/34103.gif
new file mode 100644
index 00000000..d7b6a4a9
Binary files /dev/null and b/animateditems/34103.gif differ
diff --git a/animateditems/34103.png b/animateditems/34103.png
new file mode 100644
index 00000000..22d5208a
Binary files /dev/null and b/animateditems/34103.png differ
diff --git a/animateditems/34141.gif b/animateditems/34141.gif
new file mode 100644
index 00000000..28dde98a
Binary files /dev/null and b/animateditems/34141.gif differ
diff --git a/animateditems/34141.png b/animateditems/34141.png
new file mode 100644
index 00000000..9c48002f
Binary files /dev/null and b/animateditems/34141.png differ
diff --git a/animateditems/34142.gif b/animateditems/34142.gif
new file mode 100644
index 00000000..ec558419
Binary files /dev/null and b/animateditems/34142.gif differ
diff --git a/animateditems/34142.png b/animateditems/34142.png
new file mode 100644
index 00000000..df8bd1e5
Binary files /dev/null and b/animateditems/34142.png differ
diff --git a/animateditems/34143.gif b/animateditems/34143.gif
new file mode 100644
index 00000000..67a654e6
Binary files /dev/null and b/animateditems/34143.gif differ
diff --git a/animateditems/34143.png b/animateditems/34143.png
new file mode 100644
index 00000000..3f3a1c71
Binary files /dev/null and b/animateditems/34143.png differ
diff --git a/animateditems/34144.gif b/animateditems/34144.gif
new file mode 100644
index 00000000..5bcb6378
Binary files /dev/null and b/animateditems/34144.gif differ
diff --git a/animateditems/34144.png b/animateditems/34144.png
new file mode 100644
index 00000000..84fb50ef
Binary files /dev/null and b/animateditems/34144.png differ
diff --git a/animateditems/34145.gif b/animateditems/34145.gif
new file mode 100644
index 00000000..3610df96
Binary files /dev/null and b/animateditems/34145.gif differ
diff --git a/animateditems/34145.png b/animateditems/34145.png
new file mode 100644
index 00000000..0347dd8e
Binary files /dev/null and b/animateditems/34145.png differ
diff --git a/animateditems/34212.gif b/animateditems/34212.gif
new file mode 100644
index 00000000..80987451
Binary files /dev/null and b/animateditems/34212.gif differ
diff --git a/animateditems/34212.png b/animateditems/34212.png
new file mode 100644
index 00000000..adc6faf3
Binary files /dev/null and b/animateditems/34212.png differ
diff --git a/animateditems/34213.gif b/animateditems/34213.gif
new file mode 100644
index 00000000..66f5511d
Binary files /dev/null and b/animateditems/34213.gif differ
diff --git a/animateditems/34213.png b/animateditems/34213.png
new file mode 100644
index 00000000..29364c51
Binary files /dev/null and b/animateditems/34213.png differ
diff --git a/animateditems/34214.gif b/animateditems/34214.gif
new file mode 100644
index 00000000..2e989af0
Binary files /dev/null and b/animateditems/34214.gif differ
diff --git a/animateditems/34214.png b/animateditems/34214.png
new file mode 100644
index 00000000..25571f71
Binary files /dev/null and b/animateditems/34214.png differ
diff --git a/animateditems/34215.gif b/animateditems/34215.gif
new file mode 100644
index 00000000..65a21881
Binary files /dev/null and b/animateditems/34215.gif differ
diff --git a/animateditems/34215.png b/animateditems/34215.png
new file mode 100644
index 00000000..56aae24d
Binary files /dev/null and b/animateditems/34215.png differ
diff --git a/animateditems/34216.gif b/animateditems/34216.gif
new file mode 100644
index 00000000..8f63e47e
Binary files /dev/null and b/animateditems/34216.gif differ
diff --git a/animateditems/34216.png b/animateditems/34216.png
new file mode 100644
index 00000000..f5ea6602
Binary files /dev/null and b/animateditems/34216.png differ
diff --git a/animateditems/34217.gif b/animateditems/34217.gif
new file mode 100644
index 00000000..4e41b087
Binary files /dev/null and b/animateditems/34217.gif differ
diff --git a/animateditems/34217.png b/animateditems/34217.png
new file mode 100644
index 00000000..45206570
Binary files /dev/null and b/animateditems/34217.png differ
diff --git a/animateditems/34228.gif b/animateditems/34228.gif
new file mode 100644
index 00000000..4e9d4f48
Binary files /dev/null and b/animateditems/34228.gif differ
diff --git a/animateditems/34228.png b/animateditems/34228.png
new file mode 100644
index 00000000..71b67462
Binary files /dev/null and b/animateditems/34228.png differ
diff --git a/animateditems/34229.gif b/animateditems/34229.gif
new file mode 100644
index 00000000..58531036
Binary files /dev/null and b/animateditems/34229.gif differ
diff --git a/animateditems/34229.png b/animateditems/34229.png
new file mode 100644
index 00000000..18a36bc8
Binary files /dev/null and b/animateditems/34229.png differ
diff --git a/animateditems/34230.gif b/animateditems/34230.gif
new file mode 100644
index 00000000..0b327011
Binary files /dev/null and b/animateditems/34230.gif differ
diff --git a/animateditems/34230.png b/animateditems/34230.png
new file mode 100644
index 00000000..8feadaea
Binary files /dev/null and b/animateditems/34230.png differ
diff --git a/animateditems/34231.gif b/animateditems/34231.gif
new file mode 100644
index 00000000..d7c419e8
Binary files /dev/null and b/animateditems/34231.gif differ
diff --git a/animateditems/34231.png b/animateditems/34231.png
new file mode 100644
index 00000000..100a6faa
Binary files /dev/null and b/animateditems/34231.png differ
diff --git a/animateditems/34232.gif b/animateditems/34232.gif
new file mode 100644
index 00000000..234e3287
Binary files /dev/null and b/animateditems/34232.gif differ
diff --git a/animateditems/34232.png b/animateditems/34232.png
new file mode 100644
index 00000000..7e3f2d2e
Binary files /dev/null and b/animateditems/34232.png differ
diff --git a/animateditems/34233.gif b/animateditems/34233.gif
new file mode 100644
index 00000000..f1dd5763
Binary files /dev/null and b/animateditems/34233.gif differ
diff --git a/animateditems/34233.png b/animateditems/34233.png
new file mode 100644
index 00000000..c876cd36
Binary files /dev/null and b/animateditems/34233.png differ
diff --git a/animateditems/34234.gif b/animateditems/34234.gif
new file mode 100644
index 00000000..f75d73b7
Binary files /dev/null and b/animateditems/34234.gif differ
diff --git a/animateditems/34234.png b/animateditems/34234.png
new file mode 100644
index 00000000..ec55392c
Binary files /dev/null and b/animateditems/34234.png differ
diff --git a/animateditems/34235.gif b/animateditems/34235.gif
new file mode 100644
index 00000000..9ea628ab
Binary files /dev/null and b/animateditems/34235.gif differ
diff --git a/animateditems/34235.png b/animateditems/34235.png
new file mode 100644
index 00000000..d65f0a9d
Binary files /dev/null and b/animateditems/34235.png differ
diff --git a/animateditems/34236.gif b/animateditems/34236.gif
new file mode 100644
index 00000000..2872756c
Binary files /dev/null and b/animateditems/34236.gif differ
diff --git a/animateditems/34236.png b/animateditems/34236.png
new file mode 100644
index 00000000..9cde4cea
Binary files /dev/null and b/animateditems/34236.png differ
diff --git a/animateditems/34237.gif b/animateditems/34237.gif
new file mode 100644
index 00000000..94e8123e
Binary files /dev/null and b/animateditems/34237.gif differ
diff --git a/animateditems/34237.png b/animateditems/34237.png
new file mode 100644
index 00000000..d58e6625
Binary files /dev/null and b/animateditems/34237.png differ
diff --git a/animateditems/34238.gif b/animateditems/34238.gif
new file mode 100644
index 00000000..6b494154
Binary files /dev/null and b/animateditems/34238.gif differ
diff --git a/animateditems/34238.png b/animateditems/34238.png
new file mode 100644
index 00000000..42e264d6
Binary files /dev/null and b/animateditems/34238.png differ
diff --git a/animateditems/34239.gif b/animateditems/34239.gif
new file mode 100644
index 00000000..5f9de1d1
Binary files /dev/null and b/animateditems/34239.gif differ
diff --git a/animateditems/34239.png b/animateditems/34239.png
new file mode 100644
index 00000000..82e082d2
Binary files /dev/null and b/animateditems/34239.png differ
diff --git a/animateditems/34244.gif b/animateditems/34244.gif
new file mode 100644
index 00000000..a3674771
Binary files /dev/null and b/animateditems/34244.gif differ
diff --git a/animateditems/34244.png b/animateditems/34244.png
new file mode 100644
index 00000000..03668308
Binary files /dev/null and b/animateditems/34244.png differ
diff --git a/animateditems/34245.gif b/animateditems/34245.gif
new file mode 100644
index 00000000..f3067429
Binary files /dev/null and b/animateditems/34245.gif differ
diff --git a/animateditems/34245.png b/animateditems/34245.png
new file mode 100644
index 00000000..75fe3986
Binary files /dev/null and b/animateditems/34245.png differ
diff --git a/animateditems/34246.gif b/animateditems/34246.gif
new file mode 100644
index 00000000..62e9c659
Binary files /dev/null and b/animateditems/34246.gif differ
diff --git a/animateditems/34246.png b/animateditems/34246.png
new file mode 100644
index 00000000..c5403551
Binary files /dev/null and b/animateditems/34246.png differ
diff --git a/animateditems/34247.gif b/animateditems/34247.gif
new file mode 100644
index 00000000..61593f4b
Binary files /dev/null and b/animateditems/34247.gif differ
diff --git a/animateditems/34247.png b/animateditems/34247.png
new file mode 100644
index 00000000..10abbab4
Binary files /dev/null and b/animateditems/34247.png differ
diff --git a/animateditems/34248.gif b/animateditems/34248.gif
new file mode 100644
index 00000000..3461fa85
Binary files /dev/null and b/animateditems/34248.gif differ
diff --git a/animateditems/34248.png b/animateditems/34248.png
new file mode 100644
index 00000000..1e69f32a
Binary files /dev/null and b/animateditems/34248.png differ
diff --git a/animateditems/34249.gif b/animateditems/34249.gif
new file mode 100644
index 00000000..995b3fdf
Binary files /dev/null and b/animateditems/34249.gif differ
diff --git a/animateditems/34249.png b/animateditems/34249.png
new file mode 100644
index 00000000..d2f86200
Binary files /dev/null and b/animateditems/34249.png differ
diff --git a/animateditems/34250.gif b/animateditems/34250.gif
new file mode 100644
index 00000000..c8b74a6c
Binary files /dev/null and b/animateditems/34250.gif differ
diff --git a/animateditems/34250.png b/animateditems/34250.png
new file mode 100644
index 00000000..a6b0a03b
Binary files /dev/null and b/animateditems/34250.png differ
diff --git a/animateditems/34251.gif b/animateditems/34251.gif
new file mode 100644
index 00000000..e21c1d0a
Binary files /dev/null and b/animateditems/34251.gif differ
diff --git a/animateditems/34251.png b/animateditems/34251.png
new file mode 100644
index 00000000..b9b9ecce
Binary files /dev/null and b/animateditems/34251.png differ
diff --git a/animateditems/34268.gif b/animateditems/34268.gif
new file mode 100644
index 00000000..83215224
Binary files /dev/null and b/animateditems/34268.gif differ
diff --git a/animateditems/34268.png b/animateditems/34268.png
new file mode 100644
index 00000000..c2b5ee7e
Binary files /dev/null and b/animateditems/34268.png differ
diff --git a/animateditems/34269.gif b/animateditems/34269.gif
new file mode 100644
index 00000000..c641e473
Binary files /dev/null and b/animateditems/34269.gif differ
diff --git a/animateditems/34269.png b/animateditems/34269.png
new file mode 100644
index 00000000..cff85d54
Binary files /dev/null and b/animateditems/34269.png differ
diff --git a/animateditems/34270.gif b/animateditems/34270.gif
new file mode 100644
index 00000000..fcd9f2f4
Binary files /dev/null and b/animateditems/34270.gif differ
diff --git a/animateditems/34270.png b/animateditems/34270.png
new file mode 100644
index 00000000..bc7d6d82
Binary files /dev/null and b/animateditems/34270.png differ
diff --git a/animateditems/34271.gif b/animateditems/34271.gif
new file mode 100644
index 00000000..a4b3cd97
Binary files /dev/null and b/animateditems/34271.gif differ
diff --git a/animateditems/34271.png b/animateditems/34271.png
new file mode 100644
index 00000000..961a4458
Binary files /dev/null and b/animateditems/34271.png differ
diff --git a/animateditems/34272.gif b/animateditems/34272.gif
new file mode 100644
index 00000000..f5a4afc6
Binary files /dev/null and b/animateditems/34272.gif differ
diff --git a/animateditems/34272.png b/animateditems/34272.png
new file mode 100644
index 00000000..a3d0dd14
Binary files /dev/null and b/animateditems/34272.png differ
diff --git a/animateditems/34273.gif b/animateditems/34273.gif
new file mode 100644
index 00000000..37a5efe6
Binary files /dev/null and b/animateditems/34273.gif differ
diff --git a/animateditems/34273.png b/animateditems/34273.png
new file mode 100644
index 00000000..7bd4dec4
Binary files /dev/null and b/animateditems/34273.png differ
diff --git a/animateditems/34274.gif b/animateditems/34274.gif
new file mode 100644
index 00000000..1d58e0d4
Binary files /dev/null and b/animateditems/34274.gif differ
diff --git a/animateditems/34274.png b/animateditems/34274.png
new file mode 100644
index 00000000..cf2f4521
Binary files /dev/null and b/animateditems/34274.png differ
diff --git a/animateditems/34275.gif b/animateditems/34275.gif
new file mode 100644
index 00000000..fd42c259
Binary files /dev/null and b/animateditems/34275.gif differ
diff --git a/animateditems/34275.png b/animateditems/34275.png
new file mode 100644
index 00000000..03faf021
Binary files /dev/null and b/animateditems/34275.png differ
diff --git a/animateditems/34276.gif b/animateditems/34276.gif
new file mode 100644
index 00000000..6996b7aa
Binary files /dev/null and b/animateditems/34276.gif differ
diff --git a/animateditems/34276.png b/animateditems/34276.png
new file mode 100644
index 00000000..bc5dfafd
Binary files /dev/null and b/animateditems/34276.png differ
diff --git a/animateditems/34277.gif b/animateditems/34277.gif
new file mode 100644
index 00000000..66f5511d
Binary files /dev/null and b/animateditems/34277.gif differ
diff --git a/animateditems/34277.png b/animateditems/34277.png
new file mode 100644
index 00000000..29364c51
Binary files /dev/null and b/animateditems/34277.png differ
diff --git a/animateditems/34278.gif b/animateditems/34278.gif
new file mode 100644
index 00000000..582e0e44
Binary files /dev/null and b/animateditems/34278.gif differ
diff --git a/animateditems/34278.png b/animateditems/34278.png
new file mode 100644
index 00000000..9622859b
Binary files /dev/null and b/animateditems/34278.png differ
diff --git a/animateditems/34279.gif b/animateditems/34279.gif
new file mode 100644
index 00000000..bb43cc6a
Binary files /dev/null and b/animateditems/34279.gif differ
diff --git a/animateditems/34279.png b/animateditems/34279.png
new file mode 100644
index 00000000..53a44616
Binary files /dev/null and b/animateditems/34279.png differ
diff --git a/animateditems/34280.gif b/animateditems/34280.gif
new file mode 100644
index 00000000..6a0321db
Binary files /dev/null and b/animateditems/34280.gif differ
diff --git a/animateditems/34280.png b/animateditems/34280.png
new file mode 100644
index 00000000..272a81f9
Binary files /dev/null and b/animateditems/34280.png differ
diff --git a/animateditems/34281.gif b/animateditems/34281.gif
new file mode 100644
index 00000000..29707d0a
Binary files /dev/null and b/animateditems/34281.gif differ
diff --git a/animateditems/34281.png b/animateditems/34281.png
new file mode 100644
index 00000000..2943569f
Binary files /dev/null and b/animateditems/34281.png differ
diff --git a/animateditems/34287.gif b/animateditems/34287.gif
new file mode 100644
index 00000000..c1a8fc79
Binary files /dev/null and b/animateditems/34287.gif differ
diff --git a/animateditems/34287.png b/animateditems/34287.png
new file mode 100644
index 00000000..a1aef8c0
Binary files /dev/null and b/animateditems/34287.png differ
diff --git a/animateditems/34288.gif b/animateditems/34288.gif
new file mode 100644
index 00000000..34b534fa
Binary files /dev/null and b/animateditems/34288.gif differ
diff --git a/animateditems/34288.png b/animateditems/34288.png
new file mode 100644
index 00000000..4210aedd
Binary files /dev/null and b/animateditems/34288.png differ
diff --git a/animateditems/34289.gif b/animateditems/34289.gif
new file mode 100644
index 00000000..37a74dd6
Binary files /dev/null and b/animateditems/34289.gif differ
diff --git a/animateditems/34289.png b/animateditems/34289.png
new file mode 100644
index 00000000..0a71340e
Binary files /dev/null and b/animateditems/34289.png differ
diff --git a/animateditems/34290.gif b/animateditems/34290.gif
new file mode 100644
index 00000000..6300a594
Binary files /dev/null and b/animateditems/34290.gif differ
diff --git a/animateditems/34290.png b/animateditems/34290.png
new file mode 100644
index 00000000..66b3a41c
Binary files /dev/null and b/animateditems/34290.png differ
diff --git a/animateditems/34330.gif b/animateditems/34330.gif
new file mode 100644
index 00000000..ee3c04d4
Binary files /dev/null and b/animateditems/34330.gif differ
diff --git a/animateditems/34330.png b/animateditems/34330.png
new file mode 100644
index 00000000..079fde57
Binary files /dev/null and b/animateditems/34330.png differ
diff --git a/animateditems/34331.gif b/animateditems/34331.gif
new file mode 100644
index 00000000..ee3c04d4
Binary files /dev/null and b/animateditems/34331.gif differ
diff --git a/animateditems/34331.png b/animateditems/34331.png
new file mode 100644
index 00000000..079fde57
Binary files /dev/null and b/animateditems/34331.png differ
diff --git a/animateditems/34334.gif b/animateditems/34334.gif
new file mode 100644
index 00000000..19ba1e35
Binary files /dev/null and b/animateditems/34334.gif differ
diff --git a/animateditems/34334.png b/animateditems/34334.png
new file mode 100644
index 00000000..41772e9c
Binary files /dev/null and b/animateditems/34334.png differ
diff --git a/animateditems/34341.gif b/animateditems/34341.gif
new file mode 100644
index 00000000..a339b4f0
Binary files /dev/null and b/animateditems/34341.gif differ
diff --git a/animateditems/34341.png b/animateditems/34341.png
new file mode 100644
index 00000000..ca50ba27
Binary files /dev/null and b/animateditems/34341.png differ
diff --git a/animateditems/34342.gif b/animateditems/34342.gif
new file mode 100644
index 00000000..837a176c
Binary files /dev/null and b/animateditems/34342.gif differ
diff --git a/animateditems/34342.png b/animateditems/34342.png
new file mode 100644
index 00000000..4a717ebe
Binary files /dev/null and b/animateditems/34342.png differ
diff --git a/animateditems/34370.gif b/animateditems/34370.gif
new file mode 100644
index 00000000..0ecd70d7
Binary files /dev/null and b/animateditems/34370.gif differ
diff --git a/animateditems/34370.png b/animateditems/34370.png
new file mode 100644
index 00000000..e5bfa4e7
Binary files /dev/null and b/animateditems/34370.png differ
diff --git a/animateditems/34371.gif b/animateditems/34371.gif
new file mode 100644
index 00000000..0ecd70d7
Binary files /dev/null and b/animateditems/34371.gif differ
diff --git a/animateditems/34371.png b/animateditems/34371.png
new file mode 100644
index 00000000..e5bfa4e7
Binary files /dev/null and b/animateditems/34371.png differ
diff --git a/animateditems/34372.gif b/animateditems/34372.gif
new file mode 100644
index 00000000..0ecd70d7
Binary files /dev/null and b/animateditems/34372.gif differ
diff --git a/animateditems/34372.png b/animateditems/34372.png
new file mode 100644
index 00000000..e5bfa4e7
Binary files /dev/null and b/animateditems/34372.png differ
diff --git a/animateditems/34373.gif b/animateditems/34373.gif
new file mode 100644
index 00000000..0ecd70d7
Binary files /dev/null and b/animateditems/34373.gif differ
diff --git a/animateditems/34373.png b/animateditems/34373.png
new file mode 100644
index 00000000..e5bfa4e7
Binary files /dev/null and b/animateditems/34373.png differ
diff --git a/animateditems/34376.gif b/animateditems/34376.gif
new file mode 100644
index 00000000..9790d4ba
Binary files /dev/null and b/animateditems/34376.gif differ
diff --git a/animateditems/34376.png b/animateditems/34376.png
new file mode 100644
index 00000000..b30a7bb1
Binary files /dev/null and b/animateditems/34376.png differ
diff --git a/animateditems/34381.gif b/animateditems/34381.gif
new file mode 100644
index 00000000..2d9f4e89
Binary files /dev/null and b/animateditems/34381.gif differ
diff --git a/animateditems/34381.png b/animateditems/34381.png
new file mode 100644
index 00000000..b1e63080
Binary files /dev/null and b/animateditems/34381.png differ
diff --git a/animateditems/34382.gif b/animateditems/34382.gif
new file mode 100644
index 00000000..6300a594
Binary files /dev/null and b/animateditems/34382.gif differ
diff --git a/animateditems/34382.png b/animateditems/34382.png
new file mode 100644
index 00000000..66b3a41c
Binary files /dev/null and b/animateditems/34382.png differ
diff --git a/animateditems/34393.gif b/animateditems/34393.gif
new file mode 100644
index 00000000..81e579fc
Binary files /dev/null and b/animateditems/34393.gif differ
diff --git a/animateditems/34393.png b/animateditems/34393.png
new file mode 100644
index 00000000..ffb715ec
Binary files /dev/null and b/animateditems/34393.png differ
diff --git a/animateditems/34394.gif b/animateditems/34394.gif
new file mode 100644
index 00000000..89981adb
Binary files /dev/null and b/animateditems/34394.gif differ
diff --git a/animateditems/34394.png b/animateditems/34394.png
new file mode 100644
index 00000000..e011ab68
Binary files /dev/null and b/animateditems/34394.png differ
diff --git a/animateditems/34567.gif b/animateditems/34567.gif
new file mode 100644
index 00000000..fda46735
Binary files /dev/null and b/animateditems/34567.gif differ
diff --git a/animateditems/34567.png b/animateditems/34567.png
new file mode 100644
index 00000000..2c8391ac
Binary files /dev/null and b/animateditems/34567.png differ
diff --git a/animateditems/34569.gif b/animateditems/34569.gif
new file mode 100644
index 00000000..b6c716fe
Binary files /dev/null and b/animateditems/34569.gif differ
diff --git a/animateditems/34569.png b/animateditems/34569.png
new file mode 100644
index 00000000..6b73bcdc
Binary files /dev/null and b/animateditems/34569.png differ
diff --git a/animateditems/34570.gif b/animateditems/34570.gif
new file mode 100644
index 00000000..d9b9d2ca
Binary files /dev/null and b/animateditems/34570.gif differ
diff --git a/animateditems/34570.png b/animateditems/34570.png
new file mode 100644
index 00000000..0c05bed0
Binary files /dev/null and b/animateditems/34570.png differ
diff --git a/animateditems/34620.gif b/animateditems/34620.gif
new file mode 100644
index 00000000..5bcb6378
Binary files /dev/null and b/animateditems/34620.gif differ
diff --git a/animateditems/34620.png b/animateditems/34620.png
new file mode 100644
index 00000000..84fb50ef
Binary files /dev/null and b/animateditems/34620.png differ
diff --git a/animateditems/34622.gif b/animateditems/34622.gif
new file mode 100644
index 00000000..049f10df
Binary files /dev/null and b/animateditems/34622.gif differ
diff --git a/animateditems/34622.png b/animateditems/34622.png
new file mode 100644
index 00000000..8ae1b3f8
Binary files /dev/null and b/animateditems/34622.png differ
diff --git a/animateditems/34624.gif b/animateditems/34624.gif
new file mode 100644
index 00000000..d431bd4a
Binary files /dev/null and b/animateditems/34624.gif differ
diff --git a/animateditems/34624.png b/animateditems/34624.png
new file mode 100644
index 00000000..04663bec
Binary files /dev/null and b/animateditems/34624.png differ
diff --git a/animateditems/34626.gif b/animateditems/34626.gif
new file mode 100644
index 00000000..fce217f3
Binary files /dev/null and b/animateditems/34626.gif differ
diff --git a/animateditems/34626.png b/animateditems/34626.png
new file mode 100644
index 00000000..579ff54f
Binary files /dev/null and b/animateditems/34626.png differ
diff --git a/animateditems/34628.gif b/animateditems/34628.gif
new file mode 100644
index 00000000..f1b90985
Binary files /dev/null and b/animateditems/34628.gif differ
diff --git a/animateditems/34628.png b/animateditems/34628.png
new file mode 100644
index 00000000..fcd013d2
Binary files /dev/null and b/animateditems/34628.png differ
diff --git a/animateditems/34630.gif b/animateditems/34630.gif
new file mode 100644
index 00000000..3e855c47
Binary files /dev/null and b/animateditems/34630.gif differ
diff --git a/animateditems/34630.png b/animateditems/34630.png
new file mode 100644
index 00000000..79bf2b0f
Binary files /dev/null and b/animateditems/34630.png differ
diff --git a/animateditems/34632.gif b/animateditems/34632.gif
new file mode 100644
index 00000000..d45964f5
Binary files /dev/null and b/animateditems/34632.gif differ
diff --git a/animateditems/34632.png b/animateditems/34632.png
new file mode 100644
index 00000000..fb854a2c
Binary files /dev/null and b/animateditems/34632.png differ
diff --git a/animateditems/34634.gif b/animateditems/34634.gif
new file mode 100644
index 00000000..5dfa66e1
Binary files /dev/null and b/animateditems/34634.gif differ
diff --git a/animateditems/34634.png b/animateditems/34634.png
new file mode 100644
index 00000000..4bf3c483
Binary files /dev/null and b/animateditems/34634.png differ
diff --git a/animateditems/34636.gif b/animateditems/34636.gif
new file mode 100644
index 00000000..9906293c
Binary files /dev/null and b/animateditems/34636.gif differ
diff --git a/animateditems/34636.png b/animateditems/34636.png
new file mode 100644
index 00000000..0b45a3c8
Binary files /dev/null and b/animateditems/34636.png differ
diff --git a/animateditems/34638.gif b/animateditems/34638.gif
new file mode 100644
index 00000000..b0517512
Binary files /dev/null and b/animateditems/34638.gif differ
diff --git a/animateditems/34638.png b/animateditems/34638.png
new file mode 100644
index 00000000..475c132d
Binary files /dev/null and b/animateditems/34638.png differ
diff --git a/animateditems/34640.gif b/animateditems/34640.gif
new file mode 100644
index 00000000..491bd8c0
Binary files /dev/null and b/animateditems/34640.gif differ
diff --git a/animateditems/34640.png b/animateditems/34640.png
new file mode 100644
index 00000000..282854c2
Binary files /dev/null and b/animateditems/34640.png differ
diff --git a/animateditems/34642.gif b/animateditems/34642.gif
new file mode 100644
index 00000000..fea6cabf
Binary files /dev/null and b/animateditems/34642.gif differ
diff --git a/animateditems/34642.png b/animateditems/34642.png
new file mode 100644
index 00000000..cdeef065
Binary files /dev/null and b/animateditems/34642.png differ
diff --git a/animateditems/34644.gif b/animateditems/34644.gif
new file mode 100644
index 00000000..632e65e5
Binary files /dev/null and b/animateditems/34644.gif differ
diff --git a/animateditems/34644.png b/animateditems/34644.png
new file mode 100644
index 00000000..79728ca1
Binary files /dev/null and b/animateditems/34644.png differ
diff --git a/animateditems/34646.gif b/animateditems/34646.gif
new file mode 100644
index 00000000..93d2d96d
Binary files /dev/null and b/animateditems/34646.gif differ
diff --git a/animateditems/34646.png b/animateditems/34646.png
new file mode 100644
index 00000000..4527d58d
Binary files /dev/null and b/animateditems/34646.png differ
diff --git a/animateditems/34648.gif b/animateditems/34648.gif
new file mode 100644
index 00000000..adf849d5
Binary files /dev/null and b/animateditems/34648.gif differ
diff --git a/animateditems/34648.png b/animateditems/34648.png
new file mode 100644
index 00000000..fd79ff5b
Binary files /dev/null and b/animateditems/34648.png differ
diff --git a/animateditems/34650.gif b/animateditems/34650.gif
new file mode 100644
index 00000000..334a06e0
Binary files /dev/null and b/animateditems/34650.gif differ
diff --git a/animateditems/34650.png b/animateditems/34650.png
new file mode 100644
index 00000000..75ffd37e
Binary files /dev/null and b/animateditems/34650.png differ
diff --git a/animateditems/34652.gif b/animateditems/34652.gif
new file mode 100644
index 00000000..552feeeb
Binary files /dev/null and b/animateditems/34652.gif differ
diff --git a/animateditems/34652.png b/animateditems/34652.png
new file mode 100644
index 00000000..514aa88e
Binary files /dev/null and b/animateditems/34652.png differ
diff --git a/animateditems/34654.gif b/animateditems/34654.gif
new file mode 100644
index 00000000..8ff2012e
Binary files /dev/null and b/animateditems/34654.gif differ
diff --git a/animateditems/34654.png b/animateditems/34654.png
new file mode 100644
index 00000000..cc513ec1
Binary files /dev/null and b/animateditems/34654.png differ
diff --git a/animateditems/34656.gif b/animateditems/34656.gif
new file mode 100644
index 00000000..00af04aa
Binary files /dev/null and b/animateditems/34656.gif differ
diff --git a/animateditems/34656.png b/animateditems/34656.png
new file mode 100644
index 00000000..cbe58894
Binary files /dev/null and b/animateditems/34656.png differ
diff --git a/animateditems/34658.gif b/animateditems/34658.gif
new file mode 100644
index 00000000..e831b789
Binary files /dev/null and b/animateditems/34658.gif differ
diff --git a/animateditems/34658.png b/animateditems/34658.png
new file mode 100644
index 00000000..bdcf60d9
Binary files /dev/null and b/animateditems/34658.png differ
diff --git a/animateditems/34665.gif b/animateditems/34665.gif
new file mode 100644
index 00000000..8bf56ae1
Binary files /dev/null and b/animateditems/34665.gif differ
diff --git a/animateditems/34665.png b/animateditems/34665.png
new file mode 100644
index 00000000..5d99096c
Binary files /dev/null and b/animateditems/34665.png differ
diff --git a/animateditems/34666.gif b/animateditems/34666.gif
new file mode 100644
index 00000000..53e0b1e1
Binary files /dev/null and b/animateditems/34666.gif differ
diff --git a/animateditems/34666.png b/animateditems/34666.png
new file mode 100644
index 00000000..d93531b2
Binary files /dev/null and b/animateditems/34666.png differ
diff --git a/animateditems/34667.gif b/animateditems/34667.gif
new file mode 100644
index 00000000..28085cbd
Binary files /dev/null and b/animateditems/34667.gif differ
diff --git a/animateditems/34667.png b/animateditems/34667.png
new file mode 100644
index 00000000..ce9eb2d3
Binary files /dev/null and b/animateditems/34667.png differ
diff --git a/animateditems/34668.gif b/animateditems/34668.gif
new file mode 100644
index 00000000..93c89f77
Binary files /dev/null and b/animateditems/34668.gif differ
diff --git a/animateditems/34668.png b/animateditems/34668.png
new file mode 100644
index 00000000..11bec58b
Binary files /dev/null and b/animateditems/34668.png differ
diff --git a/animateditems/34669.gif b/animateditems/34669.gif
new file mode 100644
index 00000000..a824b8e9
Binary files /dev/null and b/animateditems/34669.gif differ
diff --git a/animateditems/34669.png b/animateditems/34669.png
new file mode 100644
index 00000000..7407c8b2
Binary files /dev/null and b/animateditems/34669.png differ
diff --git a/animateditems/34682.gif b/animateditems/34682.gif
new file mode 100644
index 00000000..939612da
Binary files /dev/null and b/animateditems/34682.gif differ
diff --git a/animateditems/34682.png b/animateditems/34682.png
new file mode 100644
index 00000000..3956a46e
Binary files /dev/null and b/animateditems/34682.png differ
diff --git a/animateditems/34683.gif b/animateditems/34683.gif
new file mode 100644
index 00000000..789523f4
Binary files /dev/null and b/animateditems/34683.gif differ
diff --git a/animateditems/34683.png b/animateditems/34683.png
new file mode 100644
index 00000000..7db0e9fe
Binary files /dev/null and b/animateditems/34683.png differ
diff --git a/animateditems/34684.gif b/animateditems/34684.gif
new file mode 100644
index 00000000..b0be2461
Binary files /dev/null and b/animateditems/34684.gif differ
diff --git a/animateditems/34684.png b/animateditems/34684.png
new file mode 100644
index 00000000..ed9028fe
Binary files /dev/null and b/animateditems/34684.png differ
diff --git a/animateditems/34685.gif b/animateditems/34685.gif
new file mode 100644
index 00000000..107f2fcd
Binary files /dev/null and b/animateditems/34685.gif differ
diff --git a/animateditems/34685.png b/animateditems/34685.png
new file mode 100644
index 00000000..45f31cca
Binary files /dev/null and b/animateditems/34685.png differ
diff --git a/animateditems/34686.gif b/animateditems/34686.gif
new file mode 100644
index 00000000..46d09d3a
Binary files /dev/null and b/animateditems/34686.gif differ
diff --git a/animateditems/34686.png b/animateditems/34686.png
new file mode 100644
index 00000000..ca970704
Binary files /dev/null and b/animateditems/34686.png differ
diff --git a/animateditems/34687.gif b/animateditems/34687.gif
new file mode 100644
index 00000000..5a21c25c
Binary files /dev/null and b/animateditems/34687.gif differ
diff --git a/animateditems/34687.png b/animateditems/34687.png
new file mode 100644
index 00000000..5f645c81
Binary files /dev/null and b/animateditems/34687.png differ
diff --git a/animateditems/34699.gif b/animateditems/34699.gif
new file mode 100644
index 00000000..f718d38a
Binary files /dev/null and b/animateditems/34699.gif differ
diff --git a/animateditems/34699.png b/animateditems/34699.png
new file mode 100644
index 00000000..3b59aff1
Binary files /dev/null and b/animateditems/34699.png differ
diff --git a/animateditems/34700.gif b/animateditems/34700.gif
new file mode 100644
index 00000000..64c882d5
Binary files /dev/null and b/animateditems/34700.gif differ
diff --git a/animateditems/34700.png b/animateditems/34700.png
new file mode 100644
index 00000000..b9a9a026
Binary files /dev/null and b/animateditems/34700.png differ
diff --git a/animateditems/34701.gif b/animateditems/34701.gif
new file mode 100644
index 00000000..4de4ebfd
Binary files /dev/null and b/animateditems/34701.gif differ
diff --git a/animateditems/34701.png b/animateditems/34701.png
new file mode 100644
index 00000000..291dd79d
Binary files /dev/null and b/animateditems/34701.png differ
diff --git a/animateditems/34722.gif b/animateditems/34722.gif
new file mode 100644
index 00000000..dc0f5701
Binary files /dev/null and b/animateditems/34722.gif differ
diff --git a/animateditems/34722.png b/animateditems/34722.png
new file mode 100644
index 00000000..3d66225a
Binary files /dev/null and b/animateditems/34722.png differ
diff --git a/animateditems/34723.gif b/animateditems/34723.gif
new file mode 100644
index 00000000..36a73b9f
Binary files /dev/null and b/animateditems/34723.gif differ
diff --git a/animateditems/34723.png b/animateditems/34723.png
new file mode 100644
index 00000000..e867dc52
Binary files /dev/null and b/animateditems/34723.png differ
diff --git a/animateditems/34724.gif b/animateditems/34724.gif
new file mode 100644
index 00000000..af4fab01
Binary files /dev/null and b/animateditems/34724.gif differ
diff --git a/animateditems/34724.png b/animateditems/34724.png
new file mode 100644
index 00000000..b6bbd940
Binary files /dev/null and b/animateditems/34724.png differ
diff --git a/animateditems/34725.gif b/animateditems/34725.gif
new file mode 100644
index 00000000..3b8ce04a
Binary files /dev/null and b/animateditems/34725.gif differ
diff --git a/animateditems/34725.png b/animateditems/34725.png
new file mode 100644
index 00000000..831bf2fe
Binary files /dev/null and b/animateditems/34725.png differ
diff --git a/animateditems/34726.gif b/animateditems/34726.gif
new file mode 100644
index 00000000..3b045c68
Binary files /dev/null and b/animateditems/34726.gif differ
diff --git a/animateditems/34726.png b/animateditems/34726.png
new file mode 100644
index 00000000..5e1364ab
Binary files /dev/null and b/animateditems/34726.png differ
diff --git a/animateditems/34727.gif b/animateditems/34727.gif
new file mode 100644
index 00000000..3955c114
Binary files /dev/null and b/animateditems/34727.gif differ
diff --git a/animateditems/34727.png b/animateditems/34727.png
new file mode 100644
index 00000000..2d458f14
Binary files /dev/null and b/animateditems/34727.png differ
diff --git a/animateditems/34728.gif b/animateditems/34728.gif
new file mode 100644
index 00000000..1043fab8
Binary files /dev/null and b/animateditems/34728.gif differ
diff --git a/animateditems/34728.png b/animateditems/34728.png
new file mode 100644
index 00000000..0b20a97e
Binary files /dev/null and b/animateditems/34728.png differ
diff --git a/animateditems/34729.gif b/animateditems/34729.gif
new file mode 100644
index 00000000..851eae27
Binary files /dev/null and b/animateditems/34729.gif differ
diff --git a/animateditems/34729.png b/animateditems/34729.png
new file mode 100644
index 00000000..a2d27a9c
Binary files /dev/null and b/animateditems/34729.png differ
diff --git a/animateditems/34730.gif b/animateditems/34730.gif
new file mode 100644
index 00000000..fc64ede6
Binary files /dev/null and b/animateditems/34730.gif differ
diff --git a/animateditems/34730.png b/animateditems/34730.png
new file mode 100644
index 00000000..8c278692
Binary files /dev/null and b/animateditems/34730.png differ
diff --git a/animateditems/34731.gif b/animateditems/34731.gif
new file mode 100644
index 00000000..47eca3db
Binary files /dev/null and b/animateditems/34731.gif differ
diff --git a/animateditems/34731.png b/animateditems/34731.png
new file mode 100644
index 00000000..987765ec
Binary files /dev/null and b/animateditems/34731.png differ
diff --git a/animateditems/34732.gif b/animateditems/34732.gif
new file mode 100644
index 00000000..f7469bf4
Binary files /dev/null and b/animateditems/34732.gif differ
diff --git a/animateditems/34732.png b/animateditems/34732.png
new file mode 100644
index 00000000..023ac4c2
Binary files /dev/null and b/animateditems/34732.png differ
diff --git a/animateditems/34733.gif b/animateditems/34733.gif
new file mode 100644
index 00000000..ca54a17e
Binary files /dev/null and b/animateditems/34733.gif differ
diff --git a/animateditems/34733.png b/animateditems/34733.png
new file mode 100644
index 00000000..bf9b6bdb
Binary files /dev/null and b/animateditems/34733.png differ
diff --git a/animateditems/34752.gif b/animateditems/34752.gif
new file mode 100644
index 00000000..129bb485
Binary files /dev/null and b/animateditems/34752.gif differ
diff --git a/animateditems/34752.png b/animateditems/34752.png
new file mode 100644
index 00000000..045b725c
Binary files /dev/null and b/animateditems/34752.png differ
diff --git a/animateditems/34753.gif b/animateditems/34753.gif
new file mode 100644
index 00000000..b44799f3
Binary files /dev/null and b/animateditems/34753.gif differ
diff --git a/animateditems/34753.png b/animateditems/34753.png
new file mode 100644
index 00000000..cfac46fc
Binary files /dev/null and b/animateditems/34753.png differ
diff --git a/animateditems/34754.gif b/animateditems/34754.gif
new file mode 100644
index 00000000..841c9823
Binary files /dev/null and b/animateditems/34754.gif differ
diff --git a/animateditems/34754.png b/animateditems/34754.png
new file mode 100644
index 00000000..495ec237
Binary files /dev/null and b/animateditems/34754.png differ
diff --git a/animateditems/34755.gif b/animateditems/34755.gif
new file mode 100644
index 00000000..8484fe4b
Binary files /dev/null and b/animateditems/34755.gif differ
diff --git a/animateditems/34755.png b/animateditems/34755.png
new file mode 100644
index 00000000..a65577e2
Binary files /dev/null and b/animateditems/34755.png differ
diff --git a/animateditems/34756.gif b/animateditems/34756.gif
new file mode 100644
index 00000000..235a7f3f
Binary files /dev/null and b/animateditems/34756.gif differ
diff --git a/animateditems/34756.png b/animateditems/34756.png
new file mode 100644
index 00000000..04663b5e
Binary files /dev/null and b/animateditems/34756.png differ
diff --git a/animateditems/34757.gif b/animateditems/34757.gif
new file mode 100644
index 00000000..dac16d87
Binary files /dev/null and b/animateditems/34757.gif differ
diff --git a/animateditems/34757.png b/animateditems/34757.png
new file mode 100644
index 00000000..0eea7502
Binary files /dev/null and b/animateditems/34757.png differ
diff --git a/animateditems/34758.gif b/animateditems/34758.gif
new file mode 100644
index 00000000..df896b5c
Binary files /dev/null and b/animateditems/34758.gif differ
diff --git a/animateditems/34758.png b/animateditems/34758.png
new file mode 100644
index 00000000..689838ca
Binary files /dev/null and b/animateditems/34758.png differ
diff --git a/animateditems/34759.gif b/animateditems/34759.gif
new file mode 100644
index 00000000..5a3d6f06
Binary files /dev/null and b/animateditems/34759.gif differ
diff --git a/animateditems/34759.png b/animateditems/34759.png
new file mode 100644
index 00000000..a2441d37
Binary files /dev/null and b/animateditems/34759.png differ
diff --git a/animateditems/34760.gif b/animateditems/34760.gif
new file mode 100644
index 00000000..ba3898d0
Binary files /dev/null and b/animateditems/34760.gif differ
diff --git a/animateditems/34760.png b/animateditems/34760.png
new file mode 100644
index 00000000..1af83277
Binary files /dev/null and b/animateditems/34760.png differ
diff --git a/animateditems/34761.gif b/animateditems/34761.gif
new file mode 100644
index 00000000..4fae6d98
Binary files /dev/null and b/animateditems/34761.gif differ
diff --git a/animateditems/34761.png b/animateditems/34761.png
new file mode 100644
index 00000000..284de164
Binary files /dev/null and b/animateditems/34761.png differ
diff --git a/animateditems/34770.gif b/animateditems/34770.gif
new file mode 100644
index 00000000..a2bbf25c
Binary files /dev/null and b/animateditems/34770.gif differ
diff --git a/animateditems/34770.png b/animateditems/34770.png
new file mode 100644
index 00000000..899b47fe
Binary files /dev/null and b/animateditems/34770.png differ
diff --git a/animateditems/34826.gif b/animateditems/34826.gif
new file mode 100644
index 00000000..c4eb66bd
Binary files /dev/null and b/animateditems/34826.gif differ
diff --git a/animateditems/34826.png b/animateditems/34826.png
new file mode 100644
index 00000000..4a3eadeb
Binary files /dev/null and b/animateditems/34826.png differ
diff --git a/animateditems/34827.gif b/animateditems/34827.gif
new file mode 100644
index 00000000..dc0f5701
Binary files /dev/null and b/animateditems/34827.gif differ
diff --git a/animateditems/34827.png b/animateditems/34827.png
new file mode 100644
index 00000000..3d66225a
Binary files /dev/null and b/animateditems/34827.png differ
diff --git a/animateditems/34828.gif b/animateditems/34828.gif
new file mode 100644
index 00000000..36a73b9f
Binary files /dev/null and b/animateditems/34828.gif differ
diff --git a/animateditems/34828.png b/animateditems/34828.png
new file mode 100644
index 00000000..e867dc52
Binary files /dev/null and b/animateditems/34828.png differ
diff --git a/animateditems/34853.gif b/animateditems/34853.gif
new file mode 100644
index 00000000..488559e2
Binary files /dev/null and b/animateditems/34853.gif differ
diff --git a/animateditems/34853.png b/animateditems/34853.png
new file mode 100644
index 00000000..9ac24506
Binary files /dev/null and b/animateditems/34853.png differ
diff --git a/animateditems/34854.gif b/animateditems/34854.gif
new file mode 100644
index 00000000..3636c759
Binary files /dev/null and b/animateditems/34854.gif differ
diff --git a/animateditems/34854.png b/animateditems/34854.png
new file mode 100644
index 00000000..d03edbc6
Binary files /dev/null and b/animateditems/34854.png differ
diff --git a/animateditems/34881.gif b/animateditems/34881.gif
new file mode 100644
index 00000000..40299c42
Binary files /dev/null and b/animateditems/34881.gif differ
diff --git a/animateditems/34881.png b/animateditems/34881.png
new file mode 100644
index 00000000..b15fd3e0
Binary files /dev/null and b/animateditems/34881.png differ
diff --git a/animateditems/34882.gif b/animateditems/34882.gif
new file mode 100644
index 00000000..1e275f5a
Binary files /dev/null and b/animateditems/34882.gif differ
diff --git a/animateditems/34882.png b/animateditems/34882.png
new file mode 100644
index 00000000..20f5f94f
Binary files /dev/null and b/animateditems/34882.png differ
diff --git a/animateditems/34883.gif b/animateditems/34883.gif
new file mode 100644
index 00000000..9dba22cf
Binary files /dev/null and b/animateditems/34883.gif differ
diff --git a/animateditems/34883.png b/animateditems/34883.png
new file mode 100644
index 00000000..e0884a78
Binary files /dev/null and b/animateditems/34883.png differ
diff --git a/animateditems/34884.gif b/animateditems/34884.gif
new file mode 100644
index 00000000..3d725c70
Binary files /dev/null and b/animateditems/34884.gif differ
diff --git a/animateditems/34884.png b/animateditems/34884.png
new file mode 100644
index 00000000..ed2ac6d8
Binary files /dev/null and b/animateditems/34884.png differ
diff --git a/animateditems/35223.gif b/animateditems/35223.gif
new file mode 100644
index 00000000..c973dfd2
Binary files /dev/null and b/animateditems/35223.gif differ
diff --git a/animateditems/35223.png b/animateditems/35223.png
new file mode 100644
index 00000000..70df647f
Binary files /dev/null and b/animateditems/35223.png differ
diff --git a/animateditems/35229.gif b/animateditems/35229.gif
new file mode 100644
index 00000000..b2025404
Binary files /dev/null and b/animateditems/35229.gif differ
diff --git a/animateditems/35230.gif b/animateditems/35230.gif
new file mode 100644
index 00000000..e97d55f1
Binary files /dev/null and b/animateditems/35230.gif differ
diff --git a/animateditems/35231.gif b/animateditems/35231.gif
new file mode 100644
index 00000000..2a0963ba
Binary files /dev/null and b/animateditems/35231.gif differ
diff --git a/animateditems/35232.gif b/animateditems/35232.gif
new file mode 100644
index 00000000..83f6ae9e
Binary files /dev/null and b/animateditems/35232.gif differ
diff --git a/animateditems/35234.gif b/animateditems/35234.gif
new file mode 100644
index 00000000..3d7e901f
Binary files /dev/null and b/animateditems/35234.gif differ
diff --git a/animateditems/35234.png b/animateditems/35234.png
new file mode 100644
index 00000000..0edefcfd
Binary files /dev/null and b/animateditems/35234.png differ
diff --git a/animateditems/35235.gif b/animateditems/35235.gif
new file mode 100644
index 00000000..5fe14b05
Binary files /dev/null and b/animateditems/35235.gif differ
diff --git a/animateditems/35235.png b/animateditems/35235.png
new file mode 100644
index 00000000..70f351cc
Binary files /dev/null and b/animateditems/35235.png differ
diff --git a/animateditems/35236.gif b/animateditems/35236.gif
new file mode 100644
index 00000000..38f13ba9
Binary files /dev/null and b/animateditems/35236.gif differ
diff --git a/animateditems/35236.png b/animateditems/35236.png
new file mode 100644
index 00000000..4306f885
Binary files /dev/null and b/animateditems/35236.png differ
diff --git a/animateditems/35237.gif b/animateditems/35237.gif
new file mode 100644
index 00000000..a089d998
Binary files /dev/null and b/animateditems/35237.gif differ
diff --git a/animateditems/35237.png b/animateditems/35237.png
new file mode 100644
index 00000000..1b0a046d
Binary files /dev/null and b/animateditems/35237.png differ
diff --git a/animateditems/35238.gif b/animateditems/35238.gif
new file mode 100644
index 00000000..7cd27067
Binary files /dev/null and b/animateditems/35238.gif differ
diff --git a/animateditems/35238.png b/animateditems/35238.png
new file mode 100644
index 00000000..93b7853c
Binary files /dev/null and b/animateditems/35238.png differ
diff --git a/animateditems/35239.gif b/animateditems/35239.gif
new file mode 100644
index 00000000..def255ee
Binary files /dev/null and b/animateditems/35239.gif differ
diff --git a/animateditems/35239.png b/animateditems/35239.png
new file mode 100644
index 00000000..5cc853f6
Binary files /dev/null and b/animateditems/35239.png differ
diff --git a/animateditems/35240.gif b/animateditems/35240.gif
new file mode 100644
index 00000000..c91aa335
Binary files /dev/null and b/animateditems/35240.gif differ
diff --git a/animateditems/35240.png b/animateditems/35240.png
new file mode 100644
index 00000000..b0eb0603
Binary files /dev/null and b/animateditems/35240.png differ
diff --git a/animateditems/35241.gif b/animateditems/35241.gif
new file mode 100644
index 00000000..0977ba06
Binary files /dev/null and b/animateditems/35241.gif differ
diff --git a/animateditems/35241.png b/animateditems/35241.png
new file mode 100644
index 00000000..94118df7
Binary files /dev/null and b/animateditems/35241.png differ
diff --git a/animateditems/35242.gif b/animateditems/35242.gif
new file mode 100644
index 00000000..ac133b80
Binary files /dev/null and b/animateditems/35242.gif differ
diff --git a/animateditems/35242.png b/animateditems/35242.png
new file mode 100644
index 00000000..18a55eb6
Binary files /dev/null and b/animateditems/35242.png differ
diff --git a/animateditems/35243.gif b/animateditems/35243.gif
new file mode 100644
index 00000000..ac133b80
Binary files /dev/null and b/animateditems/35243.gif differ
diff --git a/animateditems/35243.png b/animateditems/35243.png
new file mode 100644
index 00000000..18a55eb6
Binary files /dev/null and b/animateditems/35243.png differ
diff --git a/animateditems/35245.gif b/animateditems/35245.gif
new file mode 100644
index 00000000..7dae0135
Binary files /dev/null and b/animateditems/35245.gif differ
diff --git a/animateditems/35245.png b/animateditems/35245.png
new file mode 100644
index 00000000..1cc06aab
Binary files /dev/null and b/animateditems/35245.png differ
diff --git a/animateditems/35249.gif b/animateditems/35249.gif
new file mode 100644
index 00000000..f4309941
Binary files /dev/null and b/animateditems/35249.gif differ
diff --git a/animateditems/35249.png b/animateditems/35249.png
new file mode 100644
index 00000000..0caf40dc
Binary files /dev/null and b/animateditems/35249.png differ
diff --git a/animateditems/35250.gif b/animateditems/35250.gif
new file mode 100644
index 00000000..8ee7c133
Binary files /dev/null and b/animateditems/35250.gif differ
diff --git a/animateditems/35250.png b/animateditems/35250.png
new file mode 100644
index 00000000..1b802585
Binary files /dev/null and b/animateditems/35250.png differ
diff --git a/animateditems/35251.gif b/animateditems/35251.gif
new file mode 100644
index 00000000..ce40a8da
Binary files /dev/null and b/animateditems/35251.gif differ
diff --git a/animateditems/35251.png b/animateditems/35251.png
new file mode 100644
index 00000000..73898259
Binary files /dev/null and b/animateditems/35251.png differ
diff --git a/animateditems/35252.gif b/animateditems/35252.gif
new file mode 100644
index 00000000..9f5611e6
Binary files /dev/null and b/animateditems/35252.gif differ
diff --git a/animateditems/35252.png b/animateditems/35252.png
new file mode 100644
index 00000000..19d968ac
Binary files /dev/null and b/animateditems/35252.png differ
diff --git a/animateditems/35253.gif b/animateditems/35253.gif
new file mode 100644
index 00000000..f47748e9
Binary files /dev/null and b/animateditems/35253.gif differ
diff --git a/animateditems/35253.png b/animateditems/35253.png
new file mode 100644
index 00000000..fe196551
Binary files /dev/null and b/animateditems/35253.png differ
diff --git a/animateditems/35254.gif b/animateditems/35254.gif
new file mode 100644
index 00000000..45d97ec2
Binary files /dev/null and b/animateditems/35254.gif differ
diff --git a/animateditems/35254.png b/animateditems/35254.png
new file mode 100644
index 00000000..6d22f5a9
Binary files /dev/null and b/animateditems/35254.png differ
diff --git a/animateditems/35255.gif b/animateditems/35255.gif
new file mode 100644
index 00000000..337acad3
Binary files /dev/null and b/animateditems/35255.gif differ
diff --git a/animateditems/35255.png b/animateditems/35255.png
new file mode 100644
index 00000000..b68e4a3a
Binary files /dev/null and b/animateditems/35255.png differ
diff --git a/animateditems/35256.gif b/animateditems/35256.gif
new file mode 100644
index 00000000..438abc23
Binary files /dev/null and b/animateditems/35256.gif differ
diff --git a/animateditems/35256.png b/animateditems/35256.png
new file mode 100644
index 00000000..e986db08
Binary files /dev/null and b/animateditems/35256.png differ
diff --git a/animateditems/35258.gif b/animateditems/35258.gif
new file mode 100644
index 00000000..5dfa66e1
Binary files /dev/null and b/animateditems/35258.gif differ
diff --git a/animateditems/35258.png b/animateditems/35258.png
new file mode 100644
index 00000000..4bf3c483
Binary files /dev/null and b/animateditems/35258.png differ
diff --git a/animateditems/35259.gif b/animateditems/35259.gif
new file mode 100644
index 00000000..84dee2d6
Binary files /dev/null and b/animateditems/35259.gif differ
diff --git a/animateditems/35259.png b/animateditems/35259.png
new file mode 100644
index 00000000..4083ee8e
Binary files /dev/null and b/animateditems/35259.png differ
diff --git a/animateditems/35272.gif b/animateditems/35272.gif
new file mode 100644
index 00000000..e5c22bce
Binary files /dev/null and b/animateditems/35272.gif differ
diff --git a/animateditems/35272.png b/animateditems/35272.png
new file mode 100644
index 00000000..6b01802d
Binary files /dev/null and b/animateditems/35272.png differ
diff --git a/animateditems/35273.gif b/animateditems/35273.gif
new file mode 100644
index 00000000..589fdcbf
Binary files /dev/null and b/animateditems/35273.gif differ
diff --git a/animateditems/35273.png b/animateditems/35273.png
new file mode 100644
index 00000000..4fb504a8
Binary files /dev/null and b/animateditems/35273.png differ
diff --git a/animateditems/35274.gif b/animateditems/35274.gif
new file mode 100644
index 00000000..bdbc70f9
Binary files /dev/null and b/animateditems/35274.gif differ
diff --git a/animateditems/35274.png b/animateditems/35274.png
new file mode 100644
index 00000000..7e03497d
Binary files /dev/null and b/animateditems/35274.png differ
diff --git a/animateditems/35275.gif b/animateditems/35275.gif
new file mode 100644
index 00000000..8d9a1284
Binary files /dev/null and b/animateditems/35275.gif differ
diff --git a/animateditems/35275.png b/animateditems/35275.png
new file mode 100644
index 00000000..dd49df34
Binary files /dev/null and b/animateditems/35275.png differ
diff --git a/animateditems/35276.gif b/animateditems/35276.gif
new file mode 100644
index 00000000..6a0482bd
Binary files /dev/null and b/animateditems/35276.gif differ
diff --git a/animateditems/35276.png b/animateditems/35276.png
new file mode 100644
index 00000000..68f25791
Binary files /dev/null and b/animateditems/35276.png differ
diff --git a/animateditems/35277.gif b/animateditems/35277.gif
new file mode 100644
index 00000000..39eede5b
Binary files /dev/null and b/animateditems/35277.gif differ
diff --git a/animateditems/35277.png b/animateditems/35277.png
new file mode 100644
index 00000000..3c25bc87
Binary files /dev/null and b/animateditems/35277.png differ
diff --git a/animateditems/35278.gif b/animateditems/35278.gif
new file mode 100644
index 00000000..0785264d
Binary files /dev/null and b/animateditems/35278.gif differ
diff --git a/animateditems/35278.png b/animateditems/35278.png
new file mode 100644
index 00000000..723f7bd1
Binary files /dev/null and b/animateditems/35278.png differ
diff --git a/animateditems/35279.gif b/animateditems/35279.gif
new file mode 100644
index 00000000..3c396cd5
Binary files /dev/null and b/animateditems/35279.gif differ
diff --git a/animateditems/35279.png b/animateditems/35279.png
new file mode 100644
index 00000000..c49ea5c0
Binary files /dev/null and b/animateditems/35279.png differ
diff --git a/animateditems/35280.gif b/animateditems/35280.gif
new file mode 100644
index 00000000..0cf151b9
Binary files /dev/null and b/animateditems/35280.gif differ
diff --git a/animateditems/35280.png b/animateditems/35280.png
new file mode 100644
index 00000000..d4469f6d
Binary files /dev/null and b/animateditems/35280.png differ
diff --git a/animateditems/35281.gif b/animateditems/35281.gif
new file mode 100644
index 00000000..be3a1c66
Binary files /dev/null and b/animateditems/35281.gif differ
diff --git a/animateditems/35281.png b/animateditems/35281.png
new file mode 100644
index 00000000..bfda0a5a
Binary files /dev/null and b/animateditems/35281.png differ
diff --git a/animateditems/35282.gif b/animateditems/35282.gif
new file mode 100644
index 00000000..067e22e8
Binary files /dev/null and b/animateditems/35282.gif differ
diff --git a/animateditems/35282.png b/animateditems/35282.png
new file mode 100644
index 00000000..55f62a47
Binary files /dev/null and b/animateditems/35282.png differ
diff --git a/animateditems/35284.gif b/animateditems/35284.gif
new file mode 100644
index 00000000..ba0a7d01
Binary files /dev/null and b/animateditems/35284.gif differ
diff --git a/animateditems/35284.png b/animateditems/35284.png
new file mode 100644
index 00000000..b08af781
Binary files /dev/null and b/animateditems/35284.png differ
diff --git a/animateditems/35285.gif b/animateditems/35285.gif
new file mode 100644
index 00000000..e079e9d4
Binary files /dev/null and b/animateditems/35285.gif differ
diff --git a/animateditems/35285.png b/animateditems/35285.png
new file mode 100644
index 00000000..c7f306f8
Binary files /dev/null and b/animateditems/35285.png differ
diff --git a/animateditems/35286.gif b/animateditems/35286.gif
new file mode 100644
index 00000000..7ccc2376
Binary files /dev/null and b/animateditems/35286.gif differ
diff --git a/animateditems/35286.png b/animateditems/35286.png
new file mode 100644
index 00000000..88cfa617
Binary files /dev/null and b/animateditems/35286.png differ
diff --git a/animateditems/35287.gif b/animateditems/35287.gif
new file mode 100644
index 00000000..77802458
Binary files /dev/null and b/animateditems/35287.gif differ
diff --git a/animateditems/35287.png b/animateditems/35287.png
new file mode 100644
index 00000000..dffd572b
Binary files /dev/null and b/animateditems/35287.png differ
diff --git a/animateditems/35288.gif b/animateditems/35288.gif
new file mode 100644
index 00000000..21396e56
Binary files /dev/null and b/animateditems/35288.gif differ
diff --git a/animateditems/35288.png b/animateditems/35288.png
new file mode 100644
index 00000000..69735cc8
Binary files /dev/null and b/animateditems/35288.png differ
diff --git a/animateditems/35289.gif b/animateditems/35289.gif
new file mode 100644
index 00000000..21396e56
Binary files /dev/null and b/animateditems/35289.gif differ
diff --git a/animateditems/35289.png b/animateditems/35289.png
new file mode 100644
index 00000000..69735cc8
Binary files /dev/null and b/animateditems/35289.png differ
diff --git a/animateditems/35291.gif b/animateditems/35291.gif
new file mode 100644
index 00000000..9f5496de
Binary files /dev/null and b/animateditems/35291.gif differ
diff --git a/animateditems/35291.png b/animateditems/35291.png
new file mode 100644
index 00000000..f078cadf
Binary files /dev/null and b/animateditems/35291.png differ
diff --git a/animateditems/35354.gif b/animateditems/35354.gif
new file mode 100644
index 00000000..bd19e88d
Binary files /dev/null and b/animateditems/35354.gif differ
diff --git a/animateditems/35354.png b/animateditems/35354.png
new file mode 100644
index 00000000..a2276bb0
Binary files /dev/null and b/animateditems/35354.png differ
diff --git a/animateditems/35359.gif b/animateditems/35359.gif
new file mode 100644
index 00000000..3b91fd0e
Binary files /dev/null and b/animateditems/35359.gif differ
diff --git a/animateditems/35359.png b/animateditems/35359.png
new file mode 100644
index 00000000..07c385dc
Binary files /dev/null and b/animateditems/35359.png differ
diff --git a/animateditems/35360.gif b/animateditems/35360.gif
new file mode 100644
index 00000000..628c5f13
Binary files /dev/null and b/animateditems/35360.gif differ
diff --git a/animateditems/35360.png b/animateditems/35360.png
new file mode 100644
index 00000000..895b8d8b
Binary files /dev/null and b/animateditems/35360.png differ
diff --git a/animateditems/35367.gif b/animateditems/35367.gif
new file mode 100644
index 00000000..3910c72a
Binary files /dev/null and b/animateditems/35367.gif differ
diff --git a/animateditems/35367.png b/animateditems/35367.png
new file mode 100644
index 00000000..b7729c7f
Binary files /dev/null and b/animateditems/35367.png differ
diff --git a/animateditems/35380.gif b/animateditems/35380.gif
new file mode 100644
index 00000000..83832205
Binary files /dev/null and b/animateditems/35380.gif differ
diff --git a/animateditems/35380.png b/animateditems/35380.png
new file mode 100644
index 00000000..ba4893b9
Binary files /dev/null and b/animateditems/35380.png differ
diff --git a/animateditems/35381.gif b/animateditems/35381.gif
new file mode 100644
index 00000000..5c13c606
Binary files /dev/null and b/animateditems/35381.gif differ
diff --git a/animateditems/35381.png b/animateditems/35381.png
new file mode 100644
index 00000000..e212be3e
Binary files /dev/null and b/animateditems/35381.png differ
diff --git a/animateditems/35402.gif b/animateditems/35402.gif
new file mode 100644
index 00000000..b8415300
Binary files /dev/null and b/animateditems/35402.gif differ
diff --git a/animateditems/35402.png b/animateditems/35402.png
new file mode 100644
index 00000000..64b8f361
Binary files /dev/null and b/animateditems/35402.png differ
diff --git a/animateditems/35413.gif b/animateditems/35413.gif
new file mode 100644
index 00000000..c973dfd2
Binary files /dev/null and b/animateditems/35413.gif differ
diff --git a/animateditems/35413.png b/animateditems/35413.png
new file mode 100644
index 00000000..70df647f
Binary files /dev/null and b/animateditems/35413.png differ
diff --git a/animateditems/35414.gif b/animateditems/35414.gif
new file mode 100644
index 00000000..11a5742e
Binary files /dev/null and b/animateditems/35414.gif differ
diff --git a/animateditems/35414.png b/animateditems/35414.png
new file mode 100644
index 00000000..3b195db0
Binary files /dev/null and b/animateditems/35414.png differ
diff --git a/animateditems/35415.gif b/animateditems/35415.gif
new file mode 100644
index 00000000..2852d5bf
Binary files /dev/null and b/animateditems/35415.gif differ
diff --git a/animateditems/35415.png b/animateditems/35415.png
new file mode 100644
index 00000000..2abd4da2
Binary files /dev/null and b/animateditems/35415.png differ
diff --git a/animateditems/35416.gif b/animateditems/35416.gif
new file mode 100644
index 00000000..11a5742e
Binary files /dev/null and b/animateditems/35416.gif differ
diff --git a/animateditems/35416.png b/animateditems/35416.png
new file mode 100644
index 00000000..3b195db0
Binary files /dev/null and b/animateditems/35416.png differ
diff --git a/animateditems/35420.gif b/animateditems/35420.gif
new file mode 100644
index 00000000..5d29c50d
Binary files /dev/null and b/animateditems/35420.gif differ
diff --git a/animateditems/35420.png b/animateditems/35420.png
new file mode 100644
index 00000000..b3f6151f
Binary files /dev/null and b/animateditems/35420.png differ
diff --git a/animateditems/35421.gif b/animateditems/35421.gif
new file mode 100644
index 00000000..49b07f9e
Binary files /dev/null and b/animateditems/35421.gif differ
diff --git a/animateditems/35421.png b/animateditems/35421.png
new file mode 100644
index 00000000..5e7c2590
Binary files /dev/null and b/animateditems/35421.png differ
diff --git a/animateditems/35425.gif b/animateditems/35425.gif
new file mode 100644
index 00000000..e9ac902c
Binary files /dev/null and b/animateditems/35425.gif differ
diff --git a/animateditems/35425.png b/animateditems/35425.png
new file mode 100644
index 00000000..ae85ce65
Binary files /dev/null and b/animateditems/35425.png differ
diff --git a/animateditems/35426.gif b/animateditems/35426.gif
new file mode 100644
index 00000000..b29cf105
Binary files /dev/null and b/animateditems/35426.gif differ
diff --git a/animateditems/35426.png b/animateditems/35426.png
new file mode 100644
index 00000000..5d1e3899
Binary files /dev/null and b/animateditems/35426.png differ
diff --git a/animateditems/35427.gif b/animateditems/35427.gif
new file mode 100644
index 00000000..79e12d6a
Binary files /dev/null and b/animateditems/35427.gif differ
diff --git a/animateditems/35427.png b/animateditems/35427.png
new file mode 100644
index 00000000..06044da2
Binary files /dev/null and b/animateditems/35427.png differ
diff --git a/animateditems/35428.gif b/animateditems/35428.gif
new file mode 100644
index 00000000..a575dfda
Binary files /dev/null and b/animateditems/35428.gif differ
diff --git a/animateditems/35428.png b/animateditems/35428.png
new file mode 100644
index 00000000..597d1941
Binary files /dev/null and b/animateditems/35428.png differ
diff --git a/animateditems/35429.gif b/animateditems/35429.gif
new file mode 100644
index 00000000..0f08c46f
Binary files /dev/null and b/animateditems/35429.gif differ
diff --git a/animateditems/35429.png b/animateditems/35429.png
new file mode 100644
index 00000000..40a63065
Binary files /dev/null and b/animateditems/35429.png differ
diff --git a/animateditems/35430.gif b/animateditems/35430.gif
new file mode 100644
index 00000000..cb39c6ae
Binary files /dev/null and b/animateditems/35430.gif differ
diff --git a/animateditems/35430.png b/animateditems/35430.png
new file mode 100644
index 00000000..ce52f80b
Binary files /dev/null and b/animateditems/35430.png differ
diff --git a/animateditems/35959.gif b/animateditems/35959.gif
new file mode 100644
index 00000000..c5c85f0a
Binary files /dev/null and b/animateditems/35959.gif differ
diff --git a/animateditems/35959.png b/animateditems/35959.png
new file mode 100644
index 00000000..1c2f2f65
Binary files /dev/null and b/animateditems/35959.png differ
diff --git a/animateditems/35960.gif b/animateditems/35960.gif
new file mode 100644
index 00000000..c408072a
Binary files /dev/null and b/animateditems/35960.gif differ
diff --git a/animateditems/35960.png b/animateditems/35960.png
new file mode 100644
index 00000000..cde99c1c
Binary files /dev/null and b/animateditems/35960.png differ
diff --git a/animateditems/35961.gif b/animateditems/35961.gif
new file mode 100644
index 00000000..47281a39
Binary files /dev/null and b/animateditems/35961.gif differ
diff --git a/animateditems/35961.png b/animateditems/35961.png
new file mode 100644
index 00000000..866a5600
Binary files /dev/null and b/animateditems/35961.png differ
diff --git a/animateditems/35962.gif b/animateditems/35962.gif
new file mode 100644
index 00000000..fae17230
Binary files /dev/null and b/animateditems/35962.gif differ
diff --git a/animateditems/35962.png b/animateditems/35962.png
new file mode 100644
index 00000000..ce5f5ee9
Binary files /dev/null and b/animateditems/35962.png differ
diff --git a/animateditems/35963.gif b/animateditems/35963.gif
new file mode 100644
index 00000000..ad549e17
Binary files /dev/null and b/animateditems/35963.gif differ
diff --git a/animateditems/35963.png b/animateditems/35963.png
new file mode 100644
index 00000000..8b538ae8
Binary files /dev/null and b/animateditems/35963.png differ
diff --git a/animateditems/35964.gif b/animateditems/35964.gif
new file mode 100644
index 00000000..c16b2add
Binary files /dev/null and b/animateditems/35964.gif differ
diff --git a/animateditems/35964.png b/animateditems/35964.png
new file mode 100644
index 00000000..923f67b1
Binary files /dev/null and b/animateditems/35964.png differ
diff --git a/animateditems/35965.gif b/animateditems/35965.gif
new file mode 100644
index 00000000..2e11dc51
Binary files /dev/null and b/animateditems/35965.gif differ
diff --git a/animateditems/35965.png b/animateditems/35965.png
new file mode 100644
index 00000000..85e37971
Binary files /dev/null and b/animateditems/35965.png differ
diff --git a/animateditems/35966.gif b/animateditems/35966.gif
new file mode 100644
index 00000000..bafd8485
Binary files /dev/null and b/animateditems/35966.gif differ
diff --git a/animateditems/35966.png b/animateditems/35966.png
new file mode 100644
index 00000000..945b9399
Binary files /dev/null and b/animateditems/35966.png differ
diff --git a/animateditems/35975.gif b/animateditems/35975.gif
new file mode 100644
index 00000000..18b8e52a
Binary files /dev/null and b/animateditems/35975.gif differ
diff --git a/animateditems/35975.png b/animateditems/35975.png
new file mode 100644
index 00000000..d0fe506e
Binary files /dev/null and b/animateditems/35975.png differ
diff --git a/animateditems/35976.gif b/animateditems/35976.gif
new file mode 100644
index 00000000..96ef5131
Binary files /dev/null and b/animateditems/35976.gif differ
diff --git a/animateditems/35976.png b/animateditems/35976.png
new file mode 100644
index 00000000..9354f20d
Binary files /dev/null and b/animateditems/35976.png differ
diff --git a/animateditems/35986.gif b/animateditems/35986.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/35986.gif differ
diff --git a/animateditems/35986.png b/animateditems/35986.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/35986.png differ
diff --git a/animateditems/35987.gif b/animateditems/35987.gif
new file mode 100644
index 00000000..5bc7d95a
Binary files /dev/null and b/animateditems/35987.gif differ
diff --git a/animateditems/35987.png b/animateditems/35987.png
new file mode 100644
index 00000000..201a36d1
Binary files /dev/null and b/animateditems/35987.png differ
diff --git a/animateditems/35988.gif b/animateditems/35988.gif
new file mode 100644
index 00000000..5bc7d95a
Binary files /dev/null and b/animateditems/35988.gif differ
diff --git a/animateditems/35988.png b/animateditems/35988.png
new file mode 100644
index 00000000..201a36d1
Binary files /dev/null and b/animateditems/35988.png differ
diff --git a/animateditems/35989.gif b/animateditems/35989.gif
new file mode 100644
index 00000000..0b821a2c
Binary files /dev/null and b/animateditems/35989.gif differ
diff --git a/animateditems/35989.png b/animateditems/35989.png
new file mode 100644
index 00000000..d2b3483d
Binary files /dev/null and b/animateditems/35989.png differ
diff --git a/animateditems/35990.gif b/animateditems/35990.gif
new file mode 100644
index 00000000..0b821a2c
Binary files /dev/null and b/animateditems/35990.gif differ
diff --git a/animateditems/35990.png b/animateditems/35990.png
new file mode 100644
index 00000000..d2b3483d
Binary files /dev/null and b/animateditems/35990.png differ
diff --git a/animateditems/36412.gif b/animateditems/36412.gif
new file mode 100644
index 00000000..244a83e6
Binary files /dev/null and b/animateditems/36412.gif differ
diff --git a/animateditems/36413.gif b/animateditems/36413.gif
new file mode 100644
index 00000000..af79f76c
Binary files /dev/null and b/animateditems/36413.gif differ
diff --git a/animateditems/36414.gif b/animateditems/36414.gif
new file mode 100644
index 00000000..f9cd62dc
Binary files /dev/null and b/animateditems/36414.gif differ
diff --git a/animateditems/36418.gif b/animateditems/36418.gif
new file mode 100644
index 00000000..0d62bdc3
Binary files /dev/null and b/animateditems/36418.gif differ
diff --git a/animateditems/36432.gif b/animateditems/36432.gif
new file mode 100644
index 00000000..0b821a2c
Binary files /dev/null and b/animateditems/36432.gif differ
diff --git a/animateditems/36432.png b/animateditems/36432.png
new file mode 100644
index 00000000..d2b3483d
Binary files /dev/null and b/animateditems/36432.png differ
diff --git a/animateditems/36433.gif b/animateditems/36433.gif
new file mode 100644
index 00000000..5bc7d95a
Binary files /dev/null and b/animateditems/36433.gif differ
diff --git a/animateditems/36433.png b/animateditems/36433.png
new file mode 100644
index 00000000..201a36d1
Binary files /dev/null and b/animateditems/36433.png differ
diff --git a/animateditems/36434.gif b/animateditems/36434.gif
new file mode 100644
index 00000000..9e0098a4
Binary files /dev/null and b/animateditems/36434.gif differ
diff --git a/animateditems/36434.png b/animateditems/36434.png
new file mode 100644
index 00000000..3cfddbfd
Binary files /dev/null and b/animateditems/36434.png differ
diff --git a/animateditems/36435.gif b/animateditems/36435.gif
new file mode 100644
index 00000000..5523f330
Binary files /dev/null and b/animateditems/36435.gif differ
diff --git a/animateditems/36435.png b/animateditems/36435.png
new file mode 100644
index 00000000..d3bd8e3b
Binary files /dev/null and b/animateditems/36435.png differ
diff --git a/animateditems/36436.gif b/animateditems/36436.gif
new file mode 100644
index 00000000..a33f8043
Binary files /dev/null and b/animateditems/36436.gif differ
diff --git a/animateditems/36436.png b/animateditems/36436.png
new file mode 100644
index 00000000..7c9a7e33
Binary files /dev/null and b/animateditems/36436.png differ
diff --git a/animateditems/36437.gif b/animateditems/36437.gif
new file mode 100644
index 00000000..43f4f6bc
Binary files /dev/null and b/animateditems/36437.gif differ
diff --git a/animateditems/36437.png b/animateditems/36437.png
new file mode 100644
index 00000000..b48d11cb
Binary files /dev/null and b/animateditems/36437.png differ
diff --git a/animateditems/36449.gif b/animateditems/36449.gif
new file mode 100644
index 00000000..59d7a23b
Binary files /dev/null and b/animateditems/36449.gif differ
diff --git a/animateditems/36449.png b/animateditems/36449.png
new file mode 100644
index 00000000..f5b74620
Binary files /dev/null and b/animateditems/36449.png differ
diff --git a/animateditems/36547.gif b/animateditems/36547.gif
new file mode 100644
index 00000000..6a066ef9
Binary files /dev/null and b/animateditems/36547.gif differ
diff --git a/animateditems/36547.png b/animateditems/36547.png
new file mode 100644
index 00000000..f7d506a6
Binary files /dev/null and b/animateditems/36547.png differ
diff --git a/animateditems/36548.gif b/animateditems/36548.gif
new file mode 100644
index 00000000..ba96ed83
Binary files /dev/null and b/animateditems/36548.gif differ
diff --git a/animateditems/36548.png b/animateditems/36548.png
new file mode 100644
index 00000000..6862f551
Binary files /dev/null and b/animateditems/36548.png differ
diff --git a/animateditems/36549.gif b/animateditems/36549.gif
new file mode 100644
index 00000000..ba96ed83
Binary files /dev/null and b/animateditems/36549.gif differ
diff --git a/animateditems/36549.png b/animateditems/36549.png
new file mode 100644
index 00000000..6862f551
Binary files /dev/null and b/animateditems/36549.png differ
diff --git a/animateditems/36572.gif b/animateditems/36572.gif
new file mode 100644
index 00000000..5306945a
Binary files /dev/null and b/animateditems/36572.gif differ
diff --git a/animateditems/36572.png b/animateditems/36572.png
new file mode 100644
index 00000000..12ec0fc2
Binary files /dev/null and b/animateditems/36572.png differ
diff --git a/animateditems/36576.gif b/animateditems/36576.gif
new file mode 100644
index 00000000..60c9fe72
Binary files /dev/null and b/animateditems/36576.gif differ
diff --git a/animateditems/36576.png b/animateditems/36576.png
new file mode 100644
index 00000000..7e1b7016
Binary files /dev/null and b/animateditems/36576.png differ
diff --git a/animateditems/36577.gif b/animateditems/36577.gif
new file mode 100644
index 00000000..4d681f6c
Binary files /dev/null and b/animateditems/36577.gif differ
diff --git a/animateditems/36577.png b/animateditems/36577.png
new file mode 100644
index 00000000..0f887b40
Binary files /dev/null and b/animateditems/36577.png differ
diff --git a/animateditems/36578.gif b/animateditems/36578.gif
new file mode 100644
index 00000000..499631a9
Binary files /dev/null and b/animateditems/36578.gif differ
diff --git a/animateditems/36578.png b/animateditems/36578.png
new file mode 100644
index 00000000..1d4db0e5
Binary files /dev/null and b/animateditems/36578.png differ
diff --git a/animateditems/36579.gif b/animateditems/36579.gif
new file mode 100644
index 00000000..adc981f8
Binary files /dev/null and b/animateditems/36579.gif differ
diff --git a/animateditems/36579.png b/animateditems/36579.png
new file mode 100644
index 00000000..5dac003b
Binary files /dev/null and b/animateditems/36579.png differ
diff --git a/animateditems/36580.gif b/animateditems/36580.gif
new file mode 100644
index 00000000..eab8547d
Binary files /dev/null and b/animateditems/36580.gif differ
diff --git a/animateditems/36580.png b/animateditems/36580.png
new file mode 100644
index 00000000..5291f1d1
Binary files /dev/null and b/animateditems/36580.png differ
diff --git a/animateditems/36581.gif b/animateditems/36581.gif
new file mode 100644
index 00000000..16fcd326
Binary files /dev/null and b/animateditems/36581.gif differ
diff --git a/animateditems/36581.png b/animateditems/36581.png
new file mode 100644
index 00000000..cac58055
Binary files /dev/null and b/animateditems/36581.png differ
diff --git a/animateditems/36582.gif b/animateditems/36582.gif
new file mode 100644
index 00000000..caf9c38e
Binary files /dev/null and b/animateditems/36582.gif differ
diff --git a/animateditems/36582.png b/animateditems/36582.png
new file mode 100644
index 00000000..a0ea124a
Binary files /dev/null and b/animateditems/36582.png differ
diff --git a/animateditems/36583.gif b/animateditems/36583.gif
new file mode 100644
index 00000000..7a54af8d
Binary files /dev/null and b/animateditems/36583.gif differ
diff --git a/animateditems/36583.png b/animateditems/36583.png
new file mode 100644
index 00000000..b1a3b502
Binary files /dev/null and b/animateditems/36583.png differ
diff --git a/animateditems/36584.gif b/animateditems/36584.gif
new file mode 100644
index 00000000..f181de63
Binary files /dev/null and b/animateditems/36584.gif differ
diff --git a/animateditems/36584.png b/animateditems/36584.png
new file mode 100644
index 00000000..5af2fe24
Binary files /dev/null and b/animateditems/36584.png differ
diff --git a/animateditems/36585.gif b/animateditems/36585.gif
new file mode 100644
index 00000000..7f855004
Binary files /dev/null and b/animateditems/36585.gif differ
diff --git a/animateditems/36585.png b/animateditems/36585.png
new file mode 100644
index 00000000..bc01fbcd
Binary files /dev/null and b/animateditems/36585.png differ
diff --git a/animateditems/36586.gif b/animateditems/36586.gif
new file mode 100644
index 00000000..f9d144f7
Binary files /dev/null and b/animateditems/36586.gif differ
diff --git a/animateditems/36586.png b/animateditems/36586.png
new file mode 100644
index 00000000..574a5187
Binary files /dev/null and b/animateditems/36586.png differ
diff --git a/animateditems/36587.gif b/animateditems/36587.gif
new file mode 100644
index 00000000..d5610bf0
Binary files /dev/null and b/animateditems/36587.gif differ
diff --git a/animateditems/36587.png b/animateditems/36587.png
new file mode 100644
index 00000000..c5e1d22c
Binary files /dev/null and b/animateditems/36587.png differ
diff --git a/animateditems/36588.gif b/animateditems/36588.gif
new file mode 100644
index 00000000..7469c1a4
Binary files /dev/null and b/animateditems/36588.gif differ
diff --git a/animateditems/36588.png b/animateditems/36588.png
new file mode 100644
index 00000000..2c78c79d
Binary files /dev/null and b/animateditems/36588.png differ
diff --git a/animateditems/36589.gif b/animateditems/36589.gif
new file mode 100644
index 00000000..be82160f
Binary files /dev/null and b/animateditems/36589.gif differ
diff --git a/animateditems/36589.png b/animateditems/36589.png
new file mode 100644
index 00000000..33abe29b
Binary files /dev/null and b/animateditems/36589.png differ
diff --git a/animateditems/36590.gif b/animateditems/36590.gif
new file mode 100644
index 00000000..7f6e519c
Binary files /dev/null and b/animateditems/36590.gif differ
diff --git a/animateditems/36590.png b/animateditems/36590.png
new file mode 100644
index 00000000..48fe7e41
Binary files /dev/null and b/animateditems/36590.png differ
diff --git a/animateditems/36591.gif b/animateditems/36591.gif
new file mode 100644
index 00000000..dba67ef5
Binary files /dev/null and b/animateditems/36591.gif differ
diff --git a/animateditems/36591.png b/animateditems/36591.png
new file mode 100644
index 00000000..c80e3a21
Binary files /dev/null and b/animateditems/36591.png differ
diff --git a/animateditems/36592.gif b/animateditems/36592.gif
new file mode 100644
index 00000000..b9ec4d86
Binary files /dev/null and b/animateditems/36592.gif differ
diff --git a/animateditems/36592.png b/animateditems/36592.png
new file mode 100644
index 00000000..b135cfd1
Binary files /dev/null and b/animateditems/36592.png differ
diff --git a/animateditems/36593.gif b/animateditems/36593.gif
new file mode 100644
index 00000000..47d915df
Binary files /dev/null and b/animateditems/36593.gif differ
diff --git a/animateditems/36593.png b/animateditems/36593.png
new file mode 100644
index 00000000..b2b34ef4
Binary files /dev/null and b/animateditems/36593.png differ
diff --git a/animateditems/36594.gif b/animateditems/36594.gif
new file mode 100644
index 00000000..ebe3d754
Binary files /dev/null and b/animateditems/36594.gif differ
diff --git a/animateditems/36594.png b/animateditems/36594.png
new file mode 100644
index 00000000..ac148179
Binary files /dev/null and b/animateditems/36594.png differ
diff --git a/animateditems/36595.gif b/animateditems/36595.gif
new file mode 100644
index 00000000..d5610bf0
Binary files /dev/null and b/animateditems/36595.gif differ
diff --git a/animateditems/36595.png b/animateditems/36595.png
new file mode 100644
index 00000000..c5e1d22c
Binary files /dev/null and b/animateditems/36595.png differ
diff --git a/animateditems/36596.gif b/animateditems/36596.gif
new file mode 100644
index 00000000..d5610bf0
Binary files /dev/null and b/animateditems/36596.gif differ
diff --git a/animateditems/36596.png b/animateditems/36596.png
new file mode 100644
index 00000000..c5e1d22c
Binary files /dev/null and b/animateditems/36596.png differ
diff --git a/animateditems/36597.gif b/animateditems/36597.gif
new file mode 100644
index 00000000..d5610bf0
Binary files /dev/null and b/animateditems/36597.gif differ
diff --git a/animateditems/36597.png b/animateditems/36597.png
new file mode 100644
index 00000000..c5e1d22c
Binary files /dev/null and b/animateditems/36597.png differ
diff --git a/animateditems/36598.gif b/animateditems/36598.gif
new file mode 100644
index 00000000..7a80fb29
Binary files /dev/null and b/animateditems/36598.gif differ
diff --git a/animateditems/36598.png b/animateditems/36598.png
new file mode 100644
index 00000000..82dd5690
Binary files /dev/null and b/animateditems/36598.png differ
diff --git a/animateditems/36599.gif b/animateditems/36599.gif
new file mode 100644
index 00000000..d49fbd4c
Binary files /dev/null and b/animateditems/36599.gif differ
diff --git a/animateditems/36599.png b/animateditems/36599.png
new file mode 100644
index 00000000..337a930d
Binary files /dev/null and b/animateditems/36599.png differ
diff --git a/animateditems/36600.gif b/animateditems/36600.gif
new file mode 100644
index 00000000..f25b4658
Binary files /dev/null and b/animateditems/36600.gif differ
diff --git a/animateditems/36600.png b/animateditems/36600.png
new file mode 100644
index 00000000..bc2343e4
Binary files /dev/null and b/animateditems/36600.png differ
diff --git a/animateditems/36601.gif b/animateditems/36601.gif
new file mode 100644
index 00000000..32e85dbc
Binary files /dev/null and b/animateditems/36601.gif differ
diff --git a/animateditems/36601.png b/animateditems/36601.png
new file mode 100644
index 00000000..8f1dfc83
Binary files /dev/null and b/animateditems/36601.png differ
diff --git a/animateditems/36602.gif b/animateditems/36602.gif
new file mode 100644
index 00000000..0371e472
Binary files /dev/null and b/animateditems/36602.gif differ
diff --git a/animateditems/36602.png b/animateditems/36602.png
new file mode 100644
index 00000000..c6fc55b8
Binary files /dev/null and b/animateditems/36602.png differ
diff --git a/animateditems/36603.gif b/animateditems/36603.gif
new file mode 100644
index 00000000..fad79366
Binary files /dev/null and b/animateditems/36603.gif differ
diff --git a/animateditems/36603.png b/animateditems/36603.png
new file mode 100644
index 00000000..676cac58
Binary files /dev/null and b/animateditems/36603.png differ
diff --git a/animateditems/36604.gif b/animateditems/36604.gif
new file mode 100644
index 00000000..b9356f59
Binary files /dev/null and b/animateditems/36604.gif differ
diff --git a/animateditems/36604.png b/animateditems/36604.png
new file mode 100644
index 00000000..5294cf84
Binary files /dev/null and b/animateditems/36604.png differ
diff --git a/animateditems/36606.gif b/animateditems/36606.gif
new file mode 100644
index 00000000..5302015d
Binary files /dev/null and b/animateditems/36606.gif differ
diff --git a/animateditems/36606.png b/animateditems/36606.png
new file mode 100644
index 00000000..9230922d
Binary files /dev/null and b/animateditems/36606.png differ
diff --git a/animateditems/36608.gif b/animateditems/36608.gif
new file mode 100644
index 00000000..3f7ba337
Binary files /dev/null and b/animateditems/36608.gif differ
diff --git a/animateditems/36608.png b/animateditems/36608.png
new file mode 100644
index 00000000..f1c024c4
Binary files /dev/null and b/animateditems/36608.png differ
diff --git a/animateditems/36609.gif b/animateditems/36609.gif
new file mode 100644
index 00000000..c751848c
Binary files /dev/null and b/animateditems/36609.gif differ
diff --git a/animateditems/36609.png b/animateditems/36609.png
new file mode 100644
index 00000000..450c83e6
Binary files /dev/null and b/animateditems/36609.png differ
diff --git a/animateditems/36664.gif b/animateditems/36664.gif
new file mode 100644
index 00000000..a34ae456
Binary files /dev/null and b/animateditems/36664.gif differ
diff --git a/animateditems/36664.png b/animateditems/36664.png
new file mode 100644
index 00000000..a6faca81
Binary files /dev/null and b/animateditems/36664.png differ
diff --git a/animateditems/36670.gif b/animateditems/36670.gif
new file mode 100644
index 00000000..c9824dcb
Binary files /dev/null and b/animateditems/36670.gif differ
diff --git a/animateditems/36670.png b/animateditems/36670.png
new file mode 100644
index 00000000..970c7fb9
Binary files /dev/null and b/animateditems/36670.png differ
diff --git a/animateditems/36672.gif b/animateditems/36672.gif
new file mode 100644
index 00000000..e3e34189
Binary files /dev/null and b/animateditems/36672.gif differ
diff --git a/animateditems/36672.png b/animateditems/36672.png
new file mode 100644
index 00000000..c95d74ab
Binary files /dev/null and b/animateditems/36672.png differ
diff --git a/animateditems/36673.gif b/animateditems/36673.gif
new file mode 100644
index 00000000..bc8fc9db
Binary files /dev/null and b/animateditems/36673.gif differ
diff --git a/animateditems/36673.png b/animateditems/36673.png
new file mode 100644
index 00000000..d847e6a5
Binary files /dev/null and b/animateditems/36673.png differ
diff --git a/animateditems/36674.gif b/animateditems/36674.gif
new file mode 100644
index 00000000..81c215bf
Binary files /dev/null and b/animateditems/36674.gif differ
diff --git a/animateditems/36674.png b/animateditems/36674.png
new file mode 100644
index 00000000..47956dc8
Binary files /dev/null and b/animateditems/36674.png differ
diff --git a/animateditems/36675.gif b/animateditems/36675.gif
new file mode 100644
index 00000000..920ed3d0
Binary files /dev/null and b/animateditems/36675.gif differ
diff --git a/animateditems/36675.png b/animateditems/36675.png
new file mode 100644
index 00000000..ff0d1726
Binary files /dev/null and b/animateditems/36675.png differ
diff --git a/animateditems/36676.gif b/animateditems/36676.gif
new file mode 100644
index 00000000..f6a34199
Binary files /dev/null and b/animateditems/36676.gif differ
diff --git a/animateditems/36676.png b/animateditems/36676.png
new file mode 100644
index 00000000..4ca2339b
Binary files /dev/null and b/animateditems/36676.png differ
diff --git a/animateditems/36677.gif b/animateditems/36677.gif
new file mode 100644
index 00000000..dead099d
Binary files /dev/null and b/animateditems/36677.gif differ
diff --git a/animateditems/36677.png b/animateditems/36677.png
new file mode 100644
index 00000000..c3f83aff
Binary files /dev/null and b/animateditems/36677.png differ
diff --git a/animateditems/36678.gif b/animateditems/36678.gif
new file mode 100644
index 00000000..530ea0d6
Binary files /dev/null and b/animateditems/36678.gif differ
diff --git a/animateditems/36678.png b/animateditems/36678.png
new file mode 100644
index 00000000..540dd321
Binary files /dev/null and b/animateditems/36678.png differ
diff --git a/animateditems/36679.gif b/animateditems/36679.gif
new file mode 100644
index 00000000..c183c6c1
Binary files /dev/null and b/animateditems/36679.gif differ
diff --git a/animateditems/36679.png b/animateditems/36679.png
new file mode 100644
index 00000000..06aed15e
Binary files /dev/null and b/animateditems/36679.png differ
diff --git a/animateditems/36680.gif b/animateditems/36680.gif
new file mode 100644
index 00000000..27d70841
Binary files /dev/null and b/animateditems/36680.gif differ
diff --git a/animateditems/36680.png b/animateditems/36680.png
new file mode 100644
index 00000000..09ef4c49
Binary files /dev/null and b/animateditems/36680.png differ
diff --git a/animateditems/36681.gif b/animateditems/36681.gif
new file mode 100644
index 00000000..c912c86a
Binary files /dev/null and b/animateditems/36681.gif differ
diff --git a/animateditems/36681.png b/animateditems/36681.png
new file mode 100644
index 00000000..5ff6a2ed
Binary files /dev/null and b/animateditems/36681.png differ
diff --git a/animateditems/36728.gif b/animateditems/36728.gif
new file mode 100644
index 00000000..8e0ae644
Binary files /dev/null and b/animateditems/36728.gif differ
diff --git a/animateditems/36728.png b/animateditems/36728.png
new file mode 100644
index 00000000..2fdc4774
Binary files /dev/null and b/animateditems/36728.png differ
diff --git a/animateditems/36729.gif b/animateditems/36729.gif
new file mode 100644
index 00000000..9073b9cb
Binary files /dev/null and b/animateditems/36729.gif differ
diff --git a/animateditems/36729.png b/animateditems/36729.png
new file mode 100644
index 00000000..57de2680
Binary files /dev/null and b/animateditems/36729.png differ
diff --git a/animateditems/36730.gif b/animateditems/36730.gif
new file mode 100644
index 00000000..0220309e
Binary files /dev/null and b/animateditems/36730.gif differ
diff --git a/animateditems/36730.png b/animateditems/36730.png
new file mode 100644
index 00000000..db4f072e
Binary files /dev/null and b/animateditems/36730.png differ
diff --git a/animateditems/36731.gif b/animateditems/36731.gif
new file mode 100644
index 00000000..1857cf01
Binary files /dev/null and b/animateditems/36731.gif differ
diff --git a/animateditems/36731.png b/animateditems/36731.png
new file mode 100644
index 00000000..5accd31a
Binary files /dev/null and b/animateditems/36731.png differ
diff --git a/animateditems/36732.gif b/animateditems/36732.gif
new file mode 100644
index 00000000..01fc95ee
Binary files /dev/null and b/animateditems/36732.gif differ
diff --git a/animateditems/36732.png b/animateditems/36732.png
new file mode 100644
index 00000000..4c0b6d8b
Binary files /dev/null and b/animateditems/36732.png differ
diff --git a/animateditems/36733.gif b/animateditems/36733.gif
new file mode 100644
index 00000000..7beb73ca
Binary files /dev/null and b/animateditems/36733.gif differ
diff --git a/animateditems/36733.png b/animateditems/36733.png
new file mode 100644
index 00000000..f8d00d26
Binary files /dev/null and b/animateditems/36733.png differ
diff --git a/animateditems/36734.gif b/animateditems/36734.gif
new file mode 100644
index 00000000..6873b427
Binary files /dev/null and b/animateditems/36734.gif differ
diff --git a/animateditems/36734.png b/animateditems/36734.png
new file mode 100644
index 00000000..5cd46f34
Binary files /dev/null and b/animateditems/36734.png differ
diff --git a/animateditems/36735.gif b/animateditems/36735.gif
new file mode 100644
index 00000000..ee1e506e
Binary files /dev/null and b/animateditems/36735.gif differ
diff --git a/animateditems/36735.png b/animateditems/36735.png
new file mode 100644
index 00000000..257f849c
Binary files /dev/null and b/animateditems/36735.png differ
diff --git a/animateditems/36736.gif b/animateditems/36736.gif
new file mode 100644
index 00000000..a99e11f8
Binary files /dev/null and b/animateditems/36736.gif differ
diff --git a/animateditems/36736.png b/animateditems/36736.png
new file mode 100644
index 00000000..52827e9a
Binary files /dev/null and b/animateditems/36736.png differ
diff --git a/animateditems/36738.gif b/animateditems/36738.gif
new file mode 100644
index 00000000..5ec0ef03
Binary files /dev/null and b/animateditems/36738.gif differ
diff --git a/animateditems/36738.png b/animateditems/36738.png
new file mode 100644
index 00000000..ca1c27f0
Binary files /dev/null and b/animateditems/36738.png differ
diff --git a/animateditems/36739.gif b/animateditems/36739.gif
new file mode 100644
index 00000000..31bfe269
Binary files /dev/null and b/animateditems/36739.gif differ
diff --git a/animateditems/36739.png b/animateditems/36739.png
new file mode 100644
index 00000000..7c7630e1
Binary files /dev/null and b/animateditems/36739.png differ
diff --git a/animateditems/36740.gif b/animateditems/36740.gif
new file mode 100644
index 00000000..cda49071
Binary files /dev/null and b/animateditems/36740.gif differ
diff --git a/animateditems/36740.png b/animateditems/36740.png
new file mode 100644
index 00000000..7b1e2d54
Binary files /dev/null and b/animateditems/36740.png differ
diff --git a/animateditems/36741.gif b/animateditems/36741.gif
new file mode 100644
index 00000000..5eaea297
Binary files /dev/null and b/animateditems/36741.gif differ
diff --git a/animateditems/36741.png b/animateditems/36741.png
new file mode 100644
index 00000000..f79b7079
Binary files /dev/null and b/animateditems/36741.png differ
diff --git a/animateditems/36742.gif b/animateditems/36742.gif
new file mode 100644
index 00000000..c5bad782
Binary files /dev/null and b/animateditems/36742.gif differ
diff --git a/animateditems/36742.png b/animateditems/36742.png
new file mode 100644
index 00000000..56ed1a67
Binary files /dev/null and b/animateditems/36742.png differ
diff --git a/animateditems/36743.gif b/animateditems/36743.gif
new file mode 100644
index 00000000..1bf3aeed
Binary files /dev/null and b/animateditems/36743.gif differ
diff --git a/animateditems/36743.png b/animateditems/36743.png
new file mode 100644
index 00000000..d978b5de
Binary files /dev/null and b/animateditems/36743.png differ
diff --git a/animateditems/36744.gif b/animateditems/36744.gif
new file mode 100644
index 00000000..a9751efb
Binary files /dev/null and b/animateditems/36744.gif differ
diff --git a/animateditems/36744.png b/animateditems/36744.png
new file mode 100644
index 00000000..fe43623e
Binary files /dev/null and b/animateditems/36744.png differ
diff --git a/animateditems/36745.gif b/animateditems/36745.gif
new file mode 100644
index 00000000..5dd7e8e4
Binary files /dev/null and b/animateditems/36745.gif differ
diff --git a/animateditems/36745.png b/animateditems/36745.png
new file mode 100644
index 00000000..2cfbb175
Binary files /dev/null and b/animateditems/36745.png differ
diff --git a/animateditems/36746.gif b/animateditems/36746.gif
new file mode 100644
index 00000000..6328ee98
Binary files /dev/null and b/animateditems/36746.gif differ
diff --git a/animateditems/36746.png b/animateditems/36746.png
new file mode 100644
index 00000000..b7bb0894
Binary files /dev/null and b/animateditems/36746.png differ
diff --git a/animateditems/36747.gif b/animateditems/36747.gif
new file mode 100644
index 00000000..d8f45b5c
Binary files /dev/null and b/animateditems/36747.gif differ
diff --git a/animateditems/36747.png b/animateditems/36747.png
new file mode 100644
index 00000000..e28b0190
Binary files /dev/null and b/animateditems/36747.png differ
diff --git a/animateditems/36748.gif b/animateditems/36748.gif
new file mode 100644
index 00000000..e523f3b1
Binary files /dev/null and b/animateditems/36748.gif differ
diff --git a/animateditems/36748.png b/animateditems/36748.png
new file mode 100644
index 00000000..52b094dc
Binary files /dev/null and b/animateditems/36748.png differ
diff --git a/animateditems/36749.gif b/animateditems/36749.gif
new file mode 100644
index 00000000..990349f3
Binary files /dev/null and b/animateditems/36749.gif differ
diff --git a/animateditems/36749.png b/animateditems/36749.png
new file mode 100644
index 00000000..ddc0940e
Binary files /dev/null and b/animateditems/36749.png differ
diff --git a/animateditems/36750.gif b/animateditems/36750.gif
new file mode 100644
index 00000000..42e9c48d
Binary files /dev/null and b/animateditems/36750.gif differ
diff --git a/animateditems/36750.png b/animateditems/36750.png
new file mode 100644
index 00000000..6187d486
Binary files /dev/null and b/animateditems/36750.png differ
diff --git a/animateditems/36751.gif b/animateditems/36751.gif
new file mode 100644
index 00000000..c96257b1
Binary files /dev/null and b/animateditems/36751.gif differ
diff --git a/animateditems/36751.png b/animateditems/36751.png
new file mode 100644
index 00000000..bdd4c33d
Binary files /dev/null and b/animateditems/36751.png differ
diff --git a/animateditems/36752.gif b/animateditems/36752.gif
new file mode 100644
index 00000000..b0f2a926
Binary files /dev/null and b/animateditems/36752.gif differ
diff --git a/animateditems/36752.png b/animateditems/36752.png
new file mode 100644
index 00000000..faff1e74
Binary files /dev/null and b/animateditems/36752.png differ
diff --git a/animateditems/36753.gif b/animateditems/36753.gif
new file mode 100644
index 00000000..3e9d1f0f
Binary files /dev/null and b/animateditems/36753.gif differ
diff --git a/animateditems/36753.png b/animateditems/36753.png
new file mode 100644
index 00000000..fe22a41b
Binary files /dev/null and b/animateditems/36753.png differ
diff --git a/animateditems/36754.gif b/animateditems/36754.gif
new file mode 100644
index 00000000..3238018c
Binary files /dev/null and b/animateditems/36754.gif differ
diff --git a/animateditems/36754.png b/animateditems/36754.png
new file mode 100644
index 00000000..08d3eb23
Binary files /dev/null and b/animateditems/36754.png differ
diff --git a/animateditems/36755.gif b/animateditems/36755.gif
new file mode 100644
index 00000000..ad27da27
Binary files /dev/null and b/animateditems/36755.gif differ
diff --git a/animateditems/36755.png b/animateditems/36755.png
new file mode 100644
index 00000000..00b29d1b
Binary files /dev/null and b/animateditems/36755.png differ
diff --git a/animateditems/36756.gif b/animateditems/36756.gif
new file mode 100644
index 00000000..bf714b23
Binary files /dev/null and b/animateditems/36756.gif differ
diff --git a/animateditems/36756.png b/animateditems/36756.png
new file mode 100644
index 00000000..1e885409
Binary files /dev/null and b/animateditems/36756.png differ
diff --git a/animateditems/36757.gif b/animateditems/36757.gif
new file mode 100644
index 00000000..292fe8db
Binary files /dev/null and b/animateditems/36757.gif differ
diff --git a/animateditems/36757.png b/animateditems/36757.png
new file mode 100644
index 00000000..5d010dbc
Binary files /dev/null and b/animateditems/36757.png differ
diff --git a/animateditems/36758.gif b/animateditems/36758.gif
new file mode 100644
index 00000000..5e7bc609
Binary files /dev/null and b/animateditems/36758.gif differ
diff --git a/animateditems/36758.png b/animateditems/36758.png
new file mode 100644
index 00000000..23078cc3
Binary files /dev/null and b/animateditems/36758.png differ
diff --git a/animateditems/36759.gif b/animateditems/36759.gif
new file mode 100644
index 00000000..04299fb1
Binary files /dev/null and b/animateditems/36759.gif differ
diff --git a/animateditems/36759.png b/animateditems/36759.png
new file mode 100644
index 00000000..58812997
Binary files /dev/null and b/animateditems/36759.png differ
diff --git a/animateditems/36765.gif b/animateditems/36765.gif
new file mode 100644
index 00000000..c5d32412
Binary files /dev/null and b/animateditems/36765.gif differ
diff --git a/animateditems/36765.png b/animateditems/36765.png
new file mode 100644
index 00000000..dd07e533
Binary files /dev/null and b/animateditems/36765.png differ
diff --git a/animateditems/36794.gif b/animateditems/36794.gif
new file mode 100644
index 00000000..f7e96a72
Binary files /dev/null and b/animateditems/36794.gif differ
diff --git a/animateditems/36794.png b/animateditems/36794.png
new file mode 100644
index 00000000..60944330
Binary files /dev/null and b/animateditems/36794.png differ
diff --git a/animateditems/36795.gif b/animateditems/36795.gif
new file mode 100644
index 00000000..6ecbc827
Binary files /dev/null and b/animateditems/36795.gif differ
diff --git a/animateditems/36795.png b/animateditems/36795.png
new file mode 100644
index 00000000..ce84e8c6
Binary files /dev/null and b/animateditems/36795.png differ
diff --git a/animateditems/36796.gif b/animateditems/36796.gif
new file mode 100644
index 00000000..87eeee95
Binary files /dev/null and b/animateditems/36796.gif differ
diff --git a/animateditems/36796.png b/animateditems/36796.png
new file mode 100644
index 00000000..7878bde2
Binary files /dev/null and b/animateditems/36796.png differ
diff --git a/animateditems/36797.gif b/animateditems/36797.gif
new file mode 100644
index 00000000..80ec4138
Binary files /dev/null and b/animateditems/36797.gif differ
diff --git a/animateditems/36797.png b/animateditems/36797.png
new file mode 100644
index 00000000..f2fed43f
Binary files /dev/null and b/animateditems/36797.png differ
diff --git a/animateditems/36798.gif b/animateditems/36798.gif
new file mode 100644
index 00000000..d3195030
Binary files /dev/null and b/animateditems/36798.gif differ
diff --git a/animateditems/36798.png b/animateditems/36798.png
new file mode 100644
index 00000000..e8a7a976
Binary files /dev/null and b/animateditems/36798.png differ
diff --git a/animateditems/36799.gif b/animateditems/36799.gif
new file mode 100644
index 00000000..81ebec23
Binary files /dev/null and b/animateditems/36799.gif differ
diff --git a/animateditems/36799.png b/animateditems/36799.png
new file mode 100644
index 00000000..bc4e97e0
Binary files /dev/null and b/animateditems/36799.png differ
diff --git a/animateditems/36800.gif b/animateditems/36800.gif
new file mode 100644
index 00000000..47ff18d5
Binary files /dev/null and b/animateditems/36800.gif differ
diff --git a/animateditems/36800.png b/animateditems/36800.png
new file mode 100644
index 00000000..90b9aaef
Binary files /dev/null and b/animateditems/36800.png differ
diff --git a/animateditems/36801.gif b/animateditems/36801.gif
new file mode 100644
index 00000000..2c938919
Binary files /dev/null and b/animateditems/36801.gif differ
diff --git a/animateditems/36801.png b/animateditems/36801.png
new file mode 100644
index 00000000..5e36d1a4
Binary files /dev/null and b/animateditems/36801.png differ
diff --git a/animateditems/36802.gif b/animateditems/36802.gif
new file mode 100644
index 00000000..14b9de6a
Binary files /dev/null and b/animateditems/36802.gif differ
diff --git a/animateditems/36802.png b/animateditems/36802.png
new file mode 100644
index 00000000..9407189c
Binary files /dev/null and b/animateditems/36802.png differ
diff --git a/animateditems/36803.gif b/animateditems/36803.gif
new file mode 100644
index 00000000..14b9de6a
Binary files /dev/null and b/animateditems/36803.gif differ
diff --git a/animateditems/36803.png b/animateditems/36803.png
new file mode 100644
index 00000000..9407189c
Binary files /dev/null and b/animateditems/36803.png differ
diff --git a/animateditems/36804.gif b/animateditems/36804.gif
new file mode 100644
index 00000000..14b9de6a
Binary files /dev/null and b/animateditems/36804.gif differ
diff --git a/animateditems/36804.png b/animateditems/36804.png
new file mode 100644
index 00000000..9407189c
Binary files /dev/null and b/animateditems/36804.png differ
diff --git a/animateditems/36805.gif b/animateditems/36805.gif
new file mode 100644
index 00000000..6989f038
Binary files /dev/null and b/animateditems/36805.gif differ
diff --git a/animateditems/36805.png b/animateditems/36805.png
new file mode 100644
index 00000000..946d91c8
Binary files /dev/null and b/animateditems/36805.png differ
diff --git a/animateditems/36806.gif b/animateditems/36806.gif
new file mode 100644
index 00000000..34ee5d6c
Binary files /dev/null and b/animateditems/36806.gif differ
diff --git a/animateditems/36806.png b/animateditems/36806.png
new file mode 100644
index 00000000..7d3c132b
Binary files /dev/null and b/animateditems/36806.png differ
diff --git a/animateditems/36807.gif b/animateditems/36807.gif
new file mode 100644
index 00000000..5a078672
Binary files /dev/null and b/animateditems/36807.gif differ
diff --git a/animateditems/36807.png b/animateditems/36807.png
new file mode 100644
index 00000000..f1e4e941
Binary files /dev/null and b/animateditems/36807.png differ
diff --git a/animateditems/36808.gif b/animateditems/36808.gif
new file mode 100644
index 00000000..edd781d1
Binary files /dev/null and b/animateditems/36808.gif differ
diff --git a/animateditems/36808.png b/animateditems/36808.png
new file mode 100644
index 00000000..dbd9ebeb
Binary files /dev/null and b/animateditems/36808.png differ
diff --git a/animateditems/36809.gif b/animateditems/36809.gif
new file mode 100644
index 00000000..6b0beacb
Binary files /dev/null and b/animateditems/36809.gif differ
diff --git a/animateditems/36809.png b/animateditems/36809.png
new file mode 100644
index 00000000..7594c386
Binary files /dev/null and b/animateditems/36809.png differ
diff --git a/animateditems/36810.gif b/animateditems/36810.gif
new file mode 100644
index 00000000..233d7a6f
Binary files /dev/null and b/animateditems/36810.gif differ
diff --git a/animateditems/36810.png b/animateditems/36810.png
new file mode 100644
index 00000000..fcef3ed4
Binary files /dev/null and b/animateditems/36810.png differ
diff --git a/animateditems/36811.gif b/animateditems/36811.gif
new file mode 100644
index 00000000..d55638ac
Binary files /dev/null and b/animateditems/36811.gif differ
diff --git a/animateditems/36811.png b/animateditems/36811.png
new file mode 100644
index 00000000..61848983
Binary files /dev/null and b/animateditems/36811.png differ
diff --git a/animateditems/36812.gif b/animateditems/36812.gif
new file mode 100644
index 00000000..30f5fd6a
Binary files /dev/null and b/animateditems/36812.gif differ
diff --git a/animateditems/36812.png b/animateditems/36812.png
new file mode 100644
index 00000000..06f24432
Binary files /dev/null and b/animateditems/36812.png differ
diff --git a/animateditems/36813.gif b/animateditems/36813.gif
new file mode 100644
index 00000000..53ee62aa
Binary files /dev/null and b/animateditems/36813.gif differ
diff --git a/animateditems/36813.png b/animateditems/36813.png
new file mode 100644
index 00000000..2d11d808
Binary files /dev/null and b/animateditems/36813.png differ
diff --git a/animateditems/36816.gif b/animateditems/36816.gif
new file mode 100644
index 00000000..f54e91e9
Binary files /dev/null and b/animateditems/36816.gif differ
diff --git a/animateditems/36816.png b/animateditems/36816.png
new file mode 100644
index 00000000..54c09721
Binary files /dev/null and b/animateditems/36816.png differ
diff --git a/animateditems/36817.gif b/animateditems/36817.gif
new file mode 100644
index 00000000..c65bb96e
Binary files /dev/null and b/animateditems/36817.gif differ
diff --git a/animateditems/36817.png b/animateditems/36817.png
new file mode 100644
index 00000000..4d369e5e
Binary files /dev/null and b/animateditems/36817.png differ
diff --git a/animateditems/36818.gif b/animateditems/36818.gif
new file mode 100644
index 00000000..4cfcbf0a
Binary files /dev/null and b/animateditems/36818.gif differ
diff --git a/animateditems/36818.png b/animateditems/36818.png
new file mode 100644
index 00000000..dbd17151
Binary files /dev/null and b/animateditems/36818.png differ
diff --git a/animateditems/36819.gif b/animateditems/36819.gif
new file mode 100644
index 00000000..d9b49bcf
Binary files /dev/null and b/animateditems/36819.gif differ
diff --git a/animateditems/36819.png b/animateditems/36819.png
new file mode 100644
index 00000000..20a7a082
Binary files /dev/null and b/animateditems/36819.png differ
diff --git a/animateditems/36820.gif b/animateditems/36820.gif
new file mode 100644
index 00000000..417aa94c
Binary files /dev/null and b/animateditems/36820.gif differ
diff --git a/animateditems/36820.png b/animateditems/36820.png
new file mode 100644
index 00000000..2a5a15b2
Binary files /dev/null and b/animateditems/36820.png differ
diff --git a/animateditems/36826.gif b/animateditems/36826.gif
new file mode 100644
index 00000000..5d894f43
Binary files /dev/null and b/animateditems/36826.gif differ
diff --git a/animateditems/36826.png b/animateditems/36826.png
new file mode 100644
index 00000000..9a451b3f
Binary files /dev/null and b/animateditems/36826.png differ
diff --git a/animateditems/36865.gif b/animateditems/36865.gif
new file mode 100644
index 00000000..593a1eb7
Binary files /dev/null and b/animateditems/36865.gif differ
diff --git a/animateditems/36865.png b/animateditems/36865.png
new file mode 100644
index 00000000..7767a4fd
Binary files /dev/null and b/animateditems/36865.png differ
diff --git a/animateditems/36866.gif b/animateditems/36866.gif
new file mode 100644
index 00000000..e423ab0a
Binary files /dev/null and b/animateditems/36866.gif differ
diff --git a/animateditems/36866.png b/animateditems/36866.png
new file mode 100644
index 00000000..616b6cb7
Binary files /dev/null and b/animateditems/36866.png differ
diff --git a/animateditems/36873.gif b/animateditems/36873.gif
new file mode 100644
index 00000000..976958a7
Binary files /dev/null and b/animateditems/36873.gif differ
diff --git a/animateditems/36873.png b/animateditems/36873.png
new file mode 100644
index 00000000..4fb18494
Binary files /dev/null and b/animateditems/36873.png differ
diff --git a/animateditems/36874.gif b/animateditems/36874.gif
new file mode 100644
index 00000000..976958a7
Binary files /dev/null and b/animateditems/36874.gif differ
diff --git a/animateditems/36874.png b/animateditems/36874.png
new file mode 100644
index 00000000..4fb18494
Binary files /dev/null and b/animateditems/36874.png differ
diff --git a/animateditems/36875.gif b/animateditems/36875.gif
new file mode 100644
index 00000000..329427e3
Binary files /dev/null and b/animateditems/36875.gif differ
diff --git a/animateditems/36875.png b/animateditems/36875.png
new file mode 100644
index 00000000..513dea2c
Binary files /dev/null and b/animateditems/36875.png differ
diff --git a/animateditems/36893.gif b/animateditems/36893.gif
new file mode 100644
index 00000000..22bf8298
Binary files /dev/null and b/animateditems/36893.gif differ
diff --git a/animateditems/36893.png b/animateditems/36893.png
new file mode 100644
index 00000000..c7cfa0ae
Binary files /dev/null and b/animateditems/36893.png differ
diff --git a/animateditems/36909.gif b/animateditems/36909.gif
new file mode 100644
index 00000000..43b14e70
Binary files /dev/null and b/animateditems/36909.gif differ
diff --git a/animateditems/36909.png b/animateditems/36909.png
new file mode 100644
index 00000000..1006497a
Binary files /dev/null and b/animateditems/36909.png differ
diff --git a/animateditems/36910.gif b/animateditems/36910.gif
new file mode 100644
index 00000000..b1910bf4
Binary files /dev/null and b/animateditems/36910.gif differ
diff --git a/animateditems/36910.png b/animateditems/36910.png
new file mode 100644
index 00000000..cf098433
Binary files /dev/null and b/animateditems/36910.png differ
diff --git a/animateditems/36914.gif b/animateditems/36914.gif
new file mode 100644
index 00000000..edc880b1
Binary files /dev/null and b/animateditems/36914.gif differ
diff --git a/animateditems/36914.png b/animateditems/36914.png
new file mode 100644
index 00000000..51d47d42
Binary files /dev/null and b/animateditems/36914.png differ
diff --git a/animateditems/36920.gif b/animateditems/36920.gif
new file mode 100644
index 00000000..a36f77c4
Binary files /dev/null and b/animateditems/36920.gif differ
diff --git a/animateditems/36920.png b/animateditems/36920.png
new file mode 100644
index 00000000..e33c7308
Binary files /dev/null and b/animateditems/36920.png differ
diff --git a/animateditems/36921.gif b/animateditems/36921.gif
new file mode 100644
index 00000000..a36f77c4
Binary files /dev/null and b/animateditems/36921.gif differ
diff --git a/animateditems/36921.png b/animateditems/36921.png
new file mode 100644
index 00000000..e33c7308
Binary files /dev/null and b/animateditems/36921.png differ
diff --git a/animateditems/36922.gif b/animateditems/36922.gif
new file mode 100644
index 00000000..c2da6cd6
Binary files /dev/null and b/animateditems/36922.gif differ
diff --git a/animateditems/36922.png b/animateditems/36922.png
new file mode 100644
index 00000000..7fef6f3f
Binary files /dev/null and b/animateditems/36922.png differ
diff --git a/animateditems/36923.gif b/animateditems/36923.gif
new file mode 100644
index 00000000..c2da6cd6
Binary files /dev/null and b/animateditems/36923.gif differ
diff --git a/animateditems/36923.png b/animateditems/36923.png
new file mode 100644
index 00000000..7fef6f3f
Binary files /dev/null and b/animateditems/36923.png differ
diff --git a/animateditems/36924.gif b/animateditems/36924.gif
new file mode 100644
index 00000000..cb5754bd
Binary files /dev/null and b/animateditems/36924.gif differ
diff --git a/animateditems/36924.png b/animateditems/36924.png
new file mode 100644
index 00000000..26c19aed
Binary files /dev/null and b/animateditems/36924.png differ
diff --git a/animateditems/36925.gif b/animateditems/36925.gif
new file mode 100644
index 00000000..0fc84061
Binary files /dev/null and b/animateditems/36925.gif differ
diff --git a/animateditems/36925.png b/animateditems/36925.png
new file mode 100644
index 00000000..226fad10
Binary files /dev/null and b/animateditems/36925.png differ
diff --git a/animateditems/36982.gif b/animateditems/36982.gif
new file mode 100644
index 00000000..aa47a2d1
Binary files /dev/null and b/animateditems/36982.gif differ
diff --git a/animateditems/36982.png b/animateditems/36982.png
new file mode 100644
index 00000000..2d95ed7f
Binary files /dev/null and b/animateditems/36982.png differ
diff --git a/animateditems/36983.gif b/animateditems/36983.gif
new file mode 100644
index 00000000..aa47a2d1
Binary files /dev/null and b/animateditems/36983.gif differ
diff --git a/animateditems/36983.png b/animateditems/36983.png
new file mode 100644
index 00000000..2d95ed7f
Binary files /dev/null and b/animateditems/36983.png differ
diff --git a/animateditems/36987.gif b/animateditems/36987.gif
new file mode 100644
index 00000000..07c37c5b
Binary files /dev/null and b/animateditems/36987.gif differ
diff --git a/animateditems/36987.png b/animateditems/36987.png
new file mode 100644
index 00000000..b443fd44
Binary files /dev/null and b/animateditems/36987.png differ
diff --git a/animateditems/37451.gif b/animateditems/37451.gif
new file mode 100644
index 00000000..210cf4a6
Binary files /dev/null and b/animateditems/37451.gif differ
diff --git a/animateditems/37452.gif b/animateditems/37452.gif
new file mode 100644
index 00000000..339dc8e8
Binary files /dev/null and b/animateditems/37452.gif differ
diff --git a/animateditems/37463.gif b/animateditems/37463.gif
new file mode 100644
index 00000000..07b550a9
Binary files /dev/null and b/animateditems/37463.gif differ
diff --git a/animateditems/37935.gif b/animateditems/37935.gif
new file mode 100644
index 00000000..81fff8c3
Binary files /dev/null and b/animateditems/37935.gif differ
diff --git a/animateditems/37935.png b/animateditems/37935.png
new file mode 100644
index 00000000..3546c868
Binary files /dev/null and b/animateditems/37935.png differ
diff --git a/animateditems/37936.gif b/animateditems/37936.gif
new file mode 100644
index 00000000..63016190
Binary files /dev/null and b/animateditems/37936.gif differ
diff --git a/animateditems/37936.png b/animateditems/37936.png
new file mode 100644
index 00000000..265b350a
Binary files /dev/null and b/animateditems/37936.png differ
diff --git a/animateditems/37937.gif b/animateditems/37937.gif
new file mode 100644
index 00000000..5e7b2d9c
Binary files /dev/null and b/animateditems/37937.gif differ
diff --git a/animateditems/37937.png b/animateditems/37937.png
new file mode 100644
index 00000000..41d801cb
Binary files /dev/null and b/animateditems/37937.png differ
diff --git a/animateditems/37938.gif b/animateditems/37938.gif
new file mode 100644
index 00000000..7a378473
Binary files /dev/null and b/animateditems/37938.gif differ
diff --git a/animateditems/37938.png b/animateditems/37938.png
new file mode 100644
index 00000000..2ca76ef8
Binary files /dev/null and b/animateditems/37938.png differ
diff --git a/animateditems/37939.gif b/animateditems/37939.gif
new file mode 100644
index 00000000..30c9eec9
Binary files /dev/null and b/animateditems/37939.gif differ
diff --git a/animateditems/37939.png b/animateditems/37939.png
new file mode 100644
index 00000000..e9096994
Binary files /dev/null and b/animateditems/37939.png differ
diff --git a/animateditems/37940.gif b/animateditems/37940.gif
new file mode 100644
index 00000000..fd8fe0cb
Binary files /dev/null and b/animateditems/37940.gif differ
diff --git a/animateditems/37940.png b/animateditems/37940.png
new file mode 100644
index 00000000..6945f70f
Binary files /dev/null and b/animateditems/37940.png differ
diff --git a/animateditems/37941.gif b/animateditems/37941.gif
new file mode 100644
index 00000000..30be301a
Binary files /dev/null and b/animateditems/37941.gif differ
diff --git a/animateditems/37941.png b/animateditems/37941.png
new file mode 100644
index 00000000..26a7502c
Binary files /dev/null and b/animateditems/37941.png differ
diff --git a/animateditems/37942.gif b/animateditems/37942.gif
new file mode 100644
index 00000000..b969a6cb
Binary files /dev/null and b/animateditems/37942.gif differ
diff --git a/animateditems/37942.png b/animateditems/37942.png
new file mode 100644
index 00000000..1896d35b
Binary files /dev/null and b/animateditems/37942.png differ
diff --git a/animateditems/37943.gif b/animateditems/37943.gif
new file mode 100644
index 00000000..7214f943
Binary files /dev/null and b/animateditems/37943.gif differ
diff --git a/animateditems/37943.png b/animateditems/37943.png
new file mode 100644
index 00000000..d41e5e2c
Binary files /dev/null and b/animateditems/37943.png differ
diff --git a/animateditems/37944.gif b/animateditems/37944.gif
new file mode 100644
index 00000000..867f0fc9
Binary files /dev/null and b/animateditems/37944.gif differ
diff --git a/animateditems/37944.png b/animateditems/37944.png
new file mode 100644
index 00000000..7f68566b
Binary files /dev/null and b/animateditems/37944.png differ
diff --git a/animateditems/37945.gif b/animateditems/37945.gif
new file mode 100644
index 00000000..75ad1105
Binary files /dev/null and b/animateditems/37945.gif differ
diff --git a/animateditems/37945.png b/animateditems/37945.png
new file mode 100644
index 00000000..935d82ab
Binary files /dev/null and b/animateditems/37945.png differ
diff --git a/animateditems/37946.gif b/animateditems/37946.gif
new file mode 100644
index 00000000..11dd4d0f
Binary files /dev/null and b/animateditems/37946.gif differ
diff --git a/animateditems/37946.png b/animateditems/37946.png
new file mode 100644
index 00000000..d39463c6
Binary files /dev/null and b/animateditems/37946.png differ
diff --git a/animateditems/37947.gif b/animateditems/37947.gif
new file mode 100644
index 00000000..0ecd70d7
Binary files /dev/null and b/animateditems/37947.gif differ
diff --git a/animateditems/37947.png b/animateditems/37947.png
new file mode 100644
index 00000000..e5bfa4e7
Binary files /dev/null and b/animateditems/37947.png differ
diff --git a/animateditems/37992.gif b/animateditems/37992.gif
new file mode 100644
index 00000000..3ff9e8d4
Binary files /dev/null and b/animateditems/37992.gif differ
diff --git a/animateditems/37992.png b/animateditems/37992.png
new file mode 100644
index 00000000..5040cffc
Binary files /dev/null and b/animateditems/37992.png differ
diff --git a/animateditems/38032.gif b/animateditems/38032.gif
new file mode 100644
index 00000000..8d130197
Binary files /dev/null and b/animateditems/38032.gif differ
diff --git a/animateditems/38032.png b/animateditems/38032.png
new file mode 100644
index 00000000..fe3befa1
Binary files /dev/null and b/animateditems/38032.png differ
diff --git a/animateditems/38135.gif b/animateditems/38135.gif
new file mode 100644
index 00000000..ae27c5b2
Binary files /dev/null and b/animateditems/38135.gif differ
diff --git a/animateditems/38135.png b/animateditems/38135.png
new file mode 100644
index 00000000..edc3f4a2
Binary files /dev/null and b/animateditems/38135.png differ
diff --git a/animateditems/38151.gif b/animateditems/38151.gif
new file mode 100644
index 00000000..f1317e5b
Binary files /dev/null and b/animateditems/38151.gif differ
diff --git a/animateditems/38151.png b/animateditems/38151.png
new file mode 100644
index 00000000..9fca3e4f
Binary files /dev/null and b/animateditems/38151.png differ
diff --git a/animateditems/38164.gif b/animateditems/38164.gif
new file mode 100644
index 00000000..e8f102d1
Binary files /dev/null and b/animateditems/38164.gif differ
diff --git a/animateditems/38164.png b/animateditems/38164.png
new file mode 100644
index 00000000..7a8f4041
Binary files /dev/null and b/animateditems/38164.png differ
diff --git a/animateditems/38170.gif b/animateditems/38170.gif
new file mode 100644
index 00000000..37d241b8
Binary files /dev/null and b/animateditems/38170.gif differ
diff --git a/animateditems/38170.png b/animateditems/38170.png
new file mode 100644
index 00000000..5347c2c0
Binary files /dev/null and b/animateditems/38170.png differ
diff --git a/animateditems/38171.gif b/animateditems/38171.gif
new file mode 100644
index 00000000..9caa8f61
Binary files /dev/null and b/animateditems/38171.gif differ
diff --git a/animateditems/38171.png b/animateditems/38171.png
new file mode 100644
index 00000000..f0caef61
Binary files /dev/null and b/animateditems/38171.png differ
diff --git a/animateditems/38172.gif b/animateditems/38172.gif
new file mode 100644
index 00000000..dd50f842
Binary files /dev/null and b/animateditems/38172.gif differ
diff --git a/animateditems/38172.png b/animateditems/38172.png
new file mode 100644
index 00000000..04c0fd41
Binary files /dev/null and b/animateditems/38172.png differ
diff --git a/animateditems/38173.gif b/animateditems/38173.gif
new file mode 100644
index 00000000..0578f0f5
Binary files /dev/null and b/animateditems/38173.gif differ
diff --git a/animateditems/38173.png b/animateditems/38173.png
new file mode 100644
index 00000000..624e4340
Binary files /dev/null and b/animateditems/38173.png differ
diff --git a/animateditems/38174.gif b/animateditems/38174.gif
new file mode 100644
index 00000000..71fffab0
Binary files /dev/null and b/animateditems/38174.gif differ
diff --git a/animateditems/38174.png b/animateditems/38174.png
new file mode 100644
index 00000000..22e5d0dc
Binary files /dev/null and b/animateditems/38174.png differ
diff --git a/animateditems/38175.gif b/animateditems/38175.gif
new file mode 100644
index 00000000..29b7af32
Binary files /dev/null and b/animateditems/38175.gif differ
diff --git a/animateditems/38175.png b/animateditems/38175.png
new file mode 100644
index 00000000..e98267fb
Binary files /dev/null and b/animateditems/38175.png differ
diff --git a/animateditems/38176.gif b/animateditems/38176.gif
new file mode 100644
index 00000000..605a9eb2
Binary files /dev/null and b/animateditems/38176.gif differ
diff --git a/animateditems/38176.png b/animateditems/38176.png
new file mode 100644
index 00000000..bf6f83c2
Binary files /dev/null and b/animateditems/38176.png differ
diff --git a/animateditems/38177.gif b/animateditems/38177.gif
new file mode 100644
index 00000000..21546e81
Binary files /dev/null and b/animateditems/38177.gif differ
diff --git a/animateditems/38177.png b/animateditems/38177.png
new file mode 100644
index 00000000..5b66de4b
Binary files /dev/null and b/animateditems/38177.png differ
diff --git a/animateditems/38178.gif b/animateditems/38178.gif
new file mode 100644
index 00000000..b75402ff
Binary files /dev/null and b/animateditems/38178.gif differ
diff --git a/animateditems/38178.png b/animateditems/38178.png
new file mode 100644
index 00000000..fa64022c
Binary files /dev/null and b/animateditems/38178.png differ
diff --git a/animateditems/38179.gif b/animateditems/38179.gif
new file mode 100644
index 00000000..9f5efe08
Binary files /dev/null and b/animateditems/38179.gif differ
diff --git a/animateditems/38179.png b/animateditems/38179.png
new file mode 100644
index 00000000..fb37964a
Binary files /dev/null and b/animateditems/38179.png differ
diff --git a/animateditems/38218.gif b/animateditems/38218.gif
new file mode 100644
index 00000000..3574b0d3
Binary files /dev/null and b/animateditems/38218.gif differ
diff --git a/animateditems/38218.png b/animateditems/38218.png
new file mode 100644
index 00000000..7d3e17a9
Binary files /dev/null and b/animateditems/38218.png differ
diff --git a/animateditems/38227.gif b/animateditems/38227.gif
new file mode 100644
index 00000000..5f8fa296
Binary files /dev/null and b/animateditems/38227.gif differ
diff --git a/animateditems/38227.png b/animateditems/38227.png
new file mode 100644
index 00000000..749f4f08
Binary files /dev/null and b/animateditems/38227.png differ
diff --git a/animateditems/38228.gif b/animateditems/38228.gif
new file mode 100644
index 00000000..2e3afc6c
Binary files /dev/null and b/animateditems/38228.gif differ
diff --git a/animateditems/38228.png b/animateditems/38228.png
new file mode 100644
index 00000000..51592212
Binary files /dev/null and b/animateditems/38228.png differ
diff --git a/animateditems/38229.gif b/animateditems/38229.gif
new file mode 100644
index 00000000..39c2102a
Binary files /dev/null and b/animateditems/38229.gif differ
diff --git a/animateditems/38229.png b/animateditems/38229.png
new file mode 100644
index 00000000..dd698cb2
Binary files /dev/null and b/animateditems/38229.png differ
diff --git a/animateditems/38230.gif b/animateditems/38230.gif
new file mode 100644
index 00000000..23f801ee
Binary files /dev/null and b/animateditems/38230.gif differ
diff --git a/animateditems/38230.png b/animateditems/38230.png
new file mode 100644
index 00000000..94f866b8
Binary files /dev/null and b/animateditems/38230.png differ
diff --git a/animateditems/38232.gif b/animateditems/38232.gif
new file mode 100644
index 00000000..f4a10720
Binary files /dev/null and b/animateditems/38232.gif differ
diff --git a/animateditems/38232.png b/animateditems/38232.png
new file mode 100644
index 00000000..1d36b46a
Binary files /dev/null and b/animateditems/38232.png differ
diff --git a/animateditems/38233.gif b/animateditems/38233.gif
new file mode 100644
index 00000000..c9c037b9
Binary files /dev/null and b/animateditems/38233.gif differ
diff --git a/animateditems/38233.png b/animateditems/38233.png
new file mode 100644
index 00000000..e9c6eb25
Binary files /dev/null and b/animateditems/38233.png differ
diff --git a/animateditems/38234.gif b/animateditems/38234.gif
new file mode 100644
index 00000000..c9ec87d8
Binary files /dev/null and b/animateditems/38234.gif differ
diff --git a/animateditems/38234.png b/animateditems/38234.png
new file mode 100644
index 00000000..a78d0302
Binary files /dev/null and b/animateditems/38234.png differ
diff --git a/animateditems/38235.gif b/animateditems/38235.gif
new file mode 100644
index 00000000..eac47958
Binary files /dev/null and b/animateditems/38235.gif differ
diff --git a/animateditems/38235.png b/animateditems/38235.png
new file mode 100644
index 00000000..497e0224
Binary files /dev/null and b/animateditems/38235.png differ
diff --git a/animateditems/38236.gif b/animateditems/38236.gif
new file mode 100644
index 00000000..98c5da1a
Binary files /dev/null and b/animateditems/38236.gif differ
diff --git a/animateditems/38236.png b/animateditems/38236.png
new file mode 100644
index 00000000..df7ad58c
Binary files /dev/null and b/animateditems/38236.png differ
diff --git a/animateditems/38237.gif b/animateditems/38237.gif
new file mode 100644
index 00000000..76a6ba87
Binary files /dev/null and b/animateditems/38237.gif differ
diff --git a/animateditems/38237.png b/animateditems/38237.png
new file mode 100644
index 00000000..f634f0f2
Binary files /dev/null and b/animateditems/38237.png differ
diff --git a/animateditems/38244.gif b/animateditems/38244.gif
new file mode 100644
index 00000000..9f53d046
Binary files /dev/null and b/animateditems/38244.gif differ
diff --git a/animateditems/38244.png b/animateditems/38244.png
new file mode 100644
index 00000000..ecfb14f5
Binary files /dev/null and b/animateditems/38244.png differ
diff --git a/animateditems/38245.gif b/animateditems/38245.gif
new file mode 100644
index 00000000..610dc1d2
Binary files /dev/null and b/animateditems/38245.gif differ
diff --git a/animateditems/38245.png b/animateditems/38245.png
new file mode 100644
index 00000000..01462fa3
Binary files /dev/null and b/animateditems/38245.png differ
diff --git a/animateditems/38246.gif b/animateditems/38246.gif
new file mode 100644
index 00000000..ee82ba80
Binary files /dev/null and b/animateditems/38246.gif differ
diff --git a/animateditems/38246.png b/animateditems/38246.png
new file mode 100644
index 00000000..e78480ef
Binary files /dev/null and b/animateditems/38246.png differ
diff --git a/animateditems/38247.gif b/animateditems/38247.gif
new file mode 100644
index 00000000..2e1483b8
Binary files /dev/null and b/animateditems/38247.gif differ
diff --git a/animateditems/38247.png b/animateditems/38247.png
new file mode 100644
index 00000000..61ec88b2
Binary files /dev/null and b/animateditems/38247.png differ
diff --git a/animateditems/38251.gif b/animateditems/38251.gif
new file mode 100644
index 00000000..e5edd735
Binary files /dev/null and b/animateditems/38251.gif differ
diff --git a/animateditems/38251.png b/animateditems/38251.png
new file mode 100644
index 00000000..19c03ad2
Binary files /dev/null and b/animateditems/38251.png differ
diff --git a/animateditems/38252.gif b/animateditems/38252.gif
new file mode 100644
index 00000000..c6ff0eeb
Binary files /dev/null and b/animateditems/38252.gif differ
diff --git a/animateditems/38252.png b/animateditems/38252.png
new file mode 100644
index 00000000..08ccc395
Binary files /dev/null and b/animateditems/38252.png differ
diff --git a/animateditems/38260.gif b/animateditems/38260.gif
new file mode 100644
index 00000000..89286824
Binary files /dev/null and b/animateditems/38260.gif differ
diff --git a/animateditems/38260.png b/animateditems/38260.png
new file mode 100644
index 00000000..f317ab78
Binary files /dev/null and b/animateditems/38260.png differ
diff --git a/animateditems/38261.gif b/animateditems/38261.gif
new file mode 100644
index 00000000..dd95c8e4
Binary files /dev/null and b/animateditems/38261.gif differ
diff --git a/animateditems/38261.png b/animateditems/38261.png
new file mode 100644
index 00000000..6a0da267
Binary files /dev/null and b/animateditems/38261.png differ
diff --git a/animateditems/38262.gif b/animateditems/38262.gif
new file mode 100644
index 00000000..b22d2b47
Binary files /dev/null and b/animateditems/38262.gif differ
diff --git a/animateditems/38262.png b/animateditems/38262.png
new file mode 100644
index 00000000..6a671b03
Binary files /dev/null and b/animateditems/38262.png differ
diff --git a/animateditems/38263.gif b/animateditems/38263.gif
new file mode 100644
index 00000000..9acf7e27
Binary files /dev/null and b/animateditems/38263.gif differ
diff --git a/animateditems/38263.png b/animateditems/38263.png
new file mode 100644
index 00000000..90a30628
Binary files /dev/null and b/animateditems/38263.png differ
diff --git a/animateditems/38264.gif b/animateditems/38264.gif
new file mode 100644
index 00000000..37633dcd
Binary files /dev/null and b/animateditems/38264.gif differ
diff --git a/animateditems/38264.png b/animateditems/38264.png
new file mode 100644
index 00000000..21bdb2ce
Binary files /dev/null and b/animateditems/38264.png differ
diff --git a/animateditems/38265.gif b/animateditems/38265.gif
new file mode 100644
index 00000000..5a1ab669
Binary files /dev/null and b/animateditems/38265.gif differ
diff --git a/animateditems/38265.png b/animateditems/38265.png
new file mode 100644
index 00000000..67bf8b80
Binary files /dev/null and b/animateditems/38265.png differ
diff --git a/animateditems/38266.gif b/animateditems/38266.gif
new file mode 100644
index 00000000..fa60dd76
Binary files /dev/null and b/animateditems/38266.gif differ
diff --git a/animateditems/38266.png b/animateditems/38266.png
new file mode 100644
index 00000000..57d95e19
Binary files /dev/null and b/animateditems/38266.png differ
diff --git a/animateditems/38267.gif b/animateditems/38267.gif
new file mode 100644
index 00000000..3adbc0a3
Binary files /dev/null and b/animateditems/38267.gif differ
diff --git a/animateditems/38267.png b/animateditems/38267.png
new file mode 100644
index 00000000..709619e1
Binary files /dev/null and b/animateditems/38267.png differ
diff --git a/animateditems/38268.gif b/animateditems/38268.gif
new file mode 100644
index 00000000..9437f765
Binary files /dev/null and b/animateditems/38268.gif differ
diff --git a/animateditems/38268.png b/animateditems/38268.png
new file mode 100644
index 00000000..804c42da
Binary files /dev/null and b/animateditems/38268.png differ
diff --git a/animateditems/38269.gif b/animateditems/38269.gif
new file mode 100644
index 00000000..ce752e44
Binary files /dev/null and b/animateditems/38269.gif differ
diff --git a/animateditems/38269.png b/animateditems/38269.png
new file mode 100644
index 00000000..9dc39e5d
Binary files /dev/null and b/animateditems/38269.png differ
diff --git a/animateditems/38351.gif b/animateditems/38351.gif
new file mode 100644
index 00000000..a047503d
Binary files /dev/null and b/animateditems/38351.gif differ
diff --git a/animateditems/38351.png b/animateditems/38351.png
new file mode 100644
index 00000000..55e1eea4
Binary files /dev/null and b/animateditems/38351.png differ
diff --git a/animateditems/38504.gif b/animateditems/38504.gif
new file mode 100644
index 00000000..2f91d22a
Binary files /dev/null and b/animateditems/38504.gif differ
diff --git a/animateditems/38504.png b/animateditems/38504.png
new file mode 100644
index 00000000..3fcde7cc
Binary files /dev/null and b/animateditems/38504.png differ
diff --git a/animateditems/38557.gif b/animateditems/38557.gif
new file mode 100644
index 00000000..4bb3d4a7
Binary files /dev/null and b/animateditems/38557.gif differ
diff --git a/animateditems/38557.png b/animateditems/38557.png
new file mode 100644
index 00000000..a2f498a4
Binary files /dev/null and b/animateditems/38557.png differ
diff --git a/animateditems/38565.gif b/animateditems/38565.gif
new file mode 100644
index 00000000..331e5c77
Binary files /dev/null and b/animateditems/38565.gif differ
diff --git a/animateditems/38565.png b/animateditems/38565.png
new file mode 100644
index 00000000..ff925220
Binary files /dev/null and b/animateditems/38565.png differ
diff --git a/animateditems/38566.gif b/animateditems/38566.gif
new file mode 100644
index 00000000..b1091800
Binary files /dev/null and b/animateditems/38566.gif differ
diff --git a/animateditems/38566.png b/animateditems/38566.png
new file mode 100644
index 00000000..61a506c8
Binary files /dev/null and b/animateditems/38566.png differ
diff --git a/animateditems/38675.gif b/animateditems/38675.gif
new file mode 100644
index 00000000..40a0c586
Binary files /dev/null and b/animateditems/38675.gif differ
diff --git a/animateditems/38675.png b/animateditems/38675.png
new file mode 100644
index 00000000..c2826824
Binary files /dev/null and b/animateditems/38675.png differ
diff --git a/animateditems/38676.gif b/animateditems/38676.gif
new file mode 100644
index 00000000..40a0c586
Binary files /dev/null and b/animateditems/38676.gif differ
diff --git a/animateditems/38676.png b/animateditems/38676.png
new file mode 100644
index 00000000..c2826824
Binary files /dev/null and b/animateditems/38676.png differ
diff --git a/animateditems/38917.gif b/animateditems/38917.gif
new file mode 100644
index 00000000..4313de3e
Binary files /dev/null and b/animateditems/38917.gif differ
diff --git a/animateditems/38918.gif b/animateditems/38918.gif
new file mode 100644
index 00000000..d4eec35a
Binary files /dev/null and b/animateditems/38918.gif differ
diff --git a/animateditems/38919.gif b/animateditems/38919.gif
new file mode 100644
index 00000000..4f666ac7
Binary files /dev/null and b/animateditems/38919.gif differ
diff --git a/animateditems/38920.gif b/animateditems/38920.gif
new file mode 100644
index 00000000..ed260376
Binary files /dev/null and b/animateditems/38920.gif differ
diff --git a/animateditems/38921.gif b/animateditems/38921.gif
new file mode 100644
index 00000000..4a05ed0f
Binary files /dev/null and b/animateditems/38921.gif differ
diff --git a/animateditems/38922.gif b/animateditems/38922.gif
new file mode 100644
index 00000000..cc0e545f
Binary files /dev/null and b/animateditems/38922.gif differ
diff --git a/animateditems/38923.gif b/animateditems/38923.gif
new file mode 100644
index 00000000..1637dce9
Binary files /dev/null and b/animateditems/38923.gif differ
diff --git a/animateditems/38924.gif b/animateditems/38924.gif
new file mode 100644
index 00000000..4618c150
Binary files /dev/null and b/animateditems/38924.gif differ
diff --git a/animateditems/38925.gif b/animateditems/38925.gif
new file mode 100644
index 00000000..e1fe29ff
Binary files /dev/null and b/animateditems/38925.gif differ
diff --git a/animateditems/38926.gif b/animateditems/38926.gif
new file mode 100644
index 00000000..7631e974
Binary files /dev/null and b/animateditems/38926.gif differ
diff --git a/animateditems/38927.gif b/animateditems/38927.gif
new file mode 100644
index 00000000..e2904d7f
Binary files /dev/null and b/animateditems/38927.gif differ
diff --git a/animateditems/38928.gif b/animateditems/38928.gif
new file mode 100644
index 00000000..e611fdb1
Binary files /dev/null and b/animateditems/38928.gif differ
diff --git a/animateditems/38929.gif b/animateditems/38929.gif
new file mode 100644
index 00000000..f0c2b5dd
Binary files /dev/null and b/animateditems/38929.gif differ
diff --git a/animateditems/38930.gif b/animateditems/38930.gif
new file mode 100644
index 00000000..a9b197e0
Binary files /dev/null and b/animateditems/38930.gif differ
diff --git a/animateditems/38931.gif b/animateditems/38931.gif
new file mode 100644
index 00000000..7bf9f0de
Binary files /dev/null and b/animateditems/38931.gif differ
diff --git a/animateditems/38932.gif b/animateditems/38932.gif
new file mode 100644
index 00000000..0431c402
Binary files /dev/null and b/animateditems/38932.gif differ
diff --git a/animateditems/38933.gif b/animateditems/38933.gif
new file mode 100644
index 00000000..a4288a8e
Binary files /dev/null and b/animateditems/38933.gif differ
diff --git a/animateditems/38934.gif b/animateditems/38934.gif
new file mode 100644
index 00000000..c375e9db
Binary files /dev/null and b/animateditems/38934.gif differ
diff --git a/animateditems/38985.gif b/animateditems/38985.gif
new file mode 100644
index 00000000..03c9fcd5
Binary files /dev/null and b/animateditems/38985.gif differ
diff --git a/animateditems/38986.gif b/animateditems/38986.gif
new file mode 100644
index 00000000..9cf310cf
Binary files /dev/null and b/animateditems/38986.gif differ
diff --git a/animateditems/38987.gif b/animateditems/38987.gif
new file mode 100644
index 00000000..29cd8eee
Binary files /dev/null and b/animateditems/38987.gif differ
diff --git a/animateditems/38988.gif b/animateditems/38988.gif
new file mode 100644
index 00000000..4cc05909
Binary files /dev/null and b/animateditems/38988.gif differ
diff --git a/animateditems/38990.gif b/animateditems/38990.gif
new file mode 100644
index 00000000..3e71c500
Binary files /dev/null and b/animateditems/38990.gif differ
diff --git a/animateditems/38992.gif b/animateditems/38992.gif
new file mode 100644
index 00000000..aa89730b
Binary files /dev/null and b/animateditems/38992.gif differ
diff --git a/animateditems/3901.gif b/animateditems/3901.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/3901.gif differ
diff --git a/animateditems/3901.png b/animateditems/3901.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/3901.png differ
diff --git a/animateditems/3902.gif b/animateditems/3902.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/3902.gif differ
diff --git a/animateditems/3902.png b/animateditems/3902.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/3902.png differ
diff --git a/animateditems/3903.gif b/animateditems/3903.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/3903.gif differ
diff --git a/animateditems/3903.png b/animateditems/3903.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/3903.png differ
diff --git a/animateditems/3904.gif b/animateditems/3904.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/3904.gif differ
diff --git a/animateditems/3904.png b/animateditems/3904.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/3904.png differ
diff --git a/animateditems/3905.gif b/animateditems/3905.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/3905.gif differ
diff --git a/animateditems/3905.png b/animateditems/3905.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/3905.png differ
diff --git a/animateditems/3906.gif b/animateditems/3906.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/3906.gif differ
diff --git a/animateditems/3906.png b/animateditems/3906.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/3906.png differ
diff --git a/animateditems/3907.gif b/animateditems/3907.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/3907.gif differ
diff --git a/animateditems/3907.png b/animateditems/3907.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/3907.png differ
diff --git a/animateditems/3908.gif b/animateditems/3908.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/3908.gif differ
diff --git a/animateditems/3908.png b/animateditems/3908.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/3908.png differ
diff --git a/animateditems/39088.gif b/animateditems/39088.gif
new file mode 100644
index 00000000..b868d83b
Binary files /dev/null and b/animateditems/39088.gif differ
diff --git a/animateditems/39089.gif b/animateditems/39089.gif
new file mode 100644
index 00000000..b921d11c
Binary files /dev/null and b/animateditems/39089.gif differ
diff --git a/animateditems/3909.gif b/animateditems/3909.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/3909.gif differ
diff --git a/animateditems/3909.png b/animateditems/3909.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/3909.png differ
diff --git a/animateditems/3910.gif b/animateditems/3910.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/3910.gif differ
diff --git a/animateditems/3910.png b/animateditems/3910.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/3910.png differ
diff --git a/animateditems/3911.gif b/animateditems/3911.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/3911.gif differ
diff --git a/animateditems/3911.png b/animateditems/3911.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/3911.png differ
diff --git a/animateditems/3912.gif b/animateditems/3912.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/3912.gif differ
diff --git a/animateditems/3912.png b/animateditems/3912.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/3912.png differ
diff --git a/animateditems/3913.gif b/animateditems/3913.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/3913.gif differ
diff --git a/animateditems/3913.png b/animateditems/3913.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/3913.png differ
diff --git a/animateditems/39134.gif b/animateditems/39134.gif
new file mode 100644
index 00000000..2964de7c
Binary files /dev/null and b/animateditems/39134.gif differ
diff --git a/animateditems/39134.png b/animateditems/39134.png
new file mode 100644
index 00000000..9d4c6b9c
Binary files /dev/null and b/animateditems/39134.png differ
diff --git a/animateditems/39135.gif b/animateditems/39135.gif
new file mode 100644
index 00000000..2964de7c
Binary files /dev/null and b/animateditems/39135.gif differ
diff --git a/animateditems/39135.png b/animateditems/39135.png
new file mode 100644
index 00000000..9d4c6b9c
Binary files /dev/null and b/animateditems/39135.png differ
diff --git a/animateditems/39136.gif b/animateditems/39136.gif
new file mode 100644
index 00000000..5c748dca
Binary files /dev/null and b/animateditems/39136.gif differ
diff --git a/animateditems/39136.png b/animateditems/39136.png
new file mode 100644
index 00000000..9292459c
Binary files /dev/null and b/animateditems/39136.png differ
diff --git a/animateditems/39137.gif b/animateditems/39137.gif
new file mode 100644
index 00000000..bc0f8a68
Binary files /dev/null and b/animateditems/39137.gif differ
diff --git a/animateditems/39137.png b/animateditems/39137.png
new file mode 100644
index 00000000..0fc5e871
Binary files /dev/null and b/animateditems/39137.png differ
diff --git a/animateditems/3914.gif b/animateditems/3914.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/3914.gif differ
diff --git a/animateditems/3914.png b/animateditems/3914.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/3914.png differ
diff --git a/animateditems/3915.gif b/animateditems/3915.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/3915.gif differ
diff --git a/animateditems/3915.png b/animateditems/3915.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/3915.png differ
diff --git a/animateditems/3916.gif b/animateditems/3916.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/3916.gif differ
diff --git a/animateditems/3916.png b/animateditems/3916.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/3916.png differ
diff --git a/animateditems/3917.gif b/animateditems/3917.gif
new file mode 100644
index 00000000..e0edf1c6
Binary files /dev/null and b/animateditems/3917.gif differ
diff --git a/animateditems/3917.png b/animateditems/3917.png
new file mode 100644
index 00000000..28fa91c1
Binary files /dev/null and b/animateditems/3917.png differ
diff --git a/animateditems/3918.gif b/animateditems/3918.gif
new file mode 100644
index 00000000..e0edf1c6
Binary files /dev/null and b/animateditems/3918.gif differ
diff --git a/animateditems/3918.png b/animateditems/3918.png
new file mode 100644
index 00000000..28fa91c1
Binary files /dev/null and b/animateditems/3918.png differ
diff --git a/animateditems/3919.gif b/animateditems/3919.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/3919.gif differ
diff --git a/animateditems/3919.png b/animateditems/3919.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/3919.png differ
diff --git a/animateditems/39199.gif b/animateditems/39199.gif
new file mode 100644
index 00000000..0df19ae3
Binary files /dev/null and b/animateditems/39199.gif differ
diff --git a/animateditems/39199.png b/animateditems/39199.png
new file mode 100644
index 00000000..b5a7c185
Binary files /dev/null and b/animateditems/39199.png differ
diff --git a/animateditems/3920.gif b/animateditems/3920.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/3920.gif differ
diff --git a/animateditems/3920.png b/animateditems/3920.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/3920.png differ
diff --git a/animateditems/39200.gif b/animateditems/39200.gif
new file mode 100644
index 00000000..af44c4bc
Binary files /dev/null and b/animateditems/39200.gif differ
diff --git a/animateditems/39200.png b/animateditems/39200.png
new file mode 100644
index 00000000..3567a417
Binary files /dev/null and b/animateditems/39200.png differ
diff --git a/animateditems/39201.gif b/animateditems/39201.gif
new file mode 100644
index 00000000..d1a820fb
Binary files /dev/null and b/animateditems/39201.gif differ
diff --git a/animateditems/39201.png b/animateditems/39201.png
new file mode 100644
index 00000000..66c8643d
Binary files /dev/null and b/animateditems/39201.png differ
diff --git a/animateditems/3921.gif b/animateditems/3921.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/3921.gif differ
diff --git a/animateditems/3921.png b/animateditems/3921.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/3921.png differ
diff --git a/animateditems/3922.gif b/animateditems/3922.gif
new file mode 100644
index 00000000..fc16469a
Binary files /dev/null and b/animateditems/3922.gif differ
diff --git a/animateditems/3922.png b/animateditems/3922.png
new file mode 100644
index 00000000..71a36934
Binary files /dev/null and b/animateditems/3922.png differ
diff --git a/animateditems/3923.gif b/animateditems/3923.gif
new file mode 100644
index 00000000..fc16469a
Binary files /dev/null and b/animateditems/3923.gif differ
diff --git a/animateditems/3923.png b/animateditems/3923.png
new file mode 100644
index 00000000..71a36934
Binary files /dev/null and b/animateditems/3923.png differ
diff --git a/animateditems/3924.gif b/animateditems/3924.gif
new file mode 100644
index 00000000..fc16469a
Binary files /dev/null and b/animateditems/3924.gif differ
diff --git a/animateditems/3924.png b/animateditems/3924.png
new file mode 100644
index 00000000..71a36934
Binary files /dev/null and b/animateditems/3924.png differ
diff --git a/animateditems/39242.gif b/animateditems/39242.gif
new file mode 100644
index 00000000..3a11b637
Binary files /dev/null and b/animateditems/39242.gif differ
diff --git a/animateditems/39242.png b/animateditems/39242.png
new file mode 100644
index 00000000..e326109e
Binary files /dev/null and b/animateditems/39242.png differ
diff --git a/animateditems/3925.gif b/animateditems/3925.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/3925.gif differ
diff --git a/animateditems/3925.png b/animateditems/3925.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/3925.png differ
diff --git a/animateditems/39255.gif b/animateditems/39255.gif
new file mode 100644
index 00000000..b24373c1
Binary files /dev/null and b/animateditems/39255.gif differ
diff --git a/animateditems/39255.png b/animateditems/39255.png
new file mode 100644
index 00000000..580b14e1
Binary files /dev/null and b/animateditems/39255.png differ
diff --git a/animateditems/39256.gif b/animateditems/39256.gif
new file mode 100644
index 00000000..dc6c474d
Binary files /dev/null and b/animateditems/39256.gif differ
diff --git a/animateditems/39256.png b/animateditems/39256.png
new file mode 100644
index 00000000..7e2183ce
Binary files /dev/null and b/animateditems/39256.png differ
diff --git a/animateditems/39257.gif b/animateditems/39257.gif
new file mode 100644
index 00000000..627891a3
Binary files /dev/null and b/animateditems/39257.gif differ
diff --git a/animateditems/39257.png b/animateditems/39257.png
new file mode 100644
index 00000000..e3c99c8b
Binary files /dev/null and b/animateditems/39257.png differ
diff --git a/animateditems/3926.gif b/animateditems/3926.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/3926.gif differ
diff --git a/animateditems/3926.png b/animateditems/3926.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/3926.png differ
diff --git a/animateditems/39261.gif b/animateditems/39261.gif
new file mode 100644
index 00000000..163e58cc
Binary files /dev/null and b/animateditems/39261.gif differ
diff --git a/animateditems/39261.png b/animateditems/39261.png
new file mode 100644
index 00000000..f34c1828
Binary files /dev/null and b/animateditems/39261.png differ
diff --git a/animateditems/3927.gif b/animateditems/3927.gif
new file mode 100644
index 00000000..e0edf1c6
Binary files /dev/null and b/animateditems/3927.gif differ
diff --git a/animateditems/3927.png b/animateditems/3927.png
new file mode 100644
index 00000000..28fa91c1
Binary files /dev/null and b/animateditems/3927.png differ
diff --git a/animateditems/39273.gif b/animateditems/39273.gif
new file mode 100644
index 00000000..2f5f8221
Binary files /dev/null and b/animateditems/39273.gif differ
diff --git a/animateditems/39273.png b/animateditems/39273.png
new file mode 100644
index 00000000..aca9f3ed
Binary files /dev/null and b/animateditems/39273.png differ
diff --git a/animateditems/3928.gif b/animateditems/3928.gif
new file mode 100644
index 00000000..e0edf1c6
Binary files /dev/null and b/animateditems/3928.gif differ
diff --git a/animateditems/3928.png b/animateditems/3928.png
new file mode 100644
index 00000000..28fa91c1
Binary files /dev/null and b/animateditems/3928.png differ
diff --git a/animateditems/3929.gif b/animateditems/3929.gif
new file mode 100644
index 00000000..e0edf1c6
Binary files /dev/null and b/animateditems/3929.gif differ
diff --git a/animateditems/3929.png b/animateditems/3929.png
new file mode 100644
index 00000000..28fa91c1
Binary files /dev/null and b/animateditems/3929.png differ
diff --git a/animateditems/3930.gif b/animateditems/3930.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/3930.gif differ
diff --git a/animateditems/3930.png b/animateditems/3930.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/3930.png differ
diff --git a/animateditems/3931.gif b/animateditems/3931.gif
new file mode 100644
index 00000000..e0edf1c6
Binary files /dev/null and b/animateditems/3931.gif differ
diff --git a/animateditems/3931.png b/animateditems/3931.png
new file mode 100644
index 00000000..28fa91c1
Binary files /dev/null and b/animateditems/3931.png differ
diff --git a/animateditems/39312.gif b/animateditems/39312.gif
new file mode 100644
index 00000000..4d8537b4
Binary files /dev/null and b/animateditems/39312.gif differ
diff --git a/animateditems/39312.png b/animateditems/39312.png
new file mode 100644
index 00000000..bc6b412f
Binary files /dev/null and b/animateditems/39312.png differ
diff --git a/animateditems/39313.gif b/animateditems/39313.gif
new file mode 100644
index 00000000..8aa3b3d9
Binary files /dev/null and b/animateditems/39313.gif differ
diff --git a/animateditems/39313.png b/animateditems/39313.png
new file mode 100644
index 00000000..8be2bbd9
Binary files /dev/null and b/animateditems/39313.png differ
diff --git a/animateditems/39314.gif b/animateditems/39314.gif
new file mode 100644
index 00000000..12412305
Binary files /dev/null and b/animateditems/39314.gif differ
diff --git a/animateditems/39314.png b/animateditems/39314.png
new file mode 100644
index 00000000..5e9fdce4
Binary files /dev/null and b/animateditems/39314.png differ
diff --git a/animateditems/39315.gif b/animateditems/39315.gif
new file mode 100644
index 00000000..e76f005c
Binary files /dev/null and b/animateditems/39315.gif differ
diff --git a/animateditems/39315.png b/animateditems/39315.png
new file mode 100644
index 00000000..02339e59
Binary files /dev/null and b/animateditems/39315.png differ
diff --git a/animateditems/39316.gif b/animateditems/39316.gif
new file mode 100644
index 00000000..73d76e57
Binary files /dev/null and b/animateditems/39316.gif differ
diff --git a/animateditems/39316.png b/animateditems/39316.png
new file mode 100644
index 00000000..084339f6
Binary files /dev/null and b/animateditems/39316.png differ
diff --git a/animateditems/39317.gif b/animateditems/39317.gif
new file mode 100644
index 00000000..5ab9bf84
Binary files /dev/null and b/animateditems/39317.gif differ
diff --git a/animateditems/39317.png b/animateditems/39317.png
new file mode 100644
index 00000000..85d5a98b
Binary files /dev/null and b/animateditems/39317.png differ
diff --git a/animateditems/39318.gif b/animateditems/39318.gif
new file mode 100644
index 00000000..0e6a910e
Binary files /dev/null and b/animateditems/39318.gif differ
diff --git a/animateditems/39318.png b/animateditems/39318.png
new file mode 100644
index 00000000..e87524d6
Binary files /dev/null and b/animateditems/39318.png differ
diff --git a/animateditems/39319.gif b/animateditems/39319.gif
new file mode 100644
index 00000000..f8e5784a
Binary files /dev/null and b/animateditems/39319.gif differ
diff --git a/animateditems/39319.png b/animateditems/39319.png
new file mode 100644
index 00000000..84fb05d5
Binary files /dev/null and b/animateditems/39319.png differ
diff --git a/animateditems/3932.gif b/animateditems/3932.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/3932.gif differ
diff --git a/animateditems/3932.png b/animateditems/3932.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/3932.png differ
diff --git a/animateditems/39320.gif b/animateditems/39320.gif
new file mode 100644
index 00000000..ac84c67d
Binary files /dev/null and b/animateditems/39320.gif differ
diff --git a/animateditems/39320.png b/animateditems/39320.png
new file mode 100644
index 00000000..6ae877be
Binary files /dev/null and b/animateditems/39320.png differ
diff --git a/animateditems/39321.gif b/animateditems/39321.gif
new file mode 100644
index 00000000..7921a284
Binary files /dev/null and b/animateditems/39321.gif differ
diff --git a/animateditems/39321.png b/animateditems/39321.png
new file mode 100644
index 00000000..579a205a
Binary files /dev/null and b/animateditems/39321.png differ
diff --git a/animateditems/39322.gif b/animateditems/39322.gif
new file mode 100644
index 00000000..edcb2a37
Binary files /dev/null and b/animateditems/39322.gif differ
diff --git a/animateditems/39322.png b/animateditems/39322.png
new file mode 100644
index 00000000..bd7a7423
Binary files /dev/null and b/animateditems/39322.png differ
diff --git a/animateditems/39323.gif b/animateditems/39323.gif
new file mode 100644
index 00000000..876570eb
Binary files /dev/null and b/animateditems/39323.gif differ
diff --git a/animateditems/39323.png b/animateditems/39323.png
new file mode 100644
index 00000000..d92c65b0
Binary files /dev/null and b/animateditems/39323.png differ
diff --git a/animateditems/39324.gif b/animateditems/39324.gif
new file mode 100644
index 00000000..fa9d846d
Binary files /dev/null and b/animateditems/39324.gif differ
diff --git a/animateditems/39324.png b/animateditems/39324.png
new file mode 100644
index 00000000..3617cee9
Binary files /dev/null and b/animateditems/39324.png differ
diff --git a/animateditems/39325.gif b/animateditems/39325.gif
new file mode 100644
index 00000000..8c988b00
Binary files /dev/null and b/animateditems/39325.gif differ
diff --git a/animateditems/39325.png b/animateditems/39325.png
new file mode 100644
index 00000000..51051bc3
Binary files /dev/null and b/animateditems/39325.png differ
diff --git a/animateditems/39326.gif b/animateditems/39326.gif
new file mode 100644
index 00000000..d7d5d82c
Binary files /dev/null and b/animateditems/39326.gif differ
diff --git a/animateditems/39326.png b/animateditems/39326.png
new file mode 100644
index 00000000..4913ffec
Binary files /dev/null and b/animateditems/39326.png differ
diff --git a/animateditems/39327.gif b/animateditems/39327.gif
new file mode 100644
index 00000000..296ba0a9
Binary files /dev/null and b/animateditems/39327.gif differ
diff --git a/animateditems/39327.png b/animateditems/39327.png
new file mode 100644
index 00000000..bd4349c0
Binary files /dev/null and b/animateditems/39327.png differ
diff --git a/animateditems/39328.gif b/animateditems/39328.gif
new file mode 100644
index 00000000..f4597eb9
Binary files /dev/null and b/animateditems/39328.gif differ
diff --git a/animateditems/39328.png b/animateditems/39328.png
new file mode 100644
index 00000000..9f0b2a36
Binary files /dev/null and b/animateditems/39328.png differ
diff --git a/animateditems/39329.gif b/animateditems/39329.gif
new file mode 100644
index 00000000..a2a94e20
Binary files /dev/null and b/animateditems/39329.gif differ
diff --git a/animateditems/39329.png b/animateditems/39329.png
new file mode 100644
index 00000000..cc27d2a3
Binary files /dev/null and b/animateditems/39329.png differ
diff --git a/animateditems/3933.gif b/animateditems/3933.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/3933.gif differ
diff --git a/animateditems/3933.png b/animateditems/3933.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/3933.png differ
diff --git a/animateditems/39330.gif b/animateditems/39330.gif
new file mode 100644
index 00000000..847923b9
Binary files /dev/null and b/animateditems/39330.gif differ
diff --git a/animateditems/39330.png b/animateditems/39330.png
new file mode 100644
index 00000000..f7602d70
Binary files /dev/null and b/animateditems/39330.png differ
diff --git a/animateditems/39331.gif b/animateditems/39331.gif
new file mode 100644
index 00000000..130fd931
Binary files /dev/null and b/animateditems/39331.gif differ
diff --git a/animateditems/39331.png b/animateditems/39331.png
new file mode 100644
index 00000000..ae74c013
Binary files /dev/null and b/animateditems/39331.png differ
diff --git a/animateditems/3934.gif b/animateditems/3934.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/3934.gif differ
diff --git a/animateditems/3934.png b/animateditems/3934.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/3934.png differ
diff --git a/animateditems/3935.gif b/animateditems/3935.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/3935.gif differ
diff --git a/animateditems/3935.png b/animateditems/3935.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/3935.png differ
diff --git a/animateditems/3936.gif b/animateditems/3936.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/3936.gif differ
diff --git a/animateditems/3936.png b/animateditems/3936.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/3936.png differ
diff --git a/animateditems/39362.gif b/animateditems/39362.gif
new file mode 100644
index 00000000..e6b12e3a
Binary files /dev/null and b/animateditems/39362.gif differ
diff --git a/animateditems/39362.png b/animateditems/39362.png
new file mode 100644
index 00000000..aa4611cc
Binary files /dev/null and b/animateditems/39362.png differ
diff --git a/animateditems/39363.gif b/animateditems/39363.gif
new file mode 100644
index 00000000..4e781c0c
Binary files /dev/null and b/animateditems/39363.gif differ
diff --git a/animateditems/39363.png b/animateditems/39363.png
new file mode 100644
index 00000000..4a9ad7a9
Binary files /dev/null and b/animateditems/39363.png differ
diff --git a/animateditems/39364.gif b/animateditems/39364.gif
new file mode 100644
index 00000000..c5a4c944
Binary files /dev/null and b/animateditems/39364.gif differ
diff --git a/animateditems/39364.png b/animateditems/39364.png
new file mode 100644
index 00000000..f5258f90
Binary files /dev/null and b/animateditems/39364.png differ
diff --git a/animateditems/39368.gif b/animateditems/39368.gif
new file mode 100644
index 00000000..12c08fae
Binary files /dev/null and b/animateditems/39368.gif differ
diff --git a/animateditems/39368.png b/animateditems/39368.png
new file mode 100644
index 00000000..658aba46
Binary files /dev/null and b/animateditems/39368.png differ
diff --git a/animateditems/3937.gif b/animateditems/3937.gif
new file mode 100644
index 00000000..e0edf1c6
Binary files /dev/null and b/animateditems/3937.gif differ
diff --git a/animateditems/3937.png b/animateditems/3937.png
new file mode 100644
index 00000000..28fa91c1
Binary files /dev/null and b/animateditems/3937.png differ
diff --git a/animateditems/39371.gif b/animateditems/39371.gif
new file mode 100644
index 00000000..a4b3cd97
Binary files /dev/null and b/animateditems/39371.gif differ
diff --git a/animateditems/39371.png b/animateditems/39371.png
new file mode 100644
index 00000000..961a4458
Binary files /dev/null and b/animateditems/39371.png differ
diff --git a/animateditems/39378.gif b/animateditems/39378.gif
new file mode 100644
index 00000000..362929d5
Binary files /dev/null and b/animateditems/39378.gif differ
diff --git a/animateditems/39378.png b/animateditems/39378.png
new file mode 100644
index 00000000..75f07886
Binary files /dev/null and b/animateditems/39378.png differ
diff --git a/animateditems/39379.gif b/animateditems/39379.gif
new file mode 100644
index 00000000..00b7718f
Binary files /dev/null and b/animateditems/39379.gif differ
diff --git a/animateditems/39379.png b/animateditems/39379.png
new file mode 100644
index 00000000..a150ddaa
Binary files /dev/null and b/animateditems/39379.png differ
diff --git a/animateditems/3938.gif b/animateditems/3938.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/3938.gif differ
diff --git a/animateditems/3938.png b/animateditems/3938.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/3938.png differ
diff --git a/animateditems/39380.gif b/animateditems/39380.gif
new file mode 100644
index 00000000..555bf69b
Binary files /dev/null and b/animateditems/39380.gif differ
diff --git a/animateditems/39380.png b/animateditems/39380.png
new file mode 100644
index 00000000..2ecb35ae
Binary files /dev/null and b/animateditems/39380.png differ
diff --git a/animateditems/39381.gif b/animateditems/39381.gif
new file mode 100644
index 00000000..11324877
Binary files /dev/null and b/animateditems/39381.gif differ
diff --git a/animateditems/39381.png b/animateditems/39381.png
new file mode 100644
index 00000000..0627f456
Binary files /dev/null and b/animateditems/39381.png differ
diff --git a/animateditems/39382.gif b/animateditems/39382.gif
new file mode 100644
index 00000000..b3edabe9
Binary files /dev/null and b/animateditems/39382.gif differ
diff --git a/animateditems/39382.png b/animateditems/39382.png
new file mode 100644
index 00000000..5ad017d2
Binary files /dev/null and b/animateditems/39382.png differ
diff --git a/animateditems/39383.gif b/animateditems/39383.gif
new file mode 100644
index 00000000..f67dde15
Binary files /dev/null and b/animateditems/39383.gif differ
diff --git a/animateditems/39383.png b/animateditems/39383.png
new file mode 100644
index 00000000..f2e062ed
Binary files /dev/null and b/animateditems/39383.png differ
diff --git a/animateditems/39384.gif b/animateditems/39384.gif
new file mode 100644
index 00000000..cd850484
Binary files /dev/null and b/animateditems/39384.gif differ
diff --git a/animateditems/39384.png b/animateditems/39384.png
new file mode 100644
index 00000000..686ed85a
Binary files /dev/null and b/animateditems/39384.png differ
diff --git a/animateditems/39385.gif b/animateditems/39385.gif
new file mode 100644
index 00000000..8f334a6a
Binary files /dev/null and b/animateditems/39385.gif differ
diff --git a/animateditems/39385.png b/animateditems/39385.png
new file mode 100644
index 00000000..f453dfee
Binary files /dev/null and b/animateditems/39385.png differ
diff --git a/animateditems/39386.gif b/animateditems/39386.gif
new file mode 100644
index 00000000..fe465765
Binary files /dev/null and b/animateditems/39386.gif differ
diff --git a/animateditems/39386.png b/animateditems/39386.png
new file mode 100644
index 00000000..a76a6279
Binary files /dev/null and b/animateditems/39386.png differ
diff --git a/animateditems/39387.gif b/animateditems/39387.gif
new file mode 100644
index 00000000..01f189d5
Binary files /dev/null and b/animateditems/39387.gif differ
diff --git a/animateditems/39387.png b/animateditems/39387.png
new file mode 100644
index 00000000..6d225d7b
Binary files /dev/null and b/animateditems/39387.png differ
diff --git a/animateditems/39388.gif b/animateditems/39388.gif
new file mode 100644
index 00000000..f2108c81
Binary files /dev/null and b/animateditems/39388.gif differ
diff --git a/animateditems/39388.png b/animateditems/39388.png
new file mode 100644
index 00000000..a215bd29
Binary files /dev/null and b/animateditems/39388.png differ
diff --git a/animateditems/39389.gif b/animateditems/39389.gif
new file mode 100644
index 00000000..04a9a7ee
Binary files /dev/null and b/animateditems/39389.gif differ
diff --git a/animateditems/39389.png b/animateditems/39389.png
new file mode 100644
index 00000000..d59584f9
Binary files /dev/null and b/animateditems/39389.png differ
diff --git a/animateditems/3939.gif b/animateditems/3939.gif
new file mode 100644
index 00000000..18f3b909
Binary files /dev/null and b/animateditems/3939.gif differ
diff --git a/animateditems/3939.png b/animateditems/3939.png
new file mode 100644
index 00000000..24f284b4
Binary files /dev/null and b/animateditems/3939.png differ
diff --git a/animateditems/39390.gif b/animateditems/39390.gif
new file mode 100644
index 00000000..3d0d9f38
Binary files /dev/null and b/animateditems/39390.gif differ
diff --git a/animateditems/39390.png b/animateditems/39390.png
new file mode 100644
index 00000000..2ccea1cc
Binary files /dev/null and b/animateditems/39390.png differ
diff --git a/animateditems/39391.gif b/animateditems/39391.gif
new file mode 100644
index 00000000..f63e64b7
Binary files /dev/null and b/animateditems/39391.gif differ
diff --git a/animateditems/39391.png b/animateditems/39391.png
new file mode 100644
index 00000000..8e2c1e50
Binary files /dev/null and b/animateditems/39391.png differ
diff --git a/animateditems/39392.gif b/animateditems/39392.gif
new file mode 100644
index 00000000..c34acbe7
Binary files /dev/null and b/animateditems/39392.gif differ
diff --git a/animateditems/39392.png b/animateditems/39392.png
new file mode 100644
index 00000000..767f0eb2
Binary files /dev/null and b/animateditems/39392.png differ
diff --git a/animateditems/39393.gif b/animateditems/39393.gif
new file mode 100644
index 00000000..404d51a1
Binary files /dev/null and b/animateditems/39393.gif differ
diff --git a/animateditems/39393.png b/animateditems/39393.png
new file mode 100644
index 00000000..6e70ca58
Binary files /dev/null and b/animateditems/39393.png differ
diff --git a/animateditems/39394.gif b/animateditems/39394.gif
new file mode 100644
index 00000000..0af22125
Binary files /dev/null and b/animateditems/39394.gif differ
diff --git a/animateditems/39394.png b/animateditems/39394.png
new file mode 100644
index 00000000..d4a24a3b
Binary files /dev/null and b/animateditems/39394.png differ
diff --git a/animateditems/39395.gif b/animateditems/39395.gif
new file mode 100644
index 00000000..bc635b5f
Binary files /dev/null and b/animateditems/39395.gif differ
diff --git a/animateditems/39395.png b/animateditems/39395.png
new file mode 100644
index 00000000..d17c799c
Binary files /dev/null and b/animateditems/39395.png differ
diff --git a/animateditems/39396.gif b/animateditems/39396.gif
new file mode 100644
index 00000000..018e2124
Binary files /dev/null and b/animateditems/39396.gif differ
diff --git a/animateditems/39396.png b/animateditems/39396.png
new file mode 100644
index 00000000..280c5e7f
Binary files /dev/null and b/animateditems/39396.png differ
diff --git a/animateditems/39397.gif b/animateditems/39397.gif
new file mode 100644
index 00000000..1eee7e2b
Binary files /dev/null and b/animateditems/39397.gif differ
diff --git a/animateditems/39397.png b/animateditems/39397.png
new file mode 100644
index 00000000..4f2269e2
Binary files /dev/null and b/animateditems/39397.png differ
diff --git a/animateditems/3940.gif b/animateditems/3940.gif
new file mode 100644
index 00000000..ba6d8047
Binary files /dev/null and b/animateditems/3940.gif differ
diff --git a/animateditems/3940.png b/animateditems/3940.png
new file mode 100644
index 00000000..c9dd5079
Binary files /dev/null and b/animateditems/3940.png differ
diff --git a/animateditems/3941.gif b/animateditems/3941.gif
new file mode 100644
index 00000000..6a25eff2
Binary files /dev/null and b/animateditems/3941.gif differ
diff --git a/animateditems/3941.png b/animateditems/3941.png
new file mode 100644
index 00000000..03d36742
Binary files /dev/null and b/animateditems/3941.png differ
diff --git a/animateditems/3942.gif b/animateditems/3942.gif
new file mode 100644
index 00000000..efc3fd12
Binary files /dev/null and b/animateditems/3942.gif differ
diff --git a/animateditems/3942.png b/animateditems/3942.png
new file mode 100644
index 00000000..c8446085
Binary files /dev/null and b/animateditems/3942.png differ
diff --git a/animateditems/39425.gif b/animateditems/39425.gif
new file mode 100644
index 00000000..22d3e926
Binary files /dev/null and b/animateditems/39425.gif differ
diff --git a/animateditems/39425.png b/animateditems/39425.png
new file mode 100644
index 00000000..b27b458c
Binary files /dev/null and b/animateditems/39425.png differ
diff --git a/animateditems/39426.gif b/animateditems/39426.gif
new file mode 100644
index 00000000..d877a8ba
Binary files /dev/null and b/animateditems/39426.gif differ
diff --git a/animateditems/39426.png b/animateditems/39426.png
new file mode 100644
index 00000000..79a95207
Binary files /dev/null and b/animateditems/39426.png differ
diff --git a/animateditems/39427.gif b/animateditems/39427.gif
new file mode 100644
index 00000000..e669495b
Binary files /dev/null and b/animateditems/39427.gif differ
diff --git a/animateditems/39427.png b/animateditems/39427.png
new file mode 100644
index 00000000..812a482e
Binary files /dev/null and b/animateditems/39427.png differ
diff --git a/animateditems/39428.gif b/animateditems/39428.gif
new file mode 100644
index 00000000..5dbbc00f
Binary files /dev/null and b/animateditems/39428.gif differ
diff --git a/animateditems/39428.png b/animateditems/39428.png
new file mode 100644
index 00000000..32ac6847
Binary files /dev/null and b/animateditems/39428.png differ
diff --git a/animateditems/39429.gif b/animateditems/39429.gif
new file mode 100644
index 00000000..5784c2e8
Binary files /dev/null and b/animateditems/39429.gif differ
diff --git a/animateditems/39429.png b/animateditems/39429.png
new file mode 100644
index 00000000..4f08f919
Binary files /dev/null and b/animateditems/39429.png differ
diff --git a/animateditems/39430.gif b/animateditems/39430.gif
new file mode 100644
index 00000000..ee61e2fc
Binary files /dev/null and b/animateditems/39430.gif differ
diff --git a/animateditems/39430.png b/animateditems/39430.png
new file mode 100644
index 00000000..8da85873
Binary files /dev/null and b/animateditems/39430.png differ
diff --git a/animateditems/39431.gif b/animateditems/39431.gif
new file mode 100644
index 00000000..318f78c5
Binary files /dev/null and b/animateditems/39431.gif differ
diff --git a/animateditems/39431.png b/animateditems/39431.png
new file mode 100644
index 00000000..157bfe4e
Binary files /dev/null and b/animateditems/39431.png differ
diff --git a/animateditems/39432.gif b/animateditems/39432.gif
new file mode 100644
index 00000000..202c2369
Binary files /dev/null and b/animateditems/39432.gif differ
diff --git a/animateditems/39432.png b/animateditems/39432.png
new file mode 100644
index 00000000..d259069f
Binary files /dev/null and b/animateditems/39432.png differ
diff --git a/animateditems/39433.gif b/animateditems/39433.gif
new file mode 100644
index 00000000..e0daac3f
Binary files /dev/null and b/animateditems/39433.gif differ
diff --git a/animateditems/39433.png b/animateditems/39433.png
new file mode 100644
index 00000000..bc57cce3
Binary files /dev/null and b/animateditems/39433.png differ
diff --git a/animateditems/39434.gif b/animateditems/39434.gif
new file mode 100644
index 00000000..708a233f
Binary files /dev/null and b/animateditems/39434.gif differ
diff --git a/animateditems/39434.png b/animateditems/39434.png
new file mode 100644
index 00000000..7b9204eb
Binary files /dev/null and b/animateditems/39434.png differ
diff --git a/animateditems/39435.gif b/animateditems/39435.gif
new file mode 100644
index 00000000..c5410799
Binary files /dev/null and b/animateditems/39435.gif differ
diff --git a/animateditems/39435.png b/animateditems/39435.png
new file mode 100644
index 00000000..75f15ff6
Binary files /dev/null and b/animateditems/39435.png differ
diff --git a/animateditems/39436.gif b/animateditems/39436.gif
new file mode 100644
index 00000000..c61f2452
Binary files /dev/null and b/animateditems/39436.gif differ
diff --git a/animateditems/39436.png b/animateditems/39436.png
new file mode 100644
index 00000000..fd5e77a0
Binary files /dev/null and b/animateditems/39436.png differ
diff --git a/animateditems/39437.gif b/animateditems/39437.gif
new file mode 100644
index 00000000..d24159e5
Binary files /dev/null and b/animateditems/39437.gif differ
diff --git a/animateditems/39437.png b/animateditems/39437.png
new file mode 100644
index 00000000..7f719bfc
Binary files /dev/null and b/animateditems/39437.png differ
diff --git a/animateditems/39438.gif b/animateditems/39438.gif
new file mode 100644
index 00000000..d37af2ce
Binary files /dev/null and b/animateditems/39438.gif differ
diff --git a/animateditems/39438.png b/animateditems/39438.png
new file mode 100644
index 00000000..84cd8202
Binary files /dev/null and b/animateditems/39438.png differ
diff --git a/animateditems/39439.gif b/animateditems/39439.gif
new file mode 100644
index 00000000..bef44869
Binary files /dev/null and b/animateditems/39439.gif differ
diff --git a/animateditems/39439.png b/animateditems/39439.png
new file mode 100644
index 00000000..abd70bb6
Binary files /dev/null and b/animateditems/39439.png differ
diff --git a/animateditems/39440.gif b/animateditems/39440.gif
new file mode 100644
index 00000000..2fe6edb8
Binary files /dev/null and b/animateditems/39440.gif differ
diff --git a/animateditems/39440.png b/animateditems/39440.png
new file mode 100644
index 00000000..2f348b3d
Binary files /dev/null and b/animateditems/39440.png differ
diff --git a/animateditems/39441.gif b/animateditems/39441.gif
new file mode 100644
index 00000000..7dd5ff2b
Binary files /dev/null and b/animateditems/39441.gif differ
diff --git a/animateditems/39441.png b/animateditems/39441.png
new file mode 100644
index 00000000..295676b1
Binary files /dev/null and b/animateditems/39441.png differ
diff --git a/animateditems/39442.gif b/animateditems/39442.gif
new file mode 100644
index 00000000..30279dd3
Binary files /dev/null and b/animateditems/39442.gif differ
diff --git a/animateditems/39442.png b/animateditems/39442.png
new file mode 100644
index 00000000..9195cc8f
Binary files /dev/null and b/animateditems/39442.png differ
diff --git a/animateditems/39443.gif b/animateditems/39443.gif
new file mode 100644
index 00000000..9ce3cf8b
Binary files /dev/null and b/animateditems/39443.gif differ
diff --git a/animateditems/39443.png b/animateditems/39443.png
new file mode 100644
index 00000000..fdb2eec8
Binary files /dev/null and b/animateditems/39443.png differ
diff --git a/animateditems/39444.gif b/animateditems/39444.gif
new file mode 100644
index 00000000..82a43568
Binary files /dev/null and b/animateditems/39444.gif differ
diff --git a/animateditems/39444.png b/animateditems/39444.png
new file mode 100644
index 00000000..b258fe58
Binary files /dev/null and b/animateditems/39444.png differ
diff --git a/animateditems/39445.gif b/animateditems/39445.gif
new file mode 100644
index 00000000..5edc7e9a
Binary files /dev/null and b/animateditems/39445.gif differ
diff --git a/animateditems/39445.png b/animateditems/39445.png
new file mode 100644
index 00000000..7688ebfb
Binary files /dev/null and b/animateditems/39445.png differ
diff --git a/animateditems/39446.gif b/animateditems/39446.gif
new file mode 100644
index 00000000..d4f040de
Binary files /dev/null and b/animateditems/39446.gif differ
diff --git a/animateditems/39446.png b/animateditems/39446.png
new file mode 100644
index 00000000..8bd7353b
Binary files /dev/null and b/animateditems/39446.png differ
diff --git a/animateditems/39447.gif b/animateditems/39447.gif
new file mode 100644
index 00000000..a7d09cc9
Binary files /dev/null and b/animateditems/39447.gif differ
diff --git a/animateditems/39447.png b/animateditems/39447.png
new file mode 100644
index 00000000..d886622a
Binary files /dev/null and b/animateditems/39447.png differ
diff --git a/animateditems/39448.gif b/animateditems/39448.gif
new file mode 100644
index 00000000..5f377e28
Binary files /dev/null and b/animateditems/39448.gif differ
diff --git a/animateditems/39448.png b/animateditems/39448.png
new file mode 100644
index 00000000..0e2a4ea4
Binary files /dev/null and b/animateditems/39448.png differ
diff --git a/animateditems/39449.gif b/animateditems/39449.gif
new file mode 100644
index 00000000..5a1b18fd
Binary files /dev/null and b/animateditems/39449.gif differ
diff --git a/animateditems/39449.png b/animateditems/39449.png
new file mode 100644
index 00000000..7a88bc78
Binary files /dev/null and b/animateditems/39449.png differ
diff --git a/animateditems/39450.gif b/animateditems/39450.gif
new file mode 100644
index 00000000..39519358
Binary files /dev/null and b/animateditems/39450.gif differ
diff --git a/animateditems/39450.png b/animateditems/39450.png
new file mode 100644
index 00000000..f3875258
Binary files /dev/null and b/animateditems/39450.png differ
diff --git a/animateditems/39451.gif b/animateditems/39451.gif
new file mode 100644
index 00000000..cf50eb47
Binary files /dev/null and b/animateditems/39451.gif differ
diff --git a/animateditems/39451.png b/animateditems/39451.png
new file mode 100644
index 00000000..d1705640
Binary files /dev/null and b/animateditems/39451.png differ
diff --git a/animateditems/39452.gif b/animateditems/39452.gif
new file mode 100644
index 00000000..27e57a3f
Binary files /dev/null and b/animateditems/39452.gif differ
diff --git a/animateditems/39452.png b/animateditems/39452.png
new file mode 100644
index 00000000..2e8badbc
Binary files /dev/null and b/animateditems/39452.png differ
diff --git a/animateditems/39461.gif b/animateditems/39461.gif
new file mode 100644
index 00000000..87e71a35
Binary files /dev/null and b/animateditems/39461.gif differ
diff --git a/animateditems/39461.png b/animateditems/39461.png
new file mode 100644
index 00000000..f79c643c
Binary files /dev/null and b/animateditems/39461.png differ
diff --git a/animateditems/39462.gif b/animateditems/39462.gif
new file mode 100644
index 00000000..1fc3a96e
Binary files /dev/null and b/animateditems/39462.gif differ
diff --git a/animateditems/39462.png b/animateditems/39462.png
new file mode 100644
index 00000000..f9863f90
Binary files /dev/null and b/animateditems/39462.png differ
diff --git a/animateditems/39463.gif b/animateditems/39463.gif
new file mode 100644
index 00000000..cc5a39bd
Binary files /dev/null and b/animateditems/39463.gif differ
diff --git a/animateditems/39463.png b/animateditems/39463.png
new file mode 100644
index 00000000..9c3c7b23
Binary files /dev/null and b/animateditems/39463.png differ
diff --git a/animateditems/39464.gif b/animateditems/39464.gif
new file mode 100644
index 00000000..7e9efc8b
Binary files /dev/null and b/animateditems/39464.gif differ
diff --git a/animateditems/39464.png b/animateditems/39464.png
new file mode 100644
index 00000000..85299d8c
Binary files /dev/null and b/animateditems/39464.png differ
diff --git a/animateditems/39465.gif b/animateditems/39465.gif
new file mode 100644
index 00000000..beba0ccd
Binary files /dev/null and b/animateditems/39465.gif differ
diff --git a/animateditems/39465.png b/animateditems/39465.png
new file mode 100644
index 00000000..0645142a
Binary files /dev/null and b/animateditems/39465.png differ
diff --git a/animateditems/39466.gif b/animateditems/39466.gif
new file mode 100644
index 00000000..863a275c
Binary files /dev/null and b/animateditems/39466.gif differ
diff --git a/animateditems/39466.png b/animateditems/39466.png
new file mode 100644
index 00000000..c5aae36b
Binary files /dev/null and b/animateditems/39466.png differ
diff --git a/animateditems/39467.gif b/animateditems/39467.gif
new file mode 100644
index 00000000..22661bdf
Binary files /dev/null and b/animateditems/39467.gif differ
diff --git a/animateditems/39467.png b/animateditems/39467.png
new file mode 100644
index 00000000..e7cb91aa
Binary files /dev/null and b/animateditems/39467.png differ
diff --git a/animateditems/39468.gif b/animateditems/39468.gif
new file mode 100644
index 00000000..db9510c5
Binary files /dev/null and b/animateditems/39468.gif differ
diff --git a/animateditems/39468.png b/animateditems/39468.png
new file mode 100644
index 00000000..6dcc1bb4
Binary files /dev/null and b/animateditems/39468.png differ
diff --git a/animateditems/39469.gif b/animateditems/39469.gif
new file mode 100644
index 00000000..ea25a6c3
Binary files /dev/null and b/animateditems/39469.gif differ
diff --git a/animateditems/39469.png b/animateditems/39469.png
new file mode 100644
index 00000000..bce0764d
Binary files /dev/null and b/animateditems/39469.png differ
diff --git a/animateditems/39476.gif b/animateditems/39476.gif
new file mode 100644
index 00000000..206bd4ac
Binary files /dev/null and b/animateditems/39476.gif differ
diff --git a/animateditems/39476.png b/animateditems/39476.png
new file mode 100644
index 00000000..953fc5f7
Binary files /dev/null and b/animateditems/39476.png differ
diff --git a/animateditems/39477.gif b/animateditems/39477.gif
new file mode 100644
index 00000000..2dda1806
Binary files /dev/null and b/animateditems/39477.gif differ
diff --git a/animateditems/39477.png b/animateditems/39477.png
new file mode 100644
index 00000000..47fd7adb
Binary files /dev/null and b/animateditems/39477.png differ
diff --git a/animateditems/39478.gif b/animateditems/39478.gif
new file mode 100644
index 00000000..4fdf6ea6
Binary files /dev/null and b/animateditems/39478.gif differ
diff --git a/animateditems/39478.png b/animateditems/39478.png
new file mode 100644
index 00000000..df3e348b
Binary files /dev/null and b/animateditems/39478.png differ
diff --git a/animateditems/39479.gif b/animateditems/39479.gif
new file mode 100644
index 00000000..386ad673
Binary files /dev/null and b/animateditems/39479.gif differ
diff --git a/animateditems/39479.png b/animateditems/39479.png
new file mode 100644
index 00000000..00d08f83
Binary files /dev/null and b/animateditems/39479.png differ
diff --git a/animateditems/39483.gif b/animateditems/39483.gif
new file mode 100644
index 00000000..ce4a7bfb
Binary files /dev/null and b/animateditems/39483.gif differ
diff --git a/animateditems/39483.png b/animateditems/39483.png
new file mode 100644
index 00000000..77d6309e
Binary files /dev/null and b/animateditems/39483.png differ
diff --git a/animateditems/39491.gif b/animateditems/39491.gif
new file mode 100644
index 00000000..368ef859
Binary files /dev/null and b/animateditems/39491.gif differ
diff --git a/animateditems/39491.png b/animateditems/39491.png
new file mode 100644
index 00000000..9e1863ef
Binary files /dev/null and b/animateditems/39491.png differ
diff --git a/animateditems/39492.gif b/animateditems/39492.gif
new file mode 100644
index 00000000..88cfcbda
Binary files /dev/null and b/animateditems/39492.gif differ
diff --git a/animateditems/39492.png b/animateditems/39492.png
new file mode 100644
index 00000000..85fdd8f0
Binary files /dev/null and b/animateditems/39492.png differ
diff --git a/animateditems/39493.gif b/animateditems/39493.gif
new file mode 100644
index 00000000..86fcc727
Binary files /dev/null and b/animateditems/39493.gif differ
diff --git a/animateditems/39493.png b/animateditems/39493.png
new file mode 100644
index 00000000..20ca7de8
Binary files /dev/null and b/animateditems/39493.png differ
diff --git a/animateditems/39494.gif b/animateditems/39494.gif
new file mode 100644
index 00000000..0117d5d4
Binary files /dev/null and b/animateditems/39494.gif differ
diff --git a/animateditems/39494.png b/animateditems/39494.png
new file mode 100644
index 00000000..d514365f
Binary files /dev/null and b/animateditems/39494.png differ
diff --git a/animateditems/3951.gif b/animateditems/3951.gif
new file mode 100644
index 00000000..1f3f1cf2
Binary files /dev/null and b/animateditems/3951.gif differ
diff --git a/animateditems/3951.png b/animateditems/3951.png
new file mode 100644
index 00000000..fb2e4d40
Binary files /dev/null and b/animateditems/3951.png differ
diff --git a/animateditems/3952.gif b/animateditems/3952.gif
new file mode 100644
index 00000000..4d70e290
Binary files /dev/null and b/animateditems/3952.gif differ
diff --git a/animateditems/3952.png b/animateditems/3952.png
new file mode 100644
index 00000000..883a32f9
Binary files /dev/null and b/animateditems/3952.png differ
diff --git a/animateditems/3953.gif b/animateditems/3953.gif
new file mode 100644
index 00000000..0d0f6f19
Binary files /dev/null and b/animateditems/3953.gif differ
diff --git a/animateditems/3953.png b/animateditems/3953.png
new file mode 100644
index 00000000..631dd738
Binary files /dev/null and b/animateditems/3953.png differ
diff --git a/animateditems/39531.gif b/animateditems/39531.gif
new file mode 100644
index 00000000..0e2d7606
Binary files /dev/null and b/animateditems/39531.gif differ
diff --git a/animateditems/39531.png b/animateditems/39531.png
new file mode 100644
index 00000000..e46dff58
Binary files /dev/null and b/animateditems/39531.png differ
diff --git a/animateditems/39532.gif b/animateditems/39532.gif
new file mode 100644
index 00000000..a0fb9a7e
Binary files /dev/null and b/animateditems/39532.gif differ
diff --git a/animateditems/39532.png b/animateditems/39532.png
new file mode 100644
index 00000000..3b918f0b
Binary files /dev/null and b/animateditems/39532.png differ
diff --git a/animateditems/3954.gif b/animateditems/3954.gif
new file mode 100644
index 00000000..95a36596
Binary files /dev/null and b/animateditems/3954.gif differ
diff --git a/animateditems/3954.png b/animateditems/3954.png
new file mode 100644
index 00000000..bf079de3
Binary files /dev/null and b/animateditems/3954.png differ
diff --git a/animateditems/3955.gif b/animateditems/3955.gif
new file mode 100644
index 00000000..2510551c
Binary files /dev/null and b/animateditems/3955.gif differ
diff --git a/animateditems/3955.png b/animateditems/3955.png
new file mode 100644
index 00000000..e3a06d79
Binary files /dev/null and b/animateditems/3955.png differ
diff --git a/animateditems/3956.gif b/animateditems/3956.gif
new file mode 100644
index 00000000..9f102c3e
Binary files /dev/null and b/animateditems/3956.gif differ
diff --git a/animateditems/3956.png b/animateditems/3956.png
new file mode 100644
index 00000000..a5e79a5a
Binary files /dev/null and b/animateditems/3956.png differ
diff --git a/animateditems/3957.gif b/animateditems/3957.gif
new file mode 100644
index 00000000..761bafb7
Binary files /dev/null and b/animateditems/3957.gif differ
diff --git a/animateditems/3957.png b/animateditems/3957.png
new file mode 100644
index 00000000..7a3c5946
Binary files /dev/null and b/animateditems/3957.png differ
diff --git a/animateditems/39571.gif b/animateditems/39571.gif
new file mode 100644
index 00000000..976958a7
Binary files /dev/null and b/animateditems/39571.gif differ
diff --git a/animateditems/39571.png b/animateditems/39571.png
new file mode 100644
index 00000000..4fb18494
Binary files /dev/null and b/animateditems/39571.png differ
diff --git a/animateditems/39572.gif b/animateditems/39572.gif
new file mode 100644
index 00000000..976958a7
Binary files /dev/null and b/animateditems/39572.gif differ
diff --git a/animateditems/39572.png b/animateditems/39572.png
new file mode 100644
index 00000000..4fb18494
Binary files /dev/null and b/animateditems/39572.png differ
diff --git a/animateditems/39573.gif b/animateditems/39573.gif
new file mode 100644
index 00000000..976958a7
Binary files /dev/null and b/animateditems/39573.gif differ
diff --git a/animateditems/39573.png b/animateditems/39573.png
new file mode 100644
index 00000000..4fb18494
Binary files /dev/null and b/animateditems/39573.png differ
diff --git a/animateditems/39579.gif b/animateditems/39579.gif
new file mode 100644
index 00000000..3f020ae3
Binary files /dev/null and b/animateditems/39579.gif differ
diff --git a/animateditems/39579.png b/animateditems/39579.png
new file mode 100644
index 00000000..5827ed24
Binary files /dev/null and b/animateditems/39579.png differ
diff --git a/animateditems/39594.gif b/animateditems/39594.gif
new file mode 100644
index 00000000..01aa9930
Binary files /dev/null and b/animateditems/39594.gif differ
diff --git a/animateditems/39594.png b/animateditems/39594.png
new file mode 100644
index 00000000..435e8c09
Binary files /dev/null and b/animateditems/39594.png differ
diff --git a/animateditems/3960.gif b/animateditems/3960.gif
new file mode 100644
index 00000000..4de2012d
Binary files /dev/null and b/animateditems/3960.gif differ
diff --git a/animateditems/3960.png b/animateditems/3960.png
new file mode 100644
index 00000000..1dbcd152
Binary files /dev/null and b/animateditems/3960.png differ
diff --git a/animateditems/39607.gif b/animateditems/39607.gif
new file mode 100644
index 00000000..7fc49aac
Binary files /dev/null and b/animateditems/39607.gif differ
diff --git a/animateditems/39607.png b/animateditems/39607.png
new file mode 100644
index 00000000..42db059f
Binary files /dev/null and b/animateditems/39607.png differ
diff --git a/animateditems/39608.gif b/animateditems/39608.gif
new file mode 100644
index 00000000..7fc49aac
Binary files /dev/null and b/animateditems/39608.gif differ
diff --git a/animateditems/39608.png b/animateditems/39608.png
new file mode 100644
index 00000000..42db059f
Binary files /dev/null and b/animateditems/39608.png differ
diff --git a/animateditems/39609.gif b/animateditems/39609.gif
new file mode 100644
index 00000000..7fc49aac
Binary files /dev/null and b/animateditems/39609.gif differ
diff --git a/animateditems/39609.png b/animateditems/39609.png
new file mode 100644
index 00000000..42db059f
Binary files /dev/null and b/animateditems/39609.png differ
diff --git a/animateditems/3961.gif b/animateditems/3961.gif
new file mode 100644
index 00000000..cf1f3830
Binary files /dev/null and b/animateditems/3961.gif differ
diff --git a/animateditems/3961.png b/animateditems/3961.png
new file mode 100644
index 00000000..fe6cdd30
Binary files /dev/null and b/animateditems/3961.png differ
diff --git a/animateditems/39610.gif b/animateditems/39610.gif
new file mode 100644
index 00000000..7fc49aac
Binary files /dev/null and b/animateditems/39610.gif differ
diff --git a/animateditems/39610.png b/animateditems/39610.png
new file mode 100644
index 00000000..42db059f
Binary files /dev/null and b/animateditems/39610.png differ
diff --git a/animateditems/39611.gif b/animateditems/39611.gif
new file mode 100644
index 00000000..7fc49aac
Binary files /dev/null and b/animateditems/39611.gif differ
diff --git a/animateditems/39611.png b/animateditems/39611.png
new file mode 100644
index 00000000..42db059f
Binary files /dev/null and b/animateditems/39611.png differ
diff --git a/animateditems/39617.gif b/animateditems/39617.gif
new file mode 100644
index 00000000..1019c0b3
Binary files /dev/null and b/animateditems/39617.gif differ
diff --git a/animateditems/39617.png b/animateditems/39617.png
new file mode 100644
index 00000000..bebe6ca4
Binary files /dev/null and b/animateditems/39617.png differ
diff --git a/animateditems/3962.gif b/animateditems/3962.gif
new file mode 100644
index 00000000..79a6ca73
Binary files /dev/null and b/animateditems/3962.gif differ
diff --git a/animateditems/3962.png b/animateditems/3962.png
new file mode 100644
index 00000000..e8e14ac9
Binary files /dev/null and b/animateditems/3962.png differ
diff --git a/animateditems/39627.gif b/animateditems/39627.gif
new file mode 100644
index 00000000..57a4c5a8
Binary files /dev/null and b/animateditems/39627.gif differ
diff --git a/animateditems/39627.png b/animateditems/39627.png
new file mode 100644
index 00000000..51c2e093
Binary files /dev/null and b/animateditems/39627.png differ
diff --git a/animateditems/39628.gif b/animateditems/39628.gif
new file mode 100644
index 00000000..8ef26c8d
Binary files /dev/null and b/animateditems/39628.gif differ
diff --git a/animateditems/39628.png b/animateditems/39628.png
new file mode 100644
index 00000000..ba767a15
Binary files /dev/null and b/animateditems/39628.png differ
diff --git a/animateditems/3963.gif b/animateditems/3963.gif
new file mode 100644
index 00000000..78b76a79
Binary files /dev/null and b/animateditems/3963.gif differ
diff --git a/animateditems/3963.png b/animateditems/3963.png
new file mode 100644
index 00000000..02e72494
Binary files /dev/null and b/animateditems/3963.png differ
diff --git a/animateditems/39634.gif b/animateditems/39634.gif
new file mode 100644
index 00000000..9f8e211f
Binary files /dev/null and b/animateditems/39634.gif differ
diff --git a/animateditems/39634.png b/animateditems/39634.png
new file mode 100644
index 00000000..afe0e4d8
Binary files /dev/null and b/animateditems/39634.png differ
diff --git a/animateditems/39635.gif b/animateditems/39635.gif
new file mode 100644
index 00000000..c754ad88
Binary files /dev/null and b/animateditems/39635.gif differ
diff --git a/animateditems/39635.png b/animateditems/39635.png
new file mode 100644
index 00000000..555e77c8
Binary files /dev/null and b/animateditems/39635.png differ
diff --git a/animateditems/39637.gif b/animateditems/39637.gif
new file mode 100644
index 00000000..2a9015ff
Binary files /dev/null and b/animateditems/39637.gif differ
diff --git a/animateditems/39637.png b/animateditems/39637.png
new file mode 100644
index 00000000..01bbc2a4
Binary files /dev/null and b/animateditems/39637.png differ
diff --git a/animateditems/3964.gif b/animateditems/3964.gif
new file mode 100644
index 00000000..a7142766
Binary files /dev/null and b/animateditems/3964.gif differ
diff --git a/animateditems/3964.png b/animateditems/3964.png
new file mode 100644
index 00000000..2b87696f
Binary files /dev/null and b/animateditems/3964.png differ
diff --git a/animateditems/3965.gif b/animateditems/3965.gif
new file mode 100644
index 00000000..b4ee39d7
Binary files /dev/null and b/animateditems/3965.gif differ
diff --git a/animateditems/3965.png b/animateditems/3965.png
new file mode 100644
index 00000000..2c7460a2
Binary files /dev/null and b/animateditems/3965.png differ
diff --git a/animateditems/39650.gif b/animateditems/39650.gif
new file mode 100644
index 00000000..b205bbc8
Binary files /dev/null and b/animateditems/39650.gif differ
diff --git a/animateditems/39650.png b/animateditems/39650.png
new file mode 100644
index 00000000..b66b9e87
Binary files /dev/null and b/animateditems/39650.png differ
diff --git a/animateditems/39652.gif b/animateditems/39652.gif
new file mode 100644
index 00000000..45a8ed90
Binary files /dev/null and b/animateditems/39652.gif differ
diff --git a/animateditems/39652.png b/animateditems/39652.png
new file mode 100644
index 00000000..e2dd8d14
Binary files /dev/null and b/animateditems/39652.png differ
diff --git a/animateditems/39653.gif b/animateditems/39653.gif
new file mode 100644
index 00000000..d8cfa53c
Binary files /dev/null and b/animateditems/39653.gif differ
diff --git a/animateditems/39653.png b/animateditems/39653.png
new file mode 100644
index 00000000..f652f669
Binary files /dev/null and b/animateditems/39653.png differ
diff --git a/animateditems/39654.gif b/animateditems/39654.gif
new file mode 100644
index 00000000..26ec5d31
Binary files /dev/null and b/animateditems/39654.gif differ
diff --git a/animateditems/39654.png b/animateditems/39654.png
new file mode 100644
index 00000000..6f4e1b75
Binary files /dev/null and b/animateditems/39654.png differ
diff --git a/animateditems/39655.gif b/animateditems/39655.gif
new file mode 100644
index 00000000..26ec5d31
Binary files /dev/null and b/animateditems/39655.gif differ
diff --git a/animateditems/39655.png b/animateditems/39655.png
new file mode 100644
index 00000000..6f4e1b75
Binary files /dev/null and b/animateditems/39655.png differ
diff --git a/animateditems/39658.gif b/animateditems/39658.gif
new file mode 100644
index 00000000..0997e363
Binary files /dev/null and b/animateditems/39658.gif differ
diff --git a/animateditems/39658.png b/animateditems/39658.png
new file mode 100644
index 00000000..cff5b251
Binary files /dev/null and b/animateditems/39658.png differ
diff --git a/animateditems/39659.gif b/animateditems/39659.gif
new file mode 100644
index 00000000..c43c930b
Binary files /dev/null and b/animateditems/39659.gif differ
diff --git a/animateditems/39659.png b/animateditems/39659.png
new file mode 100644
index 00000000..b811ca9a
Binary files /dev/null and b/animateditems/39659.png differ
diff --git a/animateditems/3966.gif b/animateditems/3966.gif
new file mode 100644
index 00000000..2275ef74
Binary files /dev/null and b/animateditems/3966.gif differ
diff --git a/animateditems/3966.png b/animateditems/3966.png
new file mode 100644
index 00000000..9ae0c0b3
Binary files /dev/null and b/animateditems/3966.png differ
diff --git a/animateditems/3967.gif b/animateditems/3967.gif
new file mode 100644
index 00000000..fdbe91fe
Binary files /dev/null and b/animateditems/3967.gif differ
diff --git a/animateditems/3967.png b/animateditems/3967.png
new file mode 100644
index 00000000..b6f7d373
Binary files /dev/null and b/animateditems/3967.png differ
diff --git a/animateditems/3968.gif b/animateditems/3968.gif
new file mode 100644
index 00000000..bbea5ee9
Binary files /dev/null and b/animateditems/3968.gif differ
diff --git a/animateditems/3968.png b/animateditems/3968.png
new file mode 100644
index 00000000..71179805
Binary files /dev/null and b/animateditems/3968.png differ
diff --git a/animateditems/3969.gif b/animateditems/3969.gif
new file mode 100644
index 00000000..75809410
Binary files /dev/null and b/animateditems/3969.gif differ
diff --git a/animateditems/3969.png b/animateditems/3969.png
new file mode 100644
index 00000000..a92a00c4
Binary files /dev/null and b/animateditems/3969.png differ
diff --git a/animateditems/3970.gif b/animateditems/3970.gif
new file mode 100644
index 00000000..b04fef51
Binary files /dev/null and b/animateditems/3970.gif differ
diff --git a/animateditems/3970.png b/animateditems/3970.png
new file mode 100644
index 00000000..8aa42a47
Binary files /dev/null and b/animateditems/3970.png differ
diff --git a/animateditems/39708.gif b/animateditems/39708.gif
new file mode 100644
index 00000000..4e1fb67b
Binary files /dev/null and b/animateditems/39708.gif differ
diff --git a/animateditems/39708.png b/animateditems/39708.png
new file mode 100644
index 00000000..da51f494
Binary files /dev/null and b/animateditems/39708.png differ
diff --git a/animateditems/39709.gif b/animateditems/39709.gif
new file mode 100644
index 00000000..7a3a1e8e
Binary files /dev/null and b/animateditems/39709.gif differ
diff --git a/animateditems/39709.png b/animateditems/39709.png
new file mode 100644
index 00000000..99be0a98
Binary files /dev/null and b/animateditems/39709.png differ
diff --git a/animateditems/3971.gif b/animateditems/3971.gif
new file mode 100644
index 00000000..f4c6d937
Binary files /dev/null and b/animateditems/3971.gif differ
diff --git a/animateditems/3971.png b/animateditems/3971.png
new file mode 100644
index 00000000..14950e0b
Binary files /dev/null and b/animateditems/3971.png differ
diff --git a/animateditems/39710.gif b/animateditems/39710.gif
new file mode 100644
index 00000000..a770a7e3
Binary files /dev/null and b/animateditems/39710.gif differ
diff --git a/animateditems/39710.png b/animateditems/39710.png
new file mode 100644
index 00000000..0077b17a
Binary files /dev/null and b/animateditems/39710.png differ
diff --git a/animateditems/39711.gif b/animateditems/39711.gif
new file mode 100644
index 00000000..6c083577
Binary files /dev/null and b/animateditems/39711.gif differ
diff --git a/animateditems/39711.png b/animateditems/39711.png
new file mode 100644
index 00000000..4ecec4ea
Binary files /dev/null and b/animateditems/39711.png differ
diff --git a/animateditems/39712.gif b/animateditems/39712.gif
new file mode 100644
index 00000000..5ed863e9
Binary files /dev/null and b/animateditems/39712.gif differ
diff --git a/animateditems/39712.png b/animateditems/39712.png
new file mode 100644
index 00000000..1f4146e2
Binary files /dev/null and b/animateditems/39712.png differ
diff --git a/animateditems/39713.gif b/animateditems/39713.gif
new file mode 100644
index 00000000..e2503d09
Binary files /dev/null and b/animateditems/39713.gif differ
diff --git a/animateditems/39713.png b/animateditems/39713.png
new file mode 100644
index 00000000..5ca1a972
Binary files /dev/null and b/animateditems/39713.png differ
diff --git a/animateditems/39714.gif b/animateditems/39714.gif
new file mode 100644
index 00000000..f24bc3b5
Binary files /dev/null and b/animateditems/39714.gif differ
diff --git a/animateditems/39714.png b/animateditems/39714.png
new file mode 100644
index 00000000..b9a98a31
Binary files /dev/null and b/animateditems/39714.png differ
diff --git a/animateditems/39715.gif b/animateditems/39715.gif
new file mode 100644
index 00000000..2cde9479
Binary files /dev/null and b/animateditems/39715.gif differ
diff --git a/animateditems/39715.png b/animateditems/39715.png
new file mode 100644
index 00000000..c202e987
Binary files /dev/null and b/animateditems/39715.png differ
diff --git a/animateditems/39716.gif b/animateditems/39716.gif
new file mode 100644
index 00000000..a2a99d9b
Binary files /dev/null and b/animateditems/39716.gif differ
diff --git a/animateditems/39716.png b/animateditems/39716.png
new file mode 100644
index 00000000..ef16d2b6
Binary files /dev/null and b/animateditems/39716.png differ
diff --git a/animateditems/39717.gif b/animateditems/39717.gif
new file mode 100644
index 00000000..f4b0717d
Binary files /dev/null and b/animateditems/39717.gif differ
diff --git a/animateditems/39717.png b/animateditems/39717.png
new file mode 100644
index 00000000..8ed19072
Binary files /dev/null and b/animateditems/39717.png differ
diff --git a/animateditems/39718.gif b/animateditems/39718.gif
new file mode 100644
index 00000000..36d0ecd0
Binary files /dev/null and b/animateditems/39718.gif differ
diff --git a/animateditems/39718.png b/animateditems/39718.png
new file mode 100644
index 00000000..1c5cfac4
Binary files /dev/null and b/animateditems/39718.png differ
diff --git a/animateditems/39719.gif b/animateditems/39719.gif
new file mode 100644
index 00000000..6f7814a3
Binary files /dev/null and b/animateditems/39719.gif differ
diff --git a/animateditems/39719.png b/animateditems/39719.png
new file mode 100644
index 00000000..59d17fb5
Binary files /dev/null and b/animateditems/39719.png differ
diff --git a/animateditems/3972.gif b/animateditems/3972.gif
new file mode 100644
index 00000000..2e76aa43
Binary files /dev/null and b/animateditems/3972.gif differ
diff --git a/animateditems/3972.png b/animateditems/3972.png
new file mode 100644
index 00000000..9ce2f9bf
Binary files /dev/null and b/animateditems/3972.png differ
diff --git a/animateditems/3973.gif b/animateditems/3973.gif
new file mode 100644
index 00000000..50177869
Binary files /dev/null and b/animateditems/3973.gif differ
diff --git a/animateditems/3973.png b/animateditems/3973.png
new file mode 100644
index 00000000..c6e41e26
Binary files /dev/null and b/animateditems/3973.png differ
diff --git a/animateditems/3974.gif b/animateditems/3974.gif
new file mode 100644
index 00000000..5a1ea97e
Binary files /dev/null and b/animateditems/3974.gif differ
diff --git a/animateditems/3974.png b/animateditems/3974.png
new file mode 100644
index 00000000..bfceaabc
Binary files /dev/null and b/animateditems/3974.png differ
diff --git a/animateditems/3975.gif b/animateditems/3975.gif
new file mode 100644
index 00000000..25c4802d
Binary files /dev/null and b/animateditems/3975.gif differ
diff --git a/animateditems/3975.png b/animateditems/3975.png
new file mode 100644
index 00000000..f92e60dd
Binary files /dev/null and b/animateditems/3975.png differ
diff --git a/animateditems/3976.gif b/animateditems/3976.gif
new file mode 100644
index 00000000..7e6da71a
Binary files /dev/null and b/animateditems/3976.gif differ
diff --git a/animateditems/3976.png b/animateditems/3976.png
new file mode 100644
index 00000000..43205402
Binary files /dev/null and b/animateditems/3976.png differ
diff --git a/animateditems/39765.gif b/animateditems/39765.gif
new file mode 100644
index 00000000..00b8d2af
Binary files /dev/null and b/animateditems/39765.gif differ
diff --git a/animateditems/39765.png b/animateditems/39765.png
new file mode 100644
index 00000000..fd0e7c19
Binary files /dev/null and b/animateditems/39765.png differ
diff --git a/animateditems/39766.gif b/animateditems/39766.gif
new file mode 100644
index 00000000..8e50ccfc
Binary files /dev/null and b/animateditems/39766.gif differ
diff --git a/animateditems/39766.png b/animateditems/39766.png
new file mode 100644
index 00000000..21199343
Binary files /dev/null and b/animateditems/39766.png differ
diff --git a/animateditems/39767.gif b/animateditems/39767.gif
new file mode 100644
index 00000000..d2c8af96
Binary files /dev/null and b/animateditems/39767.gif differ
diff --git a/animateditems/39767.png b/animateditems/39767.png
new file mode 100644
index 00000000..d6d675dc
Binary files /dev/null and b/animateditems/39767.png differ
diff --git a/animateditems/39768.gif b/animateditems/39768.gif
new file mode 100644
index 00000000..5eb6babb
Binary files /dev/null and b/animateditems/39768.gif differ
diff --git a/animateditems/39768.png b/animateditems/39768.png
new file mode 100644
index 00000000..6b2ddafa
Binary files /dev/null and b/animateditems/39768.png differ
diff --git a/animateditems/39769.gif b/animateditems/39769.gif
new file mode 100644
index 00000000..fe4b9a80
Binary files /dev/null and b/animateditems/39769.gif differ
diff --git a/animateditems/39769.png b/animateditems/39769.png
new file mode 100644
index 00000000..96ca26bd
Binary files /dev/null and b/animateditems/39769.png differ
diff --git a/animateditems/39770.gif b/animateditems/39770.gif
new file mode 100644
index 00000000..21b9d078
Binary files /dev/null and b/animateditems/39770.gif differ
diff --git a/animateditems/39770.png b/animateditems/39770.png
new file mode 100644
index 00000000..12c5a24e
Binary files /dev/null and b/animateditems/39770.png differ
diff --git a/animateditems/3982.gif b/animateditems/3982.gif
new file mode 100644
index 00000000..54dad95d
Binary files /dev/null and b/animateditems/3982.gif differ
diff --git a/animateditems/3982.png b/animateditems/3982.png
new file mode 100644
index 00000000..d2a1e784
Binary files /dev/null and b/animateditems/3982.png differ
diff --git a/animateditems/39820.gif b/animateditems/39820.gif
new file mode 100644
index 00000000..34fdf07c
Binary files /dev/null and b/animateditems/39820.gif differ
diff --git a/animateditems/39820.png b/animateditems/39820.png
new file mode 100644
index 00000000..16800b67
Binary files /dev/null and b/animateditems/39820.png differ
diff --git a/animateditems/3983.gif b/animateditems/3983.gif
new file mode 100644
index 00000000..777030be
Binary files /dev/null and b/animateditems/3983.gif differ
diff --git a/animateditems/3983.png b/animateditems/3983.png
new file mode 100644
index 00000000..30042e2c
Binary files /dev/null and b/animateditems/3983.png differ
diff --git a/animateditems/4.gif b/animateditems/4.gif
new file mode 100644
index 00000000..fc3fcf74
Binary files /dev/null and b/animateditems/4.gif differ
diff --git a/animateditems/40359.gif b/animateditems/40359.gif
new file mode 100644
index 00000000..bda1c215
Binary files /dev/null and b/animateditems/40359.gif differ
diff --git a/animateditems/40359.png b/animateditems/40359.png
new file mode 100644
index 00000000..31ec326d
Binary files /dev/null and b/animateditems/40359.png differ
diff --git a/animateditems/40360.gif b/animateditems/40360.gif
new file mode 100644
index 00000000..cb9497ab
Binary files /dev/null and b/animateditems/40360.gif differ
diff --git a/animateditems/40360.png b/animateditems/40360.png
new file mode 100644
index 00000000..52fe503f
Binary files /dev/null and b/animateditems/40360.png differ
diff --git a/animateditems/40362.gif b/animateditems/40362.gif
new file mode 100644
index 00000000..dc6c474d
Binary files /dev/null and b/animateditems/40362.gif differ
diff --git a/animateditems/40362.png b/animateditems/40362.png
new file mode 100644
index 00000000..7e2183ce
Binary files /dev/null and b/animateditems/40362.png differ
diff --git a/animateditems/40363.gif b/animateditems/40363.gif
new file mode 100644
index 00000000..b24373c1
Binary files /dev/null and b/animateditems/40363.gif differ
diff --git a/animateditems/40363.png b/animateditems/40363.png
new file mode 100644
index 00000000..580b14e1
Binary files /dev/null and b/animateditems/40363.png differ
diff --git a/animateditems/40455.gif b/animateditems/40455.gif
new file mode 100644
index 00000000..71f67fd8
Binary files /dev/null and b/animateditems/40455.gif differ
diff --git a/animateditems/40455.png b/animateditems/40455.png
new file mode 100644
index 00000000..1ec900d5
Binary files /dev/null and b/animateditems/40455.png differ
diff --git a/animateditems/40456.gif b/animateditems/40456.gif
new file mode 100644
index 00000000..71f67fd8
Binary files /dev/null and b/animateditems/40456.gif differ
diff --git a/animateditems/40456.png b/animateditems/40456.png
new file mode 100644
index 00000000..1ec900d5
Binary files /dev/null and b/animateditems/40456.png differ
diff --git a/animateditems/40457.gif b/animateditems/40457.gif
new file mode 100644
index 00000000..71f67fd8
Binary files /dev/null and b/animateditems/40457.gif differ
diff --git a/animateditems/40457.png b/animateditems/40457.png
new file mode 100644
index 00000000..1ec900d5
Binary files /dev/null and b/animateditems/40457.png differ
diff --git a/animateditems/40458.gif b/animateditems/40458.gif
new file mode 100644
index 00000000..4767ac2d
Binary files /dev/null and b/animateditems/40458.gif differ
diff --git a/animateditems/40458.png b/animateditems/40458.png
new file mode 100644
index 00000000..8e6385ab
Binary files /dev/null and b/animateditems/40458.png differ
diff --git a/animateditems/40459.gif b/animateditems/40459.gif
new file mode 100644
index 00000000..4767ac2d
Binary files /dev/null and b/animateditems/40459.gif differ
diff --git a/animateditems/40459.png b/animateditems/40459.png
new file mode 100644
index 00000000..8e6385ab
Binary files /dev/null and b/animateditems/40459.png differ
diff --git a/animateditems/40460.gif b/animateditems/40460.gif
new file mode 100644
index 00000000..4767ac2d
Binary files /dev/null and b/animateditems/40460.gif differ
diff --git a/animateditems/40460.png b/animateditems/40460.png
new file mode 100644
index 00000000..8e6385ab
Binary files /dev/null and b/animateditems/40460.png differ
diff --git a/animateditems/40461.gif b/animateditems/40461.gif
new file mode 100644
index 00000000..54517410
Binary files /dev/null and b/animateditems/40461.gif differ
diff --git a/animateditems/40461.png b/animateditems/40461.png
new file mode 100644
index 00000000..e709b50d
Binary files /dev/null and b/animateditems/40461.png differ
diff --git a/animateditems/40462.gif b/animateditems/40462.gif
new file mode 100644
index 00000000..54517410
Binary files /dev/null and b/animateditems/40462.gif differ
diff --git a/animateditems/40462.png b/animateditems/40462.png
new file mode 100644
index 00000000..e709b50d
Binary files /dev/null and b/animateditems/40462.png differ
diff --git a/animateditems/40463.gif b/animateditems/40463.gif
new file mode 100644
index 00000000..cbfd382b
Binary files /dev/null and b/animateditems/40463.gif differ
diff --git a/animateditems/40463.png b/animateditems/40463.png
new file mode 100644
index 00000000..565cf773
Binary files /dev/null and b/animateditems/40463.png differ
diff --git a/animateditems/40464.gif b/animateditems/40464.gif
new file mode 100644
index 00000000..b0b43350
Binary files /dev/null and b/animateditems/40464.gif differ
diff --git a/animateditems/40464.png b/animateditems/40464.png
new file mode 100644
index 00000000..42914274
Binary files /dev/null and b/animateditems/40464.png differ
diff --git a/animateditems/40465.gif b/animateditems/40465.gif
new file mode 100644
index 00000000..b352186f
Binary files /dev/null and b/animateditems/40465.gif differ
diff --git a/animateditems/40465.png b/animateditems/40465.png
new file mode 100644
index 00000000..549372a8
Binary files /dev/null and b/animateditems/40465.png differ
diff --git a/animateditems/40469.gif b/animateditems/40469.gif
new file mode 100644
index 00000000..94f1a638
Binary files /dev/null and b/animateditems/40469.gif differ
diff --git a/animateditems/40469.png b/animateditems/40469.png
new file mode 100644
index 00000000..82652baf
Binary files /dev/null and b/animateditems/40469.png differ
diff --git a/animateditems/40473.gif b/animateditems/40473.gif
new file mode 100644
index 00000000..45cc32c9
Binary files /dev/null and b/animateditems/40473.gif differ
diff --git a/animateditems/40473.png b/animateditems/40473.png
new file mode 100644
index 00000000..e56f7ab2
Binary files /dev/null and b/animateditems/40473.png differ
diff --git a/animateditems/40483.gif b/animateditems/40483.gif
new file mode 100644
index 00000000..b300a2d1
Binary files /dev/null and b/animateditems/40483.gif differ
diff --git a/animateditems/40483.png b/animateditems/40483.png
new file mode 100644
index 00000000..eb619166
Binary files /dev/null and b/animateditems/40483.png differ
diff --git a/animateditems/40484.gif b/animateditems/40484.gif
new file mode 100644
index 00000000..b300a2d1
Binary files /dev/null and b/animateditems/40484.gif differ
diff --git a/animateditems/40484.png b/animateditems/40484.png
new file mode 100644
index 00000000..eb619166
Binary files /dev/null and b/animateditems/40484.png differ
diff --git a/animateditems/40485.gif b/animateditems/40485.gif
new file mode 100644
index 00000000..de0ef28f
Binary files /dev/null and b/animateditems/40485.gif differ
diff --git a/animateditems/40485.png b/animateditems/40485.png
new file mode 100644
index 00000000..f787db00
Binary files /dev/null and b/animateditems/40485.png differ
diff --git a/animateditems/40486.gif b/animateditems/40486.gif
new file mode 100644
index 00000000..eecc785c
Binary files /dev/null and b/animateditems/40486.gif differ
diff --git a/animateditems/40486.png b/animateditems/40486.png
new file mode 100644
index 00000000..6e3bbf11
Binary files /dev/null and b/animateditems/40486.png differ
diff --git a/animateditems/40487.gif b/animateditems/40487.gif
new file mode 100644
index 00000000..e528a9f9
Binary files /dev/null and b/animateditems/40487.gif differ
diff --git a/animateditems/40487.png b/animateditems/40487.png
new file mode 100644
index 00000000..5f0a9204
Binary files /dev/null and b/animateditems/40487.png differ
diff --git a/animateditems/40488.gif b/animateditems/40488.gif
new file mode 100644
index 00000000..49789bf3
Binary files /dev/null and b/animateditems/40488.gif differ
diff --git a/animateditems/40488.png b/animateditems/40488.png
new file mode 100644
index 00000000..dd162a7f
Binary files /dev/null and b/animateditems/40488.png differ
diff --git a/animateditems/40489.gif b/animateditems/40489.gif
new file mode 100644
index 00000000..b9f0a84b
Binary files /dev/null and b/animateditems/40489.gif differ
diff --git a/animateditems/40489.png b/animateditems/40489.png
new file mode 100644
index 00000000..ad03109e
Binary files /dev/null and b/animateditems/40489.png differ
diff --git a/animateditems/40490.gif b/animateditems/40490.gif
new file mode 100644
index 00000000..cf628b0f
Binary files /dev/null and b/animateditems/40490.gif differ
diff --git a/animateditems/40490.png b/animateditems/40490.png
new file mode 100644
index 00000000..f0ebb534
Binary files /dev/null and b/animateditems/40490.png differ
diff --git a/animateditems/40491.gif b/animateditems/40491.gif
new file mode 100644
index 00000000..8858fbc3
Binary files /dev/null and b/animateditems/40491.gif differ
diff --git a/animateditems/40491.png b/animateditems/40491.png
new file mode 100644
index 00000000..2eddfe51
Binary files /dev/null and b/animateditems/40491.png differ
diff --git a/animateditems/40492.gif b/animateditems/40492.gif
new file mode 100644
index 00000000..3eab7d0d
Binary files /dev/null and b/animateditems/40492.gif differ
diff --git a/animateditems/40492.png b/animateditems/40492.png
new file mode 100644
index 00000000..a11ab086
Binary files /dev/null and b/animateditems/40492.png differ
diff --git a/animateditems/40493.gif b/animateditems/40493.gif
new file mode 100644
index 00000000..92dd8e5c
Binary files /dev/null and b/animateditems/40493.gif differ
diff --git a/animateditems/40493.png b/animateditems/40493.png
new file mode 100644
index 00000000..3af08cb6
Binary files /dev/null and b/animateditems/40493.png differ
diff --git a/animateditems/40506.gif b/animateditems/40506.gif
new file mode 100644
index 00000000..9f0d13a0
Binary files /dev/null and b/animateditems/40506.gif differ
diff --git a/animateditems/40506.png b/animateditems/40506.png
new file mode 100644
index 00000000..c59b6412
Binary files /dev/null and b/animateditems/40506.png differ
diff --git a/animateditems/40509.gif b/animateditems/40509.gif
new file mode 100644
index 00000000..93750078
Binary files /dev/null and b/animateditems/40509.gif differ
diff --git a/animateditems/40509.png b/animateditems/40509.png
new file mode 100644
index 00000000..234bf3b2
Binary files /dev/null and b/animateditems/40509.png differ
diff --git a/animateditems/40510.gif b/animateditems/40510.gif
new file mode 100644
index 00000000..80d3cc14
Binary files /dev/null and b/animateditems/40510.gif differ
diff --git a/animateditems/40510.png b/animateditems/40510.png
new file mode 100644
index 00000000..ea61f485
Binary files /dev/null and b/animateditems/40510.png differ
diff --git a/animateditems/40512.gif b/animateditems/40512.gif
new file mode 100644
index 00000000..1e6d7723
Binary files /dev/null and b/animateditems/40512.gif differ
diff --git a/animateditems/40512.png b/animateditems/40512.png
new file mode 100644
index 00000000..c9b71046
Binary files /dev/null and b/animateditems/40512.png differ
diff --git a/animateditems/40514.gif b/animateditems/40514.gif
new file mode 100644
index 00000000..bdee84fe
Binary files /dev/null and b/animateditems/40514.gif differ
diff --git a/animateditems/40514.png b/animateditems/40514.png
new file mode 100644
index 00000000..3e9dae22
Binary files /dev/null and b/animateditems/40514.png differ
diff --git a/animateditems/40516.gif b/animateditems/40516.gif
new file mode 100644
index 00000000..086d64fc
Binary files /dev/null and b/animateditems/40516.gif differ
diff --git a/animateditems/40516.png b/animateditems/40516.png
new file mode 100644
index 00000000..a495c96e
Binary files /dev/null and b/animateditems/40516.png differ
diff --git a/animateditems/40518.gif b/animateditems/40518.gif
new file mode 100644
index 00000000..084b3a9b
Binary files /dev/null and b/animateditems/40518.gif differ
diff --git a/animateditems/40518.png b/animateditems/40518.png
new file mode 100644
index 00000000..f79997e0
Binary files /dev/null and b/animateditems/40518.png differ
diff --git a/animateditems/40526.gif b/animateditems/40526.gif
new file mode 100644
index 00000000..a3cd141e
Binary files /dev/null and b/animateditems/40526.gif differ
diff --git a/animateditems/40526.png b/animateditems/40526.png
new file mode 100644
index 00000000..e4dba5e3
Binary files /dev/null and b/animateditems/40526.png differ
diff --git a/animateditems/40527.gif b/animateditems/40527.gif
new file mode 100644
index 00000000..8d6ad4a2
Binary files /dev/null and b/animateditems/40527.gif differ
diff --git a/animateditems/40527.png b/animateditems/40527.png
new file mode 100644
index 00000000..5e2eaa1d
Binary files /dev/null and b/animateditems/40527.png differ
diff --git a/animateditems/40528.gif b/animateditems/40528.gif
new file mode 100644
index 00000000..09bd661c
Binary files /dev/null and b/animateditems/40528.gif differ
diff --git a/animateditems/40528.png b/animateditems/40528.png
new file mode 100644
index 00000000..dc3997fb
Binary files /dev/null and b/animateditems/40528.png differ
diff --git a/animateditems/40529.gif b/animateditems/40529.gif
new file mode 100644
index 00000000..bbf2640a
Binary files /dev/null and b/animateditems/40529.gif differ
diff --git a/animateditems/40529.png b/animateditems/40529.png
new file mode 100644
index 00000000..2ac1107b
Binary files /dev/null and b/animateditems/40529.png differ
diff --git a/animateditems/40530.gif b/animateditems/40530.gif
new file mode 100644
index 00000000..0816825d
Binary files /dev/null and b/animateditems/40530.gif differ
diff --git a/animateditems/40530.png b/animateditems/40530.png
new file mode 100644
index 00000000..64984377
Binary files /dev/null and b/animateditems/40530.png differ
diff --git a/animateditems/40531.gif b/animateditems/40531.gif
new file mode 100644
index 00000000..239dbee0
Binary files /dev/null and b/animateditems/40531.gif differ
diff --git a/animateditems/40531.png b/animateditems/40531.png
new file mode 100644
index 00000000..d6b0a414
Binary files /dev/null and b/animateditems/40531.png differ
diff --git a/animateditems/40532.gif b/animateditems/40532.gif
new file mode 100644
index 00000000..4b09546d
Binary files /dev/null and b/animateditems/40532.gif differ
diff --git a/animateditems/40532.png b/animateditems/40532.png
new file mode 100644
index 00000000..4bc08bb3
Binary files /dev/null and b/animateditems/40532.png differ
diff --git a/animateditems/40534.gif b/animateditems/40534.gif
new file mode 100644
index 00000000..bbc4518a
Binary files /dev/null and b/animateditems/40534.gif differ
diff --git a/animateditems/40534.png b/animateditems/40534.png
new file mode 100644
index 00000000..623be0f7
Binary files /dev/null and b/animateditems/40534.png differ
diff --git a/animateditems/40542.gif b/animateditems/40542.gif
new file mode 100644
index 00000000..0263bf8f
Binary files /dev/null and b/animateditems/40542.gif differ
diff --git a/animateditems/40542.png b/animateditems/40542.png
new file mode 100644
index 00000000..437553fe
Binary files /dev/null and b/animateditems/40542.png differ
diff --git a/animateditems/40543.gif b/animateditems/40543.gif
new file mode 100644
index 00000000..8359492e
Binary files /dev/null and b/animateditems/40543.gif differ
diff --git a/animateditems/40543.png b/animateditems/40543.png
new file mode 100644
index 00000000..911f9d60
Binary files /dev/null and b/animateditems/40543.png differ
diff --git a/animateditems/40544.gif b/animateditems/40544.gif
new file mode 100644
index 00000000..cb11d31d
Binary files /dev/null and b/animateditems/40544.gif differ
diff --git a/animateditems/40544.png b/animateditems/40544.png
new file mode 100644
index 00000000..8a06dc81
Binary files /dev/null and b/animateditems/40544.png differ
diff --git a/animateditems/40545.gif b/animateditems/40545.gif
new file mode 100644
index 00000000..47649d79
Binary files /dev/null and b/animateditems/40545.gif differ
diff --git a/animateditems/40545.png b/animateditems/40545.png
new file mode 100644
index 00000000..c208f59e
Binary files /dev/null and b/animateditems/40545.png differ
diff --git a/animateditems/40546.gif b/animateditems/40546.gif
new file mode 100644
index 00000000..7d35bed8
Binary files /dev/null and b/animateditems/40546.gif differ
diff --git a/animateditems/40546.png b/animateditems/40546.png
new file mode 100644
index 00000000..755c7f28
Binary files /dev/null and b/animateditems/40546.png differ
diff --git a/animateditems/40547.gif b/animateditems/40547.gif
new file mode 100644
index 00000000..483c85ee
Binary files /dev/null and b/animateditems/40547.gif differ
diff --git a/animateditems/40547.png b/animateditems/40547.png
new file mode 100644
index 00000000..688d06ac
Binary files /dev/null and b/animateditems/40547.png differ
diff --git a/animateditems/40548.gif b/animateditems/40548.gif
new file mode 100644
index 00000000..d532cbda
Binary files /dev/null and b/animateditems/40548.gif differ
diff --git a/animateditems/40548.png b/animateditems/40548.png
new file mode 100644
index 00000000..7adb877a
Binary files /dev/null and b/animateditems/40548.png differ
diff --git a/animateditems/40549.gif b/animateditems/40549.gif
new file mode 100644
index 00000000..5dfe142f
Binary files /dev/null and b/animateditems/40549.gif differ
diff --git a/animateditems/40549.png b/animateditems/40549.png
new file mode 100644
index 00000000..c69068b1
Binary files /dev/null and b/animateditems/40549.png differ
diff --git a/animateditems/40550.gif b/animateditems/40550.gif
new file mode 100644
index 00000000..4ef40578
Binary files /dev/null and b/animateditems/40550.gif differ
diff --git a/animateditems/40550.png b/animateditems/40550.png
new file mode 100644
index 00000000..2f69eb5f
Binary files /dev/null and b/animateditems/40550.png differ
diff --git a/animateditems/40558.gif b/animateditems/40558.gif
new file mode 100644
index 00000000..ca410210
Binary files /dev/null and b/animateditems/40558.gif differ
diff --git a/animateditems/40558.png b/animateditems/40558.png
new file mode 100644
index 00000000..3f9c10f3
Binary files /dev/null and b/animateditems/40558.png differ
diff --git a/animateditems/40559.gif b/animateditems/40559.gif
new file mode 100644
index 00000000..56c8f1b7
Binary files /dev/null and b/animateditems/40559.gif differ
diff --git a/animateditems/40559.png b/animateditems/40559.png
new file mode 100644
index 00000000..1c4dfdb7
Binary files /dev/null and b/animateditems/40559.png differ
diff --git a/animateditems/40560.gif b/animateditems/40560.gif
new file mode 100644
index 00000000..7c25e661
Binary files /dev/null and b/animateditems/40560.gif differ
diff --git a/animateditems/40560.png b/animateditems/40560.png
new file mode 100644
index 00000000..33cc096d
Binary files /dev/null and b/animateditems/40560.png differ
diff --git a/animateditems/40561.gif b/animateditems/40561.gif
new file mode 100644
index 00000000..e56b5300
Binary files /dev/null and b/animateditems/40561.gif differ
diff --git a/animateditems/40561.png b/animateditems/40561.png
new file mode 100644
index 00000000..56cddcb2
Binary files /dev/null and b/animateditems/40561.png differ
diff --git a/animateditems/40562.gif b/animateditems/40562.gif
new file mode 100644
index 00000000..9519e7be
Binary files /dev/null and b/animateditems/40562.gif differ
diff --git a/animateditems/40562.png b/animateditems/40562.png
new file mode 100644
index 00000000..567ba855
Binary files /dev/null and b/animateditems/40562.png differ
diff --git a/animateditems/40602.gif b/animateditems/40602.gif
new file mode 100644
index 00000000..79d7b49a
Binary files /dev/null and b/animateditems/40602.gif differ
diff --git a/animateditems/40602.png b/animateditems/40602.png
new file mode 100644
index 00000000..d7f41c47
Binary files /dev/null and b/animateditems/40602.png differ
diff --git a/animateditems/40603.gif b/animateditems/40603.gif
new file mode 100644
index 00000000..e2f9e6c6
Binary files /dev/null and b/animateditems/40603.gif differ
diff --git a/animateditems/40603.png b/animateditems/40603.png
new file mode 100644
index 00000000..7a907b1e
Binary files /dev/null and b/animateditems/40603.png differ
diff --git a/animateditems/40604.gif b/animateditems/40604.gif
new file mode 100644
index 00000000..cb47668d
Binary files /dev/null and b/animateditems/40604.gif differ
diff --git a/animateditems/40604.png b/animateditems/40604.png
new file mode 100644
index 00000000..48481940
Binary files /dev/null and b/animateditems/40604.png differ
diff --git a/animateditems/40605.gif b/animateditems/40605.gif
new file mode 100644
index 00000000..f5deef9a
Binary files /dev/null and b/animateditems/40605.gif differ
diff --git a/animateditems/40605.png b/animateditems/40605.png
new file mode 100644
index 00000000..ab121232
Binary files /dev/null and b/animateditems/40605.png differ
diff --git a/animateditems/40606.gif b/animateditems/40606.gif
new file mode 100644
index 00000000..3fc09a32
Binary files /dev/null and b/animateditems/40606.gif differ
diff --git a/animateditems/40606.png b/animateditems/40606.png
new file mode 100644
index 00000000..965fef06
Binary files /dev/null and b/animateditems/40606.png differ
diff --git a/animateditems/40607.gif b/animateditems/40607.gif
new file mode 100644
index 00000000..4fcf85d7
Binary files /dev/null and b/animateditems/40607.gif differ
diff --git a/animateditems/40607.png b/animateditems/40607.png
new file mode 100644
index 00000000..6bde1b0a
Binary files /dev/null and b/animateditems/40607.png differ
diff --git a/animateditems/40608.gif b/animateditems/40608.gif
new file mode 100644
index 00000000..fd87179a
Binary files /dev/null and b/animateditems/40608.gif differ
diff --git a/animateditems/40608.png b/animateditems/40608.png
new file mode 100644
index 00000000..833cf957
Binary files /dev/null and b/animateditems/40608.png differ
diff --git a/animateditems/40609.gif b/animateditems/40609.gif
new file mode 100644
index 00000000..3ea0e60a
Binary files /dev/null and b/animateditems/40609.gif differ
diff --git a/animateditems/40609.png b/animateditems/40609.png
new file mode 100644
index 00000000..9afc2ee3
Binary files /dev/null and b/animateditems/40609.png differ
diff --git a/animateditems/40610.gif b/animateditems/40610.gif
new file mode 100644
index 00000000..d6d62855
Binary files /dev/null and b/animateditems/40610.gif differ
diff --git a/animateditems/40610.png b/animateditems/40610.png
new file mode 100644
index 00000000..bddf626a
Binary files /dev/null and b/animateditems/40610.png differ
diff --git a/animateditems/40611.gif b/animateditems/40611.gif
new file mode 100644
index 00000000..83c39df0
Binary files /dev/null and b/animateditems/40611.gif differ
diff --git a/animateditems/40611.png b/animateditems/40611.png
new file mode 100644
index 00000000..ac435145
Binary files /dev/null and b/animateditems/40611.png differ
diff --git a/animateditems/40612.gif b/animateditems/40612.gif
new file mode 100644
index 00000000..1407e1d5
Binary files /dev/null and b/animateditems/40612.gif differ
diff --git a/animateditems/40612.png b/animateditems/40612.png
new file mode 100644
index 00000000..c34d351a
Binary files /dev/null and b/animateditems/40612.png differ
diff --git a/animateditems/40613.gif b/animateditems/40613.gif
new file mode 100644
index 00000000..ecbe49e6
Binary files /dev/null and b/animateditems/40613.gif differ
diff --git a/animateditems/40613.png b/animateditems/40613.png
new file mode 100644
index 00000000..79718cea
Binary files /dev/null and b/animateditems/40613.png differ
diff --git a/animateditems/40614.gif b/animateditems/40614.gif
new file mode 100644
index 00000000..7de1e49d
Binary files /dev/null and b/animateditems/40614.gif differ
diff --git a/animateditems/40614.png b/animateditems/40614.png
new file mode 100644
index 00000000..7240dff1
Binary files /dev/null and b/animateditems/40614.png differ
diff --git a/animateditems/40617.gif b/animateditems/40617.gif
new file mode 100644
index 00000000..8680107b
Binary files /dev/null and b/animateditems/40617.gif differ
diff --git a/animateditems/40617.png b/animateditems/40617.png
new file mode 100644
index 00000000..2fa921ef
Binary files /dev/null and b/animateditems/40617.png differ
diff --git a/animateditems/40618.gif b/animateditems/40618.gif
new file mode 100644
index 00000000..9ff3a390
Binary files /dev/null and b/animateditems/40618.gif differ
diff --git a/animateditems/40618.png b/animateditems/40618.png
new file mode 100644
index 00000000..b95d6397
Binary files /dev/null and b/animateditems/40618.png differ
diff --git a/animateditems/40619.gif b/animateditems/40619.gif
new file mode 100644
index 00000000..cffabd3d
Binary files /dev/null and b/animateditems/40619.gif differ
diff --git a/animateditems/40619.png b/animateditems/40619.png
new file mode 100644
index 00000000..10f18317
Binary files /dev/null and b/animateditems/40619.png differ
diff --git a/animateditems/40620.gif b/animateditems/40620.gif
new file mode 100644
index 00000000..8bd18e55
Binary files /dev/null and b/animateditems/40620.gif differ
diff --git a/animateditems/40620.png b/animateditems/40620.png
new file mode 100644
index 00000000..c93a41d6
Binary files /dev/null and b/animateditems/40620.png differ
diff --git a/animateditems/40623.gif b/animateditems/40623.gif
new file mode 100644
index 00000000..71a1387e
Binary files /dev/null and b/animateditems/40623.gif differ
diff --git a/animateditems/40623.png b/animateditems/40623.png
new file mode 100644
index 00000000..447a1991
Binary files /dev/null and b/animateditems/40623.png differ
diff --git a/animateditems/40624.gif b/animateditems/40624.gif
new file mode 100644
index 00000000..a14baf84
Binary files /dev/null and b/animateditems/40624.gif differ
diff --git a/animateditems/40624.png b/animateditems/40624.png
new file mode 100644
index 00000000..93a74b3d
Binary files /dev/null and b/animateditems/40624.png differ
diff --git a/animateditems/40643.gif b/animateditems/40643.gif
new file mode 100644
index 00000000..a81a4c93
Binary files /dev/null and b/animateditems/40643.gif differ
diff --git a/animateditems/40643.png b/animateditems/40643.png
new file mode 100644
index 00000000..a4bfea03
Binary files /dev/null and b/animateditems/40643.png differ
diff --git a/animateditems/40648.gif b/animateditems/40648.gif
new file mode 100644
index 00000000..129924a1
Binary files /dev/null and b/animateditems/40648.gif differ
diff --git a/animateditems/40648.png b/animateditems/40648.png
new file mode 100644
index 00000000..d2ac9bf5
Binary files /dev/null and b/animateditems/40648.png differ
diff --git a/animateditems/40649.gif b/animateditems/40649.gif
new file mode 100644
index 00000000..9004fd23
Binary files /dev/null and b/animateditems/40649.gif differ
diff --git a/animateditems/40649.png b/animateditems/40649.png
new file mode 100644
index 00000000..e9e70f2c
Binary files /dev/null and b/animateditems/40649.png differ
diff --git a/animateditems/40650.gif b/animateditems/40650.gif
new file mode 100644
index 00000000..7ba4d7f4
Binary files /dev/null and b/animateditems/40650.gif differ
diff --git a/animateditems/40650.png b/animateditems/40650.png
new file mode 100644
index 00000000..000e058a
Binary files /dev/null and b/animateditems/40650.png differ
diff --git a/animateditems/40651.gif b/animateditems/40651.gif
new file mode 100644
index 00000000..52a5dce5
Binary files /dev/null and b/animateditems/40651.gif differ
diff --git a/animateditems/40651.png b/animateditems/40651.png
new file mode 100644
index 00000000..cf82f154
Binary files /dev/null and b/animateditems/40651.png differ
diff --git a/animateditems/40652.gif b/animateditems/40652.gif
new file mode 100644
index 00000000..b0b26636
Binary files /dev/null and b/animateditems/40652.gif differ
diff --git a/animateditems/40652.png b/animateditems/40652.png
new file mode 100644
index 00000000..d457bb94
Binary files /dev/null and b/animateditems/40652.png differ
diff --git a/animateditems/40653.gif b/animateditems/40653.gif
new file mode 100644
index 00000000..339b750f
Binary files /dev/null and b/animateditems/40653.gif differ
diff --git a/animateditems/40653.png b/animateditems/40653.png
new file mode 100644
index 00000000..68a6705f
Binary files /dev/null and b/animateditems/40653.png differ
diff --git a/animateditems/40654.gif b/animateditems/40654.gif
new file mode 100644
index 00000000..cb230c28
Binary files /dev/null and b/animateditems/40654.gif differ
diff --git a/animateditems/40654.png b/animateditems/40654.png
new file mode 100644
index 00000000..128633d2
Binary files /dev/null and b/animateditems/40654.png differ
diff --git a/animateditems/40655.gif b/animateditems/40655.gif
new file mode 100644
index 00000000..75872704
Binary files /dev/null and b/animateditems/40655.gif differ
diff --git a/animateditems/40655.png b/animateditems/40655.png
new file mode 100644
index 00000000..c56ff66d
Binary files /dev/null and b/animateditems/40655.png differ
diff --git a/animateditems/40656.gif b/animateditems/40656.gif
new file mode 100644
index 00000000..79b9fc65
Binary files /dev/null and b/animateditems/40656.gif differ
diff --git a/animateditems/40656.png b/animateditems/40656.png
new file mode 100644
index 00000000..a7de5825
Binary files /dev/null and b/animateditems/40656.png differ
diff --git a/animateditems/40657.gif b/animateditems/40657.gif
new file mode 100644
index 00000000..e4491e76
Binary files /dev/null and b/animateditems/40657.gif differ
diff --git a/animateditems/40657.png b/animateditems/40657.png
new file mode 100644
index 00000000..eb05af93
Binary files /dev/null and b/animateditems/40657.png differ
diff --git a/animateditems/40658.gif b/animateditems/40658.gif
new file mode 100644
index 00000000..1f515df0
Binary files /dev/null and b/animateditems/40658.gif differ
diff --git a/animateditems/40658.png b/animateditems/40658.png
new file mode 100644
index 00000000..7d786024
Binary files /dev/null and b/animateditems/40658.png differ
diff --git a/animateditems/40659.gif b/animateditems/40659.gif
new file mode 100644
index 00000000..2b494c41
Binary files /dev/null and b/animateditems/40659.gif differ
diff --git a/animateditems/40659.png b/animateditems/40659.png
new file mode 100644
index 00000000..d4d4d256
Binary files /dev/null and b/animateditems/40659.png differ
diff --git a/animateditems/40660.gif b/animateditems/40660.gif
new file mode 100644
index 00000000..1aebc516
Binary files /dev/null and b/animateditems/40660.gif differ
diff --git a/animateditems/40660.png b/animateditems/40660.png
new file mode 100644
index 00000000..e9c639c8
Binary files /dev/null and b/animateditems/40660.png differ
diff --git a/animateditems/40661.gif b/animateditems/40661.gif
new file mode 100644
index 00000000..d8e7c517
Binary files /dev/null and b/animateditems/40661.gif differ
diff --git a/animateditems/40661.png b/animateditems/40661.png
new file mode 100644
index 00000000..c52cf1b0
Binary files /dev/null and b/animateditems/40661.png differ
diff --git a/animateditems/40662.gif b/animateditems/40662.gif
new file mode 100644
index 00000000..f85a33a2
Binary files /dev/null and b/animateditems/40662.gif differ
diff --git a/animateditems/40662.png b/animateditems/40662.png
new file mode 100644
index 00000000..fde1d79f
Binary files /dev/null and b/animateditems/40662.png differ
diff --git a/animateditems/40663.gif b/animateditems/40663.gif
new file mode 100644
index 00000000..beaa8d52
Binary files /dev/null and b/animateditems/40663.gif differ
diff --git a/animateditems/40663.png b/animateditems/40663.png
new file mode 100644
index 00000000..ad92a2b4
Binary files /dev/null and b/animateditems/40663.png differ
diff --git a/animateditems/40664.gif b/animateditems/40664.gif
new file mode 100644
index 00000000..403510a3
Binary files /dev/null and b/animateditems/40664.gif differ
diff --git a/animateditems/40664.png b/animateditems/40664.png
new file mode 100644
index 00000000..6956412f
Binary files /dev/null and b/animateditems/40664.png differ
diff --git a/animateditems/40665.gif b/animateditems/40665.gif
new file mode 100644
index 00000000..34ecf052
Binary files /dev/null and b/animateditems/40665.gif differ
diff --git a/animateditems/40665.png b/animateditems/40665.png
new file mode 100644
index 00000000..39c46917
Binary files /dev/null and b/animateditems/40665.png differ
diff --git a/animateditems/40666.gif b/animateditems/40666.gif
new file mode 100644
index 00000000..2543843c
Binary files /dev/null and b/animateditems/40666.gif differ
diff --git a/animateditems/40666.png b/animateditems/40666.png
new file mode 100644
index 00000000..c96dd39f
Binary files /dev/null and b/animateditems/40666.png differ
diff --git a/animateditems/40667.gif b/animateditems/40667.gif
new file mode 100644
index 00000000..cd315842
Binary files /dev/null and b/animateditems/40667.gif differ
diff --git a/animateditems/40667.png b/animateditems/40667.png
new file mode 100644
index 00000000..99e8fb16
Binary files /dev/null and b/animateditems/40667.png differ
diff --git a/animateditems/40668.gif b/animateditems/40668.gif
new file mode 100644
index 00000000..bfd531b5
Binary files /dev/null and b/animateditems/40668.gif differ
diff --git a/animateditems/40668.png b/animateditems/40668.png
new file mode 100644
index 00000000..ae8825ca
Binary files /dev/null and b/animateditems/40668.png differ
diff --git a/animateditems/40669.gif b/animateditems/40669.gif
new file mode 100644
index 00000000..d289031b
Binary files /dev/null and b/animateditems/40669.gif differ
diff --git a/animateditems/40669.png b/animateditems/40669.png
new file mode 100644
index 00000000..11a13b46
Binary files /dev/null and b/animateditems/40669.png differ
diff --git a/animateditems/40680.gif b/animateditems/40680.gif
new file mode 100644
index 00000000..2b0b5e9f
Binary files /dev/null and b/animateditems/40680.gif differ
diff --git a/animateditems/40680.png b/animateditems/40680.png
new file mode 100644
index 00000000..feeaf5ac
Binary files /dev/null and b/animateditems/40680.png differ
diff --git a/animateditems/40681.gif b/animateditems/40681.gif
new file mode 100644
index 00000000..d8b51c73
Binary files /dev/null and b/animateditems/40681.gif differ
diff --git a/animateditems/40681.png b/animateditems/40681.png
new file mode 100644
index 00000000..043d0d69
Binary files /dev/null and b/animateditems/40681.png differ
diff --git a/animateditems/40682.gif b/animateditems/40682.gif
new file mode 100644
index 00000000..067a61e0
Binary files /dev/null and b/animateditems/40682.gif differ
diff --git a/animateditems/40682.png b/animateditems/40682.png
new file mode 100644
index 00000000..7cbc9d38
Binary files /dev/null and b/animateditems/40682.png differ
diff --git a/animateditems/40683.gif b/animateditems/40683.gif
new file mode 100644
index 00000000..b70dbabb
Binary files /dev/null and b/animateditems/40683.gif differ
diff --git a/animateditems/40683.png b/animateditems/40683.png
new file mode 100644
index 00000000..ca40d244
Binary files /dev/null and b/animateditems/40683.png differ
diff --git a/animateditems/40684.gif b/animateditems/40684.gif
new file mode 100644
index 00000000..dd278814
Binary files /dev/null and b/animateditems/40684.gif differ
diff --git a/animateditems/40684.png b/animateditems/40684.png
new file mode 100644
index 00000000..89c8cf5d
Binary files /dev/null and b/animateditems/40684.png differ
diff --git a/animateditems/40685.gif b/animateditems/40685.gif
new file mode 100644
index 00000000..dd278814
Binary files /dev/null and b/animateditems/40685.gif differ
diff --git a/animateditems/40685.png b/animateditems/40685.png
new file mode 100644
index 00000000..89c8cf5d
Binary files /dev/null and b/animateditems/40685.png differ
diff --git a/animateditems/40686.gif b/animateditems/40686.gif
new file mode 100644
index 00000000..b03e0a7c
Binary files /dev/null and b/animateditems/40686.gif differ
diff --git a/animateditems/40686.png b/animateditems/40686.png
new file mode 100644
index 00000000..8700c035
Binary files /dev/null and b/animateditems/40686.png differ
diff --git a/animateditems/40687.gif b/animateditems/40687.gif
new file mode 100644
index 00000000..dd278814
Binary files /dev/null and b/animateditems/40687.gif differ
diff --git a/animateditems/40687.png b/animateditems/40687.png
new file mode 100644
index 00000000..89c8cf5d
Binary files /dev/null and b/animateditems/40687.png differ
diff --git a/animateditems/40688.gif b/animateditems/40688.gif
new file mode 100644
index 00000000..dd278814
Binary files /dev/null and b/animateditems/40688.gif differ
diff --git a/animateditems/40688.png b/animateditems/40688.png
new file mode 100644
index 00000000..89c8cf5d
Binary files /dev/null and b/animateditems/40688.png differ
diff --git a/animateditems/40689.gif b/animateditems/40689.gif
new file mode 100644
index 00000000..76d83697
Binary files /dev/null and b/animateditems/40689.gif differ
diff --git a/animateditems/40689.png b/animateditems/40689.png
new file mode 100644
index 00000000..2aabb7df
Binary files /dev/null and b/animateditems/40689.png differ
diff --git a/animateditems/40690.gif b/animateditems/40690.gif
new file mode 100644
index 00000000..d4b55622
Binary files /dev/null and b/animateditems/40690.gif differ
diff --git a/animateditems/40690.png b/animateditems/40690.png
new file mode 100644
index 00000000..0db097b0
Binary files /dev/null and b/animateditems/40690.png differ
diff --git a/animateditems/40691.gif b/animateditems/40691.gif
new file mode 100644
index 00000000..f980f6fe
Binary files /dev/null and b/animateditems/40691.gif differ
diff --git a/animateditems/40691.png b/animateditems/40691.png
new file mode 100644
index 00000000..6b7329fd
Binary files /dev/null and b/animateditems/40691.png differ
diff --git a/animateditems/40692.gif b/animateditems/40692.gif
new file mode 100644
index 00000000..efb77894
Binary files /dev/null and b/animateditems/40692.gif differ
diff --git a/animateditems/40692.png b/animateditems/40692.png
new file mode 100644
index 00000000..249ec5a1
Binary files /dev/null and b/animateditems/40692.png differ
diff --git a/animateditems/40693.gif b/animateditems/40693.gif
new file mode 100644
index 00000000..eb8c90a7
Binary files /dev/null and b/animateditems/40693.gif differ
diff --git a/animateditems/40693.png b/animateditems/40693.png
new file mode 100644
index 00000000..f57156c4
Binary files /dev/null and b/animateditems/40693.png differ
diff --git a/animateditems/40694.gif b/animateditems/40694.gif
new file mode 100644
index 00000000..eb8c90a7
Binary files /dev/null and b/animateditems/40694.gif differ
diff --git a/animateditems/40694.png b/animateditems/40694.png
new file mode 100644
index 00000000..f57156c4
Binary files /dev/null and b/animateditems/40694.png differ
diff --git a/animateditems/40695.gif b/animateditems/40695.gif
new file mode 100644
index 00000000..eb8c90a7
Binary files /dev/null and b/animateditems/40695.gif differ
diff --git a/animateditems/40695.png b/animateditems/40695.png
new file mode 100644
index 00000000..f57156c4
Binary files /dev/null and b/animateditems/40695.png differ
diff --git a/animateditems/40696.gif b/animateditems/40696.gif
new file mode 100644
index 00000000..dd278814
Binary files /dev/null and b/animateditems/40696.gif differ
diff --git a/animateditems/40696.png b/animateditems/40696.png
new file mode 100644
index 00000000..89c8cf5d
Binary files /dev/null and b/animateditems/40696.png differ
diff --git a/animateditems/40711.gif b/animateditems/40711.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/40711.gif differ
diff --git a/animateditems/40711.png b/animateditems/40711.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/40711.png differ
diff --git a/animateditems/40712.gif b/animateditems/40712.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/40712.gif differ
diff --git a/animateditems/40712.png b/animateditems/40712.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/40712.png differ
diff --git a/animateditems/40713.gif b/animateditems/40713.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/40713.gif differ
diff --git a/animateditems/40713.png b/animateditems/40713.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/40713.png differ
diff --git a/animateditems/40714.gif b/animateditems/40714.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/40714.gif differ
diff --git a/animateditems/40714.png b/animateditems/40714.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/40714.png differ
diff --git a/animateditems/40715.gif b/animateditems/40715.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/40715.gif differ
diff --git a/animateditems/40715.png b/animateditems/40715.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/40715.png differ
diff --git a/animateditems/40716.gif b/animateditems/40716.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/40716.gif differ
diff --git a/animateditems/40716.png b/animateditems/40716.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/40716.png differ
diff --git a/animateditems/40717.gif b/animateditems/40717.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/40717.gif differ
diff --git a/animateditems/40717.png b/animateditems/40717.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/40717.png differ
diff --git a/animateditems/40718.gif b/animateditems/40718.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/40718.gif differ
diff --git a/animateditems/40718.png b/animateditems/40718.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/40718.png differ
diff --git a/animateditems/40719.gif b/animateditems/40719.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/40719.gif differ
diff --git a/animateditems/40719.png b/animateditems/40719.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/40719.png differ
diff --git a/animateditems/40720.gif b/animateditems/40720.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/40720.gif differ
diff --git a/animateditems/40720.png b/animateditems/40720.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/40720.png differ
diff --git a/animateditems/40721.gif b/animateditems/40721.gif
new file mode 100644
index 00000000..338ccae6
Binary files /dev/null and b/animateditems/40721.gif differ
diff --git a/animateditems/40721.png b/animateditems/40721.png
new file mode 100644
index 00000000..7cd0fcea
Binary files /dev/null and b/animateditems/40721.png differ
diff --git a/animateditems/40722.gif b/animateditems/40722.gif
new file mode 100644
index 00000000..359953ae
Binary files /dev/null and b/animateditems/40722.gif differ
diff --git a/animateditems/40722.png b/animateditems/40722.png
new file mode 100644
index 00000000..3ce16b75
Binary files /dev/null and b/animateditems/40722.png differ
diff --git a/animateditems/40723.gif b/animateditems/40723.gif
new file mode 100644
index 00000000..479ff16c
Binary files /dev/null and b/animateditems/40723.gif differ
diff --git a/animateditems/40723.png b/animateditems/40723.png
new file mode 100644
index 00000000..93b27ec5
Binary files /dev/null and b/animateditems/40723.png differ
diff --git a/animateditems/40724.gif b/animateditems/40724.gif
new file mode 100644
index 00000000..58703c63
Binary files /dev/null and b/animateditems/40724.gif differ
diff --git a/animateditems/40724.png b/animateditems/40724.png
new file mode 100644
index 00000000..1778dc0e
Binary files /dev/null and b/animateditems/40724.png differ
diff --git a/animateditems/40725.gif b/animateditems/40725.gif
new file mode 100644
index 00000000..10d7ed53
Binary files /dev/null and b/animateditems/40725.gif differ
diff --git a/animateditems/40725.png b/animateditems/40725.png
new file mode 100644
index 00000000..5d87df14
Binary files /dev/null and b/animateditems/40725.png differ
diff --git a/animateditems/40729.gif b/animateditems/40729.gif
new file mode 100644
index 00000000..eb8c90a7
Binary files /dev/null and b/animateditems/40729.gif differ
diff --git a/animateditems/40729.png b/animateditems/40729.png
new file mode 100644
index 00000000..f57156c4
Binary files /dev/null and b/animateditems/40729.png differ
diff --git a/animateditems/40730.gif b/animateditems/40730.gif
new file mode 100644
index 00000000..eb8c90a7
Binary files /dev/null and b/animateditems/40730.gif differ
diff --git a/animateditems/40730.png b/animateditems/40730.png
new file mode 100644
index 00000000..f57156c4
Binary files /dev/null and b/animateditems/40730.png differ
diff --git a/animateditems/40731.gif b/animateditems/40731.gif
new file mode 100644
index 00000000..eb8c90a7
Binary files /dev/null and b/animateditems/40731.gif differ
diff --git a/animateditems/40731.png b/animateditems/40731.png
new file mode 100644
index 00000000..f57156c4
Binary files /dev/null and b/animateditems/40731.png differ
diff --git a/animateditems/40752.gif b/animateditems/40752.gif
new file mode 100644
index 00000000..6c39a7bd
Binary files /dev/null and b/animateditems/40752.gif differ
diff --git a/animateditems/40752.png b/animateditems/40752.png
new file mode 100644
index 00000000..b5be3110
Binary files /dev/null and b/animateditems/40752.png differ
diff --git a/animateditems/40753.gif b/animateditems/40753.gif
new file mode 100644
index 00000000..56045528
Binary files /dev/null and b/animateditems/40753.gif differ
diff --git a/animateditems/40753.png b/animateditems/40753.png
new file mode 100644
index 00000000..06e826f3
Binary files /dev/null and b/animateditems/40753.png differ
diff --git a/animateditems/40754.gif b/animateditems/40754.gif
new file mode 100644
index 00000000..f89693d3
Binary files /dev/null and b/animateditems/40754.gif differ
diff --git a/animateditems/40754.png b/animateditems/40754.png
new file mode 100644
index 00000000..38ece3c8
Binary files /dev/null and b/animateditems/40754.png differ
diff --git a/animateditems/40756.gif b/animateditems/40756.gif
new file mode 100644
index 00000000..7345a63f
Binary files /dev/null and b/animateditems/40756.gif differ
diff --git a/animateditems/40756.png b/animateditems/40756.png
new file mode 100644
index 00000000..0f888cb3
Binary files /dev/null and b/animateditems/40756.png differ
diff --git a/animateditems/40757.gif b/animateditems/40757.gif
new file mode 100644
index 00000000..4929aebc
Binary files /dev/null and b/animateditems/40757.gif differ
diff --git a/animateditems/40757.png b/animateditems/40757.png
new file mode 100644
index 00000000..af6bf72f
Binary files /dev/null and b/animateditems/40757.png differ
diff --git a/animateditems/40758.gif b/animateditems/40758.gif
new file mode 100644
index 00000000..c27f17d0
Binary files /dev/null and b/animateditems/40758.gif differ
diff --git a/animateditems/40758.png b/animateditems/40758.png
new file mode 100644
index 00000000..bdba0803
Binary files /dev/null and b/animateditems/40758.png differ
diff --git a/animateditems/40759.gif b/animateditems/40759.gif
new file mode 100644
index 00000000..ca8859d0
Binary files /dev/null and b/animateditems/40759.gif differ
diff --git a/animateditems/40759.png b/animateditems/40759.png
new file mode 100644
index 00000000..cf1b9421
Binary files /dev/null and b/animateditems/40759.png differ
diff --git a/animateditems/40762.gif b/animateditems/40762.gif
new file mode 100644
index 00000000..f6a0651a
Binary files /dev/null and b/animateditems/40762.gif differ
diff --git a/animateditems/40762.png b/animateditems/40762.png
new file mode 100644
index 00000000..26f5ac1a
Binary files /dev/null and b/animateditems/40762.png differ
diff --git a/animateditems/40763.gif b/animateditems/40763.gif
new file mode 100644
index 00000000..f429c33c
Binary files /dev/null and b/animateditems/40763.gif differ
diff --git a/animateditems/40763.png b/animateditems/40763.png
new file mode 100644
index 00000000..1f4b354a
Binary files /dev/null and b/animateditems/40763.png differ
diff --git a/animateditems/40858.gif b/animateditems/40858.gif
new file mode 100644
index 00000000..3322b37c
Binary files /dev/null and b/animateditems/40858.gif differ
diff --git a/animateditems/40858.png b/animateditems/40858.png
new file mode 100644
index 00000000..056b32d6
Binary files /dev/null and b/animateditems/40858.png differ
diff --git a/animateditems/40859.gif b/animateditems/40859.gif
new file mode 100644
index 00000000..3322b37c
Binary files /dev/null and b/animateditems/40859.gif differ
diff --git a/animateditems/40859.png b/animateditems/40859.png
new file mode 100644
index 00000000..056b32d6
Binary files /dev/null and b/animateditems/40859.png differ
diff --git a/animateditems/40865.gif b/animateditems/40865.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/40865.gif differ
diff --git a/animateditems/40865.png b/animateditems/40865.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/40865.png differ
diff --git a/animateditems/4253.gif b/animateditems/4253.gif
new file mode 100644
index 00000000..711ef992
Binary files /dev/null and b/animateditems/4253.gif differ
diff --git a/animateditems/4253.png b/animateditems/4253.png
new file mode 100644
index 00000000..a6085639
Binary files /dev/null and b/animateditems/4253.png differ
diff --git a/animateditems/4254.gif b/animateditems/4254.gif
new file mode 100644
index 00000000..4c12f9d1
Binary files /dev/null and b/animateditems/4254.gif differ
diff --git a/animateditems/4254.png b/animateditems/4254.png
new file mode 100644
index 00000000..1f362aea
Binary files /dev/null and b/animateditems/4254.png differ
diff --git a/animateditems/4255.gif b/animateditems/4255.gif
new file mode 100644
index 00000000..6f97ae0b
Binary files /dev/null and b/animateditems/4255.gif differ
diff --git a/animateditems/4255.png b/animateditems/4255.png
new file mode 100644
index 00000000..e9e43036
Binary files /dev/null and b/animateditems/4255.png differ
diff --git a/animateditems/4265.gif b/animateditems/4265.gif
new file mode 100644
index 00000000..377b1e3e
Binary files /dev/null and b/animateditems/4265.gif differ
diff --git a/animateditems/4265.png b/animateditems/4265.png
new file mode 100644
index 00000000..2eb5a514
Binary files /dev/null and b/animateditems/4265.png differ
diff --git a/animateditems/4266.gif b/animateditems/4266.gif
new file mode 100644
index 00000000..61a1b20a
Binary files /dev/null and b/animateditems/4266.gif differ
diff --git a/animateditems/4266.png b/animateditems/4266.png
new file mode 100644
index 00000000..488628b4
Binary files /dev/null and b/animateditems/4266.png differ
diff --git a/animateditems/4267.gif b/animateditems/4267.gif
new file mode 100644
index 00000000..31e05e51
Binary files /dev/null and b/animateditems/4267.gif differ
diff --git a/animateditems/4267.png b/animateditems/4267.png
new file mode 100644
index 00000000..5edc0d5c
Binary files /dev/null and b/animateditems/4267.png differ
diff --git a/animateditems/4298.gif b/animateditems/4298.gif
new file mode 100644
index 00000000..74c1fe03
Binary files /dev/null and b/animateditems/4298.gif differ
diff --git a/animateditems/4298.png b/animateditems/4298.png
new file mode 100644
index 00000000..ed2ebbe1
Binary files /dev/null and b/animateditems/4298.png differ
diff --git a/animateditems/4299.gif b/animateditems/4299.gif
new file mode 100644
index 00000000..8cc65404
Binary files /dev/null and b/animateditems/4299.gif differ
diff --git a/animateditems/4299.png b/animateditems/4299.png
new file mode 100644
index 00000000..64185140
Binary files /dev/null and b/animateditems/4299.png differ
diff --git a/animateditems/4300.gif b/animateditems/4300.gif
new file mode 100644
index 00000000..3efa5fab
Binary files /dev/null and b/animateditems/4300.gif differ
diff --git a/animateditems/4300.png b/animateditems/4300.png
new file mode 100644
index 00000000..59f497b0
Binary files /dev/null and b/animateditems/4300.png differ
diff --git a/animateditems/4313.gif b/animateditems/4313.gif
new file mode 100644
index 00000000..1b2b4fd1
Binary files /dev/null and b/animateditems/4313.gif differ
diff --git a/animateditems/4313.png b/animateditems/4313.png
new file mode 100644
index 00000000..e54a87ee
Binary files /dev/null and b/animateditems/4313.png differ
diff --git a/animateditems/4314.gif b/animateditems/4314.gif
new file mode 100644
index 00000000..34c77255
Binary files /dev/null and b/animateditems/4314.gif differ
diff --git a/animateditems/4314.png b/animateditems/4314.png
new file mode 100644
index 00000000..5a9f87b0
Binary files /dev/null and b/animateditems/4314.png differ
diff --git a/animateditems/4315.gif b/animateditems/4315.gif
new file mode 100644
index 00000000..4ad706d4
Binary files /dev/null and b/animateditems/4315.gif differ
diff --git a/animateditems/4315.png b/animateditems/4315.png
new file mode 100644
index 00000000..91fa1240
Binary files /dev/null and b/animateditems/4315.png differ
diff --git a/animateditems/4316.gif b/animateditems/4316.gif
new file mode 100644
index 00000000..7cc9d025
Binary files /dev/null and b/animateditems/4316.gif differ
diff --git a/animateditems/4316.png b/animateditems/4316.png
new file mode 100644
index 00000000..9200cfcc
Binary files /dev/null and b/animateditems/4316.png differ
diff --git a/animateditems/4838.gif b/animateditems/4838.gif
new file mode 100644
index 00000000..51dc6e19
Binary files /dev/null and b/animateditems/4838.gif differ
diff --git a/animateditems/4838.png b/animateditems/4838.png
new file mode 100644
index 00000000..e7584e19
Binary files /dev/null and b/animateditems/4838.png differ
diff --git a/animateditems/4839.gif b/animateditems/4839.gif
new file mode 100644
index 00000000..099cc5d8
Binary files /dev/null and b/animateditems/4839.gif differ
diff --git a/animateditems/4839.png b/animateditems/4839.png
new file mode 100644
index 00000000..917d7bd2
Binary files /dev/null and b/animateditems/4839.png differ
diff --git a/animateditems/4840.gif b/animateditems/4840.gif
new file mode 100644
index 00000000..f45faf0b
Binary files /dev/null and b/animateditems/4840.gif differ
diff --git a/animateditems/4840.png b/animateditems/4840.png
new file mode 100644
index 00000000..aa4e2c5d
Binary files /dev/null and b/animateditems/4840.png differ
diff --git a/animateditems/4842.gif b/animateditems/4842.gif
new file mode 100644
index 00000000..6f92e520
Binary files /dev/null and b/animateditems/4842.gif differ
diff --git a/animateditems/4842.png b/animateditems/4842.png
new file mode 100644
index 00000000..82dc0b3b
Binary files /dev/null and b/animateditems/4842.png differ
diff --git a/animateditems/4843.gif b/animateditems/4843.gif
new file mode 100644
index 00000000..3aeaab1c
Binary files /dev/null and b/animateditems/4843.gif differ
diff --git a/animateditems/4843.png b/animateditems/4843.png
new file mode 100644
index 00000000..b176c108
Binary files /dev/null and b/animateditems/4843.png differ
diff --git a/animateditems/4845.gif b/animateditems/4845.gif
new file mode 100644
index 00000000..1942e4cd
Binary files /dev/null and b/animateditems/4845.gif differ
diff --git a/animateditems/4845.png b/animateditems/4845.png
new file mode 100644
index 00000000..3c5ea1b7
Binary files /dev/null and b/animateditems/4845.png differ
diff --git a/animateditems/4846.gif b/animateditems/4846.gif
new file mode 100644
index 00000000..c66d5615
Binary files /dev/null and b/animateditems/4846.gif differ
diff --git a/animateditems/4846.png b/animateditems/4846.png
new file mode 100644
index 00000000..4f9c6b04
Binary files /dev/null and b/animateditems/4846.png differ
diff --git a/animateditems/4847.gif b/animateditems/4847.gif
new file mode 100644
index 00000000..bd5eaf46
Binary files /dev/null and b/animateditems/4847.gif differ
diff --git a/animateditems/4847.png b/animateditems/4847.png
new file mode 100644
index 00000000..59b6e56a
Binary files /dev/null and b/animateditems/4847.png differ
diff --git a/animateditems/4848.gif b/animateditems/4848.gif
new file mode 100644
index 00000000..0a6622fc
Binary files /dev/null and b/animateditems/4848.gif differ
diff --git a/animateditems/4848.png b/animateditems/4848.png
new file mode 100644
index 00000000..56e4c70f
Binary files /dev/null and b/animateditems/4848.png differ
diff --git a/animateditems/4849.gif b/animateditems/4849.gif
new file mode 100644
index 00000000..337bfbdc
Binary files /dev/null and b/animateditems/4849.gif differ
diff --git a/animateditems/4849.png b/animateditems/4849.png
new file mode 100644
index 00000000..1981539f
Binary files /dev/null and b/animateditems/4849.png differ
diff --git a/animateditems/4850.gif b/animateditems/4850.gif
new file mode 100644
index 00000000..fad79366
Binary files /dev/null and b/animateditems/4850.gif differ
diff --git a/animateditems/4850.png b/animateditems/4850.png
new file mode 100644
index 00000000..676cac58
Binary files /dev/null and b/animateditems/4850.png differ
diff --git a/animateditems/4851.gif b/animateditems/4851.gif
new file mode 100644
index 00000000..5cd10386
Binary files /dev/null and b/animateditems/4851.gif differ
diff --git a/animateditems/4851.png b/animateditems/4851.png
new file mode 100644
index 00000000..737240ad
Binary files /dev/null and b/animateditems/4851.png differ
diff --git a/animateditems/4852.gif b/animateditems/4852.gif
new file mode 100644
index 00000000..46658105
Binary files /dev/null and b/animateditems/4852.gif differ
diff --git a/animateditems/4852.png b/animateditems/4852.png
new file mode 100644
index 00000000..507e1d4b
Binary files /dev/null and b/animateditems/4852.png differ
diff --git a/animateditems/4853.gif b/animateditems/4853.gif
new file mode 100644
index 00000000..9c75a3cc
Binary files /dev/null and b/animateditems/4853.gif differ
diff --git a/animateditems/4853.png b/animateditems/4853.png
new file mode 100644
index 00000000..8e6b10f0
Binary files /dev/null and b/animateditems/4853.png differ
diff --git a/animateditems/4854.gif b/animateditems/4854.gif
new file mode 100644
index 00000000..0ecd70d7
Binary files /dev/null and b/animateditems/4854.gif differ
diff --git a/animateditems/4854.png b/animateditems/4854.png
new file mode 100644
index 00000000..e5bfa4e7
Binary files /dev/null and b/animateditems/4854.png differ
diff --git a/animateditems/4855.gif b/animateditems/4855.gif
new file mode 100644
index 00000000..cd32c29f
Binary files /dev/null and b/animateditems/4855.gif differ
diff --git a/animateditems/4855.png b/animateditems/4855.png
new file mode 100644
index 00000000..f7e9638f
Binary files /dev/null and b/animateditems/4855.png differ
diff --git a/animateditems/4856.gif b/animateditems/4856.gif
new file mode 100644
index 00000000..a4b3cd97
Binary files /dev/null and b/animateditems/4856.gif differ
diff --git a/animateditems/4856.png b/animateditems/4856.png
new file mode 100644
index 00000000..961a4458
Binary files /dev/null and b/animateditems/4856.png differ
diff --git a/animateditems/4857.gif b/animateditems/4857.gif
new file mode 100644
index 00000000..dc1aa5c8
Binary files /dev/null and b/animateditems/4857.gif differ
diff --git a/animateditems/4857.png b/animateditems/4857.png
new file mode 100644
index 00000000..c809e709
Binary files /dev/null and b/animateditems/4857.png differ
diff --git a/animateditems/4858.gif b/animateditems/4858.gif
new file mode 100644
index 00000000..fd7c30cc
Binary files /dev/null and b/animateditems/4858.gif differ
diff --git a/animateditems/4858.png b/animateditems/4858.png
new file mode 100644
index 00000000..25147d20
Binary files /dev/null and b/animateditems/4858.png differ
diff --git a/animateditems/4863.gif b/animateditems/4863.gif
new file mode 100644
index 00000000..95af2f29
Binary files /dev/null and b/animateditems/4863.gif differ
diff --git a/animateditems/4863.png b/animateditems/4863.png
new file mode 100644
index 00000000..089dd37e
Binary files /dev/null and b/animateditems/4863.png differ
diff --git a/animateditems/4864.gif b/animateditems/4864.gif
new file mode 100644
index 00000000..df563980
Binary files /dev/null and b/animateditems/4864.gif differ
diff --git a/animateditems/4864.png b/animateditems/4864.png
new file mode 100644
index 00000000..ba0c4f81
Binary files /dev/null and b/animateditems/4864.png differ
diff --git a/animateditems/4865.gif b/animateditems/4865.gif
new file mode 100644
index 00000000..7da29c17
Binary files /dev/null and b/animateditems/4865.gif differ
diff --git a/animateditems/4865.png b/animateditems/4865.png
new file mode 100644
index 00000000..2d06bd9c
Binary files /dev/null and b/animateditems/4865.png differ
diff --git a/animateditems/4866.gif b/animateditems/4866.gif
new file mode 100644
index 00000000..7da29c17
Binary files /dev/null and b/animateditems/4866.gif differ
diff --git a/animateditems/4866.png b/animateditems/4866.png
new file mode 100644
index 00000000..2d06bd9c
Binary files /dev/null and b/animateditems/4866.png differ
diff --git a/animateditems/4867.gif b/animateditems/4867.gif
new file mode 100644
index 00000000..7da29c17
Binary files /dev/null and b/animateditems/4867.gif differ
diff --git a/animateditems/4867.png b/animateditems/4867.png
new file mode 100644
index 00000000..2d06bd9c
Binary files /dev/null and b/animateditems/4867.png differ
diff --git a/animateditems/4868.gif b/animateditems/4868.gif
new file mode 100644
index 00000000..7da29c17
Binary files /dev/null and b/animateditems/4868.gif differ
diff --git a/animateditems/4868.png b/animateditems/4868.png
new file mode 100644
index 00000000..2d06bd9c
Binary files /dev/null and b/animateditems/4868.png differ
diff --git a/animateditems/4869.gif b/animateditems/4869.gif
new file mode 100644
index 00000000..abffab75
Binary files /dev/null and b/animateditems/4869.gif differ
diff --git a/animateditems/4869.png b/animateditems/4869.png
new file mode 100644
index 00000000..b629b269
Binary files /dev/null and b/animateditems/4869.png differ
diff --git a/animateditems/4870.gif b/animateditems/4870.gif
new file mode 100644
index 00000000..abffab75
Binary files /dev/null and b/animateditems/4870.gif differ
diff --git a/animateditems/4870.png b/animateditems/4870.png
new file mode 100644
index 00000000..b629b269
Binary files /dev/null and b/animateditems/4870.png differ
diff --git a/animateditems/4871.gif b/animateditems/4871.gif
new file mode 100644
index 00000000..abffab75
Binary files /dev/null and b/animateditems/4871.gif differ
diff --git a/animateditems/4871.png b/animateditems/4871.png
new file mode 100644
index 00000000..b629b269
Binary files /dev/null and b/animateditems/4871.png differ
diff --git a/animateditems/4872.gif b/animateditems/4872.gif
new file mode 100644
index 00000000..abffab75
Binary files /dev/null and b/animateditems/4872.gif differ
diff --git a/animateditems/4872.png b/animateditems/4872.png
new file mode 100644
index 00000000..b629b269
Binary files /dev/null and b/animateditems/4872.png differ
diff --git a/animateditems/4873.gif b/animateditems/4873.gif
new file mode 100644
index 00000000..6c377085
Binary files /dev/null and b/animateditems/4873.gif differ
diff --git a/animateditems/4873.png b/animateditems/4873.png
new file mode 100644
index 00000000..d338dc97
Binary files /dev/null and b/animateditems/4873.png differ
diff --git a/animateditems/4874.gif b/animateditems/4874.gif
new file mode 100644
index 00000000..7ac23d6c
Binary files /dev/null and b/animateditems/4874.gif differ
diff --git a/animateditems/4874.png b/animateditems/4874.png
new file mode 100644
index 00000000..0fd9517f
Binary files /dev/null and b/animateditems/4874.png differ
diff --git a/animateditems/4992.gif b/animateditems/4992.gif
new file mode 100644
index 00000000..8b85ec85
Binary files /dev/null and b/animateditems/4992.gif differ
diff --git a/animateditems/4992.png b/animateditems/4992.png
new file mode 100644
index 00000000..85b561eb
Binary files /dev/null and b/animateditems/4992.png differ
diff --git a/animateditems/4993.gif b/animateditems/4993.gif
new file mode 100644
index 00000000..3b985ebc
Binary files /dev/null and b/animateditems/4993.gif differ
diff --git a/animateditems/4993.png b/animateditems/4993.png
new file mode 100644
index 00000000..5e567473
Binary files /dev/null and b/animateditems/4993.png differ
diff --git a/animateditems/4994.gif b/animateditems/4994.gif
new file mode 100644
index 00000000..e231b4da
Binary files /dev/null and b/animateditems/4994.gif differ
diff --git a/animateditems/4994.png b/animateditems/4994.png
new file mode 100644
index 00000000..d7700f98
Binary files /dev/null and b/animateditems/4994.png differ
diff --git a/animateditems/5.gif b/animateditems/5.gif
new file mode 100644
index 00000000..d2aee838
Binary files /dev/null and b/animateditems/5.gif differ
diff --git a/animateditems/5014.gif b/animateditems/5014.gif
new file mode 100644
index 00000000..43095f9a
Binary files /dev/null and b/animateditems/5014.gif differ
diff --git a/animateditems/5014.png b/animateditems/5014.png
new file mode 100644
index 00000000..4dda0614
Binary files /dev/null and b/animateditems/5014.png differ
diff --git a/animateditems/5015.gif b/animateditems/5015.gif
new file mode 100644
index 00000000..0296e674
Binary files /dev/null and b/animateditems/5015.gif differ
diff --git a/animateditems/5015.png b/animateditems/5015.png
new file mode 100644
index 00000000..af8cb78e
Binary files /dev/null and b/animateditems/5015.png differ
diff --git a/animateditems/5022.gif b/animateditems/5022.gif
new file mode 100644
index 00000000..ec7ca93d
Binary files /dev/null and b/animateditems/5022.gif differ
diff --git a/animateditems/5022.png b/animateditems/5022.png
new file mode 100644
index 00000000..25fb474e
Binary files /dev/null and b/animateditems/5022.png differ
diff --git a/animateditems/5080.gif b/animateditems/5080.gif
new file mode 100644
index 00000000..42c84416
Binary files /dev/null and b/animateditems/5080.gif differ
diff --git a/animateditems/5080.png b/animateditems/5080.png
new file mode 100644
index 00000000..7f18ad4c
Binary files /dev/null and b/animateditems/5080.png differ
diff --git a/animateditems/5086.gif b/animateditems/5086.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/5086.gif differ
diff --git a/animateditems/5086.png b/animateditems/5086.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/5086.png differ
diff --git a/animateditems/5087.gif b/animateditems/5087.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/5087.gif differ
diff --git a/animateditems/5087.png b/animateditems/5087.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/5087.png differ
diff --git a/animateditems/5088.gif b/animateditems/5088.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/5088.gif differ
diff --git a/animateditems/5088.png b/animateditems/5088.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/5088.png differ
diff --git a/animateditems/5089.gif b/animateditems/5089.gif
new file mode 100644
index 00000000..7da29c17
Binary files /dev/null and b/animateditems/5089.gif differ
diff --git a/animateditems/5089.png b/animateditems/5089.png
new file mode 100644
index 00000000..2d06bd9c
Binary files /dev/null and b/animateditems/5089.png differ
diff --git a/animateditems/5091.gif b/animateditems/5091.gif
new file mode 100644
index 00000000..88133e15
Binary files /dev/null and b/animateditems/5091.gif differ
diff --git a/animateditems/5091.png b/animateditems/5091.png
new file mode 100644
index 00000000..7b6f7cad
Binary files /dev/null and b/animateditems/5091.png differ
diff --git a/animateditems/5097.gif b/animateditems/5097.gif
new file mode 100644
index 00000000..049f10df
Binary files /dev/null and b/animateditems/5097.gif differ
diff --git a/animateditems/5097.png b/animateditems/5097.png
new file mode 100644
index 00000000..8ae1b3f8
Binary files /dev/null and b/animateditems/5097.png differ
diff --git a/animateditems/5461.gif b/animateditems/5461.gif
new file mode 100644
index 00000000..94597cc8
Binary files /dev/null and b/animateditems/5461.gif differ
diff --git a/animateditems/5461.png b/animateditems/5461.png
new file mode 100644
index 00000000..c7bdc57e
Binary files /dev/null and b/animateditems/5461.png differ
diff --git a/animateditems/5462.gif b/animateditems/5462.gif
new file mode 100644
index 00000000..ed726ee7
Binary files /dev/null and b/animateditems/5462.gif differ
diff --git a/animateditems/5462.png b/animateditems/5462.png
new file mode 100644
index 00000000..04075558
Binary files /dev/null and b/animateditems/5462.png differ
diff --git a/animateditems/5467.gif b/animateditems/5467.gif
new file mode 100644
index 00000000..025f33f5
Binary files /dev/null and b/animateditems/5467.gif differ
diff --git a/animateditems/5467.png b/animateditems/5467.png
new file mode 100644
index 00000000..3730205c
Binary files /dev/null and b/animateditems/5467.png differ
diff --git a/animateditems/5468.gif b/animateditems/5468.gif
new file mode 100644
index 00000000..35ede841
Binary files /dev/null and b/animateditems/5468.gif differ
diff --git a/animateditems/5468.png b/animateditems/5468.png
new file mode 100644
index 00000000..97c2fcb2
Binary files /dev/null and b/animateditems/5468.png differ
diff --git a/animateditems/5480.gif b/animateditems/5480.gif
new file mode 100644
index 00000000..2f105e86
Binary files /dev/null and b/animateditems/5480.gif differ
diff --git a/animateditems/5480.png b/animateditems/5480.png
new file mode 100644
index 00000000..2196ae8d
Binary files /dev/null and b/animateditems/5480.png differ
diff --git a/animateditems/5542.gif b/animateditems/5542.gif
new file mode 100644
index 00000000..5d6d9fd0
Binary files /dev/null and b/animateditems/5542.gif differ
diff --git a/animateditems/5542.png b/animateditems/5542.png
new file mode 100644
index 00000000..3eeb590a
Binary files /dev/null and b/animateditems/5542.png differ
diff --git a/animateditems/5553.gif b/animateditems/5553.gif
new file mode 100644
index 00000000..82150a5a
Binary files /dev/null and b/animateditems/5553.gif differ
diff --git a/animateditems/5553.png b/animateditems/5553.png
new file mode 100644
index 00000000..45920509
Binary files /dev/null and b/animateditems/5553.png differ
diff --git a/animateditems/5565.gif b/animateditems/5565.gif
new file mode 100644
index 00000000..cd9d216d
Binary files /dev/null and b/animateditems/5565.gif differ
diff --git a/animateditems/5565.png b/animateditems/5565.png
new file mode 100644
index 00000000..4fa216eb
Binary files /dev/null and b/animateditems/5565.png differ
diff --git a/animateditems/5566.gif b/animateditems/5566.gif
new file mode 100644
index 00000000..1508c9b6
Binary files /dev/null and b/animateditems/5566.gif differ
diff --git a/animateditems/5566.png b/animateditems/5566.png
new file mode 100644
index 00000000..02b2812b
Binary files /dev/null and b/animateditems/5566.png differ
diff --git a/animateditems/5567.gif b/animateditems/5567.gif
new file mode 100644
index 00000000..dc108bc9
Binary files /dev/null and b/animateditems/5567.gif differ
diff --git a/animateditems/5567.png b/animateditems/5567.png
new file mode 100644
index 00000000..fb09fd07
Binary files /dev/null and b/animateditems/5567.png differ
diff --git a/animateditems/5568.gif b/animateditems/5568.gif
new file mode 100644
index 00000000..5192fdbe
Binary files /dev/null and b/animateditems/5568.gif differ
diff --git a/animateditems/5568.png b/animateditems/5568.png
new file mode 100644
index 00000000..11328bd6
Binary files /dev/null and b/animateditems/5568.png differ
diff --git a/animateditems/5616.gif b/animateditems/5616.gif
new file mode 100644
index 00000000..cea467da
Binary files /dev/null and b/animateditems/5616.gif differ
diff --git a/animateditems/5616.png b/animateditems/5616.png
new file mode 100644
index 00000000..9cd28f5b
Binary files /dev/null and b/animateditems/5616.png differ
diff --git a/animateditems/5626.gif b/animateditems/5626.gif
new file mode 100644
index 00000000..5a3c72b2
Binary files /dev/null and b/animateditems/5626.gif differ
diff --git a/animateditems/5626.png b/animateditems/5626.png
new file mode 100644
index 00000000..c5791872
Binary files /dev/null and b/animateditems/5626.png differ
diff --git a/animateditems/5627.gif b/animateditems/5627.gif
new file mode 100644
index 00000000..c5381e45
Binary files /dev/null and b/animateditems/5627.gif differ
diff --git a/animateditems/5627.png b/animateditems/5627.png
new file mode 100644
index 00000000..69b36fba
Binary files /dev/null and b/animateditems/5627.png differ
diff --git a/animateditems/5630.gif b/animateditems/5630.gif
new file mode 100644
index 00000000..c9025f50
Binary files /dev/null and b/animateditems/5630.gif differ
diff --git a/animateditems/5630.png b/animateditems/5630.png
new file mode 100644
index 00000000..8bb10cc0
Binary files /dev/null and b/animateditems/5630.png differ
diff --git a/animateditems/5669.gif b/animateditems/5669.gif
new file mode 100644
index 00000000..b62ccade
Binary files /dev/null and b/animateditems/5669.gif differ
diff --git a/animateditems/5669.png b/animateditems/5669.png
new file mode 100644
index 00000000..19bdbb31
Binary files /dev/null and b/animateditems/5669.png differ
diff --git a/animateditems/5670.gif b/animateditems/5670.gif
new file mode 100644
index 00000000..b62ccade
Binary files /dev/null and b/animateditems/5670.gif differ
diff --git a/animateditems/5670.png b/animateditems/5670.png
new file mode 100644
index 00000000..19bdbb31
Binary files /dev/null and b/animateditems/5670.png differ
diff --git a/animateditems/5678.gif b/animateditems/5678.gif
new file mode 100644
index 00000000..a99bb25b
Binary files /dev/null and b/animateditems/5678.gif differ
diff --git a/animateditems/5678.png b/animateditems/5678.png
new file mode 100644
index 00000000..57a30be2
Binary files /dev/null and b/animateditems/5678.png differ
diff --git a/animateditems/5706.gif b/animateditems/5706.gif
new file mode 100644
index 00000000..88133e15
Binary files /dev/null and b/animateditems/5706.gif differ
diff --git a/animateditems/5706.png b/animateditems/5706.png
new file mode 100644
index 00000000..7b6f7cad
Binary files /dev/null and b/animateditems/5706.png differ
diff --git a/animateditems/5710.gif b/animateditems/5710.gif
new file mode 100644
index 00000000..af9cc00f
Binary files /dev/null and b/animateditems/5710.gif differ
diff --git a/animateditems/5710.png b/animateditems/5710.png
new file mode 100644
index 00000000..86d366b6
Binary files /dev/null and b/animateditems/5710.png differ
diff --git a/animateditems/5727.gif b/animateditems/5727.gif
new file mode 100644
index 00000000..b3f8de9f
Binary files /dev/null and b/animateditems/5727.gif differ
diff --git a/animateditems/5727.png b/animateditems/5727.png
new file mode 100644
index 00000000..7ba9873d
Binary files /dev/null and b/animateditems/5727.png differ
diff --git a/animateditems/5728.gif b/animateditems/5728.gif
new file mode 100644
index 00000000..f3ad806a
Binary files /dev/null and b/animateditems/5728.gif differ
diff --git a/animateditems/5728.png b/animateditems/5728.png
new file mode 100644
index 00000000..926dfef3
Binary files /dev/null and b/animateditems/5728.png differ
diff --git a/animateditems/5729.gif b/animateditems/5729.gif
new file mode 100644
index 00000000..515d72f7
Binary files /dev/null and b/animateditems/5729.gif differ
diff --git a/animateditems/5729.png b/animateditems/5729.png
new file mode 100644
index 00000000..a6185a6d
Binary files /dev/null and b/animateditems/5729.png differ
diff --git a/animateditems/5741.gif b/animateditems/5741.gif
new file mode 100644
index 00000000..bbee7ca6
Binary files /dev/null and b/animateditems/5741.gif differ
diff --git a/animateditems/5741.png b/animateditems/5741.png
new file mode 100644
index 00000000..58252924
Binary files /dev/null and b/animateditems/5741.png differ
diff --git a/animateditems/5785.gif b/animateditems/5785.gif
new file mode 100644
index 00000000..a02eb208
Binary files /dev/null and b/animateditems/5785.gif differ
diff --git a/animateditems/5785.png b/animateditems/5785.png
new file mode 100644
index 00000000..798c3089
Binary files /dev/null and b/animateditems/5785.png differ
diff --git a/animateditems/5786.gif b/animateditems/5786.gif
new file mode 100644
index 00000000..ff191019
Binary files /dev/null and b/animateditems/5786.gif differ
diff --git a/animateditems/5786.png b/animateditems/5786.png
new file mode 100644
index 00000000..5d1c5194
Binary files /dev/null and b/animateditems/5786.png differ
diff --git a/animateditems/5791.gif b/animateditems/5791.gif
new file mode 100644
index 00000000..b948956c
Binary files /dev/null and b/animateditems/5791.gif differ
diff --git a/animateditems/5791.png b/animateditems/5791.png
new file mode 100644
index 00000000..2545ce7c
Binary files /dev/null and b/animateditems/5791.png differ
diff --git a/animateditems/5792.gif b/animateditems/5792.gif
new file mode 100644
index 00000000..8446bb79
Binary files /dev/null and b/animateditems/5792.gif differ
diff --git a/animateditems/5792.png b/animateditems/5792.png
new file mode 100644
index 00000000..46eb8262
Binary files /dev/null and b/animateditems/5792.png differ
diff --git a/animateditems/5793.gif b/animateditems/5793.gif
new file mode 100644
index 00000000..66588ccb
Binary files /dev/null and b/animateditems/5793.gif differ
diff --git a/animateditems/5793.png b/animateditems/5793.png
new file mode 100644
index 00000000..c961e168
Binary files /dev/null and b/animateditems/5793.png differ
diff --git a/animateditems/5794.gif b/animateditems/5794.gif
new file mode 100644
index 00000000..6994f78c
Binary files /dev/null and b/animateditems/5794.gif differ
diff --git a/animateditems/5794.png b/animateditems/5794.png
new file mode 100644
index 00000000..33a1868f
Binary files /dev/null and b/animateditems/5794.png differ
diff --git a/animateditems/5795.gif b/animateditems/5795.gif
new file mode 100644
index 00000000..aa30255d
Binary files /dev/null and b/animateditems/5795.gif differ
diff --git a/animateditems/5795.png b/animateditems/5795.png
new file mode 100644
index 00000000..f4fa6db2
Binary files /dev/null and b/animateditems/5795.png differ
diff --git a/animateditems/5796.gif b/animateditems/5796.gif
new file mode 100644
index 00000000..d64baaae
Binary files /dev/null and b/animateditems/5796.gif differ
diff --git a/animateditems/5796.png b/animateditems/5796.png
new file mode 100644
index 00000000..2bd08661
Binary files /dev/null and b/animateditems/5796.png differ
diff --git a/animateditems/5797.gif b/animateditems/5797.gif
new file mode 100644
index 00000000..cc5050fd
Binary files /dev/null and b/animateditems/5797.gif differ
diff --git a/animateditems/5797.png b/animateditems/5797.png
new file mode 100644
index 00000000..ed6210b1
Binary files /dev/null and b/animateditems/5797.png differ
diff --git a/animateditems/5798.gif b/animateditems/5798.gif
new file mode 100644
index 00000000..ecb0ac85
Binary files /dev/null and b/animateditems/5798.gif differ
diff --git a/animateditems/5798.png b/animateditems/5798.png
new file mode 100644
index 00000000..14610df7
Binary files /dev/null and b/animateditems/5798.png differ
diff --git a/animateditems/5799.gif b/animateditems/5799.gif
new file mode 100644
index 00000000..09dc3614
Binary files /dev/null and b/animateditems/5799.gif differ
diff --git a/animateditems/5799.png b/animateditems/5799.png
new file mode 100644
index 00000000..4c5e82cc
Binary files /dev/null and b/animateditems/5799.png differ
diff --git a/animateditems/5801.gif b/animateditems/5801.gif
new file mode 100644
index 00000000..0025ee62
Binary files /dev/null and b/animateditems/5801.gif differ
diff --git a/animateditems/5801.png b/animateditems/5801.png
new file mode 100644
index 00000000..c7b5c3d1
Binary files /dev/null and b/animateditems/5801.png differ
diff --git a/animateditems/5802.gif b/animateditems/5802.gif
new file mode 100644
index 00000000..0a0b310e
Binary files /dev/null and b/animateditems/5802.gif differ
diff --git a/animateditems/5802.png b/animateditems/5802.png
new file mode 100644
index 00000000..f38db22c
Binary files /dev/null and b/animateditems/5802.png differ
diff --git a/animateditems/5803.gif b/animateditems/5803.gif
new file mode 100644
index 00000000..aaad78be
Binary files /dev/null and b/animateditems/5803.gif differ
diff --git a/animateditems/5803.png b/animateditems/5803.png
new file mode 100644
index 00000000..f6c721b2
Binary files /dev/null and b/animateditems/5803.png differ
diff --git a/animateditems/5804.gif b/animateditems/5804.gif
new file mode 100644
index 00000000..08b1c37f
Binary files /dev/null and b/animateditems/5804.gif differ
diff --git a/animateditems/5804.png b/animateditems/5804.png
new file mode 100644
index 00000000..f591f54d
Binary files /dev/null and b/animateditems/5804.png differ
diff --git a/animateditems/5805.gif b/animateditems/5805.gif
new file mode 100644
index 00000000..84100058
Binary files /dev/null and b/animateditems/5805.gif differ
diff --git a/animateditems/5805.png b/animateditems/5805.png
new file mode 100644
index 00000000..25b1bd7a
Binary files /dev/null and b/animateditems/5805.png differ
diff --git a/animateditems/5806.gif b/animateditems/5806.gif
new file mode 100644
index 00000000..1073f0d7
Binary files /dev/null and b/animateditems/5806.gif differ
diff --git a/animateditems/5806.png b/animateditems/5806.png
new file mode 100644
index 00000000..86cd33de
Binary files /dev/null and b/animateditems/5806.png differ
diff --git a/animateditems/5807.gif b/animateditems/5807.gif
new file mode 100644
index 00000000..d3b00d73
Binary files /dev/null and b/animateditems/5807.gif differ
diff --git a/animateditems/5807.png b/animateditems/5807.png
new file mode 100644
index 00000000..3e997f4c
Binary files /dev/null and b/animateditems/5807.png differ
diff --git a/animateditems/5808.gif b/animateditems/5808.gif
new file mode 100644
index 00000000..f6a0651a
Binary files /dev/null and b/animateditems/5808.gif differ
diff --git a/animateditems/5808.png b/animateditems/5808.png
new file mode 100644
index 00000000..26f5ac1a
Binary files /dev/null and b/animateditems/5808.png differ
diff --git a/animateditems/5809.gif b/animateditems/5809.gif
new file mode 100644
index 00000000..977448ab
Binary files /dev/null and b/animateditems/5809.gif differ
diff --git a/animateditems/5809.png b/animateditems/5809.png
new file mode 100644
index 00000000..6096eb0a
Binary files /dev/null and b/animateditems/5809.png differ
diff --git a/animateditems/5810.gif b/animateditems/5810.gif
new file mode 100644
index 00000000..bbdbe24b
Binary files /dev/null and b/animateditems/5810.gif differ
diff --git a/animateditems/5810.png b/animateditems/5810.png
new file mode 100644
index 00000000..291f31e4
Binary files /dev/null and b/animateditems/5810.png differ
diff --git a/animateditems/5812.gif b/animateditems/5812.gif
new file mode 100644
index 00000000..8219d801
Binary files /dev/null and b/animateditems/5812.gif differ
diff --git a/animateditems/5812.png b/animateditems/5812.png
new file mode 100644
index 00000000..52a4f6d7
Binary files /dev/null and b/animateditems/5812.png differ
diff --git a/animateditems/5813.gif b/animateditems/5813.gif
new file mode 100644
index 00000000..bdce0760
Binary files /dev/null and b/animateditems/5813.gif differ
diff --git a/animateditems/5813.png b/animateditems/5813.png
new file mode 100644
index 00000000..561a13a1
Binary files /dev/null and b/animateditems/5813.png differ
diff --git a/animateditems/5865.gif b/animateditems/5865.gif
new file mode 100644
index 00000000..56007a2f
Binary files /dev/null and b/animateditems/5865.gif differ
diff --git a/animateditems/5865.png b/animateditems/5865.png
new file mode 100644
index 00000000..20cc6ca3
Binary files /dev/null and b/animateditems/5865.png differ
diff --git a/animateditems/5875.gif b/animateditems/5875.gif
new file mode 100644
index 00000000..281f0bdf
Binary files /dev/null and b/animateditems/5875.gif differ
diff --git a/animateditems/5875.png b/animateditems/5875.png
new file mode 100644
index 00000000..218eef4f
Binary files /dev/null and b/animateditems/5875.png differ
diff --git a/animateditems/5876.gif b/animateditems/5876.gif
new file mode 100644
index 00000000..cc225b9f
Binary files /dev/null and b/animateditems/5876.gif differ
diff --git a/animateditems/5876.png b/animateditems/5876.png
new file mode 100644
index 00000000..c851e0e4
Binary files /dev/null and b/animateditems/5876.png differ
diff --git a/animateditems/5877.gif b/animateditems/5877.gif
new file mode 100644
index 00000000..a5001de6
Binary files /dev/null and b/animateditems/5877.gif differ
diff --git a/animateditems/5877.png b/animateditems/5877.png
new file mode 100644
index 00000000..a1cef76d
Binary files /dev/null and b/animateditems/5877.png differ
diff --git a/animateditems/5878.gif b/animateditems/5878.gif
new file mode 100644
index 00000000..44529cc0
Binary files /dev/null and b/animateditems/5878.gif differ
diff --git a/animateditems/5878.png b/animateditems/5878.png
new file mode 100644
index 00000000..c306d85f
Binary files /dev/null and b/animateditems/5878.png differ
diff --git a/animateditems/5879.gif b/animateditems/5879.gif
new file mode 100644
index 00000000..f0703608
Binary files /dev/null and b/animateditems/5879.gif differ
diff --git a/animateditems/5879.png b/animateditems/5879.png
new file mode 100644
index 00000000..11c4730a
Binary files /dev/null and b/animateditems/5879.png differ
diff --git a/animateditems/5880.gif b/animateditems/5880.gif
new file mode 100644
index 00000000..84169ad0
Binary files /dev/null and b/animateditems/5880.gif differ
diff --git a/animateditems/5880.png b/animateditems/5880.png
new file mode 100644
index 00000000..42457fba
Binary files /dev/null and b/animateditems/5880.png differ
diff --git a/animateditems/5881.gif b/animateditems/5881.gif
new file mode 100644
index 00000000..fcc7429b
Binary files /dev/null and b/animateditems/5881.gif differ
diff --git a/animateditems/5881.png b/animateditems/5881.png
new file mode 100644
index 00000000..daad9025
Binary files /dev/null and b/animateditems/5881.png differ
diff --git a/animateditems/5882.gif b/animateditems/5882.gif
new file mode 100644
index 00000000..eea95830
Binary files /dev/null and b/animateditems/5882.gif differ
diff --git a/animateditems/5882.png b/animateditems/5882.png
new file mode 100644
index 00000000..1d6086ad
Binary files /dev/null and b/animateditems/5882.png differ
diff --git a/animateditems/5883.gif b/animateditems/5883.gif
new file mode 100644
index 00000000..3d407635
Binary files /dev/null and b/animateditems/5883.gif differ
diff --git a/animateditems/5883.png b/animateditems/5883.png
new file mode 100644
index 00000000..25acfecd
Binary files /dev/null and b/animateditems/5883.png differ
diff --git a/animateditems/5884.gif b/animateditems/5884.gif
new file mode 100644
index 00000000..df563980
Binary files /dev/null and b/animateditems/5884.gif differ
diff --git a/animateditems/5884.png b/animateditems/5884.png
new file mode 100644
index 00000000..ba0c4f81
Binary files /dev/null and b/animateditems/5884.png differ
diff --git a/animateditems/5885.gif b/animateditems/5885.gif
new file mode 100644
index 00000000..099cc5d8
Binary files /dev/null and b/animateditems/5885.gif differ
diff --git a/animateditems/5885.png b/animateditems/5885.png
new file mode 100644
index 00000000..917d7bd2
Binary files /dev/null and b/animateditems/5885.png differ
diff --git a/animateditems/5886.gif b/animateditems/5886.gif
new file mode 100644
index 00000000..5c76e273
Binary files /dev/null and b/animateditems/5886.gif differ
diff --git a/animateditems/5886.png b/animateditems/5886.png
new file mode 100644
index 00000000..1dc7231f
Binary files /dev/null and b/animateditems/5886.png differ
diff --git a/animateditems/5887.gif b/animateditems/5887.gif
new file mode 100644
index 00000000..63c2c420
Binary files /dev/null and b/animateditems/5887.gif differ
diff --git a/animateditems/5887.png b/animateditems/5887.png
new file mode 100644
index 00000000..c92411ab
Binary files /dev/null and b/animateditems/5887.png differ
diff --git a/animateditems/5888.gif b/animateditems/5888.gif
new file mode 100644
index 00000000..998e3432
Binary files /dev/null and b/animateditems/5888.gif differ
diff --git a/animateditems/5888.png b/animateditems/5888.png
new file mode 100644
index 00000000..10e664d6
Binary files /dev/null and b/animateditems/5888.png differ
diff --git a/animateditems/5889.gif b/animateditems/5889.gif
new file mode 100644
index 00000000..e2aad838
Binary files /dev/null and b/animateditems/5889.gif differ
diff --git a/animateditems/5889.png b/animateditems/5889.png
new file mode 100644
index 00000000..ef0f1a21
Binary files /dev/null and b/animateditems/5889.png differ
diff --git a/animateditems/5890.gif b/animateditems/5890.gif
new file mode 100644
index 00000000..2f5a3967
Binary files /dev/null and b/animateditems/5890.gif differ
diff --git a/animateditems/5890.png b/animateditems/5890.png
new file mode 100644
index 00000000..efe66b99
Binary files /dev/null and b/animateditems/5890.png differ
diff --git a/animateditems/5891.gif b/animateditems/5891.gif
new file mode 100644
index 00000000..1d82dc1d
Binary files /dev/null and b/animateditems/5891.gif differ
diff --git a/animateditems/5891.png b/animateditems/5891.png
new file mode 100644
index 00000000..b229e0f5
Binary files /dev/null and b/animateditems/5891.png differ
diff --git a/animateditems/5892.gif b/animateditems/5892.gif
new file mode 100644
index 00000000..0a8fff67
Binary files /dev/null and b/animateditems/5892.gif differ
diff --git a/animateditems/5892.png b/animateditems/5892.png
new file mode 100644
index 00000000..c9274d3d
Binary files /dev/null and b/animateditems/5892.png differ
diff --git a/animateditems/5893.gif b/animateditems/5893.gif
new file mode 100644
index 00000000..bf31eec0
Binary files /dev/null and b/animateditems/5893.gif differ
diff --git a/animateditems/5893.png b/animateditems/5893.png
new file mode 100644
index 00000000..3ebe2e4f
Binary files /dev/null and b/animateditems/5893.png differ
diff --git a/animateditems/5894.gif b/animateditems/5894.gif
new file mode 100644
index 00000000..81b2cff0
Binary files /dev/null and b/animateditems/5894.gif differ
diff --git a/animateditems/5894.png b/animateditems/5894.png
new file mode 100644
index 00000000..c7f4a693
Binary files /dev/null and b/animateditems/5894.png differ
diff --git a/animateditems/5895.gif b/animateditems/5895.gif
new file mode 100644
index 00000000..4ed03f7f
Binary files /dev/null and b/animateditems/5895.gif differ
diff --git a/animateditems/5895.png b/animateditems/5895.png
new file mode 100644
index 00000000..2ad6a9f2
Binary files /dev/null and b/animateditems/5895.png differ
diff --git a/animateditems/5896.gif b/animateditems/5896.gif
new file mode 100644
index 00000000..181e487a
Binary files /dev/null and b/animateditems/5896.gif differ
diff --git a/animateditems/5896.png b/animateditems/5896.png
new file mode 100644
index 00000000..75ad6539
Binary files /dev/null and b/animateditems/5896.png differ
diff --git a/animateditems/5897.gif b/animateditems/5897.gif
new file mode 100644
index 00000000..a0c54f59
Binary files /dev/null and b/animateditems/5897.gif differ
diff --git a/animateditems/5897.png b/animateditems/5897.png
new file mode 100644
index 00000000..c46db614
Binary files /dev/null and b/animateditems/5897.png differ
diff --git a/animateditems/5898.gif b/animateditems/5898.gif
new file mode 100644
index 00000000..0b7dedd3
Binary files /dev/null and b/animateditems/5898.gif differ
diff --git a/animateditems/5898.png b/animateditems/5898.png
new file mode 100644
index 00000000..8e5e034e
Binary files /dev/null and b/animateditems/5898.png differ
diff --git a/animateditems/5899.gif b/animateditems/5899.gif
new file mode 100644
index 00000000..5b4caf16
Binary files /dev/null and b/animateditems/5899.gif differ
diff --git a/animateditems/5899.png b/animateditems/5899.png
new file mode 100644
index 00000000..80c278ee
Binary files /dev/null and b/animateditems/5899.png differ
diff --git a/animateditems/5900.gif b/animateditems/5900.gif
new file mode 100644
index 00000000..e6411c34
Binary files /dev/null and b/animateditems/5900.gif differ
diff --git a/animateditems/5900.png b/animateditems/5900.png
new file mode 100644
index 00000000..db173b32
Binary files /dev/null and b/animateditems/5900.png differ
diff --git a/animateditems/5901.gif b/animateditems/5901.gif
new file mode 100644
index 00000000..b3ff7322
Binary files /dev/null and b/animateditems/5901.gif differ
diff --git a/animateditems/5901.png b/animateditems/5901.png
new file mode 100644
index 00000000..1798b237
Binary files /dev/null and b/animateditems/5901.png differ
diff --git a/animateditems/5902.gif b/animateditems/5902.gif
new file mode 100644
index 00000000..e05dbaaa
Binary files /dev/null and b/animateditems/5902.gif differ
diff --git a/animateditems/5902.png b/animateditems/5902.png
new file mode 100644
index 00000000..2258b037
Binary files /dev/null and b/animateditems/5902.png differ
diff --git a/animateditems/5903.gif b/animateditems/5903.gif
new file mode 100644
index 00000000..e34d256b
Binary files /dev/null and b/animateditems/5903.gif differ
diff --git a/animateditems/5903.png b/animateditems/5903.png
new file mode 100644
index 00000000..ed94b46f
Binary files /dev/null and b/animateditems/5903.png differ
diff --git a/animateditems/5904.gif b/animateditems/5904.gif
new file mode 100644
index 00000000..17fa6604
Binary files /dev/null and b/animateditems/5904.gif differ
diff --git a/animateditems/5904.png b/animateditems/5904.png
new file mode 100644
index 00000000..baa6d027
Binary files /dev/null and b/animateditems/5904.png differ
diff --git a/animateditems/5905.gif b/animateditems/5905.gif
new file mode 100644
index 00000000..59002ac8
Binary files /dev/null and b/animateditems/5905.gif differ
diff --git a/animateditems/5905.png b/animateditems/5905.png
new file mode 100644
index 00000000..8615dc48
Binary files /dev/null and b/animateditems/5905.png differ
diff --git a/animateditems/5906.gif b/animateditems/5906.gif
new file mode 100644
index 00000000..07b068e2
Binary files /dev/null and b/animateditems/5906.gif differ
diff --git a/animateditems/5906.png b/animateditems/5906.png
new file mode 100644
index 00000000..eccded6c
Binary files /dev/null and b/animateditems/5906.png differ
diff --git a/animateditems/5907.gif b/animateditems/5907.gif
new file mode 100644
index 00000000..af085747
Binary files /dev/null and b/animateditems/5907.gif differ
diff --git a/animateditems/5907.png b/animateditems/5907.png
new file mode 100644
index 00000000..82331323
Binary files /dev/null and b/animateditems/5907.png differ
diff --git a/animateditems/5908.gif b/animateditems/5908.gif
new file mode 100644
index 00000000..4abf3884
Binary files /dev/null and b/animateditems/5908.gif differ
diff --git a/animateditems/5908.png b/animateditems/5908.png
new file mode 100644
index 00000000..c52fd959
Binary files /dev/null and b/animateditems/5908.png differ
diff --git a/animateditems/5909.gif b/animateditems/5909.gif
new file mode 100644
index 00000000..40a5f73b
Binary files /dev/null and b/animateditems/5909.gif differ
diff --git a/animateditems/5909.png b/animateditems/5909.png
new file mode 100644
index 00000000..10c4cf89
Binary files /dev/null and b/animateditems/5909.png differ
diff --git a/animateditems/5910.gif b/animateditems/5910.gif
new file mode 100644
index 00000000..45909c47
Binary files /dev/null and b/animateditems/5910.gif differ
diff --git a/animateditems/5910.png b/animateditems/5910.png
new file mode 100644
index 00000000..3be207d6
Binary files /dev/null and b/animateditems/5910.png differ
diff --git a/animateditems/5911.gif b/animateditems/5911.gif
new file mode 100644
index 00000000..50506e08
Binary files /dev/null and b/animateditems/5911.gif differ
diff --git a/animateditems/5911.png b/animateditems/5911.png
new file mode 100644
index 00000000..f0290edf
Binary files /dev/null and b/animateditems/5911.png differ
diff --git a/animateditems/5912.gif b/animateditems/5912.gif
new file mode 100644
index 00000000..6a052946
Binary files /dev/null and b/animateditems/5912.gif differ
diff --git a/animateditems/5912.png b/animateditems/5912.png
new file mode 100644
index 00000000..a3aaad1b
Binary files /dev/null and b/animateditems/5912.png differ
diff --git a/animateditems/5913.gif b/animateditems/5913.gif
new file mode 100644
index 00000000..ae959cd6
Binary files /dev/null and b/animateditems/5913.gif differ
diff --git a/animateditems/5913.png b/animateditems/5913.png
new file mode 100644
index 00000000..a3515b0c
Binary files /dev/null and b/animateditems/5913.png differ
diff --git a/animateditems/5914.gif b/animateditems/5914.gif
new file mode 100644
index 00000000..6b701534
Binary files /dev/null and b/animateditems/5914.gif differ
diff --git a/animateditems/5914.png b/animateditems/5914.png
new file mode 100644
index 00000000..7cd3bb2d
Binary files /dev/null and b/animateditems/5914.png differ
diff --git a/animateditems/5917.gif b/animateditems/5917.gif
new file mode 100644
index 00000000..02635724
Binary files /dev/null and b/animateditems/5917.gif differ
diff --git a/animateditems/5917.png b/animateditems/5917.png
new file mode 100644
index 00000000..5453aa41
Binary files /dev/null and b/animateditems/5917.png differ
diff --git a/animateditems/5918.gif b/animateditems/5918.gif
new file mode 100644
index 00000000..5c00a859
Binary files /dev/null and b/animateditems/5918.gif differ
diff --git a/animateditems/5918.png b/animateditems/5918.png
new file mode 100644
index 00000000..b07e4af6
Binary files /dev/null and b/animateditems/5918.png differ
diff --git a/animateditems/5919.gif b/animateditems/5919.gif
new file mode 100644
index 00000000..159de4cf
Binary files /dev/null and b/animateditems/5919.gif differ
diff --git a/animateditems/5919.png b/animateditems/5919.png
new file mode 100644
index 00000000..5a660141
Binary files /dev/null and b/animateditems/5919.png differ
diff --git a/animateditems/5920.gif b/animateditems/5920.gif
new file mode 100644
index 00000000..9a733261
Binary files /dev/null and b/animateditems/5920.gif differ
diff --git a/animateditems/5920.png b/animateditems/5920.png
new file mode 100644
index 00000000..4d616a0b
Binary files /dev/null and b/animateditems/5920.png differ
diff --git a/animateditems/5921.gif b/animateditems/5921.gif
new file mode 100644
index 00000000..e082541a
Binary files /dev/null and b/animateditems/5921.gif differ
diff --git a/animateditems/5921.png b/animateditems/5921.png
new file mode 100644
index 00000000..f90b2c54
Binary files /dev/null and b/animateditems/5921.png differ
diff --git a/animateditems/5922.gif b/animateditems/5922.gif
new file mode 100644
index 00000000..19df0d9d
Binary files /dev/null and b/animateditems/5922.gif differ
diff --git a/animateditems/5922.png b/animateditems/5922.png
new file mode 100644
index 00000000..a78d72fb
Binary files /dev/null and b/animateditems/5922.png differ
diff --git a/animateditems/5924.gif b/animateditems/5924.gif
new file mode 100644
index 00000000..bad3e689
Binary files /dev/null and b/animateditems/5924.gif differ
diff --git a/animateditems/5924.png b/animateditems/5924.png
new file mode 100644
index 00000000..5a399598
Binary files /dev/null and b/animateditems/5924.png differ
diff --git a/animateditems/5925.gif b/animateditems/5925.gif
new file mode 100644
index 00000000..d4833043
Binary files /dev/null and b/animateditems/5925.gif differ
diff --git a/animateditems/5925.png b/animateditems/5925.png
new file mode 100644
index 00000000..140c6e50
Binary files /dev/null and b/animateditems/5925.png differ
diff --git a/animateditems/5926.gif b/animateditems/5926.gif
new file mode 100644
index 00000000..3dabdf36
Binary files /dev/null and b/animateditems/5926.gif differ
diff --git a/animateditems/5926.png b/animateditems/5926.png
new file mode 100644
index 00000000..178fec49
Binary files /dev/null and b/animateditems/5926.png differ
diff --git a/animateditems/5927.gif b/animateditems/5927.gif
new file mode 100644
index 00000000..ae27c5b2
Binary files /dev/null and b/animateditems/5927.gif differ
diff --git a/animateditems/5927.png b/animateditems/5927.png
new file mode 100644
index 00000000..edc3f4a2
Binary files /dev/null and b/animateditems/5927.png differ
diff --git a/animateditems/5928.gif b/animateditems/5928.gif
new file mode 100644
index 00000000..da6aa2cd
Binary files /dev/null and b/animateditems/5928.gif differ
diff --git a/animateditems/5928.png b/animateditems/5928.png
new file mode 100644
index 00000000..2cafe3d0
Binary files /dev/null and b/animateditems/5928.png differ
diff --git a/animateditems/5929.gif b/animateditems/5929.gif
new file mode 100644
index 00000000..47dfeb3c
Binary files /dev/null and b/animateditems/5929.gif differ
diff --git a/animateditems/5929.png b/animateditems/5929.png
new file mode 100644
index 00000000..c317a04e
Binary files /dev/null and b/animateditems/5929.png differ
diff --git a/animateditems/5930.gif b/animateditems/5930.gif
new file mode 100644
index 00000000..9782d6a4
Binary files /dev/null and b/animateditems/5930.gif differ
diff --git a/animateditems/5930.png b/animateditems/5930.png
new file mode 100644
index 00000000..f5484b15
Binary files /dev/null and b/animateditems/5930.png differ
diff --git a/animateditems/5934.gif b/animateditems/5934.gif
new file mode 100644
index 00000000..22bf8298
Binary files /dev/null and b/animateditems/5934.gif differ
diff --git a/animateditems/5934.png b/animateditems/5934.png
new file mode 100644
index 00000000..c7cfa0ae
Binary files /dev/null and b/animateditems/5934.png differ
diff --git a/animateditems/5935.gif b/animateditems/5935.gif
new file mode 100644
index 00000000..065e1d10
Binary files /dev/null and b/animateditems/5935.gif differ
diff --git a/animateditems/5935.png b/animateditems/5935.png
new file mode 100644
index 00000000..c3bc536b
Binary files /dev/null and b/animateditems/5935.png differ
diff --git a/animateditems/5936.gif b/animateditems/5936.gif
new file mode 100644
index 00000000..7e28854a
Binary files /dev/null and b/animateditems/5936.gif differ
diff --git a/animateditems/5936.png b/animateditems/5936.png
new file mode 100644
index 00000000..ce9b9a53
Binary files /dev/null and b/animateditems/5936.png differ
diff --git a/animateditems/5937.gif b/animateditems/5937.gif
new file mode 100644
index 00000000..abffab75
Binary files /dev/null and b/animateditems/5937.gif differ
diff --git a/animateditems/5937.png b/animateditems/5937.png
new file mode 100644
index 00000000..b629b269
Binary files /dev/null and b/animateditems/5937.png differ
diff --git a/animateditems/5938.gif b/animateditems/5938.gif
new file mode 100644
index 00000000..c330eff5
Binary files /dev/null and b/animateditems/5938.gif differ
diff --git a/animateditems/5938.png b/animateditems/5938.png
new file mode 100644
index 00000000..4dc478d0
Binary files /dev/null and b/animateditems/5938.png differ
diff --git a/animateditems/5939.gif b/animateditems/5939.gif
new file mode 100644
index 00000000..c330eff5
Binary files /dev/null and b/animateditems/5939.gif differ
diff --git a/animateditems/5939.png b/animateditems/5939.png
new file mode 100644
index 00000000..4dc478d0
Binary files /dev/null and b/animateditems/5939.png differ
diff --git a/animateditems/5940.gif b/animateditems/5940.gif
new file mode 100644
index 00000000..21fe4161
Binary files /dev/null and b/animateditems/5940.gif differ
diff --git a/animateditems/5940.png b/animateditems/5940.png
new file mode 100644
index 00000000..0353c4d7
Binary files /dev/null and b/animateditems/5940.png differ
diff --git a/animateditems/5941.gif b/animateditems/5941.gif
new file mode 100644
index 00000000..be7e61a0
Binary files /dev/null and b/animateditems/5941.gif differ
diff --git a/animateditems/5941.png b/animateditems/5941.png
new file mode 100644
index 00000000..7d9ea431
Binary files /dev/null and b/animateditems/5941.png differ
diff --git a/animateditems/5942.gif b/animateditems/5942.gif
new file mode 100644
index 00000000..db3f5225
Binary files /dev/null and b/animateditems/5942.gif differ
diff --git a/animateditems/5942.png b/animateditems/5942.png
new file mode 100644
index 00000000..c5ee6bcd
Binary files /dev/null and b/animateditems/5942.png differ
diff --git a/animateditems/5943.gif b/animateditems/5943.gif
new file mode 100644
index 00000000..4d9731b8
Binary files /dev/null and b/animateditems/5943.gif differ
diff --git a/animateditems/5943.png b/animateditems/5943.png
new file mode 100644
index 00000000..acb645d0
Binary files /dev/null and b/animateditems/5943.png differ
diff --git a/animateditems/5944.gif b/animateditems/5944.gif
new file mode 100644
index 00000000..abc117b3
Binary files /dev/null and b/animateditems/5944.gif differ
diff --git a/animateditems/5944.png b/animateditems/5944.png
new file mode 100644
index 00000000..79057330
Binary files /dev/null and b/animateditems/5944.png differ
diff --git a/animateditems/5945.gif b/animateditems/5945.gif
new file mode 100644
index 00000000..fbd7a98c
Binary files /dev/null and b/animateditems/5945.gif differ
diff --git a/animateditems/5945.png b/animateditems/5945.png
new file mode 100644
index 00000000..0cd85361
Binary files /dev/null and b/animateditems/5945.png differ
diff --git a/animateditems/5946.gif b/animateditems/5946.gif
new file mode 100644
index 00000000..cc38fde6
Binary files /dev/null and b/animateditems/5946.gif differ
diff --git a/animateditems/5946.png b/animateditems/5946.png
new file mode 100644
index 00000000..15df4c5e
Binary files /dev/null and b/animateditems/5946.png differ
diff --git a/animateditems/5947.gif b/animateditems/5947.gif
new file mode 100644
index 00000000..f4b75d5e
Binary files /dev/null and b/animateditems/5947.gif differ
diff --git a/animateditems/5947.png b/animateditems/5947.png
new file mode 100644
index 00000000..7405e4a4
Binary files /dev/null and b/animateditems/5947.png differ
diff --git a/animateditems/5948.gif b/animateditems/5948.gif
new file mode 100644
index 00000000..e6a5dc92
Binary files /dev/null and b/animateditems/5948.gif differ
diff --git a/animateditems/5948.png b/animateditems/5948.png
new file mode 100644
index 00000000..885fd64e
Binary files /dev/null and b/animateditems/5948.png differ
diff --git a/animateditems/5949.gif b/animateditems/5949.gif
new file mode 100644
index 00000000..8edbfaa2
Binary files /dev/null and b/animateditems/5949.gif differ
diff --git a/animateditems/5949.png b/animateditems/5949.png
new file mode 100644
index 00000000..424ff68b
Binary files /dev/null and b/animateditems/5949.png differ
diff --git a/animateditems/5950.gif b/animateditems/5950.gif
new file mode 100644
index 00000000..f551a496
Binary files /dev/null and b/animateditems/5950.gif differ
diff --git a/animateditems/5950.png b/animateditems/5950.png
new file mode 100644
index 00000000..7f781a44
Binary files /dev/null and b/animateditems/5950.png differ
diff --git a/animateditems/5951.gif b/animateditems/5951.gif
new file mode 100644
index 00000000..304499b8
Binary files /dev/null and b/animateditems/5951.gif differ
diff --git a/animateditems/5951.png b/animateditems/5951.png
new file mode 100644
index 00000000..d4568dbf
Binary files /dev/null and b/animateditems/5951.png differ
diff --git a/animateditems/5952.gif b/animateditems/5952.gif
new file mode 100644
index 00000000..2cfe00a7
Binary files /dev/null and b/animateditems/5952.gif differ
diff --git a/animateditems/5952.png b/animateditems/5952.png
new file mode 100644
index 00000000..b4f0a8b2
Binary files /dev/null and b/animateditems/5952.png differ
diff --git a/animateditems/5953.gif b/animateditems/5953.gif
new file mode 100644
index 00000000..491bd8c0
Binary files /dev/null and b/animateditems/5953.gif differ
diff --git a/animateditems/5953.png b/animateditems/5953.png
new file mode 100644
index 00000000..282854c2
Binary files /dev/null and b/animateditems/5953.png differ
diff --git a/animateditems/5954.gif b/animateditems/5954.gif
new file mode 100644
index 00000000..10a0b973
Binary files /dev/null and b/animateditems/5954.gif differ
diff --git a/animateditems/5954.png b/animateditems/5954.png
new file mode 100644
index 00000000..4f32df0e
Binary files /dev/null and b/animateditems/5954.png differ
diff --git a/animateditems/5956.gif b/animateditems/5956.gif
new file mode 100644
index 00000000..6f92e520
Binary files /dev/null and b/animateditems/5956.gif differ
diff --git a/animateditems/5956.png b/animateditems/5956.png
new file mode 100644
index 00000000..82dc0b3b
Binary files /dev/null and b/animateditems/5956.png differ
diff --git a/animateditems/5957.gif b/animateditems/5957.gif
new file mode 100644
index 00000000..2cfe00a7
Binary files /dev/null and b/animateditems/5957.gif differ
diff --git a/animateditems/5957.png b/animateditems/5957.png
new file mode 100644
index 00000000..b4f0a8b2
Binary files /dev/null and b/animateditems/5957.png differ
diff --git a/animateditems/5958.gif b/animateditems/5958.gif
new file mode 100644
index 00000000..76554655
Binary files /dev/null and b/animateditems/5958.gif differ
diff --git a/animateditems/5958.png b/animateditems/5958.png
new file mode 100644
index 00000000..3133d17d
Binary files /dev/null and b/animateditems/5958.png differ
diff --git a/animateditems/6.gif b/animateditems/6.gif
new file mode 100644
index 00000000..23812c7c
Binary files /dev/null and b/animateditems/6.gif differ
diff --git a/animateditems/6086.gif b/animateditems/6086.gif
new file mode 100644
index 00000000..d22be760
Binary files /dev/null and b/animateditems/6086.gif differ
diff --git a/animateditems/6086.png b/animateditems/6086.png
new file mode 100644
index 00000000..53c551f2
Binary files /dev/null and b/animateditems/6086.png differ
diff --git a/animateditems/6087.gif b/animateditems/6087.gif
new file mode 100644
index 00000000..607824b5
Binary files /dev/null and b/animateditems/6087.gif differ
diff --git a/animateditems/6087.png b/animateditems/6087.png
new file mode 100644
index 00000000..002df770
Binary files /dev/null and b/animateditems/6087.png differ
diff --git a/animateditems/6088.gif b/animateditems/6088.gif
new file mode 100644
index 00000000..607824b5
Binary files /dev/null and b/animateditems/6088.gif differ
diff --git a/animateditems/6088.png b/animateditems/6088.png
new file mode 100644
index 00000000..002df770
Binary files /dev/null and b/animateditems/6088.png differ
diff --git a/animateditems/6089.gif b/animateditems/6089.gif
new file mode 100644
index 00000000..607824b5
Binary files /dev/null and b/animateditems/6089.gif differ
diff --git a/animateditems/6089.png b/animateditems/6089.png
new file mode 100644
index 00000000..002df770
Binary files /dev/null and b/animateditems/6089.png differ
diff --git a/animateditems/6090.gif b/animateditems/6090.gif
new file mode 100644
index 00000000..607824b5
Binary files /dev/null and b/animateditems/6090.gif differ
diff --git a/animateditems/6090.png b/animateditems/6090.png
new file mode 100644
index 00000000..002df770
Binary files /dev/null and b/animateditems/6090.png differ
diff --git a/animateditems/6091.gif b/animateditems/6091.gif
new file mode 100644
index 00000000..05020aee
Binary files /dev/null and b/animateditems/6091.gif differ
diff --git a/animateditems/6091.png b/animateditems/6091.png
new file mode 100644
index 00000000..3b0b7c94
Binary files /dev/null and b/animateditems/6091.png differ
diff --git a/animateditems/6092.gif b/animateditems/6092.gif
new file mode 100644
index 00000000..05020aee
Binary files /dev/null and b/animateditems/6092.gif differ
diff --git a/animateditems/6092.png b/animateditems/6092.png
new file mode 100644
index 00000000..3b0b7c94
Binary files /dev/null and b/animateditems/6092.png differ
diff --git a/animateditems/6093.gif b/animateditems/6093.gif
new file mode 100644
index 00000000..5a71a530
Binary files /dev/null and b/animateditems/6093.gif differ
diff --git a/animateditems/6093.png b/animateditems/6093.png
new file mode 100644
index 00000000..a585f056
Binary files /dev/null and b/animateditems/6093.png differ
diff --git a/animateditems/6095.gif b/animateditems/6095.gif
new file mode 100644
index 00000000..f1a1e687
Binary files /dev/null and b/animateditems/6095.gif differ
diff --git a/animateditems/6095.png b/animateditems/6095.png
new file mode 100644
index 00000000..3544c614
Binary files /dev/null and b/animateditems/6095.png differ
diff --git a/animateditems/6096.gif b/animateditems/6096.gif
new file mode 100644
index 00000000..d307e308
Binary files /dev/null and b/animateditems/6096.gif differ
diff --git a/animateditems/6096.png b/animateditems/6096.png
new file mode 100644
index 00000000..03e38814
Binary files /dev/null and b/animateditems/6096.png differ
diff --git a/animateditems/6097.gif b/animateditems/6097.gif
new file mode 100644
index 00000000..c33eb602
Binary files /dev/null and b/animateditems/6097.gif differ
diff --git a/animateditems/6097.png b/animateditems/6097.png
new file mode 100644
index 00000000..bb4560eb
Binary files /dev/null and b/animateditems/6097.png differ
diff --git a/animateditems/6098.gif b/animateditems/6098.gif
new file mode 100644
index 00000000..53a2f804
Binary files /dev/null and b/animateditems/6098.gif differ
diff --git a/animateditems/6098.png b/animateditems/6098.png
new file mode 100644
index 00000000..b865c532
Binary files /dev/null and b/animateditems/6098.png differ
diff --git a/animateditems/6099.gif b/animateditems/6099.gif
new file mode 100644
index 00000000..10c4e16a
Binary files /dev/null and b/animateditems/6099.gif differ
diff --git a/animateditems/6099.png b/animateditems/6099.png
new file mode 100644
index 00000000..20afca8a
Binary files /dev/null and b/animateditems/6099.png differ
diff --git a/animateditems/6100.gif b/animateditems/6100.gif
new file mode 100644
index 00000000..e13bb812
Binary files /dev/null and b/animateditems/6100.gif differ
diff --git a/animateditems/6100.png b/animateditems/6100.png
new file mode 100644
index 00000000..32fe22e2
Binary files /dev/null and b/animateditems/6100.png differ
diff --git a/animateditems/6101.gif b/animateditems/6101.gif
new file mode 100644
index 00000000..3304fa63
Binary files /dev/null and b/animateditems/6101.gif differ
diff --git a/animateditems/6101.png b/animateditems/6101.png
new file mode 100644
index 00000000..26e283a3
Binary files /dev/null and b/animateditems/6101.png differ
diff --git a/animateditems/6102.gif b/animateditems/6102.gif
new file mode 100644
index 00000000..8fdc5f10
Binary files /dev/null and b/animateditems/6102.gif differ
diff --git a/animateditems/6102.png b/animateditems/6102.png
new file mode 100644
index 00000000..2c02c98b
Binary files /dev/null and b/animateditems/6102.png differ
diff --git a/animateditems/6103.gif b/animateditems/6103.gif
new file mode 100644
index 00000000..329b4681
Binary files /dev/null and b/animateditems/6103.gif differ
diff --git a/animateditems/6103.png b/animateditems/6103.png
new file mode 100644
index 00000000..00f55c5d
Binary files /dev/null and b/animateditems/6103.png differ
diff --git a/animateditems/6104.gif b/animateditems/6104.gif
new file mode 100644
index 00000000..2f01ae73
Binary files /dev/null and b/animateditems/6104.gif differ
diff --git a/animateditems/6104.png b/animateditems/6104.png
new file mode 100644
index 00000000..3434cd69
Binary files /dev/null and b/animateditems/6104.png differ
diff --git a/animateditems/6105.gif b/animateditems/6105.gif
new file mode 100644
index 00000000..0e463472
Binary files /dev/null and b/animateditems/6105.gif differ
diff --git a/animateditems/6105.png b/animateditems/6105.png
new file mode 100644
index 00000000..9d6fe756
Binary files /dev/null and b/animateditems/6105.png differ
diff --git a/animateditems/6106.gif b/animateditems/6106.gif
new file mode 100644
index 00000000..f5a3a91d
Binary files /dev/null and b/animateditems/6106.gif differ
diff --git a/animateditems/6106.png b/animateditems/6106.png
new file mode 100644
index 00000000..276709c7
Binary files /dev/null and b/animateditems/6106.png differ
diff --git a/animateditems/6107.gif b/animateditems/6107.gif
new file mode 100644
index 00000000..ab22d1a5
Binary files /dev/null and b/animateditems/6107.gif differ
diff --git a/animateditems/6107.png b/animateditems/6107.png
new file mode 100644
index 00000000..7af119a2
Binary files /dev/null and b/animateditems/6107.png differ
diff --git a/animateditems/6108.gif b/animateditems/6108.gif
new file mode 100644
index 00000000..dd6aab75
Binary files /dev/null and b/animateditems/6108.gif differ
diff --git a/animateditems/6108.png b/animateditems/6108.png
new file mode 100644
index 00000000..f6d4e3ff
Binary files /dev/null and b/animateditems/6108.png differ
diff --git a/animateditems/6113.gif b/animateditems/6113.gif
new file mode 100644
index 00000000..2db57763
Binary files /dev/null and b/animateditems/6113.gif differ
diff --git a/animateditems/6113.png b/animateditems/6113.png
new file mode 100644
index 00000000..0ae26117
Binary files /dev/null and b/animateditems/6113.png differ
diff --git a/animateditems/6114.gif b/animateditems/6114.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/6114.gif differ
diff --git a/animateditems/6114.png b/animateditems/6114.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/6114.png differ
diff --git a/animateditems/6115.gif b/animateditems/6115.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/6115.gif differ
diff --git a/animateditems/6115.png b/animateditems/6115.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/6115.png differ
diff --git a/animateditems/6119.gif b/animateditems/6119.gif
new file mode 100644
index 00000000..2cfe00a7
Binary files /dev/null and b/animateditems/6119.gif differ
diff --git a/animateditems/6119.png b/animateditems/6119.png
new file mode 100644
index 00000000..b4f0a8b2
Binary files /dev/null and b/animateditems/6119.png differ
diff --git a/animateditems/6120.gif b/animateditems/6120.gif
new file mode 100644
index 00000000..4e145003
Binary files /dev/null and b/animateditems/6120.gif differ
diff --git a/animateditems/6120.png b/animateditems/6120.png
new file mode 100644
index 00000000..2f399850
Binary files /dev/null and b/animateditems/6120.png differ
diff --git a/animateditems/6124.gif b/animateditems/6124.gif
new file mode 100644
index 00000000..fbdd18df
Binary files /dev/null and b/animateditems/6124.gif differ
diff --git a/animateditems/6124.png b/animateditems/6124.png
new file mode 100644
index 00000000..d1a5c80a
Binary files /dev/null and b/animateditems/6124.png differ
diff --git a/animateditems/6125.gif b/animateditems/6125.gif
new file mode 100644
index 00000000..a99bb25b
Binary files /dev/null and b/animateditems/6125.gif differ
diff --git a/animateditems/6125.png b/animateditems/6125.png
new file mode 100644
index 00000000..57a30be2
Binary files /dev/null and b/animateditems/6125.png differ
diff --git a/animateditems/6126.gif b/animateditems/6126.gif
new file mode 100644
index 00000000..04a20988
Binary files /dev/null and b/animateditems/6126.gif differ
diff --git a/animateditems/6126.png b/animateditems/6126.png
new file mode 100644
index 00000000..e1a6385f
Binary files /dev/null and b/animateditems/6126.png differ
diff --git a/animateditems/6131.gif b/animateditems/6131.gif
new file mode 100644
index 00000000..c1582500
Binary files /dev/null and b/animateditems/6131.gif differ
diff --git a/animateditems/6131.png b/animateditems/6131.png
new file mode 100644
index 00000000..d7379a4c
Binary files /dev/null and b/animateditems/6131.png differ
diff --git a/animateditems/6132.gif b/animateditems/6132.gif
new file mode 100644
index 00000000..864a87d2
Binary files /dev/null and b/animateditems/6132.gif differ
diff --git a/animateditems/6132.png b/animateditems/6132.png
new file mode 100644
index 00000000..7b2f6380
Binary files /dev/null and b/animateditems/6132.png differ
diff --git a/animateditems/6277.gif b/animateditems/6277.gif
new file mode 100644
index 00000000..d9b9d2ca
Binary files /dev/null and b/animateditems/6277.gif differ
diff --git a/animateditems/6277.png b/animateditems/6277.png
new file mode 100644
index 00000000..0c05bed0
Binary files /dev/null and b/animateditems/6277.png differ
diff --git a/animateditems/6278.gif b/animateditems/6278.gif
new file mode 100644
index 00000000..65f72fa5
Binary files /dev/null and b/animateditems/6278.gif differ
diff --git a/animateditems/6278.png b/animateditems/6278.png
new file mode 100644
index 00000000..b4067542
Binary files /dev/null and b/animateditems/6278.png differ
diff --git a/animateditems/6279.gif b/animateditems/6279.gif
new file mode 100644
index 00000000..96dfa77a
Binary files /dev/null and b/animateditems/6279.gif differ
diff --git a/animateditems/6279.png b/animateditems/6279.png
new file mode 100644
index 00000000..aa101c28
Binary files /dev/null and b/animateditems/6279.png differ
diff --git a/animateditems/6280.gif b/animateditems/6280.gif
new file mode 100644
index 00000000..463b93d3
Binary files /dev/null and b/animateditems/6280.gif differ
diff --git a/animateditems/6280.png b/animateditems/6280.png
new file mode 100644
index 00000000..08a66179
Binary files /dev/null and b/animateditems/6280.png differ
diff --git a/animateditems/6300.gif b/animateditems/6300.gif
new file mode 100644
index 00000000..00e6f496
Binary files /dev/null and b/animateditems/6300.gif differ
diff --git a/animateditems/6300.png b/animateditems/6300.png
new file mode 100644
index 00000000..3371dd6f
Binary files /dev/null and b/animateditems/6300.png differ
diff --git a/animateditems/6301.gif b/animateditems/6301.gif
new file mode 100644
index 00000000..af4d5f3b
Binary files /dev/null and b/animateditems/6301.gif differ
diff --git a/animateditems/6301.png b/animateditems/6301.png
new file mode 100644
index 00000000..5e484f68
Binary files /dev/null and b/animateditems/6301.png differ
diff --git a/animateditems/6345.gif b/animateditems/6345.gif
new file mode 100644
index 00000000..2cb34e43
Binary files /dev/null and b/animateditems/6345.gif differ
diff --git a/animateditems/6345.png b/animateditems/6345.png
new file mode 100644
index 00000000..7e7ca444
Binary files /dev/null and b/animateditems/6345.png differ
diff --git a/animateditems/6346.gif b/animateditems/6346.gif
new file mode 100644
index 00000000..1af2ebe5
Binary files /dev/null and b/animateditems/6346.gif differ
diff --git a/animateditems/6346.png b/animateditems/6346.png
new file mode 100644
index 00000000..aa15693d
Binary files /dev/null and b/animateditems/6346.png differ
diff --git a/animateditems/6347.gif b/animateditems/6347.gif
new file mode 100644
index 00000000..a81dce89
Binary files /dev/null and b/animateditems/6347.gif differ
diff --git a/animateditems/6347.png b/animateditems/6347.png
new file mode 100644
index 00000000..a99157e6
Binary files /dev/null and b/animateditems/6347.png differ
diff --git a/animateditems/6349.gif b/animateditems/6349.gif
new file mode 100644
index 00000000..eb23b1a9
Binary files /dev/null and b/animateditems/6349.gif differ
diff --git a/animateditems/6349.png b/animateditems/6349.png
new file mode 100644
index 00000000..630a1aca
Binary files /dev/null and b/animateditems/6349.png differ
diff --git a/animateditems/6350.gif b/animateditems/6350.gif
new file mode 100644
index 00000000..f0ae5d5d
Binary files /dev/null and b/animateditems/6350.gif differ
diff --git a/animateditems/6350.png b/animateditems/6350.png
new file mode 100644
index 00000000..5f9f32f7
Binary files /dev/null and b/animateditems/6350.png differ
diff --git a/animateditems/6351.gif b/animateditems/6351.gif
new file mode 100644
index 00000000..8a90f2ef
Binary files /dev/null and b/animateditems/6351.gif differ
diff --git a/animateditems/6351.png b/animateditems/6351.png
new file mode 100644
index 00000000..aa6ad47b
Binary files /dev/null and b/animateditems/6351.png differ
diff --git a/animateditems/6355.gif b/animateditems/6355.gif
new file mode 100644
index 00000000..9cc4d313
Binary files /dev/null and b/animateditems/6355.gif differ
diff --git a/animateditems/6355.png b/animateditems/6355.png
new file mode 100644
index 00000000..26142bb1
Binary files /dev/null and b/animateditems/6355.png differ
diff --git a/animateditems/6372.gif b/animateditems/6372.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/6372.gif differ
diff --git a/animateditems/6372.png b/animateditems/6372.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/6372.png differ
diff --git a/animateditems/6373.gif b/animateditems/6373.gif
new file mode 100644
index 00000000..e0edf1c6
Binary files /dev/null and b/animateditems/6373.gif differ
diff --git a/animateditems/6373.png b/animateditems/6373.png
new file mode 100644
index 00000000..28fa91c1
Binary files /dev/null and b/animateditems/6373.png differ
diff --git a/animateditems/6387.gif b/animateditems/6387.gif
new file mode 100644
index 00000000..fc6dbc3c
Binary files /dev/null and b/animateditems/6387.gif differ
diff --git a/animateditems/6387.png b/animateditems/6387.png
new file mode 100644
index 00000000..cde31dcd
Binary files /dev/null and b/animateditems/6387.png differ
diff --git a/animateditems/6388.gif b/animateditems/6388.gif
new file mode 100644
index 00000000..a8af5e68
Binary files /dev/null and b/animateditems/6388.gif differ
diff --git a/animateditems/6388.png b/animateditems/6388.png
new file mode 100644
index 00000000..4f82cd14
Binary files /dev/null and b/animateditems/6388.png differ
diff --git a/animateditems/6391.gif b/animateditems/6391.gif
new file mode 100644
index 00000000..ab7d3996
Binary files /dev/null and b/animateditems/6391.gif differ
diff --git a/animateditems/6391.png b/animateditems/6391.png
new file mode 100644
index 00000000..ebd962ab
Binary files /dev/null and b/animateditems/6391.png differ
diff --git a/animateditems/6393.gif b/animateditems/6393.gif
new file mode 100644
index 00000000..131f6043
Binary files /dev/null and b/animateditems/6393.gif differ
diff --git a/animateditems/6393.png b/animateditems/6393.png
new file mode 100644
index 00000000..e45d5798
Binary files /dev/null and b/animateditems/6393.png differ
diff --git a/animateditems/6394.gif b/animateditems/6394.gif
new file mode 100644
index 00000000..cb9497ab
Binary files /dev/null and b/animateditems/6394.gif differ
diff --git a/animateditems/6394.png b/animateditems/6394.png
new file mode 100644
index 00000000..52fe503f
Binary files /dev/null and b/animateditems/6394.png differ
diff --git a/animateditems/6433.gif b/animateditems/6433.gif
new file mode 100644
index 00000000..db8917c2
Binary files /dev/null and b/animateditems/6433.gif differ
diff --git a/animateditems/6433.png b/animateditems/6433.png
new file mode 100644
index 00000000..98889e5c
Binary files /dev/null and b/animateditems/6433.png differ
diff --git a/animateditems/6489.gif b/animateditems/6489.gif
new file mode 100644
index 00000000..21912c28
Binary files /dev/null and b/animateditems/6489.gif differ
diff --git a/animateditems/6489.png b/animateditems/6489.png
new file mode 100644
index 00000000..79712226
Binary files /dev/null and b/animateditems/6489.png differ
diff --git a/animateditems/6490.gif b/animateditems/6490.gif
new file mode 100644
index 00000000..d9bbcd64
Binary files /dev/null and b/animateditems/6490.gif differ
diff --git a/animateditems/6490.png b/animateditems/6490.png
new file mode 100644
index 00000000..528052e1
Binary files /dev/null and b/animateditems/6490.png differ
diff --git a/animateditems/6492.gif b/animateditems/6492.gif
new file mode 100644
index 00000000..71cb31d8
Binary files /dev/null and b/animateditems/6492.gif differ
diff --git a/animateditems/6492.png b/animateditems/6492.png
new file mode 100644
index 00000000..c42b21cc
Binary files /dev/null and b/animateditems/6492.png differ
diff --git a/animateditems/6497.gif b/animateditems/6497.gif
new file mode 100644
index 00000000..f551a496
Binary files /dev/null and b/animateditems/6497.gif differ
diff --git a/animateditems/6497.png b/animateditems/6497.png
new file mode 100644
index 00000000..7f781a44
Binary files /dev/null and b/animateditems/6497.png differ
diff --git a/animateditems/6499.gif b/animateditems/6499.gif
new file mode 100644
index 00000000..a0ed7574
Binary files /dev/null and b/animateditems/6499.gif differ
diff --git a/animateditems/6499.png b/animateditems/6499.png
new file mode 100644
index 00000000..d95aa341
Binary files /dev/null and b/animateditems/6499.png differ
diff --git a/animateditems/6500.gif b/animateditems/6500.gif
new file mode 100644
index 00000000..2f5f8221
Binary files /dev/null and b/animateditems/6500.gif differ
diff --git a/animateditems/6500.png b/animateditems/6500.png
new file mode 100644
index 00000000..aca9f3ed
Binary files /dev/null and b/animateditems/6500.png differ
diff --git a/animateditems/6501.gif b/animateditems/6501.gif
new file mode 100644
index 00000000..90220207
Binary files /dev/null and b/animateditems/6501.gif differ
diff --git a/animateditems/6501.png b/animateditems/6501.png
new file mode 100644
index 00000000..b64f3104
Binary files /dev/null and b/animateditems/6501.png differ
diff --git a/animateditems/6502.gif b/animateditems/6502.gif
new file mode 100644
index 00000000..bb071ff7
Binary files /dev/null and b/animateditems/6502.gif differ
diff --git a/animateditems/6502.png b/animateditems/6502.png
new file mode 100644
index 00000000..35c5ec89
Binary files /dev/null and b/animateditems/6502.png differ
diff --git a/animateditems/6503.gif b/animateditems/6503.gif
new file mode 100644
index 00000000..7e6a9c2f
Binary files /dev/null and b/animateditems/6503.gif differ
diff --git a/animateditems/6503.png b/animateditems/6503.png
new file mode 100644
index 00000000..77fefb55
Binary files /dev/null and b/animateditems/6503.png differ
diff --git a/animateditems/6504.gif b/animateditems/6504.gif
new file mode 100644
index 00000000..5ff40d13
Binary files /dev/null and b/animateditems/6504.gif differ
diff --git a/animateditems/6504.png b/animateditems/6504.png
new file mode 100644
index 00000000..e9fe7d72
Binary files /dev/null and b/animateditems/6504.png differ
diff --git a/animateditems/6505.gif b/animateditems/6505.gif
new file mode 100644
index 00000000..2822a457
Binary files /dev/null and b/animateditems/6505.gif differ
diff --git a/animateditems/6505.png b/animateditems/6505.png
new file mode 100644
index 00000000..aee42cdf
Binary files /dev/null and b/animateditems/6505.png differ
diff --git a/animateditems/6506.gif b/animateditems/6506.gif
new file mode 100644
index 00000000..16b4a648
Binary files /dev/null and b/animateditems/6506.gif differ
diff --git a/animateditems/6506.png b/animateditems/6506.png
new file mode 100644
index 00000000..60ed0938
Binary files /dev/null and b/animateditems/6506.png differ
diff --git a/animateditems/6507.gif b/animateditems/6507.gif
new file mode 100644
index 00000000..16b4a648
Binary files /dev/null and b/animateditems/6507.gif differ
diff --git a/animateditems/6507.png b/animateditems/6507.png
new file mode 100644
index 00000000..60ed0938
Binary files /dev/null and b/animateditems/6507.png differ
diff --git a/animateditems/6508.gif b/animateditems/6508.gif
new file mode 100644
index 00000000..c17962e6
Binary files /dev/null and b/animateditems/6508.gif differ
diff --git a/animateditems/6508.png b/animateditems/6508.png
new file mode 100644
index 00000000..f4b170ba
Binary files /dev/null and b/animateditems/6508.png differ
diff --git a/animateditems/6509.gif b/animateditems/6509.gif
new file mode 100644
index 00000000..86da7ab3
Binary files /dev/null and b/animateditems/6509.gif differ
diff --git a/animateditems/6509.png b/animateditems/6509.png
new file mode 100644
index 00000000..6a5355f0
Binary files /dev/null and b/animateditems/6509.png differ
diff --git a/animateditems/6510.gif b/animateditems/6510.gif
new file mode 100644
index 00000000..86da7ab3
Binary files /dev/null and b/animateditems/6510.gif differ
diff --git a/animateditems/6510.png b/animateditems/6510.png
new file mode 100644
index 00000000..6a5355f0
Binary files /dev/null and b/animateditems/6510.png differ
diff --git a/animateditems/6511.gif b/animateditems/6511.gif
new file mode 100644
index 00000000..c17962e6
Binary files /dev/null and b/animateditems/6511.gif differ
diff --git a/animateditems/6511.png b/animateditems/6511.png
new file mode 100644
index 00000000..f4b170ba
Binary files /dev/null and b/animateditems/6511.png differ
diff --git a/animateditems/6512.gif b/animateditems/6512.gif
new file mode 100644
index 00000000..e04ed3c6
Binary files /dev/null and b/animateditems/6512.gif differ
diff --git a/animateditems/6512.png b/animateditems/6512.png
new file mode 100644
index 00000000..25ab30ca
Binary files /dev/null and b/animateditems/6512.png differ
diff --git a/animateditems/6523.gif b/animateditems/6523.gif
new file mode 100644
index 00000000..dc1aa5c8
Binary files /dev/null and b/animateditems/6523.gif differ
diff --git a/animateditems/6523.png b/animateditems/6523.png
new file mode 100644
index 00000000..c809e709
Binary files /dev/null and b/animateditems/6523.png differ
diff --git a/animateditems/6526.gif b/animateditems/6526.gif
new file mode 100644
index 00000000..437403a7
Binary files /dev/null and b/animateditems/6526.gif differ
diff --git a/animateditems/6526.png b/animateditems/6526.png
new file mode 100644
index 00000000..e9515f53
Binary files /dev/null and b/animateditems/6526.png differ
diff --git a/animateditems/6527.gif b/animateditems/6527.gif
new file mode 100644
index 00000000..7bbd3844
Binary files /dev/null and b/animateditems/6527.gif differ
diff --git a/animateditems/6527.png b/animateditems/6527.png
new file mode 100644
index 00000000..b7aa7bb2
Binary files /dev/null and b/animateditems/6527.png differ
diff --git a/animateditems/6528.gif b/animateditems/6528.gif
new file mode 100644
index 00000000..57122d22
Binary files /dev/null and b/animateditems/6528.gif differ
diff --git a/animateditems/6528.png b/animateditems/6528.png
new file mode 100644
index 00000000..41a15546
Binary files /dev/null and b/animateditems/6528.png differ
diff --git a/animateditems/6529.gif b/animateditems/6529.gif
new file mode 100644
index 00000000..aaf9126b
Binary files /dev/null and b/animateditems/6529.gif differ
diff --git a/animateditems/6529.png b/animateditems/6529.png
new file mode 100644
index 00000000..7659b228
Binary files /dev/null and b/animateditems/6529.png differ
diff --git a/animateditems/6530.gif b/animateditems/6530.gif
new file mode 100644
index 00000000..00af04aa
Binary files /dev/null and b/animateditems/6530.gif differ
diff --git a/animateditems/6530.png b/animateditems/6530.png
new file mode 100644
index 00000000..cbe58894
Binary files /dev/null and b/animateditems/6530.png differ
diff --git a/animateditems/6531.gif b/animateditems/6531.gif
new file mode 100644
index 00000000..6a3a3443
Binary files /dev/null and b/animateditems/6531.gif differ
diff --git a/animateditems/6531.png b/animateditems/6531.png
new file mode 100644
index 00000000..f76617ff
Binary files /dev/null and b/animateditems/6531.png differ
diff --git a/animateditems/6533.gif b/animateditems/6533.gif
new file mode 100644
index 00000000..f2832651
Binary files /dev/null and b/animateditems/6533.gif differ
diff --git a/animateditems/6533.png b/animateditems/6533.png
new file mode 100644
index 00000000..a7b079b2
Binary files /dev/null and b/animateditems/6533.png differ
diff --git a/animateditems/6534.gif b/animateditems/6534.gif
new file mode 100644
index 00000000..e83882b6
Binary files /dev/null and b/animateditems/6534.gif differ
diff --git a/animateditems/6534.png b/animateditems/6534.png
new file mode 100644
index 00000000..79600ea8
Binary files /dev/null and b/animateditems/6534.png differ
diff --git a/animateditems/6535.gif b/animateditems/6535.gif
new file mode 100644
index 00000000..4d3b1bfa
Binary files /dev/null and b/animateditems/6535.gif differ
diff --git a/animateditems/6535.png b/animateditems/6535.png
new file mode 100644
index 00000000..103a44b2
Binary files /dev/null and b/animateditems/6535.png differ
diff --git a/animateditems/6536.gif b/animateditems/6536.gif
new file mode 100644
index 00000000..1c6f2db1
Binary files /dev/null and b/animateditems/6536.gif differ
diff --git a/animateditems/6536.png b/animateditems/6536.png
new file mode 100644
index 00000000..05476847
Binary files /dev/null and b/animateditems/6536.png differ
diff --git a/animateditems/6537.gif b/animateditems/6537.gif
new file mode 100644
index 00000000..d3e72e19
Binary files /dev/null and b/animateditems/6537.gif differ
diff --git a/animateditems/6537.png b/animateditems/6537.png
new file mode 100644
index 00000000..bfb2e0ce
Binary files /dev/null and b/animateditems/6537.png differ
diff --git a/animateditems/6538.gif b/animateditems/6538.gif
new file mode 100644
index 00000000..f36c1708
Binary files /dev/null and b/animateditems/6538.gif differ
diff --git a/animateditems/6538.png b/animateditems/6538.png
new file mode 100644
index 00000000..4fb59d22
Binary files /dev/null and b/animateditems/6538.png differ
diff --git a/animateditems/6539.gif b/animateditems/6539.gif
new file mode 100644
index 00000000..8260c1a7
Binary files /dev/null and b/animateditems/6539.gif differ
diff --git a/animateditems/6539.png b/animateditems/6539.png
new file mode 100644
index 00000000..2dd30439
Binary files /dev/null and b/animateditems/6539.png differ
diff --git a/animateditems/6540.gif b/animateditems/6540.gif
new file mode 100644
index 00000000..7c87db99
Binary files /dev/null and b/animateditems/6540.gif differ
diff --git a/animateditems/6540.png b/animateditems/6540.png
new file mode 100644
index 00000000..e56a3879
Binary files /dev/null and b/animateditems/6540.png differ
diff --git a/animateditems/6541.gif b/animateditems/6541.gif
new file mode 100644
index 00000000..ae61b716
Binary files /dev/null and b/animateditems/6541.gif differ
diff --git a/animateditems/6541.png b/animateditems/6541.png
new file mode 100644
index 00000000..6e91bc09
Binary files /dev/null and b/animateditems/6541.png differ
diff --git a/animateditems/6542.gif b/animateditems/6542.gif
new file mode 100644
index 00000000..bda1c215
Binary files /dev/null and b/animateditems/6542.gif differ
diff --git a/animateditems/6542.png b/animateditems/6542.png
new file mode 100644
index 00000000..31ec326d
Binary files /dev/null and b/animateditems/6542.png differ
diff --git a/animateditems/6543.gif b/animateditems/6543.gif
new file mode 100644
index 00000000..9833619c
Binary files /dev/null and b/animateditems/6543.gif differ
diff --git a/animateditems/6543.png b/animateditems/6543.png
new file mode 100644
index 00000000..d746de18
Binary files /dev/null and b/animateditems/6543.png differ
diff --git a/animateditems/6544.gif b/animateditems/6544.gif
new file mode 100644
index 00000000..289c5317
Binary files /dev/null and b/animateditems/6544.gif differ
diff --git a/animateditems/6544.png b/animateditems/6544.png
new file mode 100644
index 00000000..c6164259
Binary files /dev/null and b/animateditems/6544.png differ
diff --git a/animateditems/6545.gif b/animateditems/6545.gif
new file mode 100644
index 00000000..0ceef0cd
Binary files /dev/null and b/animateditems/6545.gif differ
diff --git a/animateditems/6545.png b/animateditems/6545.png
new file mode 100644
index 00000000..06ab2871
Binary files /dev/null and b/animateditems/6545.png differ
diff --git a/animateditems/6546.gif b/animateditems/6546.gif
new file mode 100644
index 00000000..9f36199d
Binary files /dev/null and b/animateditems/6546.gif differ
diff --git a/animateditems/6546.png b/animateditems/6546.png
new file mode 100644
index 00000000..4de9b787
Binary files /dev/null and b/animateditems/6546.png differ
diff --git a/animateditems/6547.gif b/animateditems/6547.gif
new file mode 100644
index 00000000..17fa6604
Binary files /dev/null and b/animateditems/6547.gif differ
diff --git a/animateditems/6547.png b/animateditems/6547.png
new file mode 100644
index 00000000..baa6d027
Binary files /dev/null and b/animateditems/6547.png differ
diff --git a/animateditems/6548.gif b/animateditems/6548.gif
new file mode 100644
index 00000000..0212cc7e
Binary files /dev/null and b/animateditems/6548.gif differ
diff --git a/animateditems/6548.png b/animateditems/6548.png
new file mode 100644
index 00000000..f5b74620
Binary files /dev/null and b/animateditems/6548.png differ
diff --git a/animateditems/6549.gif b/animateditems/6549.gif
new file mode 100644
index 00000000..79fefff5
Binary files /dev/null and b/animateditems/6549.gif differ
diff --git a/animateditems/6549.png b/animateditems/6549.png
new file mode 100644
index 00000000..05380164
Binary files /dev/null and b/animateditems/6549.png differ
diff --git a/animateditems/6550.gif b/animateditems/6550.gif
new file mode 100644
index 00000000..07b068e2
Binary files /dev/null and b/animateditems/6550.gif differ
diff --git a/animateditems/6550.png b/animateditems/6550.png
new file mode 100644
index 00000000..eccded6c
Binary files /dev/null and b/animateditems/6550.png differ
diff --git a/animateditems/6551.gif b/animateditems/6551.gif
new file mode 100644
index 00000000..59002ac8
Binary files /dev/null and b/animateditems/6551.gif differ
diff --git a/animateditems/6551.png b/animateditems/6551.png
new file mode 100644
index 00000000..8615dc48
Binary files /dev/null and b/animateditems/6551.png differ
diff --git a/animateditems/6553.gif b/animateditems/6553.gif
new file mode 100644
index 00000000..dae08bf4
Binary files /dev/null and b/animateditems/6553.gif differ
diff --git a/animateditems/6553.png b/animateditems/6553.png
new file mode 100644
index 00000000..de17214b
Binary files /dev/null and b/animateditems/6553.png differ
diff --git a/animateditems/6556.gif b/animateditems/6556.gif
new file mode 100644
index 00000000..a1d2ac4d
Binary files /dev/null and b/animateditems/6556.gif differ
diff --git a/animateditems/6556.png b/animateditems/6556.png
new file mode 100644
index 00000000..d784640f
Binary files /dev/null and b/animateditems/6556.png differ
diff --git a/animateditems/6557.gif b/animateditems/6557.gif
new file mode 100644
index 00000000..75699fe2
Binary files /dev/null and b/animateditems/6557.gif differ
diff --git a/animateditems/6557.png b/animateditems/6557.png
new file mode 100644
index 00000000..369beb8f
Binary files /dev/null and b/animateditems/6557.png differ
diff --git a/animateditems/6558.gif b/animateditems/6558.gif
new file mode 100644
index 00000000..960a696c
Binary files /dev/null and b/animateditems/6558.gif differ
diff --git a/animateditems/6558.png b/animateditems/6558.png
new file mode 100644
index 00000000..1ec92d42
Binary files /dev/null and b/animateditems/6558.png differ
diff --git a/animateditems/6561.gif b/animateditems/6561.gif
new file mode 100644
index 00000000..4da629ad
Binary files /dev/null and b/animateditems/6561.gif differ
diff --git a/animateditems/6561.png b/animateditems/6561.png
new file mode 100644
index 00000000..5a8b0e84
Binary files /dev/null and b/animateditems/6561.png differ
diff --git a/animateditems/6566.gif b/animateditems/6566.gif
new file mode 100644
index 00000000..b948956c
Binary files /dev/null and b/animateditems/6566.gif differ
diff --git a/animateditems/6566.png b/animateditems/6566.png
new file mode 100644
index 00000000..2545ce7c
Binary files /dev/null and b/animateditems/6566.png differ
diff --git a/animateditems/6567.gif b/animateditems/6567.gif
new file mode 100644
index 00000000..e04ed3c6
Binary files /dev/null and b/animateditems/6567.gif differ
diff --git a/animateditems/6567.png b/animateditems/6567.png
new file mode 100644
index 00000000..25ab30ca
Binary files /dev/null and b/animateditems/6567.png differ
diff --git a/animateditems/6568.gif b/animateditems/6568.gif
new file mode 100644
index 00000000..42c84416
Binary files /dev/null and b/animateditems/6568.gif differ
diff --git a/animateditems/6568.png b/animateditems/6568.png
new file mode 100644
index 00000000..7f18ad4c
Binary files /dev/null and b/animateditems/6568.png differ
diff --git a/animateditems/6569.gif b/animateditems/6569.gif
new file mode 100644
index 00000000..c9c84e09
Binary files /dev/null and b/animateditems/6569.gif differ
diff --git a/animateditems/6569.png b/animateditems/6569.png
new file mode 100644
index 00000000..319e64f1
Binary files /dev/null and b/animateditems/6569.png differ
diff --git a/animateditems/6570.gif b/animateditems/6570.gif
new file mode 100644
index 00000000..67c3b685
Binary files /dev/null and b/animateditems/6570.gif differ
diff --git a/animateditems/6570.png b/animateditems/6570.png
new file mode 100644
index 00000000..92eb68dc
Binary files /dev/null and b/animateditems/6570.png differ
diff --git a/animateditems/6571.gif b/animateditems/6571.gif
new file mode 100644
index 00000000..5c1cc274
Binary files /dev/null and b/animateditems/6571.gif differ
diff --git a/animateditems/6571.png b/animateditems/6571.png
new file mode 100644
index 00000000..a0b83ad3
Binary files /dev/null and b/animateditems/6571.png differ
diff --git a/animateditems/6572.gif b/animateditems/6572.gif
new file mode 100644
index 00000000..3b618054
Binary files /dev/null and b/animateditems/6572.gif differ
diff --git a/animateditems/6572.png b/animateditems/6572.png
new file mode 100644
index 00000000..572e6288
Binary files /dev/null and b/animateditems/6572.png differ
diff --git a/animateditems/6573.gif b/animateditems/6573.gif
new file mode 100644
index 00000000..3b618054
Binary files /dev/null and b/animateditems/6573.gif differ
diff --git a/animateditems/6573.png b/animateditems/6573.png
new file mode 100644
index 00000000..572e6288
Binary files /dev/null and b/animateditems/6573.png differ
diff --git a/animateditems/6574.gif b/animateditems/6574.gif
new file mode 100644
index 00000000..87c334a9
Binary files /dev/null and b/animateditems/6574.gif differ
diff --git a/animateditems/6574.png b/animateditems/6574.png
new file mode 100644
index 00000000..73b74b61
Binary files /dev/null and b/animateditems/6574.png differ
diff --git a/animateditems/6575.gif b/animateditems/6575.gif
new file mode 100644
index 00000000..6e8e3033
Binary files /dev/null and b/animateditems/6575.gif differ
diff --git a/animateditems/6575.png b/animateditems/6575.png
new file mode 100644
index 00000000..78adf736
Binary files /dev/null and b/animateditems/6575.png differ
diff --git a/animateditems/6576.gif b/animateditems/6576.gif
new file mode 100644
index 00000000..49e89cc7
Binary files /dev/null and b/animateditems/6576.gif differ
diff --git a/animateditems/6576.png b/animateditems/6576.png
new file mode 100644
index 00000000..8f5c0eea
Binary files /dev/null and b/animateditems/6576.png differ
diff --git a/animateditems/6577.gif b/animateditems/6577.gif
new file mode 100644
index 00000000..6e8e3033
Binary files /dev/null and b/animateditems/6577.gif differ
diff --git a/animateditems/6577.png b/animateditems/6577.png
new file mode 100644
index 00000000..78adf736
Binary files /dev/null and b/animateditems/6577.png differ
diff --git a/animateditems/6578.gif b/animateditems/6578.gif
new file mode 100644
index 00000000..878ca8be
Binary files /dev/null and b/animateditems/6578.gif differ
diff --git a/animateditems/6578.png b/animateditems/6578.png
new file mode 100644
index 00000000..a98af963
Binary files /dev/null and b/animateditems/6578.png differ
diff --git a/animateditems/6579.gif b/animateditems/6579.gif
new file mode 100644
index 00000000..0926e2b1
Binary files /dev/null and b/animateditems/6579.gif differ
diff --git a/animateditems/6579.png b/animateditems/6579.png
new file mode 100644
index 00000000..f4e072ed
Binary files /dev/null and b/animateditems/6579.png differ
diff --git a/animateditems/7.gif b/animateditems/7.gif
new file mode 100644
index 00000000..0a4ef989
Binary files /dev/null and b/animateditems/7.gif differ
diff --git a/animateditems/7140.gif b/animateditems/7140.gif
new file mode 100644
index 00000000..fff223c6
Binary files /dev/null and b/animateditems/7140.gif differ
diff --git a/animateditems/7140.png b/animateditems/7140.png
new file mode 100644
index 00000000..5276abb1
Binary files /dev/null and b/animateditems/7140.png differ
diff --git a/animateditems/7141.gif b/animateditems/7141.gif
new file mode 100644
index 00000000..fff223c6
Binary files /dev/null and b/animateditems/7141.gif differ
diff --git a/animateditems/7141.png b/animateditems/7141.png
new file mode 100644
index 00000000..5276abb1
Binary files /dev/null and b/animateditems/7141.png differ
diff --git a/animateditems/7158.gif b/animateditems/7158.gif
new file mode 100644
index 00000000..dffc0abb
Binary files /dev/null and b/animateditems/7158.gif differ
diff --git a/animateditems/7158.png b/animateditems/7158.png
new file mode 100644
index 00000000..f91d7ab3
Binary files /dev/null and b/animateditems/7158.png differ
diff --git a/animateditems/7159.gif b/animateditems/7159.gif
new file mode 100644
index 00000000..17658f07
Binary files /dev/null and b/animateditems/7159.gif differ
diff --git a/animateditems/7159.png b/animateditems/7159.png
new file mode 100644
index 00000000..cf118b48
Binary files /dev/null and b/animateditems/7159.png differ
diff --git a/animateditems/7183.gif b/animateditems/7183.gif
new file mode 100644
index 00000000..42555ff4
Binary files /dev/null and b/animateditems/7183.gif differ
diff --git a/animateditems/7183.png b/animateditems/7183.png
new file mode 100644
index 00000000..eafdb3e3
Binary files /dev/null and b/animateditems/7183.png differ
diff --git a/animateditems/7184.gif b/animateditems/7184.gif
new file mode 100644
index 00000000..0cb87c85
Binary files /dev/null and b/animateditems/7184.gif differ
diff --git a/animateditems/7184.png b/animateditems/7184.png
new file mode 100644
index 00000000..2b980f0b
Binary files /dev/null and b/animateditems/7184.png differ
diff --git a/animateditems/7242.gif b/animateditems/7242.gif
new file mode 100644
index 00000000..5cd10386
Binary files /dev/null and b/animateditems/7242.gif differ
diff --git a/animateditems/7242.png b/animateditems/7242.png
new file mode 100644
index 00000000..737240ad
Binary files /dev/null and b/animateditems/7242.png differ
diff --git a/animateditems/7243.gif b/animateditems/7243.gif
new file mode 100644
index 00000000..a220507a
Binary files /dev/null and b/animateditems/7243.gif differ
diff --git a/animateditems/7243.png b/animateditems/7243.png
new file mode 100644
index 00000000..7f95680b
Binary files /dev/null and b/animateditems/7243.png differ
diff --git a/animateditems/7244.gif b/animateditems/7244.gif
new file mode 100644
index 00000000..a220507a
Binary files /dev/null and b/animateditems/7244.gif differ
diff --git a/animateditems/7244.png b/animateditems/7244.png
new file mode 100644
index 00000000..7f95680b
Binary files /dev/null and b/animateditems/7244.png differ
diff --git a/animateditems/7245.gif b/animateditems/7245.gif
new file mode 100644
index 00000000..8b5028bf
Binary files /dev/null and b/animateditems/7245.gif differ
diff --git a/animateditems/7245.png b/animateditems/7245.png
new file mode 100644
index 00000000..1fac2868
Binary files /dev/null and b/animateditems/7245.png differ
diff --git a/animateditems/7246.gif b/animateditems/7246.gif
new file mode 100644
index 00000000..c330eff5
Binary files /dev/null and b/animateditems/7246.gif differ
diff --git a/animateditems/7246.png b/animateditems/7246.png
new file mode 100644
index 00000000..4dc478d0
Binary files /dev/null and b/animateditems/7246.png differ
diff --git a/animateditems/7247.gif b/animateditems/7247.gif
new file mode 100644
index 00000000..17fa6604
Binary files /dev/null and b/animateditems/7247.gif differ
diff --git a/animateditems/7247.png b/animateditems/7247.png
new file mode 100644
index 00000000..baa6d027
Binary files /dev/null and b/animateditems/7247.png differ
diff --git a/animateditems/7248.gif b/animateditems/7248.gif
new file mode 100644
index 00000000..e246edc5
Binary files /dev/null and b/animateditems/7248.gif differ
diff --git a/animateditems/7248.png b/animateditems/7248.png
new file mode 100644
index 00000000..bc404e15
Binary files /dev/null and b/animateditems/7248.png differ
diff --git a/animateditems/7249.gif b/animateditems/7249.gif
new file mode 100644
index 00000000..23ea372d
Binary files /dev/null and b/animateditems/7249.gif differ
diff --git a/animateditems/7249.png b/animateditems/7249.png
new file mode 100644
index 00000000..9ddb8931
Binary files /dev/null and b/animateditems/7249.png differ
diff --git a/animateditems/7250.gif b/animateditems/7250.gif
new file mode 100644
index 00000000..498deb7d
Binary files /dev/null and b/animateditems/7250.gif differ
diff --git a/animateditems/7250.png b/animateditems/7250.png
new file mode 100644
index 00000000..6e6657ac
Binary files /dev/null and b/animateditems/7250.png differ
diff --git a/animateditems/7251.gif b/animateditems/7251.gif
new file mode 100644
index 00000000..79fefff5
Binary files /dev/null and b/animateditems/7251.gif differ
diff --git a/animateditems/7251.png b/animateditems/7251.png
new file mode 100644
index 00000000..05380164
Binary files /dev/null and b/animateditems/7251.png differ
diff --git a/animateditems/7253.gif b/animateditems/7253.gif
new file mode 100644
index 00000000..2bf189a8
Binary files /dev/null and b/animateditems/7253.gif differ
diff --git a/animateditems/7253.png b/animateditems/7253.png
new file mode 100644
index 00000000..031835fd
Binary files /dev/null and b/animateditems/7253.png differ
diff --git a/animateditems/7281.gif b/animateditems/7281.gif
new file mode 100644
index 00000000..3fabeffb
Binary files /dev/null and b/animateditems/7281.gif differ
diff --git a/animateditems/7281.png b/animateditems/7281.png
new file mode 100644
index 00000000..9a0bb1ec
Binary files /dev/null and b/animateditems/7281.png differ
diff --git a/animateditems/7286.gif b/animateditems/7286.gif
new file mode 100644
index 00000000..c330eff5
Binary files /dev/null and b/animateditems/7286.gif differ
diff --git a/animateditems/7286.png b/animateditems/7286.png
new file mode 100644
index 00000000..4dc478d0
Binary files /dev/null and b/animateditems/7286.png differ
diff --git a/animateditems/7289.gif b/animateditems/7289.gif
new file mode 100644
index 00000000..7ca2dce3
Binary files /dev/null and b/animateditems/7289.gif differ
diff --git a/animateditems/7289.png b/animateditems/7289.png
new file mode 100644
index 00000000..281dcb88
Binary files /dev/null and b/animateditems/7289.png differ
diff --git a/animateditems/7290.gif b/animateditems/7290.gif
new file mode 100644
index 00000000..895abd49
Binary files /dev/null and b/animateditems/7290.gif differ
diff --git a/animateditems/7290.png b/animateditems/7290.png
new file mode 100644
index 00000000..d8e199b5
Binary files /dev/null and b/animateditems/7290.png differ
diff --git a/animateditems/7314.gif b/animateditems/7314.gif
new file mode 100644
index 00000000..e196a8dd
Binary files /dev/null and b/animateditems/7314.gif differ
diff --git a/animateditems/7314.png b/animateditems/7314.png
new file mode 100644
index 00000000..12b75da7
Binary files /dev/null and b/animateditems/7314.png differ
diff --git a/animateditems/7315.gif b/animateditems/7315.gif
new file mode 100644
index 00000000..5cd10386
Binary files /dev/null and b/animateditems/7315.gif differ
diff --git a/animateditems/7315.png b/animateditems/7315.png
new file mode 100644
index 00000000..737240ad
Binary files /dev/null and b/animateditems/7315.png differ
diff --git a/animateditems/7342.gif b/animateditems/7342.gif
new file mode 100644
index 00000000..f553327b
Binary files /dev/null and b/animateditems/7342.gif differ
diff --git a/animateditems/7342.png b/animateditems/7342.png
new file mode 100644
index 00000000..708c9c90
Binary files /dev/null and b/animateditems/7342.png differ
diff --git a/animateditems/7343.gif b/animateditems/7343.gif
new file mode 100644
index 00000000..8a1bb39f
Binary files /dev/null and b/animateditems/7343.gif differ
diff --git a/animateditems/7343.png b/animateditems/7343.png
new file mode 100644
index 00000000..e3ea3a72
Binary files /dev/null and b/animateditems/7343.png differ
diff --git a/animateditems/7363.gif b/animateditems/7363.gif
new file mode 100644
index 00000000..ce48be25
Binary files /dev/null and b/animateditems/7363.gif differ
diff --git a/animateditems/7363.png b/animateditems/7363.png
new file mode 100644
index 00000000..da1b25fc
Binary files /dev/null and b/animateditems/7363.png differ
diff --git a/animateditems/7364.gif b/animateditems/7364.gif
new file mode 100644
index 00000000..933d0a25
Binary files /dev/null and b/animateditems/7364.gif differ
diff --git a/animateditems/7364.png b/animateditems/7364.png
new file mode 100644
index 00000000..3b75927c
Binary files /dev/null and b/animateditems/7364.png differ
diff --git a/animateditems/7365.gif b/animateditems/7365.gif
new file mode 100644
index 00000000..792bf0f8
Binary files /dev/null and b/animateditems/7365.gif differ
diff --git a/animateditems/7365.png b/animateditems/7365.png
new file mode 100644
index 00000000..640dbdd0
Binary files /dev/null and b/animateditems/7365.png differ
diff --git a/animateditems/7366.gif b/animateditems/7366.gif
new file mode 100644
index 00000000..1bd44a1c
Binary files /dev/null and b/animateditems/7366.gif differ
diff --git a/animateditems/7366.png b/animateditems/7366.png
new file mode 100644
index 00000000..bbcdd3b9
Binary files /dev/null and b/animateditems/7366.png differ
diff --git a/animateditems/7367.gif b/animateditems/7367.gif
new file mode 100644
index 00000000..afcdc4ad
Binary files /dev/null and b/animateditems/7367.gif differ
diff --git a/animateditems/7367.png b/animateditems/7367.png
new file mode 100644
index 00000000..8e0469f5
Binary files /dev/null and b/animateditems/7367.png differ
diff --git a/animateditems/7368.gif b/animateditems/7368.gif
new file mode 100644
index 00000000..83b207ba
Binary files /dev/null and b/animateditems/7368.gif differ
diff --git a/animateditems/7368.png b/animateditems/7368.png
new file mode 100644
index 00000000..13c2af58
Binary files /dev/null and b/animateditems/7368.png differ
diff --git a/animateditems/7369.gif b/animateditems/7369.gif
new file mode 100644
index 00000000..84100058
Binary files /dev/null and b/animateditems/7369.gif differ
diff --git a/animateditems/7369.png b/animateditems/7369.png
new file mode 100644
index 00000000..25b1bd7a
Binary files /dev/null and b/animateditems/7369.png differ
diff --git a/animateditems/7370.gif b/animateditems/7370.gif
new file mode 100644
index 00000000..1073f0d7
Binary files /dev/null and b/animateditems/7370.gif differ
diff --git a/animateditems/7370.png b/animateditems/7370.png
new file mode 100644
index 00000000..86cd33de
Binary files /dev/null and b/animateditems/7370.png differ
diff --git a/animateditems/7371.gif b/animateditems/7371.gif
new file mode 100644
index 00000000..d3b00d73
Binary files /dev/null and b/animateditems/7371.gif differ
diff --git a/animateditems/7371.png b/animateditems/7371.png
new file mode 100644
index 00000000..3e997f4c
Binary files /dev/null and b/animateditems/7371.png differ
diff --git a/animateditems/7372.gif b/animateditems/7372.gif
new file mode 100644
index 00000000..3bbfa719
Binary files /dev/null and b/animateditems/7372.gif differ
diff --git a/animateditems/7372.png b/animateditems/7372.png
new file mode 100644
index 00000000..a689206c
Binary files /dev/null and b/animateditems/7372.png differ
diff --git a/animateditems/7373.gif b/animateditems/7373.gif
new file mode 100644
index 00000000..6d98ac6e
Binary files /dev/null and b/animateditems/7373.gif differ
diff --git a/animateditems/7373.png b/animateditems/7373.png
new file mode 100644
index 00000000..8fdf37fc
Binary files /dev/null and b/animateditems/7373.png differ
diff --git a/animateditems/7374.gif b/animateditems/7374.gif
new file mode 100644
index 00000000..2b40c359
Binary files /dev/null and b/animateditems/7374.gif differ
diff --git a/animateditems/7374.png b/animateditems/7374.png
new file mode 100644
index 00000000..eddaea5b
Binary files /dev/null and b/animateditems/7374.png differ
diff --git a/animateditems/7375.gif b/animateditems/7375.gif
new file mode 100644
index 00000000..56bd4d3b
Binary files /dev/null and b/animateditems/7375.gif differ
diff --git a/animateditems/7375.png b/animateditems/7375.png
new file mode 100644
index 00000000..be0774cd
Binary files /dev/null and b/animateditems/7375.png differ
diff --git a/animateditems/7376.gif b/animateditems/7376.gif
new file mode 100644
index 00000000..c1cdb4c3
Binary files /dev/null and b/animateditems/7376.gif differ
diff --git a/animateditems/7376.png b/animateditems/7376.png
new file mode 100644
index 00000000..0eb280de
Binary files /dev/null and b/animateditems/7376.png differ
diff --git a/animateditems/7377.gif b/animateditems/7377.gif
new file mode 100644
index 00000000..4486ce09
Binary files /dev/null and b/animateditems/7377.gif differ
diff --git a/animateditems/7377.png b/animateditems/7377.png
new file mode 100644
index 00000000..681db9ca
Binary files /dev/null and b/animateditems/7377.png differ
diff --git a/animateditems/7378.gif b/animateditems/7378.gif
new file mode 100644
index 00000000..438f7710
Binary files /dev/null and b/animateditems/7378.gif differ
diff --git a/animateditems/7378.png b/animateditems/7378.png
new file mode 100644
index 00000000..bb0075db
Binary files /dev/null and b/animateditems/7378.png differ
diff --git a/animateditems/7379.gif b/animateditems/7379.gif
new file mode 100644
index 00000000..9f526983
Binary files /dev/null and b/animateditems/7379.gif differ
diff --git a/animateditems/7379.png b/animateditems/7379.png
new file mode 100644
index 00000000..65ce235b
Binary files /dev/null and b/animateditems/7379.png differ
diff --git a/animateditems/7380.gif b/animateditems/7380.gif
new file mode 100644
index 00000000..45368692
Binary files /dev/null and b/animateditems/7380.gif differ
diff --git a/animateditems/7380.png b/animateditems/7380.png
new file mode 100644
index 00000000..6f135852
Binary files /dev/null and b/animateditems/7380.png differ
diff --git a/animateditems/7381.gif b/animateditems/7381.gif
new file mode 100644
index 00000000..1d33e92f
Binary files /dev/null and b/animateditems/7381.gif differ
diff --git a/animateditems/7381.png b/animateditems/7381.png
new file mode 100644
index 00000000..726fbacd
Binary files /dev/null and b/animateditems/7381.png differ
diff --git a/animateditems/7382.gif b/animateditems/7382.gif
new file mode 100644
index 00000000..f2258896
Binary files /dev/null and b/animateditems/7382.gif differ
diff --git a/animateditems/7382.png b/animateditems/7382.png
new file mode 100644
index 00000000..fa7f1860
Binary files /dev/null and b/animateditems/7382.png differ
diff --git a/animateditems/7383.gif b/animateditems/7383.gif
new file mode 100644
index 00000000..9cf688ab
Binary files /dev/null and b/animateditems/7383.gif differ
diff --git a/animateditems/7383.png b/animateditems/7383.png
new file mode 100644
index 00000000..f911bf85
Binary files /dev/null and b/animateditems/7383.png differ
diff --git a/animateditems/7384.gif b/animateditems/7384.gif
new file mode 100644
index 00000000..0b7292d7
Binary files /dev/null and b/animateditems/7384.gif differ
diff --git a/animateditems/7384.png b/animateditems/7384.png
new file mode 100644
index 00000000..4eb01090
Binary files /dev/null and b/animateditems/7384.png differ
diff --git a/animateditems/7385.gif b/animateditems/7385.gif
new file mode 100644
index 00000000..52cb945c
Binary files /dev/null and b/animateditems/7385.gif differ
diff --git a/animateditems/7385.png b/animateditems/7385.png
new file mode 100644
index 00000000..017c9701
Binary files /dev/null and b/animateditems/7385.png differ
diff --git a/animateditems/7386.gif b/animateditems/7386.gif
new file mode 100644
index 00000000..57e24bb1
Binary files /dev/null and b/animateditems/7386.gif differ
diff --git a/animateditems/7386.png b/animateditems/7386.png
new file mode 100644
index 00000000..92af5f5d
Binary files /dev/null and b/animateditems/7386.png differ
diff --git a/animateditems/7387.gif b/animateditems/7387.gif
new file mode 100644
index 00000000..1229ed25
Binary files /dev/null and b/animateditems/7387.gif differ
diff --git a/animateditems/7387.png b/animateditems/7387.png
new file mode 100644
index 00000000..45e87d55
Binary files /dev/null and b/animateditems/7387.png differ
diff --git a/animateditems/7388.gif b/animateditems/7388.gif
new file mode 100644
index 00000000..9909fb51
Binary files /dev/null and b/animateditems/7388.gif differ
diff --git a/animateditems/7388.png b/animateditems/7388.png
new file mode 100644
index 00000000..e5b18e75
Binary files /dev/null and b/animateditems/7388.png differ
diff --git a/animateditems/7389.gif b/animateditems/7389.gif
new file mode 100644
index 00000000..14fdc94d
Binary files /dev/null and b/animateditems/7389.gif differ
diff --git a/animateditems/7389.png b/animateditems/7389.png
new file mode 100644
index 00000000..0e85c414
Binary files /dev/null and b/animateditems/7389.png differ
diff --git a/animateditems/7390.gif b/animateditems/7390.gif
new file mode 100644
index 00000000..1deb3967
Binary files /dev/null and b/animateditems/7390.gif differ
diff --git a/animateditems/7390.png b/animateditems/7390.png
new file mode 100644
index 00000000..d0e5b4e7
Binary files /dev/null and b/animateditems/7390.png differ
diff --git a/animateditems/7391.gif b/animateditems/7391.gif
new file mode 100644
index 00000000..4290eef6
Binary files /dev/null and b/animateditems/7391.gif differ
diff --git a/animateditems/7391.png b/animateditems/7391.png
new file mode 100644
index 00000000..d9f96cd5
Binary files /dev/null and b/animateditems/7391.png differ
diff --git a/animateditems/7392.gif b/animateditems/7392.gif
new file mode 100644
index 00000000..1c60b22c
Binary files /dev/null and b/animateditems/7392.gif differ
diff --git a/animateditems/7392.png b/animateditems/7392.png
new file mode 100644
index 00000000..5b1dd0a1
Binary files /dev/null and b/animateditems/7392.png differ
diff --git a/animateditems/7393.gif b/animateditems/7393.gif
new file mode 100644
index 00000000..1ea96815
Binary files /dev/null and b/animateditems/7393.gif differ
diff --git a/animateditems/7393.png b/animateditems/7393.png
new file mode 100644
index 00000000..d0631a86
Binary files /dev/null and b/animateditems/7393.png differ
diff --git a/animateditems/7394.gif b/animateditems/7394.gif
new file mode 100644
index 00000000..71d1a4c0
Binary files /dev/null and b/animateditems/7394.gif differ
diff --git a/animateditems/7394.png b/animateditems/7394.png
new file mode 100644
index 00000000..2091ed0c
Binary files /dev/null and b/animateditems/7394.png differ
diff --git a/animateditems/7395.gif b/animateditems/7395.gif
new file mode 100644
index 00000000..a6188d53
Binary files /dev/null and b/animateditems/7395.gif differ
diff --git a/animateditems/7395.png b/animateditems/7395.png
new file mode 100644
index 00000000..7a8eff03
Binary files /dev/null and b/animateditems/7395.png differ
diff --git a/animateditems/7396.gif b/animateditems/7396.gif
new file mode 100644
index 00000000..76cd6240
Binary files /dev/null and b/animateditems/7396.gif differ
diff --git a/animateditems/7396.png b/animateditems/7396.png
new file mode 100644
index 00000000..ae77534b
Binary files /dev/null and b/animateditems/7396.png differ
diff --git a/animateditems/7397.gif b/animateditems/7397.gif
new file mode 100644
index 00000000..bc838e2d
Binary files /dev/null and b/animateditems/7397.gif differ
diff --git a/animateditems/7397.png b/animateditems/7397.png
new file mode 100644
index 00000000..e06a7fdb
Binary files /dev/null and b/animateditems/7397.png differ
diff --git a/animateditems/7398.gif b/animateditems/7398.gif
new file mode 100644
index 00000000..515bcb45
Binary files /dev/null and b/animateditems/7398.gif differ
diff --git a/animateditems/7398.png b/animateditems/7398.png
new file mode 100644
index 00000000..f7fdb352
Binary files /dev/null and b/animateditems/7398.png differ
diff --git a/animateditems/7399.gif b/animateditems/7399.gif
new file mode 100644
index 00000000..4461a97f
Binary files /dev/null and b/animateditems/7399.gif differ
diff --git a/animateditems/7399.png b/animateditems/7399.png
new file mode 100644
index 00000000..2e97562d
Binary files /dev/null and b/animateditems/7399.png differ
diff --git a/animateditems/7400.gif b/animateditems/7400.gif
new file mode 100644
index 00000000..df5226ba
Binary files /dev/null and b/animateditems/7400.gif differ
diff --git a/animateditems/7400.png b/animateditems/7400.png
new file mode 100644
index 00000000..5582252c
Binary files /dev/null and b/animateditems/7400.png differ
diff --git a/animateditems/7401.gif b/animateditems/7401.gif
new file mode 100644
index 00000000..2ad12fcf
Binary files /dev/null and b/animateditems/7401.gif differ
diff --git a/animateditems/7401.png b/animateditems/7401.png
new file mode 100644
index 00000000..0816d37f
Binary files /dev/null and b/animateditems/7401.png differ
diff --git a/animateditems/7402.gif b/animateditems/7402.gif
new file mode 100644
index 00000000..97441ea8
Binary files /dev/null and b/animateditems/7402.gif differ
diff --git a/animateditems/7402.png b/animateditems/7402.png
new file mode 100644
index 00000000..52904461
Binary files /dev/null and b/animateditems/7402.png differ
diff --git a/animateditems/7403.gif b/animateditems/7403.gif
new file mode 100644
index 00000000..434e7af5
Binary files /dev/null and b/animateditems/7403.gif differ
diff --git a/animateditems/7403.png b/animateditems/7403.png
new file mode 100644
index 00000000..52bbca3e
Binary files /dev/null and b/animateditems/7403.png differ
diff --git a/animateditems/7404.gif b/animateditems/7404.gif
new file mode 100644
index 00000000..1f9184b6
Binary files /dev/null and b/animateditems/7404.gif differ
diff --git a/animateditems/7404.png b/animateditems/7404.png
new file mode 100644
index 00000000..7425004b
Binary files /dev/null and b/animateditems/7404.png differ
diff --git a/animateditems/7405.gif b/animateditems/7405.gif
new file mode 100644
index 00000000..a5caf9b3
Binary files /dev/null and b/animateditems/7405.gif differ
diff --git a/animateditems/7405.png b/animateditems/7405.png
new file mode 100644
index 00000000..82e1c1fe
Binary files /dev/null and b/animateditems/7405.png differ
diff --git a/animateditems/7406.gif b/animateditems/7406.gif
new file mode 100644
index 00000000..eefae56a
Binary files /dev/null and b/animateditems/7406.gif differ
diff --git a/animateditems/7406.png b/animateditems/7406.png
new file mode 100644
index 00000000..fa5852b5
Binary files /dev/null and b/animateditems/7406.png differ
diff --git a/animateditems/7407.gif b/animateditems/7407.gif
new file mode 100644
index 00000000..e551c7a2
Binary files /dev/null and b/animateditems/7407.gif differ
diff --git a/animateditems/7407.png b/animateditems/7407.png
new file mode 100644
index 00000000..1b00a595
Binary files /dev/null and b/animateditems/7407.png differ
diff --git a/animateditems/7408.gif b/animateditems/7408.gif
new file mode 100644
index 00000000..eea2dbc6
Binary files /dev/null and b/animateditems/7408.gif differ
diff --git a/animateditems/7408.png b/animateditems/7408.png
new file mode 100644
index 00000000..60a6c691
Binary files /dev/null and b/animateditems/7408.png differ
diff --git a/animateditems/7409.gif b/animateditems/7409.gif
new file mode 100644
index 00000000..907ae440
Binary files /dev/null and b/animateditems/7409.gif differ
diff --git a/animateditems/7409.png b/animateditems/7409.png
new file mode 100644
index 00000000..b3ed0893
Binary files /dev/null and b/animateditems/7409.png differ
diff --git a/animateditems/7410.gif b/animateditems/7410.gif
new file mode 100644
index 00000000..a9d28e57
Binary files /dev/null and b/animateditems/7410.gif differ
diff --git a/animateditems/7410.png b/animateditems/7410.png
new file mode 100644
index 00000000..c34af914
Binary files /dev/null and b/animateditems/7410.png differ
diff --git a/animateditems/7411.gif b/animateditems/7411.gif
new file mode 100644
index 00000000..29a3b95b
Binary files /dev/null and b/animateditems/7411.gif differ
diff --git a/animateditems/7411.png b/animateditems/7411.png
new file mode 100644
index 00000000..1405c5b2
Binary files /dev/null and b/animateditems/7411.png differ
diff --git a/animateditems/7412.gif b/animateditems/7412.gif
new file mode 100644
index 00000000..ff991e96
Binary files /dev/null and b/animateditems/7412.gif differ
diff --git a/animateditems/7412.png b/animateditems/7412.png
new file mode 100644
index 00000000..021342b7
Binary files /dev/null and b/animateditems/7412.png differ
diff --git a/animateditems/7413.gif b/animateditems/7413.gif
new file mode 100644
index 00000000..eeaece0f
Binary files /dev/null and b/animateditems/7413.gif differ
diff --git a/animateditems/7413.png b/animateditems/7413.png
new file mode 100644
index 00000000..f3b302a2
Binary files /dev/null and b/animateditems/7413.png differ
diff --git a/animateditems/7414.gif b/animateditems/7414.gif
new file mode 100644
index 00000000..ff33b3ec
Binary files /dev/null and b/animateditems/7414.gif differ
diff --git a/animateditems/7414.png b/animateditems/7414.png
new file mode 100644
index 00000000..d99ac708
Binary files /dev/null and b/animateditems/7414.png differ
diff --git a/animateditems/7415.gif b/animateditems/7415.gif
new file mode 100644
index 00000000..80984539
Binary files /dev/null and b/animateditems/7415.gif differ
diff --git a/animateditems/7415.png b/animateditems/7415.png
new file mode 100644
index 00000000..5633bdc3
Binary files /dev/null and b/animateditems/7415.png differ
diff --git a/animateditems/7416.gif b/animateditems/7416.gif
new file mode 100644
index 00000000..6e1883a1
Binary files /dev/null and b/animateditems/7416.gif differ
diff --git a/animateditems/7416.png b/animateditems/7416.png
new file mode 100644
index 00000000..6cc0f252
Binary files /dev/null and b/animateditems/7416.png differ
diff --git a/animateditems/7417.gif b/animateditems/7417.gif
new file mode 100644
index 00000000..8685665f
Binary files /dev/null and b/animateditems/7417.gif differ
diff --git a/animateditems/7417.png b/animateditems/7417.png
new file mode 100644
index 00000000..b51c5799
Binary files /dev/null and b/animateditems/7417.png differ
diff --git a/animateditems/7418.gif b/animateditems/7418.gif
new file mode 100644
index 00000000..944653e6
Binary files /dev/null and b/animateditems/7418.gif differ
diff --git a/animateditems/7418.png b/animateditems/7418.png
new file mode 100644
index 00000000..d9862d95
Binary files /dev/null and b/animateditems/7418.png differ
diff --git a/animateditems/7419.gif b/animateditems/7419.gif
new file mode 100644
index 00000000..e00031d3
Binary files /dev/null and b/animateditems/7419.gif differ
diff --git a/animateditems/7419.png b/animateditems/7419.png
new file mode 100644
index 00000000..8c988849
Binary files /dev/null and b/animateditems/7419.png differ
diff --git a/animateditems/7420.gif b/animateditems/7420.gif
new file mode 100644
index 00000000..4c9da053
Binary files /dev/null and b/animateditems/7420.gif differ
diff --git a/animateditems/7420.png b/animateditems/7420.png
new file mode 100644
index 00000000..bc010e6d
Binary files /dev/null and b/animateditems/7420.png differ
diff --git a/animateditems/7421.gif b/animateditems/7421.gif
new file mode 100644
index 00000000..b1939f8e
Binary files /dev/null and b/animateditems/7421.gif differ
diff --git a/animateditems/7421.png b/animateditems/7421.png
new file mode 100644
index 00000000..62041368
Binary files /dev/null and b/animateditems/7421.png differ
diff --git a/animateditems/7422.gif b/animateditems/7422.gif
new file mode 100644
index 00000000..85ebf5fa
Binary files /dev/null and b/animateditems/7422.gif differ
diff --git a/animateditems/7422.png b/animateditems/7422.png
new file mode 100644
index 00000000..cc884f8b
Binary files /dev/null and b/animateditems/7422.png differ
diff --git a/animateditems/7423.gif b/animateditems/7423.gif
new file mode 100644
index 00000000..e231bbe4
Binary files /dev/null and b/animateditems/7423.gif differ
diff --git a/animateditems/7423.png b/animateditems/7423.png
new file mode 100644
index 00000000..344cbad6
Binary files /dev/null and b/animateditems/7423.png differ
diff --git a/animateditems/7424.gif b/animateditems/7424.gif
new file mode 100644
index 00000000..1d8f568e
Binary files /dev/null and b/animateditems/7424.gif differ
diff --git a/animateditems/7424.png b/animateditems/7424.png
new file mode 100644
index 00000000..63acbd10
Binary files /dev/null and b/animateditems/7424.png differ
diff --git a/animateditems/7425.gif b/animateditems/7425.gif
new file mode 100644
index 00000000..429a08d4
Binary files /dev/null and b/animateditems/7425.gif differ
diff --git a/animateditems/7425.png b/animateditems/7425.png
new file mode 100644
index 00000000..c0f949c0
Binary files /dev/null and b/animateditems/7425.png differ
diff --git a/animateditems/7426.gif b/animateditems/7426.gif
new file mode 100644
index 00000000..47b9cc30
Binary files /dev/null and b/animateditems/7426.gif differ
diff --git a/animateditems/7426.png b/animateditems/7426.png
new file mode 100644
index 00000000..6addad28
Binary files /dev/null and b/animateditems/7426.png differ
diff --git a/animateditems/7427.gif b/animateditems/7427.gif
new file mode 100644
index 00000000..3e4d006c
Binary files /dev/null and b/animateditems/7427.gif differ
diff --git a/animateditems/7427.png b/animateditems/7427.png
new file mode 100644
index 00000000..e17eb363
Binary files /dev/null and b/animateditems/7427.png differ
diff --git a/animateditems/7428.gif b/animateditems/7428.gif
new file mode 100644
index 00000000..6228975b
Binary files /dev/null and b/animateditems/7428.gif differ
diff --git a/animateditems/7428.png b/animateditems/7428.png
new file mode 100644
index 00000000..cdf4f32c
Binary files /dev/null and b/animateditems/7428.png differ
diff --git a/animateditems/7429.gif b/animateditems/7429.gif
new file mode 100644
index 00000000..30800b7c
Binary files /dev/null and b/animateditems/7429.gif differ
diff --git a/animateditems/7429.png b/animateditems/7429.png
new file mode 100644
index 00000000..ba8532ab
Binary files /dev/null and b/animateditems/7429.png differ
diff --git a/animateditems/7430.gif b/animateditems/7430.gif
new file mode 100644
index 00000000..78b8665f
Binary files /dev/null and b/animateditems/7430.gif differ
diff --git a/animateditems/7430.png b/animateditems/7430.png
new file mode 100644
index 00000000..a54e75e8
Binary files /dev/null and b/animateditems/7430.png differ
diff --git a/animateditems/7431.gif b/animateditems/7431.gif
new file mode 100644
index 00000000..3b2dfcb2
Binary files /dev/null and b/animateditems/7431.gif differ
diff --git a/animateditems/7431.png b/animateditems/7431.png
new file mode 100644
index 00000000..40425414
Binary files /dev/null and b/animateditems/7431.png differ
diff --git a/animateditems/7432.gif b/animateditems/7432.gif
new file mode 100644
index 00000000..08c4b613
Binary files /dev/null and b/animateditems/7432.gif differ
diff --git a/animateditems/7432.png b/animateditems/7432.png
new file mode 100644
index 00000000..18da561d
Binary files /dev/null and b/animateditems/7432.png differ
diff --git a/animateditems/7433.gif b/animateditems/7433.gif
new file mode 100644
index 00000000..423f1c17
Binary files /dev/null and b/animateditems/7433.gif differ
diff --git a/animateditems/7433.png b/animateditems/7433.png
new file mode 100644
index 00000000..08ff60cf
Binary files /dev/null and b/animateditems/7433.png differ
diff --git a/animateditems/7434.gif b/animateditems/7434.gif
new file mode 100644
index 00000000..3d52690d
Binary files /dev/null and b/animateditems/7434.gif differ
diff --git a/animateditems/7434.png b/animateditems/7434.png
new file mode 100644
index 00000000..d1ad99fb
Binary files /dev/null and b/animateditems/7434.png differ
diff --git a/animateditems/7435.gif b/animateditems/7435.gif
new file mode 100644
index 00000000..5e1113e1
Binary files /dev/null and b/animateditems/7435.gif differ
diff --git a/animateditems/7435.png b/animateditems/7435.png
new file mode 100644
index 00000000..789e2a5a
Binary files /dev/null and b/animateditems/7435.png differ
diff --git a/animateditems/7436.gif b/animateditems/7436.gif
new file mode 100644
index 00000000..8cf08638
Binary files /dev/null and b/animateditems/7436.gif differ
diff --git a/animateditems/7436.png b/animateditems/7436.png
new file mode 100644
index 00000000..5d6dcf02
Binary files /dev/null and b/animateditems/7436.png differ
diff --git a/animateditems/7437.gif b/animateditems/7437.gif
new file mode 100644
index 00000000..36636a3b
Binary files /dev/null and b/animateditems/7437.gif differ
diff --git a/animateditems/7437.png b/animateditems/7437.png
new file mode 100644
index 00000000..d6debffb
Binary files /dev/null and b/animateditems/7437.png differ
diff --git a/animateditems/7438.gif b/animateditems/7438.gif
new file mode 100644
index 00000000..71ad26a7
Binary files /dev/null and b/animateditems/7438.gif differ
diff --git a/animateditems/7438.png b/animateditems/7438.png
new file mode 100644
index 00000000..63ac2df1
Binary files /dev/null and b/animateditems/7438.png differ
diff --git a/animateditems/7439.gif b/animateditems/7439.gif
new file mode 100644
index 00000000..6556bd28
Binary files /dev/null and b/animateditems/7439.gif differ
diff --git a/animateditems/7439.png b/animateditems/7439.png
new file mode 100644
index 00000000..542bee14
Binary files /dev/null and b/animateditems/7439.png differ
diff --git a/animateditems/7440.gif b/animateditems/7440.gif
new file mode 100644
index 00000000..11fb58f5
Binary files /dev/null and b/animateditems/7440.gif differ
diff --git a/animateditems/7440.png b/animateditems/7440.png
new file mode 100644
index 00000000..d670ea91
Binary files /dev/null and b/animateditems/7440.png differ
diff --git a/animateditems/7441.gif b/animateditems/7441.gif
new file mode 100644
index 00000000..085fa43b
Binary files /dev/null and b/animateditems/7441.gif differ
diff --git a/animateditems/7441.png b/animateditems/7441.png
new file mode 100644
index 00000000..a1809840
Binary files /dev/null and b/animateditems/7441.png differ
diff --git a/animateditems/7442.gif b/animateditems/7442.gif
new file mode 100644
index 00000000..42f253d0
Binary files /dev/null and b/animateditems/7442.gif differ
diff --git a/animateditems/7442.png b/animateditems/7442.png
new file mode 100644
index 00000000..8a3c3028
Binary files /dev/null and b/animateditems/7442.png differ
diff --git a/animateditems/7443.gif b/animateditems/7443.gif
new file mode 100644
index 00000000..5e4bde75
Binary files /dev/null and b/animateditems/7443.gif differ
diff --git a/animateditems/7443.png b/animateditems/7443.png
new file mode 100644
index 00000000..7650e465
Binary files /dev/null and b/animateditems/7443.png differ
diff --git a/animateditems/7444.gif b/animateditems/7444.gif
new file mode 100644
index 00000000..22375c97
Binary files /dev/null and b/animateditems/7444.gif differ
diff --git a/animateditems/7444.png b/animateditems/7444.png
new file mode 100644
index 00000000..ae200d24
Binary files /dev/null and b/animateditems/7444.png differ
diff --git a/animateditems/7445.gif b/animateditems/7445.gif
new file mode 100644
index 00000000..fa3bdd43
Binary files /dev/null and b/animateditems/7445.gif differ
diff --git a/animateditems/7445.png b/animateditems/7445.png
new file mode 100644
index 00000000..07aa4229
Binary files /dev/null and b/animateditems/7445.png differ
diff --git a/animateditems/7446.gif b/animateditems/7446.gif
new file mode 100644
index 00000000..8f28bd80
Binary files /dev/null and b/animateditems/7446.gif differ
diff --git a/animateditems/7446.png b/animateditems/7446.png
new file mode 100644
index 00000000..7f872920
Binary files /dev/null and b/animateditems/7446.png differ
diff --git a/animateditems/7447.gif b/animateditems/7447.gif
new file mode 100644
index 00000000..7a2814ff
Binary files /dev/null and b/animateditems/7447.gif differ
diff --git a/animateditems/7447.png b/animateditems/7447.png
new file mode 100644
index 00000000..1733eda1
Binary files /dev/null and b/animateditems/7447.png differ
diff --git a/animateditems/7448.gif b/animateditems/7448.gif
new file mode 100644
index 00000000..729e6958
Binary files /dev/null and b/animateditems/7448.gif differ
diff --git a/animateditems/7448.png b/animateditems/7448.png
new file mode 100644
index 00000000..8e54bb16
Binary files /dev/null and b/animateditems/7448.png differ
diff --git a/animateditems/7449.gif b/animateditems/7449.gif
new file mode 100644
index 00000000..2f15be99
Binary files /dev/null and b/animateditems/7449.gif differ
diff --git a/animateditems/7449.png b/animateditems/7449.png
new file mode 100644
index 00000000..3bf5c3a6
Binary files /dev/null and b/animateditems/7449.png differ
diff --git a/animateditems/7450.gif b/animateditems/7450.gif
new file mode 100644
index 00000000..8eb28f51
Binary files /dev/null and b/animateditems/7450.gif differ
diff --git a/animateditems/7450.png b/animateditems/7450.png
new file mode 100644
index 00000000..76c485e1
Binary files /dev/null and b/animateditems/7450.png differ
diff --git a/animateditems/7451.gif b/animateditems/7451.gif
new file mode 100644
index 00000000..6e95fdfb
Binary files /dev/null and b/animateditems/7451.gif differ
diff --git a/animateditems/7451.png b/animateditems/7451.png
new file mode 100644
index 00000000..72581f54
Binary files /dev/null and b/animateditems/7451.png differ
diff --git a/animateditems/7452.gif b/animateditems/7452.gif
new file mode 100644
index 00000000..faa0d18f
Binary files /dev/null and b/animateditems/7452.gif differ
diff --git a/animateditems/7452.png b/animateditems/7452.png
new file mode 100644
index 00000000..b6620344
Binary files /dev/null and b/animateditems/7452.png differ
diff --git a/animateditems/7453.gif b/animateditems/7453.gif
new file mode 100644
index 00000000..a9c514a9
Binary files /dev/null and b/animateditems/7453.gif differ
diff --git a/animateditems/7453.png b/animateditems/7453.png
new file mode 100644
index 00000000..3fb8bb46
Binary files /dev/null and b/animateditems/7453.png differ
diff --git a/animateditems/7454.gif b/animateditems/7454.gif
new file mode 100644
index 00000000..25a1d637
Binary files /dev/null and b/animateditems/7454.gif differ
diff --git a/animateditems/7454.png b/animateditems/7454.png
new file mode 100644
index 00000000..3e30929a
Binary files /dev/null and b/animateditems/7454.png differ
diff --git a/animateditems/7455.gif b/animateditems/7455.gif
new file mode 100644
index 00000000..4283b0dc
Binary files /dev/null and b/animateditems/7455.gif differ
diff --git a/animateditems/7455.png b/animateditems/7455.png
new file mode 100644
index 00000000..fa25399a
Binary files /dev/null and b/animateditems/7455.png differ
diff --git a/animateditems/7456.gif b/animateditems/7456.gif
new file mode 100644
index 00000000..dadfeabe
Binary files /dev/null and b/animateditems/7456.gif differ
diff --git a/animateditems/7456.png b/animateditems/7456.png
new file mode 100644
index 00000000..8ea35d9f
Binary files /dev/null and b/animateditems/7456.png differ
diff --git a/animateditems/7457.gif b/animateditems/7457.gif
new file mode 100644
index 00000000..5d3d3c45
Binary files /dev/null and b/animateditems/7457.gif differ
diff --git a/animateditems/7457.png b/animateditems/7457.png
new file mode 100644
index 00000000..c91486c0
Binary files /dev/null and b/animateditems/7457.png differ
diff --git a/animateditems/7458.gif b/animateditems/7458.gif
new file mode 100644
index 00000000..4c2e9beb
Binary files /dev/null and b/animateditems/7458.gif differ
diff --git a/animateditems/7458.png b/animateditems/7458.png
new file mode 100644
index 00000000..ff5c306e
Binary files /dev/null and b/animateditems/7458.png differ
diff --git a/animateditems/7459.gif b/animateditems/7459.gif
new file mode 100644
index 00000000..b304ab06
Binary files /dev/null and b/animateditems/7459.gif differ
diff --git a/animateditems/7459.png b/animateditems/7459.png
new file mode 100644
index 00000000..506f95b9
Binary files /dev/null and b/animateditems/7459.png differ
diff --git a/animateditems/7460.gif b/animateditems/7460.gif
new file mode 100644
index 00000000..ba36ee09
Binary files /dev/null and b/animateditems/7460.gif differ
diff --git a/animateditems/7460.png b/animateditems/7460.png
new file mode 100644
index 00000000..acdf6a1c
Binary files /dev/null and b/animateditems/7460.png differ
diff --git a/animateditems/7461.gif b/animateditems/7461.gif
new file mode 100644
index 00000000..4472fe29
Binary files /dev/null and b/animateditems/7461.gif differ
diff --git a/animateditems/7461.png b/animateditems/7461.png
new file mode 100644
index 00000000..addc7927
Binary files /dev/null and b/animateditems/7461.png differ
diff --git a/animateditems/7462.gif b/animateditems/7462.gif
new file mode 100644
index 00000000..6b23d61e
Binary files /dev/null and b/animateditems/7462.gif differ
diff --git a/animateditems/7462.png b/animateditems/7462.png
new file mode 100644
index 00000000..6c954827
Binary files /dev/null and b/animateditems/7462.png differ
diff --git a/animateditems/7463.gif b/animateditems/7463.gif
new file mode 100644
index 00000000..429f39df
Binary files /dev/null and b/animateditems/7463.gif differ
diff --git a/animateditems/7463.png b/animateditems/7463.png
new file mode 100644
index 00000000..d25a9a3f
Binary files /dev/null and b/animateditems/7463.png differ
diff --git a/animateditems/7464.gif b/animateditems/7464.gif
new file mode 100644
index 00000000..cacf5207
Binary files /dev/null and b/animateditems/7464.gif differ
diff --git a/animateditems/7464.png b/animateditems/7464.png
new file mode 100644
index 00000000..769a6c8c
Binary files /dev/null and b/animateditems/7464.png differ
diff --git a/animateditems/7476.gif b/animateditems/7476.gif
new file mode 100644
index 00000000..974ab76b
Binary files /dev/null and b/animateditems/7476.gif differ
diff --git a/animateditems/7476.png b/animateditems/7476.png
new file mode 100644
index 00000000..568d0533
Binary files /dev/null and b/animateditems/7476.png differ
diff --git a/animateditems/7477.gif b/animateditems/7477.gif
new file mode 100644
index 00000000..2bf189a8
Binary files /dev/null and b/animateditems/7477.gif differ
diff --git a/animateditems/7477.png b/animateditems/7477.png
new file mode 100644
index 00000000..031835fd
Binary files /dev/null and b/animateditems/7477.png differ
diff --git a/animateditems/7478.gif b/animateditems/7478.gif
new file mode 100644
index 00000000..5da48e47
Binary files /dev/null and b/animateditems/7478.gif differ
diff --git a/animateditems/7478.png b/animateditems/7478.png
new file mode 100644
index 00000000..1909fab4
Binary files /dev/null and b/animateditems/7478.png differ
diff --git a/animateditems/7479.gif b/animateditems/7479.gif
new file mode 100644
index 00000000..e6411c34
Binary files /dev/null and b/animateditems/7479.gif differ
diff --git a/animateditems/7479.png b/animateditems/7479.png
new file mode 100644
index 00000000..db173b32
Binary files /dev/null and b/animateditems/7479.png differ
diff --git a/animateditems/7482.gif b/animateditems/7482.gif
new file mode 100644
index 00000000..60419127
Binary files /dev/null and b/animateditems/7482.gif differ
diff --git a/animateditems/7482.png b/animateditems/7482.png
new file mode 100644
index 00000000..fa4eecee
Binary files /dev/null and b/animateditems/7482.png differ
diff --git a/animateditems/7483.gif b/animateditems/7483.gif
new file mode 100644
index 00000000..60419127
Binary files /dev/null and b/animateditems/7483.gif differ
diff --git a/animateditems/7483.png b/animateditems/7483.png
new file mode 100644
index 00000000..fa4eecee
Binary files /dev/null and b/animateditems/7483.png differ
diff --git a/animateditems/7484.gif b/animateditems/7484.gif
new file mode 100644
index 00000000..707a7e9a
Binary files /dev/null and b/animateditems/7484.gif differ
diff --git a/animateditems/7484.png b/animateditems/7484.png
new file mode 100644
index 00000000..2358bc72
Binary files /dev/null and b/animateditems/7484.png differ
diff --git a/animateditems/7485.gif b/animateditems/7485.gif
new file mode 100644
index 00000000..7241ff5c
Binary files /dev/null and b/animateditems/7485.gif differ
diff --git a/animateditems/7485.png b/animateditems/7485.png
new file mode 100644
index 00000000..2b85d136
Binary files /dev/null and b/animateditems/7485.png differ
diff --git a/animateditems/7487.gif b/animateditems/7487.gif
new file mode 100644
index 00000000..c250bc6f
Binary files /dev/null and b/animateditems/7487.gif differ
diff --git a/animateditems/7487.png b/animateditems/7487.png
new file mode 100644
index 00000000..296be5b7
Binary files /dev/null and b/animateditems/7487.png differ
diff --git a/animateditems/7488.gif b/animateditems/7488.gif
new file mode 100644
index 00000000..f1f5cd16
Binary files /dev/null and b/animateditems/7488.gif differ
diff --git a/animateditems/7488.png b/animateditems/7488.png
new file mode 100644
index 00000000..361fe7bd
Binary files /dev/null and b/animateditems/7488.png differ
diff --git a/animateditems/7489.gif b/animateditems/7489.gif
new file mode 100644
index 00000000..b3098019
Binary files /dev/null and b/animateditems/7489.gif differ
diff --git a/animateditems/7489.png b/animateditems/7489.png
new file mode 100644
index 00000000..5fd14479
Binary files /dev/null and b/animateditems/7489.png differ
diff --git a/animateditems/7490.gif b/animateditems/7490.gif
new file mode 100644
index 00000000..b9f1f1cf
Binary files /dev/null and b/animateditems/7490.gif differ
diff --git a/animateditems/7490.png b/animateditems/7490.png
new file mode 100644
index 00000000..a053b38f
Binary files /dev/null and b/animateditems/7490.png differ
diff --git a/animateditems/7491.gif b/animateditems/7491.gif
new file mode 100644
index 00000000..77b5e8b6
Binary files /dev/null and b/animateditems/7491.gif differ
diff --git a/animateditems/7491.png b/animateditems/7491.png
new file mode 100644
index 00000000..29fc788c
Binary files /dev/null and b/animateditems/7491.png differ
diff --git a/animateditems/7492.gif b/animateditems/7492.gif
new file mode 100644
index 00000000..77b5e8b6
Binary files /dev/null and b/animateditems/7492.gif differ
diff --git a/animateditems/7492.png b/animateditems/7492.png
new file mode 100644
index 00000000..29fc788c
Binary files /dev/null and b/animateditems/7492.png differ
diff --git a/animateditems/7494.gif b/animateditems/7494.gif
new file mode 100644
index 00000000..b3098019
Binary files /dev/null and b/animateditems/7494.gif differ
diff --git a/animateditems/7494.png b/animateditems/7494.png
new file mode 100644
index 00000000..5fd14479
Binary files /dev/null and b/animateditems/7494.png differ
diff --git a/animateditems/7495.gif b/animateditems/7495.gif
new file mode 100644
index 00000000..6b851909
Binary files /dev/null and b/animateditems/7495.gif differ
diff --git a/animateditems/7495.png b/animateditems/7495.png
new file mode 100644
index 00000000..985ea885
Binary files /dev/null and b/animateditems/7495.png differ
diff --git a/animateditems/7496.gif b/animateditems/7496.gif
new file mode 100644
index 00000000..6b851909
Binary files /dev/null and b/animateditems/7496.gif differ
diff --git a/animateditems/7496.png b/animateditems/7496.png
new file mode 100644
index 00000000..985ea885
Binary files /dev/null and b/animateditems/7496.png differ
diff --git a/animateditems/7497.gif b/animateditems/7497.gif
new file mode 100644
index 00000000..5a411471
Binary files /dev/null and b/animateditems/7497.gif differ
diff --git a/animateditems/7497.png b/animateditems/7497.png
new file mode 100644
index 00000000..6a53bcc8
Binary files /dev/null and b/animateditems/7497.png differ
diff --git a/animateditems/7498.gif b/animateditems/7498.gif
new file mode 100644
index 00000000..31ef8995
Binary files /dev/null and b/animateditems/7498.gif differ
diff --git a/animateditems/7498.png b/animateditems/7498.png
new file mode 100644
index 00000000..f533b1c3
Binary files /dev/null and b/animateditems/7498.png differ
diff --git a/animateditems/7499.gif b/animateditems/7499.gif
new file mode 100644
index 00000000..9e609cd6
Binary files /dev/null and b/animateditems/7499.gif differ
diff --git a/animateditems/7499.png b/animateditems/7499.png
new file mode 100644
index 00000000..49801220
Binary files /dev/null and b/animateditems/7499.png differ
diff --git a/animateditems/7500.gif b/animateditems/7500.gif
new file mode 100644
index 00000000..0cab9e9c
Binary files /dev/null and b/animateditems/7500.gif differ
diff --git a/animateditems/7500.png b/animateditems/7500.png
new file mode 100644
index 00000000..9ced572b
Binary files /dev/null and b/animateditems/7500.png differ
diff --git a/animateditems/7501.gif b/animateditems/7501.gif
new file mode 100644
index 00000000..b0485922
Binary files /dev/null and b/animateditems/7501.gif differ
diff --git a/animateditems/7501.png b/animateditems/7501.png
new file mode 100644
index 00000000..17d06bc6
Binary files /dev/null and b/animateditems/7501.png differ
diff --git a/animateditems/7502.gif b/animateditems/7502.gif
new file mode 100644
index 00000000..9c559da7
Binary files /dev/null and b/animateditems/7502.gif differ
diff --git a/animateditems/7502.png b/animateditems/7502.png
new file mode 100644
index 00000000..5207c8c7
Binary files /dev/null and b/animateditems/7502.png differ
diff --git a/animateditems/7503.gif b/animateditems/7503.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/7503.gif differ
diff --git a/animateditems/7503.png b/animateditems/7503.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/7503.png differ
diff --git a/animateditems/7526.gif b/animateditems/7526.gif
new file mode 100644
index 00000000..e6411c34
Binary files /dev/null and b/animateditems/7526.gif differ
diff --git a/animateditems/7526.png b/animateditems/7526.png
new file mode 100644
index 00000000..db173b32
Binary files /dev/null and b/animateditems/7526.png differ
diff --git a/animateditems/7528.gif b/animateditems/7528.gif
new file mode 100644
index 00000000..41c942e5
Binary files /dev/null and b/animateditems/7528.gif differ
diff --git a/animateditems/7528.png b/animateditems/7528.png
new file mode 100644
index 00000000..98193387
Binary files /dev/null and b/animateditems/7528.png differ
diff --git a/animateditems/7529.gif b/animateditems/7529.gif
new file mode 100644
index 00000000..dc1aa5c8
Binary files /dev/null and b/animateditems/7529.gif differ
diff --git a/animateditems/7529.png b/animateditems/7529.png
new file mode 100644
index 00000000..c809e709
Binary files /dev/null and b/animateditems/7529.png differ
diff --git a/animateditems/7530.gif b/animateditems/7530.gif
new file mode 100644
index 00000000..dc1aa5c8
Binary files /dev/null and b/animateditems/7530.gif differ
diff --git a/animateditems/7530.png b/animateditems/7530.png
new file mode 100644
index 00000000..c809e709
Binary files /dev/null and b/animateditems/7530.png differ
diff --git a/animateditems/7531.gif b/animateditems/7531.gif
new file mode 100644
index 00000000..dc1aa5c8
Binary files /dev/null and b/animateditems/7531.gif differ
diff --git a/animateditems/7531.png b/animateditems/7531.png
new file mode 100644
index 00000000..c809e709
Binary files /dev/null and b/animateditems/7531.png differ
diff --git a/animateditems/7532.gif b/animateditems/7532.gif
new file mode 100644
index 00000000..dc1aa5c8
Binary files /dev/null and b/animateditems/7532.gif differ
diff --git a/animateditems/7532.png b/animateditems/7532.png
new file mode 100644
index 00000000..c809e709
Binary files /dev/null and b/animateditems/7532.png differ
diff --git a/animateditems/7533.gif b/animateditems/7533.gif
new file mode 100644
index 00000000..dc1aa5c8
Binary files /dev/null and b/animateditems/7533.gif differ
diff --git a/animateditems/7533.png b/animateditems/7533.png
new file mode 100644
index 00000000..c809e709
Binary files /dev/null and b/animateditems/7533.png differ
diff --git a/animateditems/7534.gif b/animateditems/7534.gif
new file mode 100644
index 00000000..dc1aa5c8
Binary files /dev/null and b/animateditems/7534.gif differ
diff --git a/animateditems/7534.png b/animateditems/7534.png
new file mode 100644
index 00000000..c809e709
Binary files /dev/null and b/animateditems/7534.png differ
diff --git a/animateditems/7535.gif b/animateditems/7535.gif
new file mode 100644
index 00000000..dc1aa5c8
Binary files /dev/null and b/animateditems/7535.gif differ
diff --git a/animateditems/7535.png b/animateditems/7535.png
new file mode 100644
index 00000000..c809e709
Binary files /dev/null and b/animateditems/7535.png differ
diff --git a/animateditems/7582.gif b/animateditems/7582.gif
new file mode 100644
index 00000000..10da3fd4
Binary files /dev/null and b/animateditems/7582.gif differ
diff --git a/animateditems/7582.png b/animateditems/7582.png
new file mode 100644
index 00000000..000e39db
Binary files /dev/null and b/animateditems/7582.png differ
diff --git a/animateditems/7583.gif b/animateditems/7583.gif
new file mode 100644
index 00000000..10da3fd4
Binary files /dev/null and b/animateditems/7583.gif differ
diff --git a/animateditems/7583.png b/animateditems/7583.png
new file mode 100644
index 00000000..000e39db
Binary files /dev/null and b/animateditems/7583.png differ
diff --git a/animateditems/7587.gif b/animateditems/7587.gif
new file mode 100644
index 00000000..ae27c5b2
Binary files /dev/null and b/animateditems/7587.gif differ
diff --git a/animateditems/7587.png b/animateditems/7587.png
new file mode 100644
index 00000000..edc3f4a2
Binary files /dev/null and b/animateditems/7587.png differ
diff --git a/animateditems/7588.gif b/animateditems/7588.gif
new file mode 100644
index 00000000..960a696c
Binary files /dev/null and b/animateditems/7588.gif differ
diff --git a/animateditems/7588.png b/animateditems/7588.png
new file mode 100644
index 00000000..1ec92d42
Binary files /dev/null and b/animateditems/7588.png differ
diff --git a/animateditems/7589.gif b/animateditems/7589.gif
new file mode 100644
index 00000000..fc0d1aa8
Binary files /dev/null and b/animateditems/7589.gif differ
diff --git a/animateditems/7589.png b/animateditems/7589.png
new file mode 100644
index 00000000..68c62e59
Binary files /dev/null and b/animateditems/7589.png differ
diff --git a/animateditems/7590.gif b/animateditems/7590.gif
new file mode 100644
index 00000000..815e0cc6
Binary files /dev/null and b/animateditems/7590.gif differ
diff --git a/animateditems/7590.png b/animateditems/7590.png
new file mode 100644
index 00000000..5824254a
Binary files /dev/null and b/animateditems/7590.png differ
diff --git a/animateditems/7591.gif b/animateditems/7591.gif
new file mode 100644
index 00000000..c4450ca1
Binary files /dev/null and b/animateditems/7591.gif differ
diff --git a/animateditems/7591.png b/animateditems/7591.png
new file mode 100644
index 00000000..e3a9cf85
Binary files /dev/null and b/animateditems/7591.png differ
diff --git a/animateditems/7618.gif b/animateditems/7618.gif
new file mode 100644
index 00000000..a21e69d2
Binary files /dev/null and b/animateditems/7618.gif differ
diff --git a/animateditems/7618.png b/animateditems/7618.png
new file mode 100644
index 00000000..e5af92df
Binary files /dev/null and b/animateditems/7618.png differ
diff --git a/animateditems/7620.gif b/animateditems/7620.gif
new file mode 100644
index 00000000..5c43c179
Binary files /dev/null and b/animateditems/7620.gif differ
diff --git a/animateditems/7620.png b/animateditems/7620.png
new file mode 100644
index 00000000..c06ca77a
Binary files /dev/null and b/animateditems/7620.png differ
diff --git a/animateditems/7632.gif b/animateditems/7632.gif
new file mode 100644
index 00000000..ca19fb6e
Binary files /dev/null and b/animateditems/7632.gif differ
diff --git a/animateditems/7632.png b/animateditems/7632.png
new file mode 100644
index 00000000..ba200612
Binary files /dev/null and b/animateditems/7632.png differ
diff --git a/animateditems/7633.gif b/animateditems/7633.gif
new file mode 100644
index 00000000..f7a2f9b2
Binary files /dev/null and b/animateditems/7633.gif differ
diff --git a/animateditems/7633.png b/animateditems/7633.png
new file mode 100644
index 00000000..a3798b84
Binary files /dev/null and b/animateditems/7633.png differ
diff --git a/animateditems/7634.gif b/animateditems/7634.gif
new file mode 100644
index 00000000..a9ad3bfb
Binary files /dev/null and b/animateditems/7634.gif differ
diff --git a/animateditems/7634.png b/animateditems/7634.png
new file mode 100644
index 00000000..807d2ff1
Binary files /dev/null and b/animateditems/7634.png differ
diff --git a/animateditems/7635.gif b/animateditems/7635.gif
new file mode 100644
index 00000000..48d8baae
Binary files /dev/null and b/animateditems/7635.gif differ
diff --git a/animateditems/7635.png b/animateditems/7635.png
new file mode 100644
index 00000000..b15b4d9a
Binary files /dev/null and b/animateditems/7635.png differ
diff --git a/animateditems/7636.gif b/animateditems/7636.gif
new file mode 100644
index 00000000..2aa69d54
Binary files /dev/null and b/animateditems/7636.gif differ
diff --git a/animateditems/7636.png b/animateditems/7636.png
new file mode 100644
index 00000000..938df4b9
Binary files /dev/null and b/animateditems/7636.png differ
diff --git a/animateditems/7638.gif b/animateditems/7638.gif
new file mode 100644
index 00000000..323d04f8
Binary files /dev/null and b/animateditems/7638.gif differ
diff --git a/animateditems/7638.png b/animateditems/7638.png
new file mode 100644
index 00000000..7614d7fe
Binary files /dev/null and b/animateditems/7638.png differ
diff --git a/animateditems/7639.gif b/animateditems/7639.gif
new file mode 100644
index 00000000..68f561cb
Binary files /dev/null and b/animateditems/7639.gif differ
diff --git a/animateditems/7639.png b/animateditems/7639.png
new file mode 100644
index 00000000..3aba7901
Binary files /dev/null and b/animateditems/7639.png differ
diff --git a/animateditems/7640.gif b/animateditems/7640.gif
new file mode 100644
index 00000000..a643ed1f
Binary files /dev/null and b/animateditems/7640.gif differ
diff --git a/animateditems/7640.png b/animateditems/7640.png
new file mode 100644
index 00000000..7f222ab5
Binary files /dev/null and b/animateditems/7640.png differ
diff --git a/animateditems/7655.gif b/animateditems/7655.gif
new file mode 100644
index 00000000..1019c0b3
Binary files /dev/null and b/animateditems/7655.gif differ
diff --git a/animateditems/7655.png b/animateditems/7655.png
new file mode 100644
index 00000000..bebe6ca4
Binary files /dev/null and b/animateditems/7655.png differ
diff --git a/animateditems/7665.gif b/animateditems/7665.gif
new file mode 100644
index 00000000..1019c0b3
Binary files /dev/null and b/animateditems/7665.gif differ
diff --git a/animateditems/7665.png b/animateditems/7665.png
new file mode 100644
index 00000000..bebe6ca4
Binary files /dev/null and b/animateditems/7665.png differ
diff --git a/animateditems/7670.gif b/animateditems/7670.gif
new file mode 100644
index 00000000..46d207ce
Binary files /dev/null and b/animateditems/7670.gif differ
diff --git a/animateditems/7670.png b/animateditems/7670.png
new file mode 100644
index 00000000..ac1770af
Binary files /dev/null and b/animateditems/7670.png differ
diff --git a/animateditems/7673.gif b/animateditems/7673.gif
new file mode 100644
index 00000000..1019c0b3
Binary files /dev/null and b/animateditems/7673.gif differ
diff --git a/animateditems/7673.png b/animateditems/7673.png
new file mode 100644
index 00000000..bebe6ca4
Binary files /dev/null and b/animateditems/7673.png differ
diff --git a/animateditems/7674.gif b/animateditems/7674.gif
new file mode 100644
index 00000000..889f5413
Binary files /dev/null and b/animateditems/7674.gif differ
diff --git a/animateditems/7674.png b/animateditems/7674.png
new file mode 100644
index 00000000..27f9e6b2
Binary files /dev/null and b/animateditems/7674.png differ
diff --git a/animateditems/7675.gif b/animateditems/7675.gif
new file mode 100644
index 00000000..889f5413
Binary files /dev/null and b/animateditems/7675.gif differ
diff --git a/animateditems/7675.png b/animateditems/7675.png
new file mode 100644
index 00000000..27f9e6b2
Binary files /dev/null and b/animateditems/7675.png differ
diff --git a/animateditems/7676.gif b/animateditems/7676.gif
new file mode 100644
index 00000000..889f5413
Binary files /dev/null and b/animateditems/7676.gif differ
diff --git a/animateditems/7676.png b/animateditems/7676.png
new file mode 100644
index 00000000..27f9e6b2
Binary files /dev/null and b/animateditems/7676.png differ
diff --git a/animateditems/7677.gif b/animateditems/7677.gif
new file mode 100644
index 00000000..889f5413
Binary files /dev/null and b/animateditems/7677.gif differ
diff --git a/animateditems/7677.png b/animateditems/7677.png
new file mode 100644
index 00000000..27f9e6b2
Binary files /dev/null and b/animateditems/7677.png differ
diff --git a/animateditems/7678.gif b/animateditems/7678.gif
new file mode 100644
index 00000000..46d207ce
Binary files /dev/null and b/animateditems/7678.gif differ
diff --git a/animateditems/7678.png b/animateditems/7678.png
new file mode 100644
index 00000000..ac1770af
Binary files /dev/null and b/animateditems/7678.png differ
diff --git a/animateditems/7679.gif b/animateditems/7679.gif
new file mode 100644
index 00000000..1019c0b3
Binary files /dev/null and b/animateditems/7679.gif differ
diff --git a/animateditems/7679.png b/animateditems/7679.png
new file mode 100644
index 00000000..bebe6ca4
Binary files /dev/null and b/animateditems/7679.png differ
diff --git a/animateditems/7680.gif b/animateditems/7680.gif
new file mode 100644
index 00000000..bc28bec6
Binary files /dev/null and b/animateditems/7680.gif differ
diff --git a/animateditems/7680.png b/animateditems/7680.png
new file mode 100644
index 00000000..29d3cb6d
Binary files /dev/null and b/animateditems/7680.png differ
diff --git a/animateditems/7681.gif b/animateditems/7681.gif
new file mode 100644
index 00000000..bc28bec6
Binary files /dev/null and b/animateditems/7681.gif differ
diff --git a/animateditems/7681.png b/animateditems/7681.png
new file mode 100644
index 00000000..29d3cb6d
Binary files /dev/null and b/animateditems/7681.png differ
diff --git a/animateditems/7682.gif b/animateditems/7682.gif
new file mode 100644
index 00000000..d2bec6c3
Binary files /dev/null and b/animateditems/7682.gif differ
diff --git a/animateditems/7682.png b/animateditems/7682.png
new file mode 100644
index 00000000..39aa5d01
Binary files /dev/null and b/animateditems/7682.png differ
diff --git a/animateditems/7683.gif b/animateditems/7683.gif
new file mode 100644
index 00000000..d2bec6c3
Binary files /dev/null and b/animateditems/7683.gif differ
diff --git a/animateditems/7683.png b/animateditems/7683.png
new file mode 100644
index 00000000..39aa5d01
Binary files /dev/null and b/animateditems/7683.png differ
diff --git a/animateditems/7684.gif b/animateditems/7684.gif
new file mode 100644
index 00000000..438a1dbf
Binary files /dev/null and b/animateditems/7684.gif differ
diff --git a/animateditems/7684.png b/animateditems/7684.png
new file mode 100644
index 00000000..834d72cf
Binary files /dev/null and b/animateditems/7684.png differ
diff --git a/animateditems/7685.gif b/animateditems/7685.gif
new file mode 100644
index 00000000..438a1dbf
Binary files /dev/null and b/animateditems/7685.gif differ
diff --git a/animateditems/7685.png b/animateditems/7685.png
new file mode 100644
index 00000000..834d72cf
Binary files /dev/null and b/animateditems/7685.png differ
diff --git a/animateditems/7686.gif b/animateditems/7686.gif
new file mode 100644
index 00000000..0fd8b582
Binary files /dev/null and b/animateditems/7686.gif differ
diff --git a/animateditems/7686.png b/animateditems/7686.png
new file mode 100644
index 00000000..838aa4a6
Binary files /dev/null and b/animateditems/7686.png differ
diff --git a/animateditems/7687.gif b/animateditems/7687.gif
new file mode 100644
index 00000000..0fd8b582
Binary files /dev/null and b/animateditems/7687.gif differ
diff --git a/animateditems/7687.png b/animateditems/7687.png
new file mode 100644
index 00000000..838aa4a6
Binary files /dev/null and b/animateditems/7687.png differ
diff --git a/animateditems/7688.gif b/animateditems/7688.gif
new file mode 100644
index 00000000..89a6df14
Binary files /dev/null and b/animateditems/7688.gif differ
diff --git a/animateditems/7688.png b/animateditems/7688.png
new file mode 100644
index 00000000..6826f8d1
Binary files /dev/null and b/animateditems/7688.png differ
diff --git a/animateditems/7689.gif b/animateditems/7689.gif
new file mode 100644
index 00000000..89a6df14
Binary files /dev/null and b/animateditems/7689.gif differ
diff --git a/animateditems/7689.png b/animateditems/7689.png
new file mode 100644
index 00000000..6826f8d1
Binary files /dev/null and b/animateditems/7689.png differ
diff --git a/animateditems/7690.gif b/animateditems/7690.gif
new file mode 100644
index 00000000..3a2985ab
Binary files /dev/null and b/animateditems/7690.gif differ
diff --git a/animateditems/7690.png b/animateditems/7690.png
new file mode 100644
index 00000000..7b9444d7
Binary files /dev/null and b/animateditems/7690.png differ
diff --git a/animateditems/7691.gif b/animateditems/7691.gif
new file mode 100644
index 00000000..3a2985ab
Binary files /dev/null and b/animateditems/7691.gif differ
diff --git a/animateditems/7691.png b/animateditems/7691.png
new file mode 100644
index 00000000..7b9444d7
Binary files /dev/null and b/animateditems/7691.png differ
diff --git a/animateditems/7692.gif b/animateditems/7692.gif
new file mode 100644
index 00000000..c3081f8d
Binary files /dev/null and b/animateditems/7692.gif differ
diff --git a/animateditems/7692.png b/animateditems/7692.png
new file mode 100644
index 00000000..7634e124
Binary files /dev/null and b/animateditems/7692.png differ
diff --git a/animateditems/7693.gif b/animateditems/7693.gif
new file mode 100644
index 00000000..c3081f8d
Binary files /dev/null and b/animateditems/7693.gif differ
diff --git a/animateditems/7693.png b/animateditems/7693.png
new file mode 100644
index 00000000..7634e124
Binary files /dev/null and b/animateditems/7693.png differ
diff --git a/animateditems/7694.gif b/animateditems/7694.gif
new file mode 100644
index 00000000..c16960b4
Binary files /dev/null and b/animateditems/7694.gif differ
diff --git a/animateditems/7694.png b/animateditems/7694.png
new file mode 100644
index 00000000..8bb66737
Binary files /dev/null and b/animateditems/7694.png differ
diff --git a/animateditems/7695.gif b/animateditems/7695.gif
new file mode 100644
index 00000000..c16960b4
Binary files /dev/null and b/animateditems/7695.gif differ
diff --git a/animateditems/7695.png b/animateditems/7695.png
new file mode 100644
index 00000000..8bb66737
Binary files /dev/null and b/animateditems/7695.png differ
diff --git a/animateditems/7696.gif b/animateditems/7696.gif
new file mode 100644
index 00000000..6f92e520
Binary files /dev/null and b/animateditems/7696.gif differ
diff --git a/animateditems/7696.png b/animateditems/7696.png
new file mode 100644
index 00000000..82dc0b3b
Binary files /dev/null and b/animateditems/7696.png differ
diff --git a/animateditems/7697.gif b/animateditems/7697.gif
new file mode 100644
index 00000000..a2b47126
Binary files /dev/null and b/animateditems/7697.gif differ
diff --git a/animateditems/7697.png b/animateditems/7697.png
new file mode 100644
index 00000000..f5f11ceb
Binary files /dev/null and b/animateditems/7697.png differ
diff --git a/animateditems/7698.gif b/animateditems/7698.gif
new file mode 100644
index 00000000..2f01ae73
Binary files /dev/null and b/animateditems/7698.gif differ
diff --git a/animateditems/7698.png b/animateditems/7698.png
new file mode 100644
index 00000000..3434cd69
Binary files /dev/null and b/animateditems/7698.png differ
diff --git a/animateditems/7699.gif b/animateditems/7699.gif
new file mode 100644
index 00000000..8ef8a2d2
Binary files /dev/null and b/animateditems/7699.gif differ
diff --git a/animateditems/7699.png b/animateditems/7699.png
new file mode 100644
index 00000000..9eaa7d0a
Binary files /dev/null and b/animateditems/7699.png differ
diff --git a/animateditems/7700.gif b/animateditems/7700.gif
new file mode 100644
index 00000000..fc16469a
Binary files /dev/null and b/animateditems/7700.gif differ
diff --git a/animateditems/7700.png b/animateditems/7700.png
new file mode 100644
index 00000000..71a36934
Binary files /dev/null and b/animateditems/7700.png differ
diff --git a/animateditems/7702.gif b/animateditems/7702.gif
new file mode 100644
index 00000000..3f020ae3
Binary files /dev/null and b/animateditems/7702.gif differ
diff --git a/animateditems/7702.png b/animateditems/7702.png
new file mode 100644
index 00000000..5827ed24
Binary files /dev/null and b/animateditems/7702.png differ
diff --git a/animateditems/7703.gif b/animateditems/7703.gif
new file mode 100644
index 00000000..a717508c
Binary files /dev/null and b/animateditems/7703.gif differ
diff --git a/animateditems/7703.png b/animateditems/7703.png
new file mode 100644
index 00000000..90b65dc4
Binary files /dev/null and b/animateditems/7703.png differ
diff --git a/animateditems/7704.gif b/animateditems/7704.gif
new file mode 100644
index 00000000..dd6aab75
Binary files /dev/null and b/animateditems/7704.gif differ
diff --git a/animateditems/7704.png b/animateditems/7704.png
new file mode 100644
index 00000000..f6d4e3ff
Binary files /dev/null and b/animateditems/7704.png differ
diff --git a/animateditems/7705.gif b/animateditems/7705.gif
new file mode 100644
index 00000000..bcc55859
Binary files /dev/null and b/animateditems/7705.gif differ
diff --git a/animateditems/7705.png b/animateditems/7705.png
new file mode 100644
index 00000000..6b76aa4c
Binary files /dev/null and b/animateditems/7705.png differ
diff --git a/animateditems/7706.gif b/animateditems/7706.gif
new file mode 100644
index 00000000..de14dc0b
Binary files /dev/null and b/animateditems/7706.gif differ
diff --git a/animateditems/7706.png b/animateditems/7706.png
new file mode 100644
index 00000000..96e20eab
Binary files /dev/null and b/animateditems/7706.png differ
diff --git a/animateditems/7707.gif b/animateditems/7707.gif
new file mode 100644
index 00000000..60419127
Binary files /dev/null and b/animateditems/7707.gif differ
diff --git a/animateditems/7707.png b/animateditems/7707.png
new file mode 100644
index 00000000..fa4eecee
Binary files /dev/null and b/animateditems/7707.png differ
diff --git a/animateditems/7708.gif b/animateditems/7708.gif
new file mode 100644
index 00000000..a2b47126
Binary files /dev/null and b/animateditems/7708.gif differ
diff --git a/animateditems/7708.png b/animateditems/7708.png
new file mode 100644
index 00000000..f5f11ceb
Binary files /dev/null and b/animateditems/7708.png differ
diff --git a/animateditems/7720.gif b/animateditems/7720.gif
new file mode 100644
index 00000000..3f020ae3
Binary files /dev/null and b/animateditems/7720.gif differ
diff --git a/animateditems/7720.png b/animateditems/7720.png
new file mode 100644
index 00000000..5827ed24
Binary files /dev/null and b/animateditems/7720.png differ
diff --git a/animateditems/7721.gif b/animateditems/7721.gif
new file mode 100644
index 00000000..1ad470e0
Binary files /dev/null and b/animateditems/7721.gif differ
diff --git a/animateditems/7721.png b/animateditems/7721.png
new file mode 100644
index 00000000..7ade7da7
Binary files /dev/null and b/animateditems/7721.png differ
diff --git a/animateditems/7722.gif b/animateditems/7722.gif
new file mode 100644
index 00000000..77b5e8b6
Binary files /dev/null and b/animateditems/7722.gif differ
diff --git a/animateditems/7722.png b/animateditems/7722.png
new file mode 100644
index 00000000..29fc788c
Binary files /dev/null and b/animateditems/7722.png differ
diff --git a/animateditems/7723.gif b/animateditems/7723.gif
new file mode 100644
index 00000000..ac7d01ea
Binary files /dev/null and b/animateditems/7723.gif differ
diff --git a/animateditems/7723.png b/animateditems/7723.png
new file mode 100644
index 00000000..01670bfe
Binary files /dev/null and b/animateditems/7723.png differ
diff --git a/animateditems/7724.gif b/animateditems/7724.gif
new file mode 100644
index 00000000..ff4f4aa0
Binary files /dev/null and b/animateditems/7724.gif differ
diff --git a/animateditems/7724.png b/animateditems/7724.png
new file mode 100644
index 00000000..1cd0261c
Binary files /dev/null and b/animateditems/7724.png differ
diff --git a/animateditems/7725.gif b/animateditems/7725.gif
new file mode 100644
index 00000000..a8583c28
Binary files /dev/null and b/animateditems/7725.gif differ
diff --git a/animateditems/7725.png b/animateditems/7725.png
new file mode 100644
index 00000000..e6f9d8e7
Binary files /dev/null and b/animateditems/7725.png differ
diff --git a/animateditems/7726.gif b/animateditems/7726.gif
new file mode 100644
index 00000000..a717508c
Binary files /dev/null and b/animateditems/7726.gif differ
diff --git a/animateditems/7726.png b/animateditems/7726.png
new file mode 100644
index 00000000..90b65dc4
Binary files /dev/null and b/animateditems/7726.png differ
diff --git a/animateditems/7727.gif b/animateditems/7727.gif
new file mode 100644
index 00000000..3f20d3b8
Binary files /dev/null and b/animateditems/7727.gif differ
diff --git a/animateditems/7727.png b/animateditems/7727.png
new file mode 100644
index 00000000..5a145b65
Binary files /dev/null and b/animateditems/7727.png differ
diff --git a/animateditems/7728.gif b/animateditems/7728.gif
new file mode 100644
index 00000000..e29974f4
Binary files /dev/null and b/animateditems/7728.gif differ
diff --git a/animateditems/7728.png b/animateditems/7728.png
new file mode 100644
index 00000000..0b32a0d8
Binary files /dev/null and b/animateditems/7728.png differ
diff --git a/animateditems/7729.gif b/animateditems/7729.gif
new file mode 100644
index 00000000..c34629d3
Binary files /dev/null and b/animateditems/7729.gif differ
diff --git a/animateditems/7729.png b/animateditems/7729.png
new file mode 100644
index 00000000..89fa2d75
Binary files /dev/null and b/animateditems/7729.png differ
diff --git a/animateditems/7730.gif b/animateditems/7730.gif
new file mode 100644
index 00000000..16ecc38e
Binary files /dev/null and b/animateditems/7730.gif differ
diff --git a/animateditems/7730.png b/animateditems/7730.png
new file mode 100644
index 00000000..8ef8e331
Binary files /dev/null and b/animateditems/7730.png differ
diff --git a/animateditems/7731.gif b/animateditems/7731.gif
new file mode 100644
index 00000000..58582c02
Binary files /dev/null and b/animateditems/7731.gif differ
diff --git a/animateditems/7731.png b/animateditems/7731.png
new file mode 100644
index 00000000..f52b2568
Binary files /dev/null and b/animateditems/7731.png differ
diff --git a/animateditems/7732.gif b/animateditems/7732.gif
new file mode 100644
index 00000000..7a95c247
Binary files /dev/null and b/animateditems/7732.gif differ
diff --git a/animateditems/7732.png b/animateditems/7732.png
new file mode 100644
index 00000000..674d1a3e
Binary files /dev/null and b/animateditems/7732.png differ
diff --git a/animateditems/7733.gif b/animateditems/7733.gif
new file mode 100644
index 00000000..10ed95b5
Binary files /dev/null and b/animateditems/7733.gif differ
diff --git a/animateditems/7733.png b/animateditems/7733.png
new file mode 100644
index 00000000..14b23cee
Binary files /dev/null and b/animateditems/7733.png differ
diff --git a/animateditems/7734.gif b/animateditems/7734.gif
new file mode 100644
index 00000000..ac292901
Binary files /dev/null and b/animateditems/7734.gif differ
diff --git a/animateditems/7734.png b/animateditems/7734.png
new file mode 100644
index 00000000..04c1b927
Binary files /dev/null and b/animateditems/7734.png differ
diff --git a/animateditems/7735.gif b/animateditems/7735.gif
new file mode 100644
index 00000000..0c76bd0e
Binary files /dev/null and b/animateditems/7735.gif differ
diff --git a/animateditems/7735.png b/animateditems/7735.png
new file mode 100644
index 00000000..828619ff
Binary files /dev/null and b/animateditems/7735.png differ
diff --git a/animateditems/7736.gif b/animateditems/7736.gif
new file mode 100644
index 00000000..5f176282
Binary files /dev/null and b/animateditems/7736.gif differ
diff --git a/animateditems/7736.png b/animateditems/7736.png
new file mode 100644
index 00000000..8779792d
Binary files /dev/null and b/animateditems/7736.png differ
diff --git a/animateditems/7737.gif b/animateditems/7737.gif
new file mode 100644
index 00000000..3dccbf8f
Binary files /dev/null and b/animateditems/7737.gif differ
diff --git a/animateditems/7737.png b/animateditems/7737.png
new file mode 100644
index 00000000..877f232c
Binary files /dev/null and b/animateditems/7737.png differ
diff --git a/animateditems/7738.gif b/animateditems/7738.gif
new file mode 100644
index 00000000..c6e3a8fa
Binary files /dev/null and b/animateditems/7738.gif differ
diff --git a/animateditems/7738.png b/animateditems/7738.png
new file mode 100644
index 00000000..d0fdf769
Binary files /dev/null and b/animateditems/7738.png differ
diff --git a/animateditems/7739.gif b/animateditems/7739.gif
new file mode 100644
index 00000000..17789744
Binary files /dev/null and b/animateditems/7739.gif differ
diff --git a/animateditems/7739.png b/animateditems/7739.png
new file mode 100644
index 00000000..7150880d
Binary files /dev/null and b/animateditems/7739.png differ
diff --git a/animateditems/7744.gif b/animateditems/7744.gif
new file mode 100644
index 00000000..b59001a4
Binary files /dev/null and b/animateditems/7744.gif differ
diff --git a/animateditems/7744.png b/animateditems/7744.png
new file mode 100644
index 00000000..4304acdf
Binary files /dev/null and b/animateditems/7744.png differ
diff --git a/animateditems/7745.gif b/animateditems/7745.gif
new file mode 100644
index 00000000..20e794ae
Binary files /dev/null and b/animateditems/7745.gif differ
diff --git a/animateditems/7745.png b/animateditems/7745.png
new file mode 100644
index 00000000..5f2a57fe
Binary files /dev/null and b/animateditems/7745.png differ
diff --git a/animateditems/7746.gif b/animateditems/7746.gif
new file mode 100644
index 00000000..8c7d66c7
Binary files /dev/null and b/animateditems/7746.gif differ
diff --git a/animateditems/7746.png b/animateditems/7746.png
new file mode 100644
index 00000000..3496bade
Binary files /dev/null and b/animateditems/7746.png differ
diff --git a/animateditems/7747.gif b/animateditems/7747.gif
new file mode 100644
index 00000000..9c2a764a
Binary files /dev/null and b/animateditems/7747.gif differ
diff --git a/animateditems/7747.png b/animateditems/7747.png
new file mode 100644
index 00000000..048e4696
Binary files /dev/null and b/animateditems/7747.png differ
diff --git a/animateditems/7748.gif b/animateditems/7748.gif
new file mode 100644
index 00000000..f0c8f9ba
Binary files /dev/null and b/animateditems/7748.gif differ
diff --git a/animateditems/7748.png b/animateditems/7748.png
new file mode 100644
index 00000000..2f9ff89c
Binary files /dev/null and b/animateditems/7748.png differ
diff --git a/animateditems/7749.gif b/animateditems/7749.gif
new file mode 100644
index 00000000..4c2d8ebf
Binary files /dev/null and b/animateditems/7749.gif differ
diff --git a/animateditems/7749.png b/animateditems/7749.png
new file mode 100644
index 00000000..a9f951f7
Binary files /dev/null and b/animateditems/7749.png differ
diff --git a/animateditems/7750.gif b/animateditems/7750.gif
new file mode 100644
index 00000000..0a9a4d6e
Binary files /dev/null and b/animateditems/7750.gif differ
diff --git a/animateditems/7750.png b/animateditems/7750.png
new file mode 100644
index 00000000..7145c8f7
Binary files /dev/null and b/animateditems/7750.png differ
diff --git a/animateditems/7751.gif b/animateditems/7751.gif
new file mode 100644
index 00000000..6397d17b
Binary files /dev/null and b/animateditems/7751.gif differ
diff --git a/animateditems/7751.png b/animateditems/7751.png
new file mode 100644
index 00000000..48538008
Binary files /dev/null and b/animateditems/7751.png differ
diff --git a/animateditems/7752.gif b/animateditems/7752.gif
new file mode 100644
index 00000000..0bb03d9f
Binary files /dev/null and b/animateditems/7752.gif differ
diff --git a/animateditems/7752.png b/animateditems/7752.png
new file mode 100644
index 00000000..0e4a9a47
Binary files /dev/null and b/animateditems/7752.png differ
diff --git a/animateditems/7753.gif b/animateditems/7753.gif
new file mode 100644
index 00000000..97f80e58
Binary files /dev/null and b/animateditems/7753.gif differ
diff --git a/animateditems/7753.png b/animateditems/7753.png
new file mode 100644
index 00000000..a7a9199d
Binary files /dev/null and b/animateditems/7753.png differ
diff --git a/animateditems/7754.gif b/animateditems/7754.gif
new file mode 100644
index 00000000..08f79781
Binary files /dev/null and b/animateditems/7754.gif differ
diff --git a/animateditems/7754.png b/animateditems/7754.png
new file mode 100644
index 00000000..49c32e57
Binary files /dev/null and b/animateditems/7754.png differ
diff --git a/animateditems/7755.gif b/animateditems/7755.gif
new file mode 100644
index 00000000..a849927b
Binary files /dev/null and b/animateditems/7755.gif differ
diff --git a/animateditems/7755.png b/animateditems/7755.png
new file mode 100644
index 00000000..85f6eb3c
Binary files /dev/null and b/animateditems/7755.png differ
diff --git a/animateditems/7756.gif b/animateditems/7756.gif
new file mode 100644
index 00000000..79b91377
Binary files /dev/null and b/animateditems/7756.gif differ
diff --git a/animateditems/7756.png b/animateditems/7756.png
new file mode 100644
index 00000000..4ba2b044
Binary files /dev/null and b/animateditems/7756.png differ
diff --git a/animateditems/7757.gif b/animateditems/7757.gif
new file mode 100644
index 00000000..6091aed2
Binary files /dev/null and b/animateditems/7757.gif differ
diff --git a/animateditems/7757.png b/animateditems/7757.png
new file mode 100644
index 00000000..11361a7a
Binary files /dev/null and b/animateditems/7757.png differ
diff --git a/animateditems/7758.gif b/animateditems/7758.gif
new file mode 100644
index 00000000..b24373c1
Binary files /dev/null and b/animateditems/7758.gif differ
diff --git a/animateditems/7758.png b/animateditems/7758.png
new file mode 100644
index 00000000..580b14e1
Binary files /dev/null and b/animateditems/7758.png differ
diff --git a/animateditems/7759.gif b/animateditems/7759.gif
new file mode 100644
index 00000000..fe676e97
Binary files /dev/null and b/animateditems/7759.gif differ
diff --git a/animateditems/7759.png b/animateditems/7759.png
new file mode 100644
index 00000000..18d9f776
Binary files /dev/null and b/animateditems/7759.png differ
diff --git a/animateditems/7760.gif b/animateditems/7760.gif
new file mode 100644
index 00000000..5847bdac
Binary files /dev/null and b/animateditems/7760.gif differ
diff --git a/animateditems/7760.png b/animateditems/7760.png
new file mode 100644
index 00000000..5bd2d4a3
Binary files /dev/null and b/animateditems/7760.png differ
diff --git a/animateditems/7761.gif b/animateditems/7761.gif
new file mode 100644
index 00000000..f53b61f0
Binary files /dev/null and b/animateditems/7761.gif differ
diff --git a/animateditems/7761.png b/animateditems/7761.png
new file mode 100644
index 00000000..ed653508
Binary files /dev/null and b/animateditems/7761.png differ
diff --git a/animateditems/7762.gif b/animateditems/7762.gif
new file mode 100644
index 00000000..6539edf4
Binary files /dev/null and b/animateditems/7762.gif differ
diff --git a/animateditems/7762.png b/animateditems/7762.png
new file mode 100644
index 00000000..5fac18e4
Binary files /dev/null and b/animateditems/7762.png differ
diff --git a/animateditems/7763.gif b/animateditems/7763.gif
new file mode 100644
index 00000000..ad7443f1
Binary files /dev/null and b/animateditems/7763.gif differ
diff --git a/animateditems/7763.png b/animateditems/7763.png
new file mode 100644
index 00000000..2b339f8a
Binary files /dev/null and b/animateditems/7763.png differ
diff --git a/animateditems/7764.gif b/animateditems/7764.gif
new file mode 100644
index 00000000..aac882b8
Binary files /dev/null and b/animateditems/7764.gif differ
diff --git a/animateditems/7764.png b/animateditems/7764.png
new file mode 100644
index 00000000..65dc4eb9
Binary files /dev/null and b/animateditems/7764.png differ
diff --git a/animateditems/7765.gif b/animateditems/7765.gif
new file mode 100644
index 00000000..66024171
Binary files /dev/null and b/animateditems/7765.gif differ
diff --git a/animateditems/7765.png b/animateditems/7765.png
new file mode 100644
index 00000000..a0dc4e79
Binary files /dev/null and b/animateditems/7765.png differ
diff --git a/animateditems/7766.gif b/animateditems/7766.gif
new file mode 100644
index 00000000..9dde0ed6
Binary files /dev/null and b/animateditems/7766.gif differ
diff --git a/animateditems/7766.png b/animateditems/7766.png
new file mode 100644
index 00000000..b1c70cad
Binary files /dev/null and b/animateditems/7766.png differ
diff --git a/animateditems/7767.gif b/animateditems/7767.gif
new file mode 100644
index 00000000..c8bf5115
Binary files /dev/null and b/animateditems/7767.gif differ
diff --git a/animateditems/7767.png b/animateditems/7767.png
new file mode 100644
index 00000000..719e9bbf
Binary files /dev/null and b/animateditems/7767.png differ
diff --git a/animateditems/7768.gif b/animateditems/7768.gif
new file mode 100644
index 00000000..a6d2f30a
Binary files /dev/null and b/animateditems/7768.gif differ
diff --git a/animateditems/7768.png b/animateditems/7768.png
new file mode 100644
index 00000000..760981e0
Binary files /dev/null and b/animateditems/7768.png differ
diff --git a/animateditems/7769.gif b/animateditems/7769.gif
new file mode 100644
index 00000000..5297613b
Binary files /dev/null and b/animateditems/7769.gif differ
diff --git a/animateditems/7769.png b/animateditems/7769.png
new file mode 100644
index 00000000..b2d20fc8
Binary files /dev/null and b/animateditems/7769.png differ
diff --git a/animateditems/7770.gif b/animateditems/7770.gif
new file mode 100644
index 00000000..509b6f3b
Binary files /dev/null and b/animateditems/7770.gif differ
diff --git a/animateditems/7770.png b/animateditems/7770.png
new file mode 100644
index 00000000..08f7ccb5
Binary files /dev/null and b/animateditems/7770.png differ
diff --git a/animateditems/7771.gif b/animateditems/7771.gif
new file mode 100644
index 00000000..d16d80be
Binary files /dev/null and b/animateditems/7771.gif differ
diff --git a/animateditems/7771.png b/animateditems/7771.png
new file mode 100644
index 00000000..d2987579
Binary files /dev/null and b/animateditems/7771.png differ
diff --git a/animateditems/7772.gif b/animateditems/7772.gif
new file mode 100644
index 00000000..733b9418
Binary files /dev/null and b/animateditems/7772.gif differ
diff --git a/animateditems/7772.png b/animateditems/7772.png
new file mode 100644
index 00000000..89c041a8
Binary files /dev/null and b/animateditems/7772.png differ
diff --git a/animateditems/7773.gif b/animateditems/7773.gif
new file mode 100644
index 00000000..abd753a6
Binary files /dev/null and b/animateditems/7773.gif differ
diff --git a/animateditems/7773.png b/animateditems/7773.png
new file mode 100644
index 00000000..35e0d7c9
Binary files /dev/null and b/animateditems/7773.png differ
diff --git a/animateditems/7774.gif b/animateditems/7774.gif
new file mode 100644
index 00000000..3b199628
Binary files /dev/null and b/animateditems/7774.gif differ
diff --git a/animateditems/7774.png b/animateditems/7774.png
new file mode 100644
index 00000000..589eb024
Binary files /dev/null and b/animateditems/7774.png differ
diff --git a/animateditems/7775.gif b/animateditems/7775.gif
new file mode 100644
index 00000000..a0eecd5c
Binary files /dev/null and b/animateditems/7775.gif differ
diff --git a/animateditems/7775.png b/animateditems/7775.png
new file mode 100644
index 00000000..0f4e9808
Binary files /dev/null and b/animateditems/7775.png differ
diff --git a/animateditems/7776.gif b/animateditems/7776.gif
new file mode 100644
index 00000000..d97e7a18
Binary files /dev/null and b/animateditems/7776.gif differ
diff --git a/animateditems/7776.png b/animateditems/7776.png
new file mode 100644
index 00000000..b9ed6876
Binary files /dev/null and b/animateditems/7776.png differ
diff --git a/animateditems/7777.gif b/animateditems/7777.gif
new file mode 100644
index 00000000..949178af
Binary files /dev/null and b/animateditems/7777.gif differ
diff --git a/animateditems/7777.png b/animateditems/7777.png
new file mode 100644
index 00000000..6b047a65
Binary files /dev/null and b/animateditems/7777.png differ
diff --git a/animateditems/7838.gif b/animateditems/7838.gif
new file mode 100644
index 00000000..57857e48
Binary files /dev/null and b/animateditems/7838.gif differ
diff --git a/animateditems/7838.png b/animateditems/7838.png
new file mode 100644
index 00000000..8d47d042
Binary files /dev/null and b/animateditems/7838.png differ
diff --git a/animateditems/7839.gif b/animateditems/7839.gif
new file mode 100644
index 00000000..1fdc5a53
Binary files /dev/null and b/animateditems/7839.gif differ
diff --git a/animateditems/7839.png b/animateditems/7839.png
new file mode 100644
index 00000000..31a9e84b
Binary files /dev/null and b/animateditems/7839.png differ
diff --git a/animateditems/7840.gif b/animateditems/7840.gif
new file mode 100644
index 00000000..546dfa24
Binary files /dev/null and b/animateditems/7840.gif differ
diff --git a/animateditems/7840.png b/animateditems/7840.png
new file mode 100644
index 00000000..6457ca87
Binary files /dev/null and b/animateditems/7840.png differ
diff --git a/animateditems/7844.gif b/animateditems/7844.gif
new file mode 100644
index 00000000..3f020ae3
Binary files /dev/null and b/animateditems/7844.gif differ
diff --git a/animateditems/7844.png b/animateditems/7844.png
new file mode 100644
index 00000000..5827ed24
Binary files /dev/null and b/animateditems/7844.png differ
diff --git a/animateditems/7845.gif b/animateditems/7845.gif
new file mode 100644
index 00000000..3f020ae3
Binary files /dev/null and b/animateditems/7845.gif differ
diff --git a/animateditems/7845.png b/animateditems/7845.png
new file mode 100644
index 00000000..5827ed24
Binary files /dev/null and b/animateditems/7845.png differ
diff --git a/animateditems/7846.gif b/animateditems/7846.gif
new file mode 100644
index 00000000..3f020ae3
Binary files /dev/null and b/animateditems/7846.gif differ
diff --git a/animateditems/7846.png b/animateditems/7846.png
new file mode 100644
index 00000000..5827ed24
Binary files /dev/null and b/animateditems/7846.png differ
diff --git a/animateditems/7850.gif b/animateditems/7850.gif
new file mode 100644
index 00000000..7b8e42f9
Binary files /dev/null and b/animateditems/7850.gif differ
diff --git a/animateditems/7850.png b/animateditems/7850.png
new file mode 100644
index 00000000..61bf1202
Binary files /dev/null and b/animateditems/7850.png differ
diff --git a/animateditems/7854.gif b/animateditems/7854.gif
new file mode 100644
index 00000000..ddb1e835
Binary files /dev/null and b/animateditems/7854.gif differ
diff --git a/animateditems/7854.png b/animateditems/7854.png
new file mode 100644
index 00000000..d7ade5e3
Binary files /dev/null and b/animateditems/7854.png differ
diff --git a/animateditems/7855.gif b/animateditems/7855.gif
new file mode 100644
index 00000000..7a8c52ed
Binary files /dev/null and b/animateditems/7855.gif differ
diff --git a/animateditems/7855.png b/animateditems/7855.png
new file mode 100644
index 00000000..cb7c9544
Binary files /dev/null and b/animateditems/7855.png differ
diff --git a/animateditems/7856.gif b/animateditems/7856.gif
new file mode 100644
index 00000000..2f3c20dc
Binary files /dev/null and b/animateditems/7856.gif differ
diff --git a/animateditems/7856.png b/animateditems/7856.png
new file mode 100644
index 00000000..f2a64e7b
Binary files /dev/null and b/animateditems/7856.png differ
diff --git a/animateditems/7857.gif b/animateditems/7857.gif
new file mode 100644
index 00000000..d4e3566d
Binary files /dev/null and b/animateditems/7857.gif differ
diff --git a/animateditems/7857.png b/animateditems/7857.png
new file mode 100644
index 00000000..72f2fdb4
Binary files /dev/null and b/animateditems/7857.png differ
diff --git a/animateditems/7858.gif b/animateditems/7858.gif
new file mode 100644
index 00000000..700d9ca6
Binary files /dev/null and b/animateditems/7858.gif differ
diff --git a/animateditems/7858.png b/animateditems/7858.png
new file mode 100644
index 00000000..08b88abc
Binary files /dev/null and b/animateditems/7858.png differ
diff --git a/animateditems/7859.gif b/animateditems/7859.gif
new file mode 100644
index 00000000..c360bb81
Binary files /dev/null and b/animateditems/7859.gif differ
diff --git a/animateditems/7859.png b/animateditems/7859.png
new file mode 100644
index 00000000..604d488d
Binary files /dev/null and b/animateditems/7859.png differ
diff --git a/animateditems/7860.gif b/animateditems/7860.gif
new file mode 100644
index 00000000..0a75b128
Binary files /dev/null and b/animateditems/7860.gif differ
diff --git a/animateditems/7860.png b/animateditems/7860.png
new file mode 100644
index 00000000..af7d22c3
Binary files /dev/null and b/animateditems/7860.png differ
diff --git a/animateditems/7861.gif b/animateditems/7861.gif
new file mode 100644
index 00000000..69ff5a2f
Binary files /dev/null and b/animateditems/7861.gif differ
diff --git a/animateditems/7861.png b/animateditems/7861.png
new file mode 100644
index 00000000..bdac6c8b
Binary files /dev/null and b/animateditems/7861.png differ
diff --git a/animateditems/7862.gif b/animateditems/7862.gif
new file mode 100644
index 00000000..317e621d
Binary files /dev/null and b/animateditems/7862.gif differ
diff --git a/animateditems/7862.png b/animateditems/7862.png
new file mode 100644
index 00000000..61789675
Binary files /dev/null and b/animateditems/7862.png differ
diff --git a/animateditems/7863.gif b/animateditems/7863.gif
new file mode 100644
index 00000000..76105381
Binary files /dev/null and b/animateditems/7863.gif differ
diff --git a/animateditems/7863.png b/animateditems/7863.png
new file mode 100644
index 00000000..3810be81
Binary files /dev/null and b/animateditems/7863.png differ
diff --git a/animateditems/7864.gif b/animateditems/7864.gif
new file mode 100644
index 00000000..6c73c661
Binary files /dev/null and b/animateditems/7864.gif differ
diff --git a/animateditems/7864.png b/animateditems/7864.png
new file mode 100644
index 00000000..fbf13290
Binary files /dev/null and b/animateditems/7864.png differ
diff --git a/animateditems/7865.gif b/animateditems/7865.gif
new file mode 100644
index 00000000..94804695
Binary files /dev/null and b/animateditems/7865.gif differ
diff --git a/animateditems/7865.png b/animateditems/7865.png
new file mode 100644
index 00000000..17174dbd
Binary files /dev/null and b/animateditems/7865.png differ
diff --git a/animateditems/7866.gif b/animateditems/7866.gif
new file mode 100644
index 00000000..571004c7
Binary files /dev/null and b/animateditems/7866.gif differ
diff --git a/animateditems/7866.png b/animateditems/7866.png
new file mode 100644
index 00000000..ff0eff78
Binary files /dev/null and b/animateditems/7866.png differ
diff --git a/animateditems/7867.gif b/animateditems/7867.gif
new file mode 100644
index 00000000..7644b6b3
Binary files /dev/null and b/animateditems/7867.gif differ
diff --git a/animateditems/7867.png b/animateditems/7867.png
new file mode 100644
index 00000000..3f5d6888
Binary files /dev/null and b/animateditems/7867.png differ
diff --git a/animateditems/7868.gif b/animateditems/7868.gif
new file mode 100644
index 00000000..d1de4044
Binary files /dev/null and b/animateditems/7868.gif differ
diff --git a/animateditems/7868.png b/animateditems/7868.png
new file mode 100644
index 00000000..86b18d8b
Binary files /dev/null and b/animateditems/7868.png differ
diff --git a/animateditems/7869.gif b/animateditems/7869.gif
new file mode 100644
index 00000000..d2d6a6a6
Binary files /dev/null and b/animateditems/7869.gif differ
diff --git a/animateditems/7869.png b/animateditems/7869.png
new file mode 100644
index 00000000..9fe1652f
Binary files /dev/null and b/animateditems/7869.png differ
diff --git a/animateditems/7870.gif b/animateditems/7870.gif
new file mode 100644
index 00000000..c21040b2
Binary files /dev/null and b/animateditems/7870.gif differ
diff --git a/animateditems/7870.png b/animateditems/7870.png
new file mode 100644
index 00000000..b6120432
Binary files /dev/null and b/animateditems/7870.png differ
diff --git a/animateditems/7871.gif b/animateditems/7871.gif
new file mode 100644
index 00000000..9627bbb8
Binary files /dev/null and b/animateditems/7871.gif differ
diff --git a/animateditems/7871.png b/animateditems/7871.png
new file mode 100644
index 00000000..78a3f915
Binary files /dev/null and b/animateditems/7871.png differ
diff --git a/animateditems/7872.gif b/animateditems/7872.gif
new file mode 100644
index 00000000..3035ecc5
Binary files /dev/null and b/animateditems/7872.gif differ
diff --git a/animateditems/7872.png b/animateditems/7872.png
new file mode 100644
index 00000000..a9310198
Binary files /dev/null and b/animateditems/7872.png differ
diff --git a/animateditems/7873.gif b/animateditems/7873.gif
new file mode 100644
index 00000000..cf0c9107
Binary files /dev/null and b/animateditems/7873.gif differ
diff --git a/animateditems/7873.png b/animateditems/7873.png
new file mode 100644
index 00000000..4f02a3e8
Binary files /dev/null and b/animateditems/7873.png differ
diff --git a/animateditems/7874.gif b/animateditems/7874.gif
new file mode 100644
index 00000000..7b331387
Binary files /dev/null and b/animateditems/7874.gif differ
diff --git a/animateditems/7874.png b/animateditems/7874.png
new file mode 100644
index 00000000..a465be04
Binary files /dev/null and b/animateditems/7874.png differ
diff --git a/animateditems/7875.gif b/animateditems/7875.gif
new file mode 100644
index 00000000..aed5b64f
Binary files /dev/null and b/animateditems/7875.gif differ
diff --git a/animateditems/7875.png b/animateditems/7875.png
new file mode 100644
index 00000000..8d629693
Binary files /dev/null and b/animateditems/7875.png differ
diff --git a/animateditems/7876.gif b/animateditems/7876.gif
new file mode 100644
index 00000000..c2654826
Binary files /dev/null and b/animateditems/7876.gif differ
diff --git a/animateditems/7876.png b/animateditems/7876.png
new file mode 100644
index 00000000..be0df83f
Binary files /dev/null and b/animateditems/7876.png differ
diff --git a/animateditems/7877.gif b/animateditems/7877.gif
new file mode 100644
index 00000000..7f2e14d9
Binary files /dev/null and b/animateditems/7877.gif differ
diff --git a/animateditems/7877.png b/animateditems/7877.png
new file mode 100644
index 00000000..f60750f0
Binary files /dev/null and b/animateditems/7877.png differ
diff --git a/animateditems/7878.gif b/animateditems/7878.gif
new file mode 100644
index 00000000..a888b64b
Binary files /dev/null and b/animateditems/7878.gif differ
diff --git a/animateditems/7878.png b/animateditems/7878.png
new file mode 100644
index 00000000..8736ea0b
Binary files /dev/null and b/animateditems/7878.png differ
diff --git a/animateditems/7879.gif b/animateditems/7879.gif
new file mode 100644
index 00000000..59f6516b
Binary files /dev/null and b/animateditems/7879.gif differ
diff --git a/animateditems/7879.png b/animateditems/7879.png
new file mode 100644
index 00000000..3727a51c
Binary files /dev/null and b/animateditems/7879.png differ
diff --git a/animateditems/7880.gif b/animateditems/7880.gif
new file mode 100644
index 00000000..013e64b3
Binary files /dev/null and b/animateditems/7880.gif differ
diff --git a/animateditems/7880.png b/animateditems/7880.png
new file mode 100644
index 00000000..c6d75692
Binary files /dev/null and b/animateditems/7880.png differ
diff --git a/animateditems/7881.gif b/animateditems/7881.gif
new file mode 100644
index 00000000..e374e9dc
Binary files /dev/null and b/animateditems/7881.gif differ
diff --git a/animateditems/7881.png b/animateditems/7881.png
new file mode 100644
index 00000000..8878b3b1
Binary files /dev/null and b/animateditems/7881.png differ
diff --git a/animateditems/7882.gif b/animateditems/7882.gif
new file mode 100644
index 00000000..543b913c
Binary files /dev/null and b/animateditems/7882.gif differ
diff --git a/animateditems/7882.png b/animateditems/7882.png
new file mode 100644
index 00000000..3a88c39e
Binary files /dev/null and b/animateditems/7882.png differ
diff --git a/animateditems/7883.gif b/animateditems/7883.gif
new file mode 100644
index 00000000..d806775a
Binary files /dev/null and b/animateditems/7883.gif differ
diff --git a/animateditems/7883.png b/animateditems/7883.png
new file mode 100644
index 00000000..46fa660b
Binary files /dev/null and b/animateditems/7883.png differ
diff --git a/animateditems/7884.gif b/animateditems/7884.gif
new file mode 100644
index 00000000..b1a365f1
Binary files /dev/null and b/animateditems/7884.gif differ
diff --git a/animateditems/7884.png b/animateditems/7884.png
new file mode 100644
index 00000000..ff576a57
Binary files /dev/null and b/animateditems/7884.png differ
diff --git a/animateditems/7885.gif b/animateditems/7885.gif
new file mode 100644
index 00000000..653900b1
Binary files /dev/null and b/animateditems/7885.gif differ
diff --git a/animateditems/7885.png b/animateditems/7885.png
new file mode 100644
index 00000000..9c6195d4
Binary files /dev/null and b/animateditems/7885.png differ
diff --git a/animateditems/7886.gif b/animateditems/7886.gif
new file mode 100644
index 00000000..94b9a372
Binary files /dev/null and b/animateditems/7886.gif differ
diff --git a/animateditems/7886.png b/animateditems/7886.png
new file mode 100644
index 00000000..819609db
Binary files /dev/null and b/animateditems/7886.png differ
diff --git a/animateditems/7887.gif b/animateditems/7887.gif
new file mode 100644
index 00000000..b5a18085
Binary files /dev/null and b/animateditems/7887.gif differ
diff --git a/animateditems/7887.png b/animateditems/7887.png
new file mode 100644
index 00000000..1c57d1a2
Binary files /dev/null and b/animateditems/7887.png differ
diff --git a/animateditems/7888.gif b/animateditems/7888.gif
new file mode 100644
index 00000000..195930e5
Binary files /dev/null and b/animateditems/7888.gif differ
diff --git a/animateditems/7888.png b/animateditems/7888.png
new file mode 100644
index 00000000..9a1b74fa
Binary files /dev/null and b/animateditems/7888.png differ
diff --git a/animateditems/7889.gif b/animateditems/7889.gif
new file mode 100644
index 00000000..818ab778
Binary files /dev/null and b/animateditems/7889.gif differ
diff --git a/animateditems/7889.png b/animateditems/7889.png
new file mode 100644
index 00000000..ccfcc9a9
Binary files /dev/null and b/animateditems/7889.png differ
diff --git a/animateditems/7890.gif b/animateditems/7890.gif
new file mode 100644
index 00000000..62f94f01
Binary files /dev/null and b/animateditems/7890.gif differ
diff --git a/animateditems/7890.png b/animateditems/7890.png
new file mode 100644
index 00000000..1a42dc4b
Binary files /dev/null and b/animateditems/7890.png differ
diff --git a/animateditems/7891.gif b/animateditems/7891.gif
new file mode 100644
index 00000000..87ea1d9a
Binary files /dev/null and b/animateditems/7891.gif differ
diff --git a/animateditems/7891.png b/animateditems/7891.png
new file mode 100644
index 00000000..caceb71b
Binary files /dev/null and b/animateditems/7891.png differ
diff --git a/animateditems/7892.gif b/animateditems/7892.gif
new file mode 100644
index 00000000..4bb336fd
Binary files /dev/null and b/animateditems/7892.gif differ
diff --git a/animateditems/7892.png b/animateditems/7892.png
new file mode 100644
index 00000000..5adaabd8
Binary files /dev/null and b/animateditems/7892.png differ
diff --git a/animateditems/7893.gif b/animateditems/7893.gif
new file mode 100644
index 00000000..d43c2bbd
Binary files /dev/null and b/animateditems/7893.gif differ
diff --git a/animateditems/7893.png b/animateditems/7893.png
new file mode 100644
index 00000000..e2b806c9
Binary files /dev/null and b/animateditems/7893.png differ
diff --git a/animateditems/7894.gif b/animateditems/7894.gif
new file mode 100644
index 00000000..9d0d8bd0
Binary files /dev/null and b/animateditems/7894.gif differ
diff --git a/animateditems/7894.png b/animateditems/7894.png
new file mode 100644
index 00000000..8b7d9336
Binary files /dev/null and b/animateditems/7894.png differ
diff --git a/animateditems/7895.gif b/animateditems/7895.gif
new file mode 100644
index 00000000..adfe7589
Binary files /dev/null and b/animateditems/7895.gif differ
diff --git a/animateditems/7895.png b/animateditems/7895.png
new file mode 100644
index 00000000..ae87dd11
Binary files /dev/null and b/animateditems/7895.png differ
diff --git a/animateditems/7896.gif b/animateditems/7896.gif
new file mode 100644
index 00000000..94eafb14
Binary files /dev/null and b/animateditems/7896.gif differ
diff --git a/animateditems/7896.png b/animateditems/7896.png
new file mode 100644
index 00000000..eafb6330
Binary files /dev/null and b/animateditems/7896.png differ
diff --git a/animateditems/7897.gif b/animateditems/7897.gif
new file mode 100644
index 00000000..c7b5e51e
Binary files /dev/null and b/animateditems/7897.gif differ
diff --git a/animateditems/7897.png b/animateditems/7897.png
new file mode 100644
index 00000000..8360937f
Binary files /dev/null and b/animateditems/7897.png differ
diff --git a/animateditems/7898.gif b/animateditems/7898.gif
new file mode 100644
index 00000000..4f374949
Binary files /dev/null and b/animateditems/7898.gif differ
diff --git a/animateditems/7898.png b/animateditems/7898.png
new file mode 100644
index 00000000..47aba785
Binary files /dev/null and b/animateditems/7898.png differ
diff --git a/animateditems/7899.gif b/animateditems/7899.gif
new file mode 100644
index 00000000..6846391f
Binary files /dev/null and b/animateditems/7899.gif differ
diff --git a/animateditems/7899.png b/animateditems/7899.png
new file mode 100644
index 00000000..6ac05f27
Binary files /dev/null and b/animateditems/7899.png differ
diff --git a/animateditems/7900.gif b/animateditems/7900.gif
new file mode 100644
index 00000000..91b4882e
Binary files /dev/null and b/animateditems/7900.gif differ
diff --git a/animateditems/7900.png b/animateditems/7900.png
new file mode 100644
index 00000000..638bce1f
Binary files /dev/null and b/animateditems/7900.png differ
diff --git a/animateditems/7901.gif b/animateditems/7901.gif
new file mode 100644
index 00000000..4cff4cba
Binary files /dev/null and b/animateditems/7901.gif differ
diff --git a/animateditems/7901.png b/animateditems/7901.png
new file mode 100644
index 00000000..44f119af
Binary files /dev/null and b/animateditems/7901.png differ
diff --git a/animateditems/7902.gif b/animateditems/7902.gif
new file mode 100644
index 00000000..0b1859c5
Binary files /dev/null and b/animateditems/7902.gif differ
diff --git a/animateditems/7902.png b/animateditems/7902.png
new file mode 100644
index 00000000..1beafe79
Binary files /dev/null and b/animateditems/7902.png differ
diff --git a/animateditems/7903.gif b/animateditems/7903.gif
new file mode 100644
index 00000000..426379d1
Binary files /dev/null and b/animateditems/7903.gif differ
diff --git a/animateditems/7903.png b/animateditems/7903.png
new file mode 100644
index 00000000..b209f934
Binary files /dev/null and b/animateditems/7903.png differ
diff --git a/animateditems/7904.gif b/animateditems/7904.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/7904.gif differ
diff --git a/animateditems/7904.png b/animateditems/7904.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/7904.png differ
diff --git a/animateditems/7905.gif b/animateditems/7905.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/7905.gif differ
diff --git a/animateditems/7905.png b/animateditems/7905.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/7905.png differ
diff --git a/animateditems/7906.gif b/animateditems/7906.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/7906.gif differ
diff --git a/animateditems/7906.png b/animateditems/7906.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/7906.png differ
diff --git a/animateditems/7907.gif b/animateditems/7907.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/7907.gif differ
diff --git a/animateditems/7907.png b/animateditems/7907.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/7907.png differ
diff --git a/animateditems/7909.gif b/animateditems/7909.gif
new file mode 100644
index 00000000..f0545702
Binary files /dev/null and b/animateditems/7909.gif differ
diff --git a/animateditems/7909.png b/animateditems/7909.png
new file mode 100644
index 00000000..1269bf37
Binary files /dev/null and b/animateditems/7909.png differ
diff --git a/animateditems/7910.gif b/animateditems/7910.gif
new file mode 100644
index 00000000..fea6cabf
Binary files /dev/null and b/animateditems/7910.gif differ
diff --git a/animateditems/7910.png b/animateditems/7910.png
new file mode 100644
index 00000000..cdeef065
Binary files /dev/null and b/animateditems/7910.png differ
diff --git a/animateditems/7927.gif b/animateditems/7927.gif
new file mode 100644
index 00000000..a595857f
Binary files /dev/null and b/animateditems/7927.gif differ
diff --git a/animateditems/7927.png b/animateditems/7927.png
new file mode 100644
index 00000000..8c9db3f1
Binary files /dev/null and b/animateditems/7927.png differ
diff --git a/animateditems/7928.gif b/animateditems/7928.gif
new file mode 100644
index 00000000..15940d04
Binary files /dev/null and b/animateditems/7928.gif differ
diff --git a/animateditems/7928.png b/animateditems/7928.png
new file mode 100644
index 00000000..e98f5d7a
Binary files /dev/null and b/animateditems/7928.png differ
diff --git a/animateditems/7929.gif b/animateditems/7929.gif
new file mode 100644
index 00000000..e11522aa
Binary files /dev/null and b/animateditems/7929.gif differ
diff --git a/animateditems/7929.png b/animateditems/7929.png
new file mode 100644
index 00000000..9d7967cc
Binary files /dev/null and b/animateditems/7929.png differ
diff --git a/animateditems/7931.gif b/animateditems/7931.gif
new file mode 100644
index 00000000..4492ddf5
Binary files /dev/null and b/animateditems/7931.gif differ
diff --git a/animateditems/7931.png b/animateditems/7931.png
new file mode 100644
index 00000000..14761109
Binary files /dev/null and b/animateditems/7931.png differ
diff --git a/animateditems/7936.gif b/animateditems/7936.gif
new file mode 100644
index 00000000..baff9602
Binary files /dev/null and b/animateditems/7936.gif differ
diff --git a/animateditems/7936.png b/animateditems/7936.png
new file mode 100644
index 00000000..fe4d0348
Binary files /dev/null and b/animateditems/7936.png differ
diff --git a/animateditems/7939.gif b/animateditems/7939.gif
new file mode 100644
index 00000000..5a411471
Binary files /dev/null and b/animateditems/7939.gif differ
diff --git a/animateditems/7939.png b/animateditems/7939.png
new file mode 100644
index 00000000..6a53bcc8
Binary files /dev/null and b/animateditems/7939.png differ
diff --git a/animateditems/7955.gif b/animateditems/7955.gif
new file mode 100644
index 00000000..31ef8995
Binary files /dev/null and b/animateditems/7955.gif differ
diff --git a/animateditems/7955.png b/animateditems/7955.png
new file mode 100644
index 00000000..f533b1c3
Binary files /dev/null and b/animateditems/7955.png differ
diff --git a/animateditems/7956.gif b/animateditems/7956.gif
new file mode 100644
index 00000000..21ab842e
Binary files /dev/null and b/animateditems/7956.gif differ
diff --git a/animateditems/7956.png b/animateditems/7956.png
new file mode 100644
index 00000000..925ee589
Binary files /dev/null and b/animateditems/7956.png differ
diff --git a/animateditems/7957.gif b/animateditems/7957.gif
new file mode 100644
index 00000000..cb897adc
Binary files /dev/null and b/animateditems/7957.gif differ
diff --git a/animateditems/7957.png b/animateditems/7957.png
new file mode 100644
index 00000000..f228306d
Binary files /dev/null and b/animateditems/7957.png differ
diff --git a/animateditems/7958.gif b/animateditems/7958.gif
new file mode 100644
index 00000000..ac158a7b
Binary files /dev/null and b/animateditems/7958.gif differ
diff --git a/animateditems/7958.png b/animateditems/7958.png
new file mode 100644
index 00000000..91cb71a4
Binary files /dev/null and b/animateditems/7958.png differ
diff --git a/animateditems/7959.gif b/animateditems/7959.gif
new file mode 100644
index 00000000..4ce85363
Binary files /dev/null and b/animateditems/7959.gif differ
diff --git a/animateditems/7959.png b/animateditems/7959.png
new file mode 100644
index 00000000..c6c8ed08
Binary files /dev/null and b/animateditems/7959.png differ
diff --git a/animateditems/7960.gif b/animateditems/7960.gif
new file mode 100644
index 00000000..fc16469a
Binary files /dev/null and b/animateditems/7960.gif differ
diff --git a/animateditems/7960.png b/animateditems/7960.png
new file mode 100644
index 00000000..71a36934
Binary files /dev/null and b/animateditems/7960.png differ
diff --git a/animateditems/7961.gif b/animateditems/7961.gif
new file mode 100644
index 00000000..fc16469a
Binary files /dev/null and b/animateditems/7961.gif differ
diff --git a/animateditems/7961.png b/animateditems/7961.png
new file mode 100644
index 00000000..71a36934
Binary files /dev/null and b/animateditems/7961.png differ
diff --git a/animateditems/7962.gif b/animateditems/7962.gif
new file mode 100644
index 00000000..fc16469a
Binary files /dev/null and b/animateditems/7962.gif differ
diff --git a/animateditems/7962.png b/animateditems/7962.png
new file mode 100644
index 00000000..71a36934
Binary files /dev/null and b/animateditems/7962.png differ
diff --git a/animateditems/7963.gif b/animateditems/7963.gif
new file mode 100644
index 00000000..fe52b066
Binary files /dev/null and b/animateditems/7963.gif differ
diff --git a/animateditems/7963.png b/animateditems/7963.png
new file mode 100644
index 00000000..e7ea4f12
Binary files /dev/null and b/animateditems/7963.png differ
diff --git a/animateditems/7964.gif b/animateditems/7964.gif
new file mode 100644
index 00000000..5e3bd17f
Binary files /dev/null and b/animateditems/7964.gif differ
diff --git a/animateditems/7964.png b/animateditems/7964.png
new file mode 100644
index 00000000..691b21d6
Binary files /dev/null and b/animateditems/7964.png differ
diff --git a/animateditems/7965.gif b/animateditems/7965.gif
new file mode 100644
index 00000000..4cb8dc9c
Binary files /dev/null and b/animateditems/7965.gif differ
diff --git a/animateditems/7965.png b/animateditems/7965.png
new file mode 100644
index 00000000..af1db9d5
Binary files /dev/null and b/animateditems/7965.png differ
diff --git a/animateditems/7966.gif b/animateditems/7966.gif
new file mode 100644
index 00000000..cb9497ab
Binary files /dev/null and b/animateditems/7966.gif differ
diff --git a/animateditems/7966.png b/animateditems/7966.png
new file mode 100644
index 00000000..52fe503f
Binary files /dev/null and b/animateditems/7966.png differ
diff --git a/animateditems/7967.gif b/animateditems/7967.gif
new file mode 100644
index 00000000..042e90da
Binary files /dev/null and b/animateditems/7967.gif differ
diff --git a/animateditems/7967.png b/animateditems/7967.png
new file mode 100644
index 00000000..cd64721f
Binary files /dev/null and b/animateditems/7967.png differ
diff --git a/animateditems/7968.gif b/animateditems/7968.gif
new file mode 100644
index 00000000..042e90da
Binary files /dev/null and b/animateditems/7968.gif differ
diff --git a/animateditems/7968.png b/animateditems/7968.png
new file mode 100644
index 00000000..cd64721f
Binary files /dev/null and b/animateditems/7968.png differ
diff --git a/animateditems/8.gif b/animateditems/8.gif
new file mode 100644
index 00000000..8c755aed
Binary files /dev/null and b/animateditems/8.gif differ
diff --git a/animateditems/8072.gif b/animateditems/8072.gif
new file mode 100644
index 00000000..0858f3ce
Binary files /dev/null and b/animateditems/8072.gif differ
diff --git a/animateditems/8072.png b/animateditems/8072.png
new file mode 100644
index 00000000..465eed54
Binary files /dev/null and b/animateditems/8072.png differ
diff --git a/animateditems/8109.gif b/animateditems/8109.gif
new file mode 100644
index 00000000..69d95c38
Binary files /dev/null and b/animateditems/8109.gif differ
diff --git a/animateditems/8109.png b/animateditems/8109.png
new file mode 100644
index 00000000..a63f7982
Binary files /dev/null and b/animateditems/8109.png differ
diff --git a/animateditems/8110.gif b/animateditems/8110.gif
new file mode 100644
index 00000000..fde9fc8a
Binary files /dev/null and b/animateditems/8110.gif differ
diff --git a/animateditems/8110.png b/animateditems/8110.png
new file mode 100644
index 00000000..30389134
Binary files /dev/null and b/animateditems/8110.png differ
diff --git a/animateditems/8111.gif b/animateditems/8111.gif
new file mode 100644
index 00000000..f26c8044
Binary files /dev/null and b/animateditems/8111.gif differ
diff --git a/animateditems/8111.png b/animateditems/8111.png
new file mode 100644
index 00000000..9b13557f
Binary files /dev/null and b/animateditems/8111.png differ
diff --git a/animateditems/8112.gif b/animateditems/8112.gif
new file mode 100644
index 00000000..2e9bee12
Binary files /dev/null and b/animateditems/8112.gif differ
diff --git a/animateditems/8112.png b/animateditems/8112.png
new file mode 100644
index 00000000..93c5d4d7
Binary files /dev/null and b/animateditems/8112.png differ
diff --git a/animateditems/8182.gif b/animateditems/8182.gif
new file mode 100644
index 00000000..df563980
Binary files /dev/null and b/animateditems/8182.gif differ
diff --git a/animateditems/8182.png b/animateditems/8182.png
new file mode 100644
index 00000000..ba0c4f81
Binary files /dev/null and b/animateditems/8182.png differ
diff --git a/animateditems/8187.gif b/animateditems/8187.gif
new file mode 100644
index 00000000..05020aee
Binary files /dev/null and b/animateditems/8187.gif differ
diff --git a/animateditems/8187.png b/animateditems/8187.png
new file mode 100644
index 00000000..3b0b7c94
Binary files /dev/null and b/animateditems/8187.png differ
diff --git a/animateditems/8188.gif b/animateditems/8188.gif
new file mode 100644
index 00000000..2db57763
Binary files /dev/null and b/animateditems/8188.gif differ
diff --git a/animateditems/8188.png b/animateditems/8188.png
new file mode 100644
index 00000000..0ae26117
Binary files /dev/null and b/animateditems/8188.png differ
diff --git a/animateditems/8189.gif b/animateditems/8189.gif
new file mode 100644
index 00000000..2cfe00a7
Binary files /dev/null and b/animateditems/8189.gif differ
diff --git a/animateditems/8189.png b/animateditems/8189.png
new file mode 100644
index 00000000..b4f0a8b2
Binary files /dev/null and b/animateditems/8189.png differ
diff --git a/animateditems/8190.gif b/animateditems/8190.gif
new file mode 100644
index 00000000..4e145003
Binary files /dev/null and b/animateditems/8190.gif differ
diff --git a/animateditems/8190.png b/animateditems/8190.png
new file mode 100644
index 00000000..2f399850
Binary files /dev/null and b/animateditems/8190.png differ
diff --git a/animateditems/8194.gif b/animateditems/8194.gif
new file mode 100644
index 00000000..cb9497ab
Binary files /dev/null and b/animateditems/8194.gif differ
diff --git a/animateditems/8194.png b/animateditems/8194.png
new file mode 100644
index 00000000..52fe503f
Binary files /dev/null and b/animateditems/8194.png differ
diff --git a/animateditems/8204.gif b/animateditems/8204.gif
new file mode 100644
index 00000000..17fa6604
Binary files /dev/null and b/animateditems/8204.gif differ
diff --git a/animateditems/8204.png b/animateditems/8204.png
new file mode 100644
index 00000000..baa6d027
Binary files /dev/null and b/animateditems/8204.png differ
diff --git a/animateditems/8205.gif b/animateditems/8205.gif
new file mode 100644
index 00000000..2bf189a8
Binary files /dev/null and b/animateditems/8205.gif differ
diff --git a/animateditems/8205.png b/animateditems/8205.png
new file mode 100644
index 00000000..031835fd
Binary files /dev/null and b/animateditems/8205.png differ
diff --git a/animateditems/8208.gif b/animateditems/8208.gif
new file mode 100644
index 00000000..3bbfa719
Binary files /dev/null and b/animateditems/8208.gif differ
diff --git a/animateditems/8208.png b/animateditems/8208.png
new file mode 100644
index 00000000..a689206c
Binary files /dev/null and b/animateditems/8208.png differ
diff --git a/animateditems/8209.gif b/animateditems/8209.gif
new file mode 100644
index 00000000..52cb945c
Binary files /dev/null and b/animateditems/8209.gif differ
diff --git a/animateditems/8209.png b/animateditems/8209.png
new file mode 100644
index 00000000..017c9701
Binary files /dev/null and b/animateditems/8209.png differ
diff --git a/animateditems/8261.gif b/animateditems/8261.gif
new file mode 100644
index 00000000..bdba9b4c
Binary files /dev/null and b/animateditems/8261.gif differ
diff --git a/animateditems/8261.png b/animateditems/8261.png
new file mode 100644
index 00000000..2b8569f0
Binary files /dev/null and b/animateditems/8261.png differ
diff --git a/animateditems/8262.gif b/animateditems/8262.gif
new file mode 100644
index 00000000..fc65c0b0
Binary files /dev/null and b/animateditems/8262.gif differ
diff --git a/animateditems/8262.png b/animateditems/8262.png
new file mode 100644
index 00000000..63267859
Binary files /dev/null and b/animateditems/8262.png differ
diff --git a/animateditems/8263.gif b/animateditems/8263.gif
new file mode 100644
index 00000000..58ac0ef9
Binary files /dev/null and b/animateditems/8263.gif differ
diff --git a/animateditems/8263.png b/animateditems/8263.png
new file mode 100644
index 00000000..7aeab897
Binary files /dev/null and b/animateditems/8263.png differ
diff --git a/animateditems/8264.gif b/animateditems/8264.gif
new file mode 100644
index 00000000..db4145e2
Binary files /dev/null and b/animateditems/8264.gif differ
diff --git a/animateditems/8264.png b/animateditems/8264.png
new file mode 100644
index 00000000..14a35f5f
Binary files /dev/null and b/animateditems/8264.png differ
diff --git a/animateditems/8265.gif b/animateditems/8265.gif
new file mode 100644
index 00000000..d36c0489
Binary files /dev/null and b/animateditems/8265.gif differ
diff --git a/animateditems/8265.png b/animateditems/8265.png
new file mode 100644
index 00000000..b25b2ee8
Binary files /dev/null and b/animateditems/8265.png differ
diff --git a/animateditems/8266.gif b/animateditems/8266.gif
new file mode 100644
index 00000000..86c569ab
Binary files /dev/null and b/animateditems/8266.gif differ
diff --git a/animateditems/8266.png b/animateditems/8266.png
new file mode 100644
index 00000000..8cd42260
Binary files /dev/null and b/animateditems/8266.png differ
diff --git a/animateditems/8267.gif b/animateditems/8267.gif
new file mode 100644
index 00000000..6f92e520
Binary files /dev/null and b/animateditems/8267.gif differ
diff --git a/animateditems/8267.png b/animateditems/8267.png
new file mode 100644
index 00000000..82dc0b3b
Binary files /dev/null and b/animateditems/8267.png differ
diff --git a/animateditems/8293.gif b/animateditems/8293.gif
new file mode 100644
index 00000000..31477321
Binary files /dev/null and b/animateditems/8293.gif differ
diff --git a/animateditems/8293.png b/animateditems/8293.png
new file mode 100644
index 00000000..25141926
Binary files /dev/null and b/animateditems/8293.png differ
diff --git a/animateditems/8297.gif b/animateditems/8297.gif
new file mode 100644
index 00000000..6e75772f
Binary files /dev/null and b/animateditems/8297.gif differ
diff --git a/animateditems/8297.png b/animateditems/8297.png
new file mode 100644
index 00000000..5d8e7e91
Binary files /dev/null and b/animateditems/8297.png differ
diff --git a/animateditems/8298.gif b/animateditems/8298.gif
new file mode 100644
index 00000000..cbda2b62
Binary files /dev/null and b/animateditems/8298.gif differ
diff --git a/animateditems/8298.png b/animateditems/8298.png
new file mode 100644
index 00000000..a2da5eff
Binary files /dev/null and b/animateditems/8298.png differ
diff --git a/animateditems/8299.gif b/animateditems/8299.gif
new file mode 100644
index 00000000..57a11bae
Binary files /dev/null and b/animateditems/8299.gif differ
diff --git a/animateditems/8299.png b/animateditems/8299.png
new file mode 100644
index 00000000..1c040fa2
Binary files /dev/null and b/animateditems/8299.png differ
diff --git a/animateditems/8300.gif b/animateditems/8300.gif
new file mode 100644
index 00000000..96517d10
Binary files /dev/null and b/animateditems/8300.gif differ
diff --git a/animateditems/8300.png b/animateditems/8300.png
new file mode 100644
index 00000000..7e6a3047
Binary files /dev/null and b/animateditems/8300.png differ
diff --git a/animateditems/8301.gif b/animateditems/8301.gif
new file mode 100644
index 00000000..0bbaa00c
Binary files /dev/null and b/animateditems/8301.gif differ
diff --git a/animateditems/8301.png b/animateditems/8301.png
new file mode 100644
index 00000000..5281e8e3
Binary files /dev/null and b/animateditems/8301.png differ
diff --git a/animateditems/8302.gif b/animateditems/8302.gif
new file mode 100644
index 00000000..300a0f18
Binary files /dev/null and b/animateditems/8302.gif differ
diff --git a/animateditems/8302.png b/animateditems/8302.png
new file mode 100644
index 00000000..cce51597
Binary files /dev/null and b/animateditems/8302.png differ
diff --git a/animateditems/8303.gif b/animateditems/8303.gif
new file mode 100644
index 00000000..c0d84371
Binary files /dev/null and b/animateditems/8303.gif differ
diff --git a/animateditems/8303.png b/animateditems/8303.png
new file mode 100644
index 00000000..ec43ab2f
Binary files /dev/null and b/animateditems/8303.png differ
diff --git a/animateditems/8304.gif b/animateditems/8304.gif
new file mode 100644
index 00000000..f806a0a0
Binary files /dev/null and b/animateditems/8304.gif differ
diff --git a/animateditems/8304.png b/animateditems/8304.png
new file mode 100644
index 00000000..910e27c4
Binary files /dev/null and b/animateditems/8304.png differ
diff --git a/animateditems/8305.gif b/animateditems/8305.gif
new file mode 100644
index 00000000..993f82fc
Binary files /dev/null and b/animateditems/8305.gif differ
diff --git a/animateditems/8305.png b/animateditems/8305.png
new file mode 100644
index 00000000..e27940f3
Binary files /dev/null and b/animateditems/8305.png differ
diff --git a/animateditems/8306.gif b/animateditems/8306.gif
new file mode 100644
index 00000000..ce2da2d2
Binary files /dev/null and b/animateditems/8306.gif differ
diff --git a/animateditems/8306.png b/animateditems/8306.png
new file mode 100644
index 00000000..f3870f1e
Binary files /dev/null and b/animateditems/8306.png differ
diff --git a/animateditems/8309.gif b/animateditems/8309.gif
new file mode 100644
index 00000000..b5e5110b
Binary files /dev/null and b/animateditems/8309.gif differ
diff --git a/animateditems/8309.png b/animateditems/8309.png
new file mode 100644
index 00000000..db9feeb5
Binary files /dev/null and b/animateditems/8309.png differ
diff --git a/animateditems/8310.gif b/animateditems/8310.gif
new file mode 100644
index 00000000..153452ad
Binary files /dev/null and b/animateditems/8310.gif differ
diff --git a/animateditems/8310.png b/animateditems/8310.png
new file mode 100644
index 00000000..e4eb5608
Binary files /dev/null and b/animateditems/8310.png differ
diff --git a/animateditems/8368.gif b/animateditems/8368.gif
new file mode 100644
index 00000000..632e65e5
Binary files /dev/null and b/animateditems/8368.gif differ
diff --git a/animateditems/8368.png b/animateditems/8368.png
new file mode 100644
index 00000000..79728ca1
Binary files /dev/null and b/animateditems/8368.png differ
diff --git a/animateditems/8370.gif b/animateditems/8370.gif
new file mode 100644
index 00000000..2db57763
Binary files /dev/null and b/animateditems/8370.gif differ
diff --git a/animateditems/8370.png b/animateditems/8370.png
new file mode 100644
index 00000000..0ae26117
Binary files /dev/null and b/animateditems/8370.png differ
diff --git a/animateditems/8472.gif b/animateditems/8472.gif
new file mode 100644
index 00000000..df83abdf
Binary files /dev/null and b/animateditems/8472.gif differ
diff --git a/animateditems/8472.png b/animateditems/8472.png
new file mode 100644
index 00000000..b571c984
Binary files /dev/null and b/animateditems/8472.png differ
diff --git a/animateditems/8473.gif b/animateditems/8473.gif
new file mode 100644
index 00000000..b894f44f
Binary files /dev/null and b/animateditems/8473.gif differ
diff --git a/animateditems/8473.png b/animateditems/8473.png
new file mode 100644
index 00000000..c57bea91
Binary files /dev/null and b/animateditems/8473.png differ
diff --git a/animateditems/8474.gif b/animateditems/8474.gif
new file mode 100644
index 00000000..844a2b38
Binary files /dev/null and b/animateditems/8474.gif differ
diff --git a/animateditems/8474.png b/animateditems/8474.png
new file mode 100644
index 00000000..c909cbfe
Binary files /dev/null and b/animateditems/8474.png differ
diff --git a/animateditems/8582.gif b/animateditems/8582.gif
new file mode 100644
index 00000000..30d31476
Binary files /dev/null and b/animateditems/8582.gif differ
diff --git a/animateditems/8582.png b/animateditems/8582.png
new file mode 100644
index 00000000..b7b8c2ee
Binary files /dev/null and b/animateditems/8582.png differ
diff --git a/animateditems/8584.gif b/animateditems/8584.gif
new file mode 100644
index 00000000..4c79b174
Binary files /dev/null and b/animateditems/8584.gif differ
diff --git a/animateditems/8584.png b/animateditems/8584.png
new file mode 100644
index 00000000..401eb421
Binary files /dev/null and b/animateditems/8584.png differ
diff --git a/animateditems/8601.gif b/animateditems/8601.gif
new file mode 100644
index 00000000..82104fe6
Binary files /dev/null and b/animateditems/8601.gif differ
diff --git a/animateditems/8601.png b/animateditems/8601.png
new file mode 100644
index 00000000..cde4f557
Binary files /dev/null and b/animateditems/8601.png differ
diff --git a/animateditems/8602.gif b/animateditems/8602.gif
new file mode 100644
index 00000000..24bbeec5
Binary files /dev/null and b/animateditems/8602.gif differ
diff --git a/animateditems/8602.png b/animateditems/8602.png
new file mode 100644
index 00000000..dffbe2c0
Binary files /dev/null and b/animateditems/8602.png differ
diff --git a/animateditems/8613.gif b/animateditems/8613.gif
new file mode 100644
index 00000000..0daf02b4
Binary files /dev/null and b/animateditems/8613.gif differ
diff --git a/animateditems/8613.png b/animateditems/8613.png
new file mode 100644
index 00000000..f95aeb71
Binary files /dev/null and b/animateditems/8613.png differ
diff --git a/animateditems/8614.gif b/animateditems/8614.gif
new file mode 100644
index 00000000..9f102c3e
Binary files /dev/null and b/animateditems/8614.gif differ
diff --git a/animateditems/8614.png b/animateditems/8614.png
new file mode 100644
index 00000000..a5e79a5a
Binary files /dev/null and b/animateditems/8614.png differ
diff --git a/animateditems/8692.gif b/animateditems/8692.gif
new file mode 100644
index 00000000..bdd8edee
Binary files /dev/null and b/animateditems/8692.gif differ
diff --git a/animateditems/8692.png b/animateditems/8692.png
new file mode 100644
index 00000000..b1c87a00
Binary files /dev/null and b/animateditems/8692.png differ
diff --git a/animateditems/8693.gif b/animateditems/8693.gif
new file mode 100644
index 00000000..fc16469a
Binary files /dev/null and b/animateditems/8693.gif differ
diff --git a/animateditems/8693.png b/animateditems/8693.png
new file mode 100644
index 00000000..71a36934
Binary files /dev/null and b/animateditems/8693.png differ
diff --git a/animateditems/8694.gif b/animateditems/8694.gif
new file mode 100644
index 00000000..b111da68
Binary files /dev/null and b/animateditems/8694.gif differ
diff --git a/animateditems/8694.png b/animateditems/8694.png
new file mode 100644
index 00000000..406bf414
Binary files /dev/null and b/animateditems/8694.png differ
diff --git a/animateditems/8698.gif b/animateditems/8698.gif
new file mode 100644
index 00000000..84100058
Binary files /dev/null and b/animateditems/8698.gif differ
diff --git a/animateditems/8698.png b/animateditems/8698.png
new file mode 100644
index 00000000..25b1bd7a
Binary files /dev/null and b/animateditems/8698.png differ
diff --git a/animateditems/8699.gif b/animateditems/8699.gif
new file mode 100644
index 00000000..c7601fbe
Binary files /dev/null and b/animateditems/8699.gif differ
diff --git a/animateditems/8699.png b/animateditems/8699.png
new file mode 100644
index 00000000..3798684d
Binary files /dev/null and b/animateditems/8699.png differ
diff --git a/animateditems/8701.gif b/animateditems/8701.gif
new file mode 100644
index 00000000..a717508c
Binary files /dev/null and b/animateditems/8701.gif differ
diff --git a/animateditems/8701.png b/animateditems/8701.png
new file mode 100644
index 00000000..90b65dc4
Binary files /dev/null and b/animateditems/8701.png differ
diff --git a/animateditems/8702.gif b/animateditems/8702.gif
new file mode 100644
index 00000000..329b4681
Binary files /dev/null and b/animateditems/8702.gif differ
diff --git a/animateditems/8702.png b/animateditems/8702.png
new file mode 100644
index 00000000..00f55c5d
Binary files /dev/null and b/animateditems/8702.png differ
diff --git a/animateditems/8704.gif b/animateditems/8704.gif
new file mode 100644
index 00000000..80c1bd02
Binary files /dev/null and b/animateditems/8704.gif differ
diff --git a/animateditems/8704.png b/animateditems/8704.png
new file mode 100644
index 00000000..2e1954e8
Binary files /dev/null and b/animateditems/8704.png differ
diff --git a/animateditems/8707.gif b/animateditems/8707.gif
new file mode 100644
index 00000000..c077c039
Binary files /dev/null and b/animateditems/8707.gif differ
diff --git a/animateditems/8707.png b/animateditems/8707.png
new file mode 100644
index 00000000..ac445669
Binary files /dev/null and b/animateditems/8707.png differ
diff --git a/animateditems/8710.gif b/animateditems/8710.gif
new file mode 100644
index 00000000..1f3df0a1
Binary files /dev/null and b/animateditems/8710.gif differ
diff --git a/animateditems/8710.png b/animateditems/8710.png
new file mode 100644
index 00000000..2f35fa64
Binary files /dev/null and b/animateditems/8710.png differ
diff --git a/animateditems/8711.gif b/animateditems/8711.gif
new file mode 100644
index 00000000..bf84a39b
Binary files /dev/null and b/animateditems/8711.gif differ
diff --git a/animateditems/8711.png b/animateditems/8711.png
new file mode 100644
index 00000000..779b276b
Binary files /dev/null and b/animateditems/8711.png differ
diff --git a/animateditems/8712.gif b/animateditems/8712.gif
new file mode 100644
index 00000000..7ebfc18e
Binary files /dev/null and b/animateditems/8712.gif differ
diff --git a/animateditems/8712.png b/animateditems/8712.png
new file mode 100644
index 00000000..9aff357b
Binary files /dev/null and b/animateditems/8712.png differ
diff --git a/animateditems/8713.gif b/animateditems/8713.gif
new file mode 100644
index 00000000..c04d357d
Binary files /dev/null and b/animateditems/8713.gif differ
diff --git a/animateditems/8713.png b/animateditems/8713.png
new file mode 100644
index 00000000..42b0bc8f
Binary files /dev/null and b/animateditems/8713.png differ
diff --git a/animateditems/8717.gif b/animateditems/8717.gif
new file mode 100644
index 00000000..707573be
Binary files /dev/null and b/animateditems/8717.gif differ
diff --git a/animateditems/8717.png b/animateditems/8717.png
new file mode 100644
index 00000000..34d8bd97
Binary files /dev/null and b/animateditems/8717.png differ
diff --git a/animateditems/8722.gif b/animateditems/8722.gif
new file mode 100644
index 00000000..bf84a39b
Binary files /dev/null and b/animateditems/8722.gif differ
diff --git a/animateditems/8722.png b/animateditems/8722.png
new file mode 100644
index 00000000..779b276b
Binary files /dev/null and b/animateditems/8722.png differ
diff --git a/animateditems/8723.gif b/animateditems/8723.gif
new file mode 100644
index 00000000..7ebfc18e
Binary files /dev/null and b/animateditems/8723.gif differ
diff --git a/animateditems/8723.png b/animateditems/8723.png
new file mode 100644
index 00000000..9aff357b
Binary files /dev/null and b/animateditems/8723.png differ
diff --git a/animateditems/8752.gif b/animateditems/8752.gif
new file mode 100644
index 00000000..00e6f496
Binary files /dev/null and b/animateditems/8752.gif differ
diff --git a/animateditems/8752.png b/animateditems/8752.png
new file mode 100644
index 00000000..3371dd6f
Binary files /dev/null and b/animateditems/8752.png differ
diff --git a/animateditems/8760.gif b/animateditems/8760.gif
new file mode 100644
index 00000000..10da3fd4
Binary files /dev/null and b/animateditems/8760.gif differ
diff --git a/animateditems/8760.png b/animateditems/8760.png
new file mode 100644
index 00000000..000e39db
Binary files /dev/null and b/animateditems/8760.png differ
diff --git a/animateditems/8761.gif b/animateditems/8761.gif
new file mode 100644
index 00000000..b68f45d3
Binary files /dev/null and b/animateditems/8761.gif differ
diff --git a/animateditems/8761.png b/animateditems/8761.png
new file mode 100644
index 00000000..5131db50
Binary files /dev/null and b/animateditems/8761.png differ
diff --git a/animateditems/8762.gif b/animateditems/8762.gif
new file mode 100644
index 00000000..6c7fc0be
Binary files /dev/null and b/animateditems/8762.gif differ
diff --git a/animateditems/8762.png b/animateditems/8762.png
new file mode 100644
index 00000000..957026ba
Binary files /dev/null and b/animateditems/8762.png differ
diff --git a/animateditems/8763.gif b/animateditems/8763.gif
new file mode 100644
index 00000000..2db57763
Binary files /dev/null and b/animateditems/8763.gif differ
diff --git a/animateditems/8763.png b/animateditems/8763.png
new file mode 100644
index 00000000..0ae26117
Binary files /dev/null and b/animateditems/8763.png differ
diff --git a/animateditems/8766.gif b/animateditems/8766.gif
new file mode 100644
index 00000000..91891564
Binary files /dev/null and b/animateditems/8766.gif differ
diff --git a/animateditems/8766.png b/animateditems/8766.png
new file mode 100644
index 00000000..4cb33151
Binary files /dev/null and b/animateditems/8766.png differ
diff --git a/animateditems/8767.gif b/animateditems/8767.gif
new file mode 100644
index 00000000..4497af5b
Binary files /dev/null and b/animateditems/8767.gif differ
diff --git a/animateditems/8767.png b/animateditems/8767.png
new file mode 100644
index 00000000..05e8a89b
Binary files /dev/null and b/animateditems/8767.png differ
diff --git a/animateditems/8768.gif b/animateditems/8768.gif
new file mode 100644
index 00000000..2db57763
Binary files /dev/null and b/animateditems/8768.gif differ
diff --git a/animateditems/8768.png b/animateditems/8768.png
new file mode 100644
index 00000000..0ae26117
Binary files /dev/null and b/animateditems/8768.png differ
diff --git a/animateditems/8819.gif b/animateditems/8819.gif
new file mode 100644
index 00000000..86bb5205
Binary files /dev/null and b/animateditems/8819.gif differ
diff --git a/animateditems/8819.png b/animateditems/8819.png
new file mode 100644
index 00000000..36ad6151
Binary files /dev/null and b/animateditems/8819.png differ
diff --git a/animateditems/8820.gif b/animateditems/8820.gif
new file mode 100644
index 00000000..f486bad1
Binary files /dev/null and b/animateditems/8820.gif differ
diff --git a/animateditems/8820.png b/animateditems/8820.png
new file mode 100644
index 00000000..bf1b8639
Binary files /dev/null and b/animateditems/8820.png differ
diff --git a/animateditems/8821.gif b/animateditems/8821.gif
new file mode 100644
index 00000000..fc209536
Binary files /dev/null and b/animateditems/8821.gif differ
diff --git a/animateditems/8821.png b/animateditems/8821.png
new file mode 100644
index 00000000..ef39d284
Binary files /dev/null and b/animateditems/8821.png differ
diff --git a/animateditems/8838.gif b/animateditems/8838.gif
new file mode 100644
index 00000000..93d18bf3
Binary files /dev/null and b/animateditems/8838.gif differ
diff --git a/animateditems/8838.png b/animateditems/8838.png
new file mode 100644
index 00000000..4ea736ad
Binary files /dev/null and b/animateditems/8838.png differ
diff --git a/animateditems/8839.gif b/animateditems/8839.gif
new file mode 100644
index 00000000..c5260836
Binary files /dev/null and b/animateditems/8839.gif differ
diff --git a/animateditems/8839.png b/animateditems/8839.png
new file mode 100644
index 00000000..698e2383
Binary files /dev/null and b/animateditems/8839.png differ
diff --git a/animateditems/8840.gif b/animateditems/8840.gif
new file mode 100644
index 00000000..384427ad
Binary files /dev/null and b/animateditems/8840.gif differ
diff --git a/animateditems/8840.png b/animateditems/8840.png
new file mode 100644
index 00000000..b05a301f
Binary files /dev/null and b/animateditems/8840.png differ
diff --git a/animateditems/8841.gif b/animateditems/8841.gif
new file mode 100644
index 00000000..a54c4dac
Binary files /dev/null and b/animateditems/8841.gif differ
diff --git a/animateditems/8841.png b/animateditems/8841.png
new file mode 100644
index 00000000..d490e213
Binary files /dev/null and b/animateditems/8841.png differ
diff --git a/animateditems/8842.gif b/animateditems/8842.gif
new file mode 100644
index 00000000..c6ffb5c6
Binary files /dev/null and b/animateditems/8842.gif differ
diff --git a/animateditems/8842.png b/animateditems/8842.png
new file mode 100644
index 00000000..4aa87721
Binary files /dev/null and b/animateditems/8842.png differ
diff --git a/animateditems/8843.gif b/animateditems/8843.gif
new file mode 100644
index 00000000..205e9307
Binary files /dev/null and b/animateditems/8843.gif differ
diff --git a/animateditems/8843.png b/animateditems/8843.png
new file mode 100644
index 00000000..a9b8ee6f
Binary files /dev/null and b/animateditems/8843.png differ
diff --git a/animateditems/8844.gif b/animateditems/8844.gif
new file mode 100644
index 00000000..734011b8
Binary files /dev/null and b/animateditems/8844.gif differ
diff --git a/animateditems/8844.png b/animateditems/8844.png
new file mode 100644
index 00000000..9662c1ce
Binary files /dev/null and b/animateditems/8844.png differ
diff --git a/animateditems/8845.gif b/animateditems/8845.gif
new file mode 100644
index 00000000..4650fce6
Binary files /dev/null and b/animateditems/8845.gif differ
diff --git a/animateditems/8845.png b/animateditems/8845.png
new file mode 100644
index 00000000..b8405eda
Binary files /dev/null and b/animateditems/8845.png differ
diff --git a/animateditems/8846.gif b/animateditems/8846.gif
new file mode 100644
index 00000000..01cb5824
Binary files /dev/null and b/animateditems/8846.gif differ
diff --git a/animateditems/8846.png b/animateditems/8846.png
new file mode 100644
index 00000000..0a349378
Binary files /dev/null and b/animateditems/8846.png differ
diff --git a/animateditems/8847.gif b/animateditems/8847.gif
new file mode 100644
index 00000000..31275714
Binary files /dev/null and b/animateditems/8847.gif differ
diff --git a/animateditems/8847.png b/animateditems/8847.png
new file mode 100644
index 00000000..c5f784c9
Binary files /dev/null and b/animateditems/8847.png differ
diff --git a/animateditems/8848.gif b/animateditems/8848.gif
new file mode 100644
index 00000000..165a3d92
Binary files /dev/null and b/animateditems/8848.gif differ
diff --git a/animateditems/8848.png b/animateditems/8848.png
new file mode 100644
index 00000000..764dfc75
Binary files /dev/null and b/animateditems/8848.png differ
diff --git a/animateditems/8849.gif b/animateditems/8849.gif
new file mode 100644
index 00000000..a48ffa8a
Binary files /dev/null and b/animateditems/8849.gif differ
diff --git a/animateditems/8849.png b/animateditems/8849.png
new file mode 100644
index 00000000..6e34dad2
Binary files /dev/null and b/animateditems/8849.png differ
diff --git a/animateditems/8850.gif b/animateditems/8850.gif
new file mode 100644
index 00000000..697ea470
Binary files /dev/null and b/animateditems/8850.gif differ
diff --git a/animateditems/8850.png b/animateditems/8850.png
new file mode 100644
index 00000000..0044e6c5
Binary files /dev/null and b/animateditems/8850.png differ
diff --git a/animateditems/8851.gif b/animateditems/8851.gif
new file mode 100644
index 00000000..b13d86a3
Binary files /dev/null and b/animateditems/8851.gif differ
diff --git a/animateditems/8851.png b/animateditems/8851.png
new file mode 100644
index 00000000..899b8db8
Binary files /dev/null and b/animateditems/8851.png differ
diff --git a/animateditems/8852.gif b/animateditems/8852.gif
new file mode 100644
index 00000000..84388500
Binary files /dev/null and b/animateditems/8852.gif differ
diff --git a/animateditems/8852.png b/animateditems/8852.png
new file mode 100644
index 00000000..c756a978
Binary files /dev/null and b/animateditems/8852.png differ
diff --git a/animateditems/8853.gif b/animateditems/8853.gif
new file mode 100644
index 00000000..dc7cefb1
Binary files /dev/null and b/animateditems/8853.gif differ
diff --git a/animateditems/8853.png b/animateditems/8853.png
new file mode 100644
index 00000000..e99b691e
Binary files /dev/null and b/animateditems/8853.png differ
diff --git a/animateditems/8854.gif b/animateditems/8854.gif
new file mode 100644
index 00000000..c8840045
Binary files /dev/null and b/animateditems/8854.gif differ
diff --git a/animateditems/8854.png b/animateditems/8854.png
new file mode 100644
index 00000000..35f435ed
Binary files /dev/null and b/animateditems/8854.png differ
diff --git a/animateditems/8855.gif b/animateditems/8855.gif
new file mode 100644
index 00000000..9ae6d0a2
Binary files /dev/null and b/animateditems/8855.gif differ
diff --git a/animateditems/8855.png b/animateditems/8855.png
new file mode 100644
index 00000000..97f4b7c1
Binary files /dev/null and b/animateditems/8855.png differ
diff --git a/animateditems/8856.gif b/animateditems/8856.gif
new file mode 100644
index 00000000..72686b15
Binary files /dev/null and b/animateditems/8856.gif differ
diff --git a/animateditems/8856.png b/animateditems/8856.png
new file mode 100644
index 00000000..56a9a31f
Binary files /dev/null and b/animateditems/8856.png differ
diff --git a/animateditems/8857.gif b/animateditems/8857.gif
new file mode 100644
index 00000000..b471ceeb
Binary files /dev/null and b/animateditems/8857.gif differ
diff --git a/animateditems/8857.png b/animateditems/8857.png
new file mode 100644
index 00000000..b93135ad
Binary files /dev/null and b/animateditems/8857.png differ
diff --git a/animateditems/8858.gif b/animateditems/8858.gif
new file mode 100644
index 00000000..c60fd694
Binary files /dev/null and b/animateditems/8858.gif differ
diff --git a/animateditems/8858.png b/animateditems/8858.png
new file mode 100644
index 00000000..56609ece
Binary files /dev/null and b/animateditems/8858.png differ
diff --git a/animateditems/8859.gif b/animateditems/8859.gif
new file mode 100644
index 00000000..5e2495f8
Binary files /dev/null and b/animateditems/8859.gif differ
diff --git a/animateditems/8859.png b/animateditems/8859.png
new file mode 100644
index 00000000..ee3969a3
Binary files /dev/null and b/animateditems/8859.png differ
diff --git a/animateditems/8860.gif b/animateditems/8860.gif
new file mode 100644
index 00000000..6cab26bb
Binary files /dev/null and b/animateditems/8860.gif differ
diff --git a/animateditems/8860.png b/animateditems/8860.png
new file mode 100644
index 00000000..adf9f40e
Binary files /dev/null and b/animateditems/8860.png differ
diff --git a/animateditems/8865.gif b/animateditems/8865.gif
new file mode 100644
index 00000000..bd858154
Binary files /dev/null and b/animateditems/8865.gif differ
diff --git a/animateditems/8865.png b/animateditems/8865.png
new file mode 100644
index 00000000..95f5b456
Binary files /dev/null and b/animateditems/8865.png differ
diff --git a/animateditems/8866.gif b/animateditems/8866.gif
new file mode 100644
index 00000000..da032f0c
Binary files /dev/null and b/animateditems/8866.gif differ
diff --git a/animateditems/8866.png b/animateditems/8866.png
new file mode 100644
index 00000000..9fd91881
Binary files /dev/null and b/animateditems/8866.png differ
diff --git a/animateditems/8867.gif b/animateditems/8867.gif
new file mode 100644
index 00000000..b72e5352
Binary files /dev/null and b/animateditems/8867.gif differ
diff --git a/animateditems/8867.png b/animateditems/8867.png
new file mode 100644
index 00000000..13a081b7
Binary files /dev/null and b/animateditems/8867.png differ
diff --git a/animateditems/8868.gif b/animateditems/8868.gif
new file mode 100644
index 00000000..50a513af
Binary files /dev/null and b/animateditems/8868.gif differ
diff --git a/animateditems/8868.png b/animateditems/8868.png
new file mode 100644
index 00000000..e391f3e2
Binary files /dev/null and b/animateditems/8868.png differ
diff --git a/animateditems/8869.gif b/animateditems/8869.gif
new file mode 100644
index 00000000..41ac4902
Binary files /dev/null and b/animateditems/8869.gif differ
diff --git a/animateditems/8869.png b/animateditems/8869.png
new file mode 100644
index 00000000..5cb0de33
Binary files /dev/null and b/animateditems/8869.png differ
diff --git a/animateditems/8870.gif b/animateditems/8870.gif
new file mode 100644
index 00000000..2871ba83
Binary files /dev/null and b/animateditems/8870.gif differ
diff --git a/animateditems/8870.png b/animateditems/8870.png
new file mode 100644
index 00000000..7d8beaac
Binary files /dev/null and b/animateditems/8870.png differ
diff --git a/animateditems/8871.gif b/animateditems/8871.gif
new file mode 100644
index 00000000..5797e3b5
Binary files /dev/null and b/animateditems/8871.gif differ
diff --git a/animateditems/8871.png b/animateditems/8871.png
new file mode 100644
index 00000000..c5e8cbdf
Binary files /dev/null and b/animateditems/8871.png differ
diff --git a/animateditems/8872.gif b/animateditems/8872.gif
new file mode 100644
index 00000000..c2621edc
Binary files /dev/null and b/animateditems/8872.gif differ
diff --git a/animateditems/8872.png b/animateditems/8872.png
new file mode 100644
index 00000000..7777f9fe
Binary files /dev/null and b/animateditems/8872.png differ
diff --git a/animateditems/8873.gif b/animateditems/8873.gif
new file mode 100644
index 00000000..cc28e50b
Binary files /dev/null and b/animateditems/8873.gif differ
diff --git a/animateditems/8873.png b/animateditems/8873.png
new file mode 100644
index 00000000..2b8ce287
Binary files /dev/null and b/animateditems/8873.png differ
diff --git a/animateditems/8874.gif b/animateditems/8874.gif
new file mode 100644
index 00000000..7db92efb
Binary files /dev/null and b/animateditems/8874.gif differ
diff --git a/animateditems/8874.png b/animateditems/8874.png
new file mode 100644
index 00000000..6e6e3b16
Binary files /dev/null and b/animateditems/8874.png differ
diff --git a/animateditems/8875.gif b/animateditems/8875.gif
new file mode 100644
index 00000000..9c7ba662
Binary files /dev/null and b/animateditems/8875.gif differ
diff --git a/animateditems/8875.png b/animateditems/8875.png
new file mode 100644
index 00000000..35e9314d
Binary files /dev/null and b/animateditems/8875.png differ
diff --git a/animateditems/8876.gif b/animateditems/8876.gif
new file mode 100644
index 00000000..c1ceedcf
Binary files /dev/null and b/animateditems/8876.gif differ
diff --git a/animateditems/8876.png b/animateditems/8876.png
new file mode 100644
index 00000000..ab55c4e9
Binary files /dev/null and b/animateditems/8876.png differ
diff --git a/animateditems/8877.gif b/animateditems/8877.gif
new file mode 100644
index 00000000..52087c8f
Binary files /dev/null and b/animateditems/8877.gif differ
diff --git a/animateditems/8877.png b/animateditems/8877.png
new file mode 100644
index 00000000..ba4ee446
Binary files /dev/null and b/animateditems/8877.png differ
diff --git a/animateditems/8878.gif b/animateditems/8878.gif
new file mode 100644
index 00000000..9744fb43
Binary files /dev/null and b/animateditems/8878.gif differ
diff --git a/animateditems/8878.png b/animateditems/8878.png
new file mode 100644
index 00000000..9a11b799
Binary files /dev/null and b/animateditems/8878.png differ
diff --git a/animateditems/8879.gif b/animateditems/8879.gif
new file mode 100644
index 00000000..21c3df16
Binary files /dev/null and b/animateditems/8879.gif differ
diff --git a/animateditems/8879.png b/animateditems/8879.png
new file mode 100644
index 00000000..d3ce1d26
Binary files /dev/null and b/animateditems/8879.png differ
diff --git a/animateditems/8880.gif b/animateditems/8880.gif
new file mode 100644
index 00000000..2dd6ed83
Binary files /dev/null and b/animateditems/8880.gif differ
diff --git a/animateditems/8880.png b/animateditems/8880.png
new file mode 100644
index 00000000..ea44e9e9
Binary files /dev/null and b/animateditems/8880.png differ
diff --git a/animateditems/8881.gif b/animateditems/8881.gif
new file mode 100644
index 00000000..9b0327de
Binary files /dev/null and b/animateditems/8881.gif differ
diff --git a/animateditems/8881.png b/animateditems/8881.png
new file mode 100644
index 00000000..ce221060
Binary files /dev/null and b/animateditems/8881.png differ
diff --git a/animateditems/8882.gif b/animateditems/8882.gif
new file mode 100644
index 00000000..2a522985
Binary files /dev/null and b/animateditems/8882.gif differ
diff --git a/animateditems/8882.png b/animateditems/8882.png
new file mode 100644
index 00000000..aeb5bbbd
Binary files /dev/null and b/animateditems/8882.png differ
diff --git a/animateditems/8883.gif b/animateditems/8883.gif
new file mode 100644
index 00000000..c9b74035
Binary files /dev/null and b/animateditems/8883.gif differ
diff --git a/animateditems/8883.png b/animateditems/8883.png
new file mode 100644
index 00000000..955ef879
Binary files /dev/null and b/animateditems/8883.png differ
diff --git a/animateditems/8884.gif b/animateditems/8884.gif
new file mode 100644
index 00000000..2a18bf18
Binary files /dev/null and b/animateditems/8884.gif differ
diff --git a/animateditems/8884.png b/animateditems/8884.png
new file mode 100644
index 00000000..3e41f323
Binary files /dev/null and b/animateditems/8884.png differ
diff --git a/animateditems/8885.gif b/animateditems/8885.gif
new file mode 100644
index 00000000..42cc65b5
Binary files /dev/null and b/animateditems/8885.gif differ
diff --git a/animateditems/8885.png b/animateditems/8885.png
new file mode 100644
index 00000000..b2220e6e
Binary files /dev/null and b/animateditems/8885.png differ
diff --git a/animateditems/8886.gif b/animateditems/8886.gif
new file mode 100644
index 00000000..24530bcb
Binary files /dev/null and b/animateditems/8886.gif differ
diff --git a/animateditems/8886.png b/animateditems/8886.png
new file mode 100644
index 00000000..56d3d628
Binary files /dev/null and b/animateditems/8886.png differ
diff --git a/animateditems/8887.gif b/animateditems/8887.gif
new file mode 100644
index 00000000..7f19b86f
Binary files /dev/null and b/animateditems/8887.gif differ
diff --git a/animateditems/8887.png b/animateditems/8887.png
new file mode 100644
index 00000000..7102986e
Binary files /dev/null and b/animateditems/8887.png differ
diff --git a/animateditems/8888.gif b/animateditems/8888.gif
new file mode 100644
index 00000000..e3538007
Binary files /dev/null and b/animateditems/8888.gif differ
diff --git a/animateditems/8888.png b/animateditems/8888.png
new file mode 100644
index 00000000..38cc7c01
Binary files /dev/null and b/animateditems/8888.png differ
diff --git a/animateditems/8889.gif b/animateditems/8889.gif
new file mode 100644
index 00000000..1572be78
Binary files /dev/null and b/animateditems/8889.gif differ
diff --git a/animateditems/8889.png b/animateditems/8889.png
new file mode 100644
index 00000000..dc2d6828
Binary files /dev/null and b/animateditems/8889.png differ
diff --git a/animateditems/8890.gif b/animateditems/8890.gif
new file mode 100644
index 00000000..feb36f40
Binary files /dev/null and b/animateditems/8890.gif differ
diff --git a/animateditems/8890.png b/animateditems/8890.png
new file mode 100644
index 00000000..1d57c29c
Binary files /dev/null and b/animateditems/8890.png differ
diff --git a/animateditems/8891.gif b/animateditems/8891.gif
new file mode 100644
index 00000000..251dcdd2
Binary files /dev/null and b/animateditems/8891.gif differ
diff --git a/animateditems/8891.png b/animateditems/8891.png
new file mode 100644
index 00000000..88a887f4
Binary files /dev/null and b/animateditems/8891.png differ
diff --git a/animateditems/8892.gif b/animateditems/8892.gif
new file mode 100644
index 00000000..0a06619b
Binary files /dev/null and b/animateditems/8892.gif differ
diff --git a/animateditems/8892.png b/animateditems/8892.png
new file mode 100644
index 00000000..9ef33087
Binary files /dev/null and b/animateditems/8892.png differ
diff --git a/animateditems/8900.gif b/animateditems/8900.gif
new file mode 100644
index 00000000..01ef2142
Binary files /dev/null and b/animateditems/8900.gif differ
diff --git a/animateditems/8900.png b/animateditems/8900.png
new file mode 100644
index 00000000..c9119990
Binary files /dev/null and b/animateditems/8900.png differ
diff --git a/animateditems/8901.gif b/animateditems/8901.gif
new file mode 100644
index 00000000..990f7658
Binary files /dev/null and b/animateditems/8901.gif differ
diff --git a/animateditems/8901.png b/animateditems/8901.png
new file mode 100644
index 00000000..f2e1c912
Binary files /dev/null and b/animateditems/8901.png differ
diff --git a/animateditems/8902.gif b/animateditems/8902.gif
new file mode 100644
index 00000000..8b64a1f4
Binary files /dev/null and b/animateditems/8902.gif differ
diff --git a/animateditems/8902.png b/animateditems/8902.png
new file mode 100644
index 00000000..aae62f6e
Binary files /dev/null and b/animateditems/8902.png differ
diff --git a/animateditems/8903.gif b/animateditems/8903.gif
new file mode 100644
index 00000000..e281ad25
Binary files /dev/null and b/animateditems/8903.gif differ
diff --git a/animateditems/8903.png b/animateditems/8903.png
new file mode 100644
index 00000000..67a42005
Binary files /dev/null and b/animateditems/8903.png differ
diff --git a/animateditems/8904.gif b/animateditems/8904.gif
new file mode 100644
index 00000000..9db413f8
Binary files /dev/null and b/animateditems/8904.gif differ
diff --git a/animateditems/8904.png b/animateditems/8904.png
new file mode 100644
index 00000000..757a2a13
Binary files /dev/null and b/animateditems/8904.png differ
diff --git a/animateditems/8905.gif b/animateditems/8905.gif
new file mode 100644
index 00000000..18060c86
Binary files /dev/null and b/animateditems/8905.gif differ
diff --git a/animateditems/8905.png b/animateditems/8905.png
new file mode 100644
index 00000000..0330502f
Binary files /dev/null and b/animateditems/8905.png differ
diff --git a/animateditems/8906.gif b/animateditems/8906.gif
new file mode 100644
index 00000000..8a1eb114
Binary files /dev/null and b/animateditems/8906.gif differ
diff --git a/animateditems/8906.png b/animateditems/8906.png
new file mode 100644
index 00000000..8c50fc6f
Binary files /dev/null and b/animateditems/8906.png differ
diff --git a/animateditems/8907.gif b/animateditems/8907.gif
new file mode 100644
index 00000000..b3bd3a42
Binary files /dev/null and b/animateditems/8907.gif differ
diff --git a/animateditems/8907.png b/animateditems/8907.png
new file mode 100644
index 00000000..1475c767
Binary files /dev/null and b/animateditems/8907.png differ
diff --git a/animateditems/8908.gif b/animateditems/8908.gif
new file mode 100644
index 00000000..42ae59ef
Binary files /dev/null and b/animateditems/8908.gif differ
diff --git a/animateditems/8908.png b/animateditems/8908.png
new file mode 100644
index 00000000..5dcaa4e9
Binary files /dev/null and b/animateditems/8908.png differ
diff --git a/animateditems/8909.gif b/animateditems/8909.gif
new file mode 100644
index 00000000..98ab2f21
Binary files /dev/null and b/animateditems/8909.gif differ
diff --git a/animateditems/8909.png b/animateditems/8909.png
new file mode 100644
index 00000000..905ec7b0
Binary files /dev/null and b/animateditems/8909.png differ
diff --git a/animateditems/8910.gif b/animateditems/8910.gif
new file mode 100644
index 00000000..a56456e2
Binary files /dev/null and b/animateditems/8910.gif differ
diff --git a/animateditems/8910.png b/animateditems/8910.png
new file mode 100644
index 00000000..1c4e3f31
Binary files /dev/null and b/animateditems/8910.png differ
diff --git a/animateditems/8911.gif b/animateditems/8911.gif
new file mode 100644
index 00000000..8d671e1e
Binary files /dev/null and b/animateditems/8911.gif differ
diff --git a/animateditems/8911.png b/animateditems/8911.png
new file mode 100644
index 00000000..d8335291
Binary files /dev/null and b/animateditems/8911.png differ
diff --git a/animateditems/8912.gif b/animateditems/8912.gif
new file mode 100644
index 00000000..3464f1a3
Binary files /dev/null and b/animateditems/8912.gif differ
diff --git a/animateditems/8912.png b/animateditems/8912.png
new file mode 100644
index 00000000..160ebd55
Binary files /dev/null and b/animateditems/8912.png differ
diff --git a/animateditems/8918.gif b/animateditems/8918.gif
new file mode 100644
index 00000000..9554bb0e
Binary files /dev/null and b/animateditems/8918.gif differ
diff --git a/animateditems/8918.png b/animateditems/8918.png
new file mode 100644
index 00000000..2af5e88b
Binary files /dev/null and b/animateditems/8918.png differ
diff --git a/animateditems/8920.gif b/animateditems/8920.gif
new file mode 100644
index 00000000..c23b3a04
Binary files /dev/null and b/animateditems/8920.gif differ
diff --git a/animateditems/8920.png b/animateditems/8920.png
new file mode 100644
index 00000000..e6403f40
Binary files /dev/null and b/animateditems/8920.png differ
diff --git a/animateditems/8921.gif b/animateditems/8921.gif
new file mode 100644
index 00000000..94a6e67e
Binary files /dev/null and b/animateditems/8921.gif differ
diff --git a/animateditems/8921.png b/animateditems/8921.png
new file mode 100644
index 00000000..63dc1950
Binary files /dev/null and b/animateditems/8921.png differ
diff --git a/animateditems/8922.gif b/animateditems/8922.gif
new file mode 100644
index 00000000..884091d5
Binary files /dev/null and b/animateditems/8922.gif differ
diff --git a/animateditems/8922.png b/animateditems/8922.png
new file mode 100644
index 00000000..e6034c27
Binary files /dev/null and b/animateditems/8922.png differ
diff --git a/animateditems/8923.gif b/animateditems/8923.gif
new file mode 100644
index 00000000..c4be9c43
Binary files /dev/null and b/animateditems/8923.gif differ
diff --git a/animateditems/8923.png b/animateditems/8923.png
new file mode 100644
index 00000000..f641658f
Binary files /dev/null and b/animateditems/8923.png differ
diff --git a/animateditems/8924.gif b/animateditems/8924.gif
new file mode 100644
index 00000000..5b609511
Binary files /dev/null and b/animateditems/8924.gif differ
diff --git a/animateditems/8924.png b/animateditems/8924.png
new file mode 100644
index 00000000..17ebb91c
Binary files /dev/null and b/animateditems/8924.png differ
diff --git a/animateditems/8925.gif b/animateditems/8925.gif
new file mode 100644
index 00000000..6710f4ca
Binary files /dev/null and b/animateditems/8925.gif differ
diff --git a/animateditems/8925.png b/animateditems/8925.png
new file mode 100644
index 00000000..ca4dd746
Binary files /dev/null and b/animateditems/8925.png differ
diff --git a/animateditems/8926.gif b/animateditems/8926.gif
new file mode 100644
index 00000000..756c2e5d
Binary files /dev/null and b/animateditems/8926.gif differ
diff --git a/animateditems/8926.png b/animateditems/8926.png
new file mode 100644
index 00000000..129e1ad8
Binary files /dev/null and b/animateditems/8926.png differ
diff --git a/animateditems/8927.gif b/animateditems/8927.gif
new file mode 100644
index 00000000..314db8b6
Binary files /dev/null and b/animateditems/8927.gif differ
diff --git a/animateditems/8927.png b/animateditems/8927.png
new file mode 100644
index 00000000..63013977
Binary files /dev/null and b/animateditems/8927.png differ
diff --git a/animateditems/8928.gif b/animateditems/8928.gif
new file mode 100644
index 00000000..7ac39e1a
Binary files /dev/null and b/animateditems/8928.gif differ
diff --git a/animateditems/8928.png b/animateditems/8928.png
new file mode 100644
index 00000000..13197079
Binary files /dev/null and b/animateditems/8928.png differ
diff --git a/animateditems/8929.gif b/animateditems/8929.gif
new file mode 100644
index 00000000..9713a3d3
Binary files /dev/null and b/animateditems/8929.gif differ
diff --git a/animateditems/8929.png b/animateditems/8929.png
new file mode 100644
index 00000000..ef29c8ae
Binary files /dev/null and b/animateditems/8929.png differ
diff --git a/animateditems/8930.gif b/animateditems/8930.gif
new file mode 100644
index 00000000..8c36f88d
Binary files /dev/null and b/animateditems/8930.gif differ
diff --git a/animateditems/8930.png b/animateditems/8930.png
new file mode 100644
index 00000000..429e2162
Binary files /dev/null and b/animateditems/8930.png differ
diff --git a/animateditems/8931.gif b/animateditems/8931.gif
new file mode 100644
index 00000000..11d499eb
Binary files /dev/null and b/animateditems/8931.gif differ
diff --git a/animateditems/8931.png b/animateditems/8931.png
new file mode 100644
index 00000000..0e246f0c
Binary files /dev/null and b/animateditems/8931.png differ
diff --git a/animateditems/8932.gif b/animateditems/8932.gif
new file mode 100644
index 00000000..b50b3993
Binary files /dev/null and b/animateditems/8932.gif differ
diff --git a/animateditems/8932.png b/animateditems/8932.png
new file mode 100644
index 00000000..3d445545
Binary files /dev/null and b/animateditems/8932.png differ
diff --git a/animateditems/8945.gif b/animateditems/8945.gif
new file mode 100644
index 00000000..0c37a837
Binary files /dev/null and b/animateditems/8945.gif differ
diff --git a/animateditems/8945.png b/animateditems/8945.png
new file mode 100644
index 00000000..20d2ee2d
Binary files /dev/null and b/animateditems/8945.png differ
diff --git a/animateditems/8971.gif b/animateditems/8971.gif
new file mode 100644
index 00000000..64ce0ca6
Binary files /dev/null and b/animateditems/8971.gif differ
diff --git a/animateditems/8971.png b/animateditems/8971.png
new file mode 100644
index 00000000..8cf8de12
Binary files /dev/null and b/animateditems/8971.png differ
diff --git a/animateditems/8974.gif b/animateditems/8974.gif
new file mode 100644
index 00000000..64c35df7
Binary files /dev/null and b/animateditems/8974.gif differ
diff --git a/animateditems/8974.png b/animateditems/8974.png
new file mode 100644
index 00000000..0f250d0a
Binary files /dev/null and b/animateditems/8974.png differ
diff --git a/animateditems/8975.gif b/animateditems/8975.gif
new file mode 100644
index 00000000..64c35df7
Binary files /dev/null and b/animateditems/8975.gif differ
diff --git a/animateditems/8975.png b/animateditems/8975.png
new file mode 100644
index 00000000..0f250d0a
Binary files /dev/null and b/animateditems/8975.png differ
diff --git a/animateditems/8976.gif b/animateditems/8976.gif
new file mode 100644
index 00000000..5701b96c
Binary files /dev/null and b/animateditems/8976.gif differ
diff --git a/animateditems/8976.png b/animateditems/8976.png
new file mode 100644
index 00000000..0d7e10c2
Binary files /dev/null and b/animateditems/8976.png differ
diff --git a/animateditems/8977.gif b/animateditems/8977.gif
new file mode 100644
index 00000000..578f3be6
Binary files /dev/null and b/animateditems/8977.gif differ
diff --git a/animateditems/8977.png b/animateditems/8977.png
new file mode 100644
index 00000000..d2c60471
Binary files /dev/null and b/animateditems/8977.png differ
diff --git a/animateditems/8978.gif b/animateditems/8978.gif
new file mode 100644
index 00000000..75ec518e
Binary files /dev/null and b/animateditems/8978.gif differ
diff --git a/animateditems/8978.png b/animateditems/8978.png
new file mode 100644
index 00000000..f3f9c957
Binary files /dev/null and b/animateditems/8978.png differ
diff --git a/animateditems/8979.gif b/animateditems/8979.gif
new file mode 100644
index 00000000..10c04e51
Binary files /dev/null and b/animateditems/8979.gif differ
diff --git a/animateditems/8979.png b/animateditems/8979.png
new file mode 100644
index 00000000..1da5b0a0
Binary files /dev/null and b/animateditems/8979.png differ
diff --git a/animateditems/8980.gif b/animateditems/8980.gif
new file mode 100644
index 00000000..9e41b993
Binary files /dev/null and b/animateditems/8980.gif differ
diff --git a/animateditems/8980.png b/animateditems/8980.png
new file mode 100644
index 00000000..23828680
Binary files /dev/null and b/animateditems/8980.png differ
diff --git a/animateditems/8981.gif b/animateditems/8981.gif
new file mode 100644
index 00000000..ac7c7339
Binary files /dev/null and b/animateditems/8981.gif differ
diff --git a/animateditems/8981.png b/animateditems/8981.png
new file mode 100644
index 00000000..742ad769
Binary files /dev/null and b/animateditems/8981.png differ
diff --git a/animateditems/8982.gif b/animateditems/8982.gif
new file mode 100644
index 00000000..d4138b0b
Binary files /dev/null and b/animateditems/8982.gif differ
diff --git a/animateditems/8982.png b/animateditems/8982.png
new file mode 100644
index 00000000..c0d3f42c
Binary files /dev/null and b/animateditems/8982.png differ
diff --git a/animateditems/8983.gif b/animateditems/8983.gif
new file mode 100644
index 00000000..3f78723a
Binary files /dev/null and b/animateditems/8983.gif differ
diff --git a/animateditems/8983.png b/animateditems/8983.png
new file mode 100644
index 00000000..adbd4f06
Binary files /dev/null and b/animateditems/8983.png differ
diff --git a/animateditems/8984.gif b/animateditems/8984.gif
new file mode 100644
index 00000000..ecb0ac85
Binary files /dev/null and b/animateditems/8984.gif differ
diff --git a/animateditems/8984.png b/animateditems/8984.png
new file mode 100644
index 00000000..14610df7
Binary files /dev/null and b/animateditems/8984.png differ
diff --git a/animateditems/8985.gif b/animateditems/8985.gif
new file mode 100644
index 00000000..d4138b0b
Binary files /dev/null and b/animateditems/8985.gif differ
diff --git a/animateditems/8985.png b/animateditems/8985.png
new file mode 100644
index 00000000..c0d3f42c
Binary files /dev/null and b/animateditems/8985.png differ
diff --git a/animateditems/9.gif b/animateditems/9.gif
new file mode 100644
index 00000000..737e2b9f
Binary files /dev/null and b/animateditems/9.gif differ
diff --git a/animateditems/9002.gif b/animateditems/9002.gif
new file mode 100644
index 00000000..578f3be6
Binary files /dev/null and b/animateditems/9002.gif differ
diff --git a/animateditems/9002.png b/animateditems/9002.png
new file mode 100644
index 00000000..d2c60471
Binary files /dev/null and b/animateditems/9002.png differ
diff --git a/animateditems/9003.gif b/animateditems/9003.gif
new file mode 100644
index 00000000..5701b96c
Binary files /dev/null and b/animateditems/9003.gif differ
diff --git a/animateditems/9003.png b/animateditems/9003.png
new file mode 100644
index 00000000..0d7e10c2
Binary files /dev/null and b/animateditems/9003.png differ
diff --git a/animateditems/9004.gif b/animateditems/9004.gif
new file mode 100644
index 00000000..ac7c7339
Binary files /dev/null and b/animateditems/9004.gif differ
diff --git a/animateditems/9004.png b/animateditems/9004.png
new file mode 100644
index 00000000..742ad769
Binary files /dev/null and b/animateditems/9004.png differ
diff --git a/animateditems/9005.gif b/animateditems/9005.gif
new file mode 100644
index 00000000..145ec040
Binary files /dev/null and b/animateditems/9005.gif differ
diff --git a/animateditems/9005.png b/animateditems/9005.png
new file mode 100644
index 00000000..b7d12d33
Binary files /dev/null and b/animateditems/9005.png differ
diff --git a/animateditems/9006.gif b/animateditems/9006.gif
new file mode 100644
index 00000000..db9b05a8
Binary files /dev/null and b/animateditems/9006.gif differ
diff --git a/animateditems/9006.png b/animateditems/9006.png
new file mode 100644
index 00000000..2ef9d360
Binary files /dev/null and b/animateditems/9006.png differ
diff --git a/animateditems/9007.gif b/animateditems/9007.gif
new file mode 100644
index 00000000..2b4fe63a
Binary files /dev/null and b/animateditems/9007.gif differ
diff --git a/animateditems/9007.png b/animateditems/9007.png
new file mode 100644
index 00000000..22ef1fae
Binary files /dev/null and b/animateditems/9007.png differ
diff --git a/animateditems/9019.gif b/animateditems/9019.gif
new file mode 100644
index 00000000..bc6ee9fa
Binary files /dev/null and b/animateditems/9019.gif differ
diff --git a/animateditems/9019.png b/animateditems/9019.png
new file mode 100644
index 00000000..a0ede560
Binary files /dev/null and b/animateditems/9019.png differ
diff --git a/animateditems/9020.gif b/animateditems/9020.gif
new file mode 100644
index 00000000..4a885794
Binary files /dev/null and b/animateditems/9020.gif differ
diff --git a/animateditems/9020.png b/animateditems/9020.png
new file mode 100644
index 00000000..534f9df4
Binary files /dev/null and b/animateditems/9020.png differ
diff --git a/animateditems/9074.gif b/animateditems/9074.gif
new file mode 100644
index 00000000..fde9fc8a
Binary files /dev/null and b/animateditems/9074.gif differ
diff --git a/animateditems/9074.png b/animateditems/9074.png
new file mode 100644
index 00000000..30389134
Binary files /dev/null and b/animateditems/9074.png differ
diff --git a/animateditems/9075.gif b/animateditems/9075.gif
new file mode 100644
index 00000000..3dccbf8f
Binary files /dev/null and b/animateditems/9075.gif differ
diff --git a/animateditems/9075.png b/animateditems/9075.png
new file mode 100644
index 00000000..877f232c
Binary files /dev/null and b/animateditems/9075.png differ
diff --git a/animateditems/9076.gif b/animateditems/9076.gif
new file mode 100644
index 00000000..401d0338
Binary files /dev/null and b/animateditems/9076.gif differ
diff --git a/animateditems/9076.png b/animateditems/9076.png
new file mode 100644
index 00000000..13b36d5e
Binary files /dev/null and b/animateditems/9076.png differ
diff --git a/animateditems/9077.gif b/animateditems/9077.gif
new file mode 100644
index 00000000..17789744
Binary files /dev/null and b/animateditems/9077.gif differ
diff --git a/animateditems/9077.png b/animateditems/9077.png
new file mode 100644
index 00000000..7150880d
Binary files /dev/null and b/animateditems/9077.png differ
diff --git a/animateditems/9078.gif b/animateditems/9078.gif
new file mode 100644
index 00000000..5da48e47
Binary files /dev/null and b/animateditems/9078.gif differ
diff --git a/animateditems/9078.png b/animateditems/9078.png
new file mode 100644
index 00000000..1909fab4
Binary files /dev/null and b/animateditems/9078.png differ
diff --git a/animateditems/9079.gif b/animateditems/9079.gif
new file mode 100644
index 00000000..6b851909
Binary files /dev/null and b/animateditems/9079.gif differ
diff --git a/animateditems/9079.png b/animateditems/9079.png
new file mode 100644
index 00000000..985ea885
Binary files /dev/null and b/animateditems/9079.png differ
diff --git a/animateditems/9080.gif b/animateditems/9080.gif
new file mode 100644
index 00000000..bc27fe27
Binary files /dev/null and b/animateditems/9080.gif differ
diff --git a/animateditems/9080.png b/animateditems/9080.png
new file mode 100644
index 00000000..621fa25d
Binary files /dev/null and b/animateditems/9080.png differ
diff --git a/animateditems/9081.gif b/animateditems/9081.gif
new file mode 100644
index 00000000..31ef8995
Binary files /dev/null and b/animateditems/9081.gif differ
diff --git a/animateditems/9081.png b/animateditems/9081.png
new file mode 100644
index 00000000..f533b1c3
Binary files /dev/null and b/animateditems/9081.png differ
diff --git a/animateditems/9082.gif b/animateditems/9082.gif
new file mode 100644
index 00000000..1c2e272a
Binary files /dev/null and b/animateditems/9082.gif differ
diff --git a/animateditems/9082.png b/animateditems/9082.png
new file mode 100644
index 00000000..18f08a19
Binary files /dev/null and b/animateditems/9082.png differ
diff --git a/animateditems/9083.gif b/animateditems/9083.gif
new file mode 100644
index 00000000..9c559da7
Binary files /dev/null and b/animateditems/9083.gif differ
diff --git a/animateditems/9083.png b/animateditems/9083.png
new file mode 100644
index 00000000..5207c8c7
Binary files /dev/null and b/animateditems/9083.png differ
diff --git a/animateditems/9108.gif b/animateditems/9108.gif
new file mode 100644
index 00000000..ae27c5b2
Binary files /dev/null and b/animateditems/9108.gif differ
diff --git a/animateditems/9108.png b/animateditems/9108.png
new file mode 100644
index 00000000..edc3f4a2
Binary files /dev/null and b/animateditems/9108.png differ
diff --git a/animateditems/9109.gif b/animateditems/9109.gif
new file mode 100644
index 00000000..c330eff5
Binary files /dev/null and b/animateditems/9109.gif differ
diff --git a/animateditems/9109.png b/animateditems/9109.png
new file mode 100644
index 00000000..4dc478d0
Binary files /dev/null and b/animateditems/9109.png differ
diff --git a/animateditems/9111.gif b/animateditems/9111.gif
new file mode 100644
index 00000000..3e0b5d36
Binary files /dev/null and b/animateditems/9111.gif differ
diff --git a/animateditems/9111.png b/animateditems/9111.png
new file mode 100644
index 00000000..c04d16d6
Binary files /dev/null and b/animateditems/9111.png differ
diff --git a/animateditems/9112.gif b/animateditems/9112.gif
new file mode 100644
index 00000000..a70eff34
Binary files /dev/null and b/animateditems/9112.gif differ
diff --git a/animateditems/9112.png b/animateditems/9112.png
new file mode 100644
index 00000000..24321966
Binary files /dev/null and b/animateditems/9112.png differ
diff --git a/animateditems/9113.gif b/animateditems/9113.gif
new file mode 100644
index 00000000..a70eff34
Binary files /dev/null and b/animateditems/9113.gif differ
diff --git a/animateditems/9113.png b/animateditems/9113.png
new file mode 100644
index 00000000..24321966
Binary files /dev/null and b/animateditems/9113.png differ
diff --git a/animateditems/9114.gif b/animateditems/9114.gif
new file mode 100644
index 00000000..3e855c47
Binary files /dev/null and b/animateditems/9114.gif differ
diff --git a/animateditems/9114.png b/animateditems/9114.png
new file mode 100644
index 00000000..79bf2b0f
Binary files /dev/null and b/animateditems/9114.png differ
diff --git a/animateditems/9115.gif b/animateditems/9115.gif
new file mode 100644
index 00000000..165a3d92
Binary files /dev/null and b/animateditems/9115.gif differ
diff --git a/animateditems/9115.png b/animateditems/9115.png
new file mode 100644
index 00000000..764dfc75
Binary files /dev/null and b/animateditems/9115.png differ
diff --git a/animateditems/9116.gif b/animateditems/9116.gif
new file mode 100644
index 00000000..f26c8044
Binary files /dev/null and b/animateditems/9116.gif differ
diff --git a/animateditems/9116.png b/animateditems/9116.png
new file mode 100644
index 00000000..9b13557f
Binary files /dev/null and b/animateditems/9116.png differ
diff --git a/animateditems/9117.gif b/animateditems/9117.gif
new file mode 100644
index 00000000..9ed975ff
Binary files /dev/null and b/animateditems/9117.gif differ
diff --git a/animateditems/9117.png b/animateditems/9117.png
new file mode 100644
index 00000000..d512fe6e
Binary files /dev/null and b/animateditems/9117.png differ
diff --git a/animateditems/9141.gif b/animateditems/9141.gif
new file mode 100644
index 00000000..ddd0a584
Binary files /dev/null and b/animateditems/9141.gif differ
diff --git a/animateditems/9141.png b/animateditems/9141.png
new file mode 100644
index 00000000..bf322ac3
Binary files /dev/null and b/animateditems/9141.png differ
diff --git a/animateditems/9191.gif b/animateditems/9191.gif
new file mode 100644
index 00000000..fbdd18df
Binary files /dev/null and b/animateditems/9191.gif differ
diff --git a/animateditems/9191.png b/animateditems/9191.png
new file mode 100644
index 00000000..d1a5c80a
Binary files /dev/null and b/animateditems/9191.png differ
diff --git a/animateditems/9369.gif b/animateditems/9369.gif
new file mode 100644
index 00000000..ed142e4a
Binary files /dev/null and b/animateditems/9369.gif differ
diff --git a/animateditems/9369.png b/animateditems/9369.png
new file mode 100644
index 00000000..82428747
Binary files /dev/null and b/animateditems/9369.png differ
diff --git a/animateditems/9447.gif b/animateditems/9447.gif
new file mode 100644
index 00000000..99832417
Binary files /dev/null and b/animateditems/9447.gif differ
diff --git a/animateditems/9447.png b/animateditems/9447.png
new file mode 100644
index 00000000..e4811f25
Binary files /dev/null and b/animateditems/9447.png differ
diff --git a/animateditems/9448.gif b/animateditems/9448.gif
new file mode 100644
index 00000000..3b27354a
Binary files /dev/null and b/animateditems/9448.gif differ
diff --git a/animateditems/9448.png b/animateditems/9448.png
new file mode 100644
index 00000000..14206d6e
Binary files /dev/null and b/animateditems/9448.png differ
diff --git a/animateditems/9633.gif b/animateditems/9633.gif
new file mode 100644
index 00000000..5302015d
Binary files /dev/null and b/animateditems/9633.gif differ
diff --git a/animateditems/9633.png b/animateditems/9633.png
new file mode 100644
index 00000000..9230922d
Binary files /dev/null and b/animateditems/9633.png differ
diff --git a/animateditems/9634.gif b/animateditems/9634.gif
new file mode 100644
index 00000000..5302015d
Binary files /dev/null and b/animateditems/9634.gif differ
diff --git a/animateditems/9634.png b/animateditems/9634.png
new file mode 100644
index 00000000..9230922d
Binary files /dev/null and b/animateditems/9634.png differ
diff --git a/animateditems/9635.gif b/animateditems/9635.gif
new file mode 100644
index 00000000..5302015d
Binary files /dev/null and b/animateditems/9635.gif differ
diff --git a/animateditems/9635.png b/animateditems/9635.png
new file mode 100644
index 00000000..9230922d
Binary files /dev/null and b/animateditems/9635.png differ
diff --git a/animateditems/9636.gif b/animateditems/9636.gif
new file mode 100644
index 00000000..5302015d
Binary files /dev/null and b/animateditems/9636.gif differ
diff --git a/animateditems/9636.png b/animateditems/9636.png
new file mode 100644
index 00000000..9230922d
Binary files /dev/null and b/animateditems/9636.png differ
diff --git a/animateditems/9653.gif b/animateditems/9653.gif
new file mode 100644
index 00000000..27abb587
Binary files /dev/null and b/animateditems/9653.gif differ
diff --git a/animateditems/9653.png b/animateditems/9653.png
new file mode 100644
index 00000000..8839e020
Binary files /dev/null and b/animateditems/9653.png differ
diff --git a/animateditems/9662.gif b/animateditems/9662.gif
new file mode 100644
index 00000000..2767385f
Binary files /dev/null and b/animateditems/9662.gif differ
diff --git a/animateditems/9662.png b/animateditems/9662.png
new file mode 100644
index 00000000..d69f7bab
Binary files /dev/null and b/animateditems/9662.png differ
diff --git a/animateditems/9663.gif b/animateditems/9663.gif
new file mode 100644
index 00000000..a717508c
Binary files /dev/null and b/animateditems/9663.gif differ
diff --git a/animateditems/9663.png b/animateditems/9663.png
new file mode 100644
index 00000000..90b65dc4
Binary files /dev/null and b/animateditems/9663.png differ
diff --git a/animateditems/9664.gif b/animateditems/9664.gif
new file mode 100644
index 00000000..a717508c
Binary files /dev/null and b/animateditems/9664.gif differ
diff --git a/animateditems/9664.png b/animateditems/9664.png
new file mode 100644
index 00000000..90b65dc4
Binary files /dev/null and b/animateditems/9664.png differ
diff --git a/animateditems/9665.gif b/animateditems/9665.gif
new file mode 100644
index 00000000..a717508c
Binary files /dev/null and b/animateditems/9665.gif differ
diff --git a/animateditems/9665.png b/animateditems/9665.png
new file mode 100644
index 00000000..90b65dc4
Binary files /dev/null and b/animateditems/9665.png differ
diff --git a/animateditems/9666.gif b/animateditems/9666.gif
new file mode 100644
index 00000000..a717508c
Binary files /dev/null and b/animateditems/9666.gif differ
diff --git a/animateditems/9666.png b/animateditems/9666.png
new file mode 100644
index 00000000..90b65dc4
Binary files /dev/null and b/animateditems/9666.png differ
diff --git a/animateditems/9667.gif b/animateditems/9667.gif
new file mode 100644
index 00000000..a717508c
Binary files /dev/null and b/animateditems/9667.gif differ
diff --git a/animateditems/9667.png b/animateditems/9667.png
new file mode 100644
index 00000000..90b65dc4
Binary files /dev/null and b/animateditems/9667.png differ
diff --git a/animateditems/9668.gif b/animateditems/9668.gif
new file mode 100644
index 00000000..a717508c
Binary files /dev/null and b/animateditems/9668.gif differ
diff --git a/animateditems/9668.png b/animateditems/9668.png
new file mode 100644
index 00000000..90b65dc4
Binary files /dev/null and b/animateditems/9668.png differ
diff --git a/animateditems/9674.gif b/animateditems/9674.gif
new file mode 100644
index 00000000..82150a5a
Binary files /dev/null and b/animateditems/9674.gif differ
diff --git a/animateditems/9674.png b/animateditems/9674.png
new file mode 100644
index 00000000..45920509
Binary files /dev/null and b/animateditems/9674.png differ
diff --git a/animateditems/9675.gif b/animateditems/9675.gif
new file mode 100644
index 00000000..50b49593
Binary files /dev/null and b/animateditems/9675.gif differ
diff --git a/animateditems/9675.png b/animateditems/9675.png
new file mode 100644
index 00000000..4404d3f0
Binary files /dev/null and b/animateditems/9675.png differ
diff --git a/animateditems/9676.gif b/animateditems/9676.gif
new file mode 100644
index 00000000..3455f01d
Binary files /dev/null and b/animateditems/9676.gif differ
diff --git a/animateditems/9676.png b/animateditems/9676.png
new file mode 100644
index 00000000..970758fc
Binary files /dev/null and b/animateditems/9676.png differ
diff --git a/animateditems/9677.gif b/animateditems/9677.gif
new file mode 100644
index 00000000..47fbe992
Binary files /dev/null and b/animateditems/9677.gif differ
diff --git a/animateditems/9677.png b/animateditems/9677.png
new file mode 100644
index 00000000..8712f1e8
Binary files /dev/null and b/animateditems/9677.png differ
diff --git a/animateditems/9678.gif b/animateditems/9678.gif
new file mode 100644
index 00000000..f7248af3
Binary files /dev/null and b/animateditems/9678.gif differ
diff --git a/animateditems/9678.png b/animateditems/9678.png
new file mode 100644
index 00000000..3fc3e19a
Binary files /dev/null and b/animateditems/9678.png differ
diff --git a/animateditems/9679.gif b/animateditems/9679.gif
new file mode 100644
index 00000000..6145f932
Binary files /dev/null and b/animateditems/9679.gif differ
diff --git a/animateditems/9679.png b/animateditems/9679.png
new file mode 100644
index 00000000..cac315e3
Binary files /dev/null and b/animateditems/9679.png differ
diff --git a/animateditems/9680.gif b/animateditems/9680.gif
new file mode 100644
index 00000000..dc1aa5c8
Binary files /dev/null and b/animateditems/9680.gif differ
diff --git a/animateditems/9680.png b/animateditems/9680.png
new file mode 100644
index 00000000..c809e709
Binary files /dev/null and b/animateditems/9680.png differ
diff --git a/animateditems/9687.gif b/animateditems/9687.gif
new file mode 100644
index 00000000..60419127
Binary files /dev/null and b/animateditems/9687.gif differ
diff --git a/animateditems/9687.png b/animateditems/9687.png
new file mode 100644
index 00000000..fa4eecee
Binary files /dev/null and b/animateditems/9687.png differ
diff --git a/animateditems/9688.gif b/animateditems/9688.gif
new file mode 100644
index 00000000..f7ce47fb
Binary files /dev/null and b/animateditems/9688.gif differ
diff --git a/animateditems/9688.png b/animateditems/9688.png
new file mode 100644
index 00000000..39a7a375
Binary files /dev/null and b/animateditems/9688.png differ
diff --git a/animateditems/9689.gif b/animateditems/9689.gif
new file mode 100644
index 00000000..2f19e108
Binary files /dev/null and b/animateditems/9689.gif differ
diff --git a/animateditems/9689.png b/animateditems/9689.png
new file mode 100644
index 00000000..c37eeda7
Binary files /dev/null and b/animateditems/9689.png differ
diff --git a/animateditems/9690.gif b/animateditems/9690.gif
new file mode 100644
index 00000000..d6fce258
Binary files /dev/null and b/animateditems/9690.gif differ
diff --git a/animateditems/9690.png b/animateditems/9690.png
new file mode 100644
index 00000000..f3ea9d6f
Binary files /dev/null and b/animateditems/9690.png differ
diff --git a/animateditems/9692.gif b/animateditems/9692.gif
new file mode 100644
index 00000000..905c698c
Binary files /dev/null and b/animateditems/9692.gif differ
diff --git a/animateditems/9692.png b/animateditems/9692.png
new file mode 100644
index 00000000..9de4d7ab
Binary files /dev/null and b/animateditems/9692.png differ
diff --git a/animateditems/9693.gif b/animateditems/9693.gif
new file mode 100644
index 00000000..7caa5c40
Binary files /dev/null and b/animateditems/9693.gif differ
diff --git a/animateditems/9693.png b/animateditems/9693.png
new file mode 100644
index 00000000..2bb3e240
Binary files /dev/null and b/animateditems/9693.png differ
diff --git a/animateditems/9694.gif b/animateditems/9694.gif
new file mode 100644
index 00000000..c080aa9a
Binary files /dev/null and b/animateditems/9694.gif differ
diff --git a/animateditems/9694.png b/animateditems/9694.png
new file mode 100644
index 00000000..63a40556
Binary files /dev/null and b/animateditems/9694.png differ
diff --git a/animateditems/9695.gif b/animateditems/9695.gif
new file mode 100644
index 00000000..da199798
Binary files /dev/null and b/animateditems/9695.gif differ
diff --git a/animateditems/9695.png b/animateditems/9695.png
new file mode 100644
index 00000000..06792583
Binary files /dev/null and b/animateditems/9695.png differ
diff --git a/animateditems/9696.gif b/animateditems/9696.gif
new file mode 100644
index 00000000..51b53de7
Binary files /dev/null and b/animateditems/9696.gif differ
diff --git a/animateditems/9696.png b/animateditems/9696.png
new file mode 100644
index 00000000..02dcf493
Binary files /dev/null and b/animateditems/9696.png differ
diff --git a/animateditems/9697.gif b/animateditems/9697.gif
new file mode 100644
index 00000000..8294818f
Binary files /dev/null and b/animateditems/9697.gif differ
diff --git a/animateditems/9697.png b/animateditems/9697.png
new file mode 100644
index 00000000..2f922c3d
Binary files /dev/null and b/animateditems/9697.png differ
diff --git a/animateditems/9698.gif b/animateditems/9698.gif
new file mode 100644
index 00000000..cb538778
Binary files /dev/null and b/animateditems/9698.gif differ
diff --git a/animateditems/9698.png b/animateditems/9698.png
new file mode 100644
index 00000000..4166d449
Binary files /dev/null and b/animateditems/9698.png differ
diff --git a/animateditems/9699.gif b/animateditems/9699.gif
new file mode 100644
index 00000000..fbf1208f
Binary files /dev/null and b/animateditems/9699.gif differ
diff --git a/animateditems/9699.png b/animateditems/9699.png
new file mode 100644
index 00000000..bd5aa923
Binary files /dev/null and b/animateditems/9699.png differ
diff --git a/animateditems/9733.gif b/animateditems/9733.gif
new file mode 100644
index 00000000..a717508c
Binary files /dev/null and b/animateditems/9733.gif differ
diff --git a/animateditems/9733.png b/animateditems/9733.png
new file mode 100644
index 00000000..90b65dc4
Binary files /dev/null and b/animateditems/9733.png differ
diff --git a/animateditems/9734.gif b/animateditems/9734.gif
new file mode 100644
index 00000000..2bf189a8
Binary files /dev/null and b/animateditems/9734.gif differ
diff --git a/animateditems/9734.png b/animateditems/9734.png
new file mode 100644
index 00000000..031835fd
Binary files /dev/null and b/animateditems/9734.png differ
diff --git a/animateditems/9735.gif b/animateditems/9735.gif
new file mode 100644
index 00000000..443fae38
Binary files /dev/null and b/animateditems/9735.gif differ
diff --git a/animateditems/9735.png b/animateditems/9735.png
new file mode 100644
index 00000000..6dd1fcc7
Binary files /dev/null and b/animateditems/9735.png differ
diff --git a/animateditems/9737.gif b/animateditems/9737.gif
new file mode 100644
index 00000000..3fac6c73
Binary files /dev/null and b/animateditems/9737.gif differ
diff --git a/animateditems/9737.png b/animateditems/9737.png
new file mode 100644
index 00000000..f690c67c
Binary files /dev/null and b/animateditems/9737.png differ
diff --git a/animateditems/9741.gif b/animateditems/9741.gif
new file mode 100644
index 00000000..30434d38
Binary files /dev/null and b/animateditems/9741.gif differ
diff --git a/animateditems/9741.png b/animateditems/9741.png
new file mode 100644
index 00000000..469987f1
Binary files /dev/null and b/animateditems/9741.png differ
diff --git a/animateditems/9742.gif b/animateditems/9742.gif
new file mode 100644
index 00000000..a6128f7f
Binary files /dev/null and b/animateditems/9742.gif differ
diff --git a/animateditems/9742.png b/animateditems/9742.png
new file mode 100644
index 00000000..a5f7c8ce
Binary files /dev/null and b/animateditems/9742.png differ
diff --git a/animateditems/9743.gif b/animateditems/9743.gif
new file mode 100644
index 00000000..2ce346a9
Binary files /dev/null and b/animateditems/9743.gif differ
diff --git a/animateditems/9743.png b/animateditems/9743.png
new file mode 100644
index 00000000..bc3dbde4
Binary files /dev/null and b/animateditems/9743.png differ
diff --git a/animateditems/9744.gif b/animateditems/9744.gif
new file mode 100644
index 00000000..3fabeffb
Binary files /dev/null and b/animateditems/9744.gif differ
diff --git a/animateditems/9744.png b/animateditems/9744.png
new file mode 100644
index 00000000..9a0bb1ec
Binary files /dev/null and b/animateditems/9744.png differ
diff --git a/animateditems/9774.gif b/animateditems/9774.gif
new file mode 100644
index 00000000..71c1556c
Binary files /dev/null and b/animateditems/9774.gif differ
diff --git a/animateditems/9774.png b/animateditems/9774.png
new file mode 100644
index 00000000..1f631d85
Binary files /dev/null and b/animateditems/9774.png differ
diff --git a/animateditems/9775.gif b/animateditems/9775.gif
new file mode 100644
index 00000000..cb096fdd
Binary files /dev/null and b/animateditems/9775.gif differ
diff --git a/animateditems/9775.png b/animateditems/9775.png
new file mode 100644
index 00000000..6ccafd53
Binary files /dev/null and b/animateditems/9775.png differ
diff --git a/animateditems/9776.gif b/animateditems/9776.gif
new file mode 100644
index 00000000..a2e3a096
Binary files /dev/null and b/animateditems/9776.gif differ
diff --git a/animateditems/9776.png b/animateditems/9776.png
new file mode 100644
index 00000000..7ff583ae
Binary files /dev/null and b/animateditems/9776.png differ
diff --git a/animateditems/9777.gif b/animateditems/9777.gif
new file mode 100644
index 00000000..0d65e08c
Binary files /dev/null and b/animateditems/9777.gif differ
diff --git a/animateditems/9777.png b/animateditems/9777.png
new file mode 100644
index 00000000..7beed489
Binary files /dev/null and b/animateditems/9777.png differ
diff --git a/animateditems/9778.gif b/animateditems/9778.gif
new file mode 100644
index 00000000..a89fdf4e
Binary files /dev/null and b/animateditems/9778.gif differ
diff --git a/animateditems/9778.png b/animateditems/9778.png
new file mode 100644
index 00000000..8ac25168
Binary files /dev/null and b/animateditems/9778.png differ
diff --git a/animateditems/9805.gif b/animateditems/9805.gif
new file mode 100644
index 00000000..1234a223
Binary files /dev/null and b/animateditems/9805.gif differ
diff --git a/animateditems/9805.png b/animateditems/9805.png
new file mode 100644
index 00000000..e753b5a2
Binary files /dev/null and b/animateditems/9805.png differ
diff --git a/animateditems/9806.gif b/animateditems/9806.gif
new file mode 100644
index 00000000..1234a223
Binary files /dev/null and b/animateditems/9806.gif differ
diff --git a/animateditems/9806.png b/animateditems/9806.png
new file mode 100644
index 00000000..e753b5a2
Binary files /dev/null and b/animateditems/9806.png differ
diff --git a/animateditems/9807.gif b/animateditems/9807.gif
new file mode 100644
index 00000000..1234a223
Binary files /dev/null and b/animateditems/9807.gif differ
diff --git a/animateditems/9807.png b/animateditems/9807.png
new file mode 100644
index 00000000..e753b5a2
Binary files /dev/null and b/animateditems/9807.png differ
diff --git a/animateditems/9808.gif b/animateditems/9808.gif
new file mode 100644
index 00000000..79c6ff2c
Binary files /dev/null and b/animateditems/9808.gif differ
diff --git a/animateditems/9808.png b/animateditems/9808.png
new file mode 100644
index 00000000..267675da
Binary files /dev/null and b/animateditems/9808.png differ
diff --git a/animateditems/9809.gif b/animateditems/9809.gif
new file mode 100644
index 00000000..8acb62f5
Binary files /dev/null and b/animateditems/9809.gif differ
diff --git a/animateditems/9809.png b/animateditems/9809.png
new file mode 100644
index 00000000..78cc141b
Binary files /dev/null and b/animateditems/9809.png differ
diff --git a/animateditems/9810.gif b/animateditems/9810.gif
new file mode 100644
index 00000000..3e654d71
Binary files /dev/null and b/animateditems/9810.gif differ
diff --git a/animateditems/9810.png b/animateditems/9810.png
new file mode 100644
index 00000000..5531d718
Binary files /dev/null and b/animateditems/9810.png differ
diff --git a/animateditems/9811.gif b/animateditems/9811.gif
new file mode 100644
index 00000000..791f6849
Binary files /dev/null and b/animateditems/9811.gif differ
diff --git a/animateditems/9811.png b/animateditems/9811.png
new file mode 100644
index 00000000..9f04bc37
Binary files /dev/null and b/animateditems/9811.png differ
diff --git a/animateditems/9812.gif b/animateditems/9812.gif
new file mode 100644
index 00000000..f4350b43
Binary files /dev/null and b/animateditems/9812.gif differ
diff --git a/animateditems/9812.png b/animateditems/9812.png
new file mode 100644
index 00000000..fc20e4f8
Binary files /dev/null and b/animateditems/9812.png differ
diff --git a/animateditems/9813.gif b/animateditems/9813.gif
new file mode 100644
index 00000000..83945d3d
Binary files /dev/null and b/animateditems/9813.gif differ
diff --git a/animateditems/9813.png b/animateditems/9813.png
new file mode 100644
index 00000000..9a7211f6
Binary files /dev/null and b/animateditems/9813.png differ
diff --git a/animateditems/9814.gif b/animateditems/9814.gif
new file mode 100644
index 00000000..ed2dfd74
Binary files /dev/null and b/animateditems/9814.gif differ
diff --git a/animateditems/9814.png b/animateditems/9814.png
new file mode 100644
index 00000000..1e72f147
Binary files /dev/null and b/animateditems/9814.png differ
diff --git a/animateditems/9815.gif b/animateditems/9815.gif
new file mode 100644
index 00000000..6bb0557e
Binary files /dev/null and b/animateditems/9815.gif differ
diff --git a/animateditems/9815.png b/animateditems/9815.png
new file mode 100644
index 00000000..67dfcf9c
Binary files /dev/null and b/animateditems/9815.png differ
diff --git a/animateditems/9816.gif b/animateditems/9816.gif
new file mode 100644
index 00000000..fdd1cb2e
Binary files /dev/null and b/animateditems/9816.gif differ
diff --git a/animateditems/9816.png b/animateditems/9816.png
new file mode 100644
index 00000000..004a8ae2
Binary files /dev/null and b/animateditems/9816.png differ
diff --git a/animateditems/9817.gif b/animateditems/9817.gif
new file mode 100644
index 00000000..6c7c8520
Binary files /dev/null and b/animateditems/9817.gif differ
diff --git a/animateditems/9817.png b/animateditems/9817.png
new file mode 100644
index 00000000..2f5f1679
Binary files /dev/null and b/animateditems/9817.png differ
diff --git a/animateditems/9818.gif b/animateditems/9818.gif
new file mode 100644
index 00000000..6c7c8520
Binary files /dev/null and b/animateditems/9818.gif differ
diff --git a/animateditems/9818.png b/animateditems/9818.png
new file mode 100644
index 00000000..2f5f1679
Binary files /dev/null and b/animateditems/9818.png differ
diff --git a/animateditems/9819.gif b/animateditems/9819.gif
new file mode 100644
index 00000000..6c7c8520
Binary files /dev/null and b/animateditems/9819.gif differ
diff --git a/animateditems/9819.png b/animateditems/9819.png
new file mode 100644
index 00000000..2f5f1679
Binary files /dev/null and b/animateditems/9819.png differ
diff --git a/animateditems/9820.gif b/animateditems/9820.gif
new file mode 100644
index 00000000..b2d2469d
Binary files /dev/null and b/animateditems/9820.gif differ
diff --git a/animateditems/9820.png b/animateditems/9820.png
new file mode 100644
index 00000000..4c58dfbe
Binary files /dev/null and b/animateditems/9820.png differ
diff --git a/animateditems/9821.gif b/animateditems/9821.gif
new file mode 100644
index 00000000..8ec361b2
Binary files /dev/null and b/animateditems/9821.gif differ
diff --git a/animateditems/9821.png b/animateditems/9821.png
new file mode 100644
index 00000000..ba29b839
Binary files /dev/null and b/animateditems/9821.png differ
diff --git a/animateditems/9822.gif b/animateditems/9822.gif
new file mode 100644
index 00000000..822b3b61
Binary files /dev/null and b/animateditems/9822.gif differ
diff --git a/animateditems/9822.png b/animateditems/9822.png
new file mode 100644
index 00000000..c9d1ba5d
Binary files /dev/null and b/animateditems/9822.png differ
diff --git a/animateditems/9824.gif b/animateditems/9824.gif
new file mode 100644
index 00000000..38d8af96
Binary files /dev/null and b/animateditems/9824.gif differ
diff --git a/animateditems/9824.png b/animateditems/9824.png
new file mode 100644
index 00000000..6e8590ad
Binary files /dev/null and b/animateditems/9824.png differ
diff --git a/animateditems/9837.gif b/animateditems/9837.gif
new file mode 100644
index 00000000..d70fca9c
Binary files /dev/null and b/animateditems/9837.gif differ
diff --git a/animateditems/9837.png b/animateditems/9837.png
new file mode 100644
index 00000000..c5aab938
Binary files /dev/null and b/animateditems/9837.png differ
diff --git a/animateditems/99.gif b/animateditems/99.gif
new file mode 100644
index 00000000..61f1b083
Binary files /dev/null and b/animateditems/99.gif differ
diff --git a/animateditems/99.png b/animateditems/99.png
new file mode 100644
index 00000000..92e96461
Binary files /dev/null and b/animateditems/99.png differ
diff --git a/animateditems/9927.gif b/animateditems/9927.gif
new file mode 100644
index 00000000..903b6e0b
Binary files /dev/null and b/animateditems/9927.gif differ
diff --git a/animateditems/9927.png b/animateditems/9927.png
new file mode 100644
index 00000000..cf13ee90
Binary files /dev/null and b/animateditems/9927.png differ
diff --git a/animateditems/9928.gif b/animateditems/9928.gif
new file mode 100644
index 00000000..8cc1275d
Binary files /dev/null and b/animateditems/9928.gif differ
diff --git a/animateditems/9928.png b/animateditems/9928.png
new file mode 100644
index 00000000..defbb1cc
Binary files /dev/null and b/animateditems/9928.png differ
diff --git a/animateditems/9929.gif b/animateditems/9929.gif
new file mode 100644
index 00000000..80ff29d2
Binary files /dev/null and b/animateditems/9929.gif differ
diff --git a/animateditems/9929.png b/animateditems/9929.png
new file mode 100644
index 00000000..444b5b46
Binary files /dev/null and b/animateditems/9929.png differ
diff --git a/animateditems/9930.gif b/animateditems/9930.gif
new file mode 100644
index 00000000..53bfc0e6
Binary files /dev/null and b/animateditems/9930.gif differ
diff --git a/animateditems/9930.png b/animateditems/9930.png
new file mode 100644
index 00000000..7633b0ef
Binary files /dev/null and b/animateditems/9930.png differ
diff --git a/animateditems/9931.gif b/animateditems/9931.gif
new file mode 100644
index 00000000..32803c50
Binary files /dev/null and b/animateditems/9931.gif differ
diff --git a/animateditems/9931.png b/animateditems/9931.png
new file mode 100644
index 00000000..2bbc630b
Binary files /dev/null and b/animateditems/9931.png differ
diff --git a/animateditems/9932.gif b/animateditems/9932.gif
new file mode 100644
index 00000000..0fa75c6f
Binary files /dev/null and b/animateditems/9932.gif differ
diff --git a/animateditems/9932.png b/animateditems/9932.png
new file mode 100644
index 00000000..812a8d22
Binary files /dev/null and b/animateditems/9932.png differ
diff --git a/animateditems/9933.gif b/animateditems/9933.gif
new file mode 100644
index 00000000..8dc8bb27
Binary files /dev/null and b/animateditems/9933.gif differ
diff --git a/animateditems/9933.png b/animateditems/9933.png
new file mode 100644
index 00000000..82190a37
Binary files /dev/null and b/animateditems/9933.png differ
diff --git a/animateditems/9934.gif b/animateditems/9934.gif
new file mode 100644
index 00000000..00af04aa
Binary files /dev/null and b/animateditems/9934.gif differ
diff --git a/animateditems/9934.png b/animateditems/9934.png
new file mode 100644
index 00000000..cbe58894
Binary files /dev/null and b/animateditems/9934.png differ
diff --git a/animateditems/9941.gif b/animateditems/9941.gif
new file mode 100644
index 00000000..977f645e
Binary files /dev/null and b/animateditems/9941.gif differ
diff --git a/animateditems/9941.png b/animateditems/9941.png
new file mode 100644
index 00000000..ea425e3c
Binary files /dev/null and b/animateditems/9941.png differ
diff --git a/animateditems/9942.gif b/animateditems/9942.gif
new file mode 100644
index 00000000..2b8dc7f8
Binary files /dev/null and b/animateditems/9942.gif differ
diff --git a/animateditems/9942.png b/animateditems/9942.png
new file mode 100644
index 00000000..fb0c0da2
Binary files /dev/null and b/animateditems/9942.png differ
diff --git a/animateditems/9948.gif b/animateditems/9948.gif
new file mode 100644
index 00000000..d78af7de
Binary files /dev/null and b/animateditems/9948.gif differ
diff --git a/animateditems/9948.png b/animateditems/9948.png
new file mode 100644
index 00000000..29316fbe
Binary files /dev/null and b/animateditems/9948.png differ
diff --git a/animateditems/9949.gif b/animateditems/9949.gif
new file mode 100644
index 00000000..3a3dd5a7
Binary files /dev/null and b/animateditems/9949.gif differ
diff --git a/animateditems/9949.png b/animateditems/9949.png
new file mode 100644
index 00000000..d020e36c
Binary files /dev/null and b/animateditems/9949.png differ
diff --git a/animateditems/9953.gif b/animateditems/9953.gif
new file mode 100644
index 00000000..3944200a
Binary files /dev/null and b/animateditems/9953.gif differ
diff --git a/animateditems/9953.png b/animateditems/9953.png
new file mode 100644
index 00000000..7c38de0d
Binary files /dev/null and b/animateditems/9953.png differ
diff --git a/animateditems/9954.gif b/animateditems/9954.gif
new file mode 100644
index 00000000..7bf8458d
Binary files /dev/null and b/animateditems/9954.gif differ
diff --git a/animateditems/9954.png b/animateditems/9954.png
new file mode 100644
index 00000000..35d06a33
Binary files /dev/null and b/animateditems/9954.png differ
diff --git a/animateditems/9955.gif b/animateditems/9955.gif
new file mode 100644
index 00000000..fb2635f6
Binary files /dev/null and b/animateditems/9955.gif differ
diff --git a/animateditems/9955.png b/animateditems/9955.png
new file mode 100644
index 00000000..2a77d471
Binary files /dev/null and b/animateditems/9955.png differ
diff --git a/animateditems/9956.gif b/animateditems/9956.gif
new file mode 100644
index 00000000..eadecc49
Binary files /dev/null and b/animateditems/9956.gif differ
diff --git a/animateditems/9956.png b/animateditems/9956.png
new file mode 100644
index 00000000..405ba2c8
Binary files /dev/null and b/animateditems/9956.png differ
diff --git a/animateditems/9958.gif b/animateditems/9958.gif
new file mode 100644
index 00000000..c97533ac
Binary files /dev/null and b/animateditems/9958.gif differ
diff --git a/animateditems/9958.png b/animateditems/9958.png
new file mode 100644
index 00000000..fe663c37
Binary files /dev/null and b/animateditems/9958.png differ
diff --git a/animateditems/9959.gif b/animateditems/9959.gif
new file mode 100644
index 00000000..3f61a9b3
Binary files /dev/null and b/animateditems/9959.gif differ
diff --git a/animateditems/9959.png b/animateditems/9959.png
new file mode 100644
index 00000000..7df4d245
Binary files /dev/null and b/animateditems/9959.png differ
diff --git a/animateditems/9966.gif b/animateditems/9966.gif
new file mode 100644
index 00000000..ef56906e
Binary files /dev/null and b/animateditems/9966.gif differ
diff --git a/animateditems/9966.png b/animateditems/9966.png
new file mode 100644
index 00000000..b315c9de
Binary files /dev/null and b/animateditems/9966.png differ
diff --git a/animateditems/9967.gif b/animateditems/9967.gif
new file mode 100644
index 00000000..b002ecc4
Binary files /dev/null and b/animateditems/9967.gif differ
diff --git a/animateditems/9967.png b/animateditems/9967.png
new file mode 100644
index 00000000..dc605033
Binary files /dev/null and b/animateditems/9967.png differ
diff --git a/animateditems/9968.gif b/animateditems/9968.gif
new file mode 100644
index 00000000..a4f00779
Binary files /dev/null and b/animateditems/9968.gif differ
diff --git a/animateditems/9968.png b/animateditems/9968.png
new file mode 100644
index 00000000..bdd6b2de
Binary files /dev/null and b/animateditems/9968.png differ
diff --git a/animateditems/9969.gif b/animateditems/9969.gif
new file mode 100644
index 00000000..ba40a045
Binary files /dev/null and b/animateditems/9969.gif differ
diff --git a/animateditems/9969.png b/animateditems/9969.png
new file mode 100644
index 00000000..526e073c
Binary files /dev/null and b/animateditems/9969.png differ
diff --git a/animateditems/9970.gif b/animateditems/9970.gif
new file mode 100644
index 00000000..ce5b43f1
Binary files /dev/null and b/animateditems/9970.gif differ
diff --git a/animateditems/9970.png b/animateditems/9970.png
new file mode 100644
index 00000000..b9477823
Binary files /dev/null and b/animateditems/9970.png differ
diff --git a/animateditems/9971.gif b/animateditems/9971.gif
new file mode 100644
index 00000000..3903393d
Binary files /dev/null and b/animateditems/9971.gif differ
diff --git a/animateditems/9971.png b/animateditems/9971.png
new file mode 100644
index 00000000..9fcfbf51
Binary files /dev/null and b/animateditems/9971.png differ
diff --git a/animateditems/9972.gif b/animateditems/9972.gif
new file mode 100644
index 00000000..7503d353
Binary files /dev/null and b/animateditems/9972.gif differ
diff --git a/animateditems/9972.png b/animateditems/9972.png
new file mode 100644
index 00000000..17a435b9
Binary files /dev/null and b/animateditems/9972.png differ
diff --git a/animateditems/9973.gif b/animateditems/9973.gif
new file mode 100644
index 00000000..6c846c2e
Binary files /dev/null and b/animateditems/9973.gif differ
diff --git a/animateditems/9973.png b/animateditems/9973.png
new file mode 100644
index 00000000..ad37c035
Binary files /dev/null and b/animateditems/9973.png differ
diff --git a/animateditems/9974.gif b/animateditems/9974.gif
new file mode 100644
index 00000000..a1816593
Binary files /dev/null and b/animateditems/9974.gif differ
diff --git a/animateditems/9974.png b/animateditems/9974.png
new file mode 100644
index 00000000..afcc4adb
Binary files /dev/null and b/animateditems/9974.png differ
diff --git a/animateditems/9976.gif b/animateditems/9976.gif
new file mode 100644
index 00000000..358b5310
Binary files /dev/null and b/animateditems/9976.gif differ
diff --git a/animateditems/9976.png b/animateditems/9976.png
new file mode 100644
index 00000000..69c11a88
Binary files /dev/null and b/animateditems/9976.png differ
diff --git a/animateditems/9977.gif b/animateditems/9977.gif
new file mode 100644
index 00000000..adf254f3
Binary files /dev/null and b/animateditems/9977.gif differ
diff --git a/animateditems/9977.png b/animateditems/9977.png
new file mode 100644
index 00000000..670b84b6
Binary files /dev/null and b/animateditems/9977.png differ
diff --git a/animateditems/9978.gif b/animateditems/9978.gif
new file mode 100644
index 00000000..d635ba04
Binary files /dev/null and b/animateditems/9978.gif differ
diff --git a/animateditems/9978.png b/animateditems/9978.png
new file mode 100644
index 00000000..3e4b94d4
Binary files /dev/null and b/animateditems/9978.png differ
diff --git a/animateditems/9979.gif b/animateditems/9979.gif
new file mode 100644
index 00000000..f0431c7d
Binary files /dev/null and b/animateditems/9979.gif differ
diff --git a/animateditems/9979.png b/animateditems/9979.png
new file mode 100644
index 00000000..4e68dd55
Binary files /dev/null and b/animateditems/9979.png differ
diff --git a/animateditems/9980.gif b/animateditems/9980.gif
new file mode 100644
index 00000000..4186e5c7
Binary files /dev/null and b/animateditems/9980.gif differ
diff --git a/animateditems/9980.png b/animateditems/9980.png
new file mode 100644
index 00000000..718a521a
Binary files /dev/null and b/animateditems/9980.png differ
diff --git a/animateditems/9981.gif b/animateditems/9981.gif
new file mode 100644
index 00000000..b3ab470b
Binary files /dev/null and b/animateditems/9981.gif differ
diff --git a/animateditems/9981.png b/animateditems/9981.png
new file mode 100644
index 00000000..5025292a
Binary files /dev/null and b/animateditems/9981.png differ
diff --git a/animateditems/9982.gif b/animateditems/9982.gif
new file mode 100644
index 00000000..8469e2a5
Binary files /dev/null and b/animateditems/9982.gif differ
diff --git a/animateditems/9982.png b/animateditems/9982.png
new file mode 100644
index 00000000..9fc64a22
Binary files /dev/null and b/animateditems/9982.png differ
diff --git a/animateditems/9983.gif b/animateditems/9983.gif
new file mode 100644
index 00000000..8469e2a5
Binary files /dev/null and b/animateditems/9983.gif differ
diff --git a/animateditems/9983.png b/animateditems/9983.png
new file mode 100644
index 00000000..9fc64a22
Binary files /dev/null and b/animateditems/9983.png differ
diff --git a/animateditems/9984.gif b/animateditems/9984.gif
new file mode 100644
index 00000000..889f5413
Binary files /dev/null and b/animateditems/9984.gif differ
diff --git a/animateditems/9984.png b/animateditems/9984.png
new file mode 100644
index 00000000..27f9e6b2
Binary files /dev/null and b/animateditems/9984.png differ
diff --git a/animateditems/9985.gif b/animateditems/9985.gif
new file mode 100644
index 00000000..889f5413
Binary files /dev/null and b/animateditems/9985.gif differ
diff --git a/animateditems/9985.png b/animateditems/9985.png
new file mode 100644
index 00000000..27f9e6b2
Binary files /dev/null and b/animateditems/9985.png differ
diff --git a/animateditems/9986.gif b/animateditems/9986.gif
new file mode 100644
index 00000000..1a7acbd5
Binary files /dev/null and b/animateditems/9986.gif differ
diff --git a/animateditems/9986.png b/animateditems/9986.png
new file mode 100644
index 00000000..99839734
Binary files /dev/null and b/animateditems/9986.png differ
diff --git a/animateditems/9987.gif b/animateditems/9987.gif
new file mode 100644
index 00000000..1a7acbd5
Binary files /dev/null and b/animateditems/9987.gif differ
diff --git a/animateditems/9987.png b/animateditems/9987.png
new file mode 100644
index 00000000..99839734
Binary files /dev/null and b/animateditems/9987.png differ
diff --git a/animateditems/9988.gif b/animateditems/9988.gif
new file mode 100644
index 00000000..4febdace
Binary files /dev/null and b/animateditems/9988.gif differ
diff --git a/animateditems/9988.png b/animateditems/9988.png
new file mode 100644
index 00000000..be5207c7
Binary files /dev/null and b/animateditems/9988.png differ
diff --git a/animateditems/9989.gif b/animateditems/9989.gif
new file mode 100644
index 00000000..4febdace
Binary files /dev/null and b/animateditems/9989.gif differ
diff --git a/animateditems/9989.png b/animateditems/9989.png
new file mode 100644
index 00000000..be5207c7
Binary files /dev/null and b/animateditems/9989.png differ
diff --git a/animateditems/9990.gif b/animateditems/9990.gif
new file mode 100644
index 00000000..8881593c
Binary files /dev/null and b/animateditems/9990.gif differ
diff --git a/animateditems/9990.png b/animateditems/9990.png
new file mode 100644
index 00000000..116c3419
Binary files /dev/null and b/animateditems/9990.png differ
diff --git a/animateditems/9991.gif b/animateditems/9991.gif
new file mode 100644
index 00000000..8881593c
Binary files /dev/null and b/animateditems/9991.gif differ
diff --git a/animateditems/9991.png b/animateditems/9991.png
new file mode 100644
index 00000000..116c3419
Binary files /dev/null and b/animateditems/9991.png differ
diff --git a/animateditems/9992.gif b/animateditems/9992.gif
new file mode 100644
index 00000000..928f9573
Binary files /dev/null and b/animateditems/9992.gif differ
diff --git a/animateditems/9992.png b/animateditems/9992.png
new file mode 100644
index 00000000..f3e4af51
Binary files /dev/null and b/animateditems/9992.png differ
diff --git a/animateditems/9993.gif b/animateditems/9993.gif
new file mode 100644
index 00000000..77ab2610
Binary files /dev/null and b/animateditems/9993.gif differ
diff --git a/animateditems/9993.png b/animateditems/9993.png
new file mode 100644
index 00000000..93072455
Binary files /dev/null and b/animateditems/9993.png differ
diff --git a/animateditems/9994.gif b/animateditems/9994.gif
new file mode 100644
index 00000000..f8e55f90
Binary files /dev/null and b/animateditems/9994.gif differ
diff --git a/animateditems/9994.png b/animateditems/9994.png
new file mode 100644
index 00000000..bf14afaf
Binary files /dev/null and b/animateditems/9994.png differ
diff --git a/animateditems/9995.gif b/animateditems/9995.gif
new file mode 100644
index 00000000..904d92eb
Binary files /dev/null and b/animateditems/9995.gif differ
diff --git a/animateditems/9995.png b/animateditems/9995.png
new file mode 100644
index 00000000..4044d627
Binary files /dev/null and b/animateditems/9995.png differ
diff --git a/animateditems/9996.gif b/animateditems/9996.gif
new file mode 100644
index 00000000..2d1bfd98
Binary files /dev/null and b/animateditems/9996.gif differ
diff --git a/animateditems/9996.png b/animateditems/9996.png
new file mode 100644
index 00000000..3ae10b53
Binary files /dev/null and b/animateditems/9996.png differ
diff --git a/animateditems/9997.gif b/animateditems/9997.gif
new file mode 100644
index 00000000..c660c4dd
Binary files /dev/null and b/animateditems/9997.gif differ
diff --git a/animateditems/9997.png b/animateditems/9997.png
new file mode 100644
index 00000000..264d3e8a
Binary files /dev/null and b/animateditems/9997.png differ
diff --git a/animateditems/9998.gif b/animateditems/9998.gif
new file mode 100644
index 00000000..1d79e050
Binary files /dev/null and b/animateditems/9998.gif differ
diff --git a/animateditems/9998.png b/animateditems/9998.png
new file mode 100644
index 00000000..f23ad09b
Binary files /dev/null and b/animateditems/9998.png differ
diff --git a/animateditems/9999.gif b/animateditems/9999.gif
new file mode 100644
index 00000000..f1e0aae7
Binary files /dev/null and b/animateditems/9999.gif differ
diff --git a/animateditems/9999.png b/animateditems/9999.png
new file mode 100644
index 00000000..1c7d5cdd
Binary files /dev/null and b/animateditems/9999.png differ
diff --git a/animateditems/index.htm b/animateditems/index.htm
new file mode 100644
index 00000000..d47c102c
--- /dev/null
+++ b/animateditems/index.htm
@@ -0,0 +1 @@
+index.htm BLOCKS FILES INDEX
\ No newline at end of file
diff --git a/animateditems/index.html b/animateditems/index.html
new file mode 100644
index 00000000..db5d336c
--- /dev/null
+++ b/animateditems/index.html
@@ -0,0 +1 @@
+index.html BLOCKS FILES INDEX
\ No newline at end of file
diff --git a/api/api.php b/api/api.php
new file mode 100644
index 00000000..6f2091f9
--- /dev/null
+++ b/api/api.php
@@ -0,0 +1,47 @@
+ array(
+ 'znote' => $version,
+ 'ot' => $config['ServerEngine']
+ ),
+);
+
+if (isset($moduleVersion)) $response['version']['module'] = $moduleVersion;
+
+function UseClass($name = false, $module = false, $path = false) {
+ if ($name !== false) {
+ if (!is_array($name)) {
+ if (!$module) $module = $name;
+ if (!$path) require_once "modules/base/{$module}/class/{$name}.php";
+ else require_once "{$path}/{$name}.php";
+ } else {
+ foreach ($name as $class) {
+ if (!$module) $module = $class;
+ if (!$path) require_once "modules/base/{$module}/class/{$class}.php";
+ else require_once "{$path}/{$class}.php";
+ }
+ }
+ } else die('Error in function UseClass: class parameter is false.');
+}
+
+function SendResponse($response) {
+ global $config;
+ if ($config['api']['debug'] || isset($_GET['debug'])) data_dump($response, false, "Response (debug mode)");
+ else echo json_encode($response);
+}
+?>
\ No newline at end of file
diff --git a/api/index.php b/api/index.php
new file mode 100644
index 00000000..aded8f2e
--- /dev/null
+++ b/api/index.php
@@ -0,0 +1,55 @@
+ 'test.php'
+);
+
+$iterator = new DirectoryIterator($directory);
+foreach($iterator as $entity) {
+ if($entity->isDot())
+ continue;
+ $iterator = new DirectoryIterator($entity->getPathname());
+ foreach($iterator as $entity) {
+ if($entity->isFile()) {
+ $file_extension = pathinfo($entity->getFilename(), PATHINFO_EXTENSION);
+ if ($file_extension == 'php') {
+ $path = explode('/', $entity->getPathname());
+ if (count($path) === 1) $path = explode('\\', $entity->getPathname());
+ $plugins[$path[1]] = $path[2];
+ }
+ }
+ }
+}
+
+$response['modules'] = $plugins;
+$response['data']['title'] = $config['site_title'];
+$response['data']['slogan'] = $config['site_title_context'];
+$response['data']['time'] = getClock(time(), false, true);
+$response['data']['time_formatted'] = getClock(time(), true, true);
+
+// Account count
+$accounts = mysql_select_single("SELECT COUNT('id') AS `count` FROM `accounts`;");
+$response['data']['accounts'] = ($accounts !== false) ? (int)$accounts['count'] : 0;
+// Player count
+$players = mysql_select_single("SELECT COUNT('id') AS `count` FROM `players`;");
+$response['data']['players'] = ($players !== false) ? (int)$players['count'] : 0;
+// online player count
+if ($config['ServerEngine'] != 'TFS_10') {
+ $online = mysql_select_single("SELECT COUNT('id') AS `count`, COUNT(DISTINCT `lastip`) AS `unique` FROM `players` WHERE `online`='1';");
+} else {
+ $online = mysql_select_single("SELECT COUNT(`o`.`player_id`) AS `count`, COUNT(DISTINCT `p`.`lastip`) AS `unique` FROM `players_online` AS `o` INNER JOIN `players` AS `p` ON `o`.`player_id` = `p`.`id`;");
+}
+$response['data']['online'] = ($online !== false) ? (int)$online['count'] : 0;
+$response['data']['online_unique_ip'] = ($online !== false) ? (int)$online['unique'] : 0;
+$response['data']['client'] = $config['client'];
+$response['data']['port'] = $config['port'];
+$response['data']['guildwar'] = $config['guildwar_enabled'];
+$response['data']['forum'] = $config['forum']['enabled'];
+
+SendResponse($response);
+?>
\ No newline at end of file
diff --git a/api/module.php b/api/module.php
new file mode 100644
index 00000000..1713af84
--- /dev/null
+++ b/api/module.php
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/api/modules/base/player/class/player.php b/api/modules/base/player/class/player.php
new file mode 100644
index 00000000..2a44936a
--- /dev/null
+++ b/api/modules/base/player/class/player.php
@@ -0,0 +1,376 @@
+ null,
+ 'name' => null,
+ 'world_id' => null,
+ 'group_id' => null,
+ 'account_id' => null,
+ 'level' => null,
+ 'vocation' => null,
+ 'health' => null,
+ 'healthmax' => null,
+ 'experience' => null,
+ 'lookbody' => null,
+ 'lookfeet' => null,
+ 'lookhead' => null,
+ 'looklegs' => null,
+ 'looktype' => null,
+ 'lookaddons' => null,
+ 'maglevel' => null,
+ 'mana' => null,
+ 'manamax' => null,
+ 'manaspent' => null,
+ 'soul' => null,
+ 'town_id' => null,
+ 'posx' => null,
+ 'posy' => null,
+ 'posz' => null,
+ 'conditions' => null,
+ 'cap' => null,
+ 'sex' => null,
+ 'lastlogin' => null,
+ 'lastip' => null,
+ 'save' => null,
+ 'skull' => null,
+ 'skulltime' => null,
+ 'rank_id' => null,
+ 'guildnick' => null,
+ 'lastlogout' => null,
+ 'blessings' => null,
+ 'balance' => null,
+ 'stamina' => null,
+ 'direction' => null,
+ 'loss_experience' => null,
+ 'loss_mana' => null,
+ 'loss_skills' => null,
+ 'loss_containers' => null,
+ 'loss_items' => null,
+ 'premend' => null,
+ 'online' => null,
+ 'marriage' => null,
+ 'promotion' => null,
+ 'deleted' => null,
+ 'description' => null,
+ 'onlinetime' => null,
+ 'deletion' => null,
+ 'offlinetraining_time' => null,
+ 'offlinetraining_skill' => null,
+ 'skill_fist' => null,
+ 'skill_fist_tries' => null,
+ 'skill_club' => null,
+ 'skill_club_tries' => null,
+ 'skill_sword' => null,
+ 'skill_sword_tries' => null,
+ 'skill_axe' => null,
+ 'skill_axe_tries' => null,
+ 'skill_dist' => null,
+ 'skill_dist_tries' => null,
+ 'skill_shielding' => null,
+ 'skill_shielding_tries' => null,
+ 'skill_fishing' => null,
+ 'skill_fishing_tries' => null,
+ );
+ protected $_znotedata = array(
+ 'comment' => null,
+ 'created' => null,
+ 'hide_char' => null,
+ );
+ protected $_name_id = false;
+ protected $_querylog = array();
+ protected $_errors = array();
+
+ public function __construct($name_id_array, $fields = false, $query = true) {
+
+ if (!is_array($name_id_array)) $this->_name_id = $name_id_array;
+
+ if ($name_id_array !== false) {
+ // Fetch player by name or id
+ if (is_string($name_id_array) || is_integer($name_id_array)) {
+ if ($query) {
+ $this->update($this->mysql_select($name_id_array, $fields));
+ }
+ }
+
+ // Load these player data.
+ if (is_array($name_id_array)) {
+ if (isset($name_id_array['id'])) $this->_name_id = $name_id_array['id'];
+ elseif (isset($name_id_array['name'])) $this->_name_id = $name_id_array['name'];
+
+ $this->update($name_id_array);
+ }
+ } else die("Player construct takes arguments: string or id for fetch, array for load.");
+ }
+
+ /**
+ * Return all player data, or the fields specified in param $fields.
+ *
+ * @param array $fields
+ * @access public
+ * @return mixed (array 'field' => 'value', or false (bool))
+ **/
+ public function fetch($fields = false) {
+ if (is_string($fields)) $fields = array($fields);
+ // Return all data that is not null.
+ if (!$fields) {
+ $returndata = array();
+ foreach ($this->_playerdata as $field => $value) {
+ if (!is_null($value)) $returndata[$field] = $value;
+ }
+ foreach ($this->_znotedata as $field => $value) {
+ if (!is_null($value)) $returndata[$field] = $value;
+ }
+ return $returndata;
+
+ } else {
+ // The return array
+ $returndata = array();
+
+ // Array containing null fields, we need to fetch these from db later on.
+ $missingValues = array();
+
+ // Populate the two above arrays
+ foreach ($fields as $field) {
+
+ if (array_key_exists($field, $this->_playerdata)) {
+ if (is_null($this->_playerdata[$field])) $missingValues[] = $field;
+ else $returndata[$field] = $this->_playerdata[$field];
+
+ } elseif (array_key_exists($field, $this->_znotedata)) {
+ if (is_null($this->_znotedata[$field])) $missingValues[] = $field;
+ else $returndata[$field] = $this->_znotedata[$field];
+ }
+ }
+
+ // See if we are missing any values
+ if (!empty($missingValues)) {
+ // Query for this data
+ $data = $this->mysql_select($this->_name_id, $missingValues);
+ // Update this object
+ $this->update($data);
+ foreach ($data as $field => $value) {
+ $returndata[$field] = $value;
+ }
+ }
+ return $returndata;
+ }
+ return false;
+ }
+
+ /**
+ * Update player data.
+ *
+ * @param array $fields
+ * @access public
+ * @return mixed (array, boolean)
+ **/
+ public function update($data) {
+ if (is_array($data) && !empty($data)) {
+ foreach ($data as $field => $value) {
+
+ if (array_key_exists($field, $this->_playerdata)) {
+ $this->_playerdata[$field] = $value;
+
+ } elseif (array_key_exists($field, $this->_znotedata)) {
+ $this->_znotedata[$field] = $value;
+ }
+ }
+ return true;
+ }
+ return false;
+ }
+
+ public function getErrors() {
+ return (!empty($this->_errors)) ? $this->_errors : false;
+ }
+ public function dumpErrors() {
+ if ($this->getErrors() !== false)
+ data_dump($this->getErrors(), false, "Errors detected in player class:");
+ }
+
+ /**
+ * Select player data from mysql.
+ *
+ * @param mixed (int, string) $name_id, array $fields
+ * @access private
+ * @return mixed (array, boolean)
+ **/
+ private function mysql_select($name_id, $fields = false) {
+ $table = 'players';
+ $znote_table = 'znote_players';
+ $znote_fields = array();
+
+ // Dynamic fields logic
+ switch (gettype($fields)) {
+ case 'boolean':
+ $field_elements = '*';
+ $znote_fields = array('comment', 'created', 'hide_char');
+ break;
+
+ case 'string':
+ $fields = array($fields);
+
+ case 'array':
+ // Get rid of fields related to znote_
+ foreach ($fields as $key => $field) {
+ if (!array_key_exists($field, $this->_playerdata)) {
+ $znote_fields[] = $field;
+ unset($fields[$key]);
+ }
+ }
+
+ //Since we use for loop later, we need to reindex the array if we unset something.
+ if (!empty($znote_fields)) $fields = array_values($fields);
+
+ // Add 'id' field if its not already there.
+ if (!in_array('id', $fields)) $fields[] = 'id';
+
+ // Loop through every field and generate the sql string
+ for ($i = 0; $i < count($fields); $i++) {
+ if ($i === 0) $field_elements = "`". getValue($fields[$i]) ."`";
+ else $field_elements .= ", `". getValue($fields[$i]) ."`";
+ }
+ break;
+ }
+
+ // Value logic
+ if (is_integer($name_id)) {
+ $name_id = (int)$name_id;
+ $where = "`id` = '{$name_id}'";
+ } else {
+ $name_id = getValue($name_id);
+ $where = "`name` = '{$name_id}'";
+ }
+
+ $query = "SELECT {$field_elements} FROM `{$table}` WHERE {$where} LIMIT 1;";
+
+ // Log query to player object
+ $this->_querylog[] = $query;
+ // Fetch from players table
+ $data = mysql_select_single($query);
+ if (isset($data['conditions'])) unset($data['conditions']);
+
+ // Fetch from znote_players table if neccesary
+ if (!empty($znote_fields)) {
+ // Loop through every field and generate the sql string
+ for ($i = 0; $i < count($znote_fields); $i++) {
+ if ($i === 0) $field_elements = "`". getValue($znote_fields[$i]) ."`";
+ else $field_elements .= ", `". getValue($znote_fields[$i]) ."`";
+ }
+
+ $query = "SELECT {$field_elements} FROM `{$znote_table}` WHERE `player_id`='".$data['id']."' LIMIT 1;";
+ $this->_querylog[] = $query;
+ $zdata = mysql_select_single($query);
+ foreach ($zdata as $field => $value) $data[$field] = $value;
+ }
+ return $data;
+ }
+
+ /**
+ * Create player.
+ *
+ * @param none
+ * @access public
+ * @return bool $status
+ **/
+ public function create() {
+ // If player already have an id, the player already exist.
+ if (is_null($this->_playerdata['id']) && is_string($this->_playerdata['name'])) {
+
+ // Confirm player does not exist
+ $name = format_character_name($this->_playerdata['name']);
+ $name = validate_name($name);
+ $name = sanitize($name);
+ $exist = mysql_select_single("SELECT `id` FROM `players` WHERE `name`='{$name}' LIMIT 1;");
+ if ($exist !== false) {
+ $this->errors[] = "A player with the name [{$name}] already exist.";
+ return false;
+ }
+ $config = fullConfig();
+
+ if (user_character_exist($_POST['name']) !== false) {
+ $errors[] = 'Sorry, that character name already exist.';
+ }
+ if (!preg_match("/^[a-zA-Z_ ]+$/", $_POST['name'])) {
+ $errors[] = 'Your name may only contain a-z, A-Z and spaces.';
+ }
+ if (strlen($_POST['name']) < $config['minL'] || strlen($_POST['name']) > $config['maxL']) {
+ $errors[] = 'Your character name must be between ' . $config['minL'] . ' - ' . $config['maxL'] . ' characters long.';
+ }
+ // name restriction
+ $resname = explode(" ", $_POST['name']);
+ foreach($resname as $res) {
+ if(in_array(strtolower($res), $config['invalidNameTags'])) {
+ $errors[] = 'Your username contains a restricted word.';
+ }
+ else if(strlen($res) == 1) {
+ $errors[] = 'Too short words in your name.';
+ }
+ }
+ // Validate vocation id
+ if (!in_array((int)$_POST['selected_vocation'], $config['available_vocations'])) {
+ $errors[] = 'Permission Denied. Wrong vocation.';
+ }
+ // Validate town id
+ if (!in_array((int)$_POST['selected_town'], $config['available_towns'])) {
+ $errors[] = 'Permission Denied. Wrong town.';
+ }
+ // Validate gender id
+ if (!in_array((int)$_POST['selected_gender'], array(0, 1))) {
+ $errors[] = 'Permission Denied. Wrong gender.';
+ }
+ if (vocation_id_to_name($_POST['selected_vocation']) === false) {
+ $errors[] = 'Failed to recognize that vocation, does it exist?';
+ }
+ if (town_id_to_name($_POST['selected_town']) === false) {
+ $errors[] = 'Failed to recognize that town, does it exist?';
+ }
+ if (gender_exist($_POST['selected_gender']) === false) {
+ $errors[] = 'Failed to recognize that gender, does it exist?';
+ }
+ // Char count
+ $char_count = user_character_list_count($session_user_id);
+ if ($char_count >= $config['max_characters']) {
+ $errors[] = 'Your account is not allowed to have more than '. $config['max_characters'] .' characters.';
+ }
+ if (validate_ip(getIP()) === false && $config['validate_IP'] === true) {
+ $errors[] = 'Failed to recognize your IP address. (Not a valid IPv4 address).';
+ }
+
+ echo "create player";
+ // Make sure all neccesary values are set
+ //Register
+ $character_data = array(
+ 'name' => format_character_name($_POST['name']),
+ 'account_id'=> $session_user_id,
+ 'vocation' => $_POST['selected_vocation'],
+ 'town_id' => $_POST['selected_town'],
+ 'sex' => $_POST['selected_gender'],
+ 'lastip' => getIPLong(),
+ 'created' => time()
+ );
+
+ array_walk($character_data, 'array_sanitize');
+ $cnf = fullConfig();
+
+ if ($character_data['sex'] == 1) {
+ $outfit_type = $cnf['maleOutfitId'];
+ } else {
+ $outfit_type = $cnf['femaleOutfitId'];
+ }
+ // Create the player
+
+ } else {
+ echo "Player already exist.";
+ return false;
+ }
+ }
+}
+
+/*
+$this->_file = $file . self::EXT;
+$this->setExpiration(config('cache_lifespan'));
+$this->_lifespan = $span;
+*/
diff --git a/api/modules/base/player/test.php b/api/modules/base/player/test.php
new file mode 100644
index 00000000..49c95175
--- /dev/null
+++ b/api/modules/base/player/test.php
@@ -0,0 +1,13 @@
+fetch('name');
+$response['test'] = $player->fetch('level');
+
+
+SendResponse($response);
+?>
\ No newline at end of file
diff --git a/api/modules/highscores/topExperience.php b/api/modules/highscores/topExperience.php
new file mode 100644
index 00000000..792e0375
--- /dev/null
+++ b/api/modules/highscores/topExperience.php
@@ -0,0 +1,21 @@
+ 0) ? (int)getValue($_GET['rows']) : 10;
+
+// Show which configuration is used
+$response['config']['rows'] = $rows;
+
+// Fetch top 10 players
+$players = mysql_select_multi("SELECT `p`.`name`, `p`.`level`, `p`.`experience`, `p`.`vocation`, `p`.`lastlogin`, `z`.`created` FROM `players` AS `p` INNER JOIN `znote_players` AS `z` ON `p`.`id` = `z`.`player_id` WHERE `p`.`group_id`<'2' ORDER BY `p`.`experience` DESC LIMIT $rows;");
+for ($i = 0; $i < count($players); $i++) {
+ $players[$i]['vocation_name'] = $config['vocations'][$players[$i]['vocation']];
+}
+$response['data']['players'] = $players;
+
+
+SendResponse($response);
+?>
\ No newline at end of file
diff --git a/api/modules/samples/blank.php b/api/modules/samples/blank.php
new file mode 100644
index 00000000..112f5efd
--- /dev/null
+++ b/api/modules/samples/blank.php
@@ -0,0 +1,44 @@
+hasExpired()) {
+ $players = mysql_select_multi("SELECT `name`, `level`, `experience` FROM `players` ORDER BY `experience` DESC LIMIT 5;");
+
+ $cache->setContent($players);
+ $cache->save();
+ } else {
+ $players = $cache->load();
+ }
+
+ -Functions found in general.php
+ :When fetching GET or POST from parameters, ALWAYS use getValue($value)
+ :Etc if you want to fetch character name from url, do it like this:
+ $playername = getValue($_GET['name']);
+ if ($playername !== false) {
+ // $playername either contains player name, or false if failed to fetch name from GET.
+ }
+ :getValue is often used in 3 ways: Fetch GET and POST values, or sanitize/secure any value you wish.
+ :Check ZnoteAAC\engine\function\general.php for full list of available functions.
+*/
+
+// Save the results of previous logic to the response
+$response['data']['title'] = "The fabulous blank page!";
+
+// Send the response through JSON API
+SendResponse($response);
+?>
diff --git a/api/modules/towns/getTownNames.php b/api/modules/towns/getTownNames.php
new file mode 100644
index 00000000..186e620b
--- /dev/null
+++ b/api/modules/towns/getTownNames.php
@@ -0,0 +1,15 @@
+
\ No newline at end of file
diff --git a/auctionChar.php b/auctionChar.php
new file mode 100644
index 00000000..4d9c1f0f
--- /dev/null
+++ b/auctionChar.php
@@ -0,0 +1,968 @@
+ 0)
+ $duration['hour'] = ($duration['day'] - (int)$duration['day']) * 24;
+ if (isset($duration['hour'])) {
+ if (($duration['hour'] - (int)$duration['hour']) > 0)
+ $duration['minute'] = ($duration['hour'] - (int)$duration['hour']) * 60;
+ if (isset($duration['minute'])) {
+ if (($duration['minute'] - (int)$duration['minute']) > 0)
+ $duration['second'] = ($duration['minute'] - (int)$duration['minute']) * 60;
+ }
+ }
+ $tmp = array();
+ foreach ($duration as $type => $value) {
+ if ($value >= 1) {
+ $pluralType = ((int)$value === 1) ? $type : $type . 's';
+ if ($type !== 'second') $tmp[] = (int)$value . " $pluralType";
+ else $tmp[] = (int)$value . " $pluralType";
+ }
+ }
+ return implode(', ', $tmp);
+}
+?>
+
+
+
+
Character auction
+
+
+Character shop auction system is currently only available for ServerEngine TFS_10.";
+ include 'layout/overall/footer.php';
+ die();
+ }
+ if ((int)$auction['storage_account_id'] === (int)$this_account_id) {
+ echo "
The storage account cannot use the character auction.
";
+ include 'layout/overall/footer.php';
+ die();
+ }
+ $step = $auction['step'];
+ $step_duration = $auction['step_duration'];
+ $actions = array(
+ 'list', // list all available players in auction
+ 'view', // view a specific player
+ 'create', // select which character to add and initial price
+ 'add', // add character to list
+ 'bid', // Bid or buy a specific player
+ 'refund', // Refund a player you added back to your account
+ 'claim' // Claim a character you won through purchase or bid
+ );
+
+ // Default action is list, but $_GET or $_POST will override it.
+ $action = 'list';
+ // Load selected string from actions array based on input, strict whitelist validation
+ if (isset( $_GET['action']) && in_array( $_GET['action'], $actions)) {
+ $action = $actions[array_search( $_GET['action'], $actions, true)];
+ }
+ if (isset($_POST['action']) && in_array($_POST['action'], $actions)) {
+ $action = $actions[array_search($_POST['action'], $actions, true)];
+ }
+
+ // Passive check to see if bid period has expired and someone won a deal
+ $time = time();
+ $expired_auctions = mysql_select_multi("
+ SELECT
+ `id`,
+ `original_account_id`,
+ (`bid`+`deposit`) as `points`
+ FROM `znote_auction_player`
+ WHERE `sold` = 0
+ AND `time_end` < {$time}
+ AND `bidder_account_id` > 0
+ ");
+ //data_dump($expired_auctions, $this_account_id, "expired_auctions");
+ if ($expired_auctions !== false) {
+ $soldIds = array();
+ foreach ($expired_auctions as $a) {
+ $soldIds[] = $a['id'];
+ }
+ if (!empty($soldIds)) {
+ mysql_update("
+ UPDATE `znote_auction_player`
+ SET `sold` = 1
+ WHERE `id` IN(".implode(',', $soldIds).")
+ LIMIT ".COUNT($soldIds).";
+ ");
+ // Transfer points to seller account
+ foreach ($expired_auctions as $a) {
+ mysql_update("
+ UPDATE `znote_accounts`
+ SET `points` = (`points`+{$a['points']})
+ WHERE `account_id` = {$a['original_account_id']};
+ ");
+ }
+ }
+ }
+ // end passive check
+
+ // If we bid or buy a character
+ // silently continues to list if buy, back to view if bid
+ if ($action === 'bid') {
+ //data_dump($_POST, false, "Bid or buying:");
+ $zaid = (isset($_POST['zaid']) && (int)$_POST['zaid'] > 0) ? (int)$_POST['zaid'] : false;
+ $price = (isset($_POST['price']) && (int)$_POST['price'] > 0) ? (int)$_POST['price'] : false;
+
+ $action = 'list';
+ if ($zaid !== false && $price !== false) {
+ // The account of the buyer, if he can afford what he is trying to pay
+ $account = mysql_select_single("
+ SELECT
+ `a`.`id`,
+ `za`.`points`
+ FROM `accounts` a
+ INNER JOIN `znote_accounts` za
+ ON `a`.`id` = `za`.`account_id`
+ WHERE `a`.`id`= {$this_account_id}
+ AND `za`.`points` >= {$price}
+ LIMIT 1;
+ ");
+ //data_dump($account, false, "Buyer account:");
+
+ // The character to buy, presuming it isn't sold, buyer isn't the owner, buyer can afford it
+ if ($account !== false) {
+ $character = mysql_select_single("
+ SELECT
+ `za`.`id` AS `zaid`,
+ `za`.`player_id`,
+ `za`.`original_account_id`,
+ `za`.`bidder_account_id`,
+ `za`.`time_begin`,
+ `za`.`time_end`,
+ `za`.`price`,
+ `za`.`bid`,
+ `za`.`deposit`,
+ `za`.`sold`
+ FROM `znote_auction_player` za
+ WHERE `za`.`id` = {$zaid}
+ AND `za`.`sold` = 0
+ AND `za`.`original_account_id` != {$this_account_id}
+ AND `za`.`price` <= {$price}
+ AND `za`.`bid`+{$step} <= {$price}
+ LIMIT 1
+ ");
+ //data_dump($character, false, "Character to buy:");
+
+ if ($character !== false) {
+ // If auction already have a previous bidder, refund him his points
+ if ($character['bid'] > 0 && $character['bidder_account_id'] > 0) {
+ mysql_update("
+ UPDATE `znote_accounts`
+ SET `points` = `points`+{$character['bid']}
+ WHERE `account_id` = {$character['bidder_account_id']}
+ LIMIT 1;
+ ");
+ // If previous bidder is not you, increase bidding period by 1 hour
+ // (Extending bid war to give bidding competitor a chance to retaliate)
+ if ((int)$character['bidder_account_id'] !== (int)$account['id']) {
+ mysql_update("
+ UPDATE `znote_auction_player`
+ SET `time_end` = `time_end`+{$step_duration}
+ WHERE `id` = {$character['zaid']}
+ LIMIT 1;
+ ");
+ }
+ }
+ // Remove points from buyer
+ mysql_update("
+ UPDATE `znote_accounts`
+ SET `points` = `points`-{$price}
+ WHERE `account_id` = {$account['id']}
+ LIMIT 1;
+ ");
+ // Update auction, and set new bidder data
+ $time = time();
+ mysql_update("
+ UPDATE `znote_auction_player`
+ SET
+ `bidder_account_id` = {$account['id']},
+ `bid` = {$price},
+ `sold` = CASE WHEN {$time} >= `time_end` THEN 1 ELSE 0 END
+ WHERE `id` = {$character['zaid']}
+ LIMIT 1;
+ ");
+ // If character is sold, give points to seller
+ if (time() >= $character['time_end']) {
+ mysql_update("
+ UPDATE `znote_accounts`
+ SET `points` = (`points`+{$character['deposit']}+{$price})
+ WHERE `account_id` = {$character['original_account_id']}
+ LIMIT 1;
+ ");
+ } else {
+ // If character is not sold, this is a bidding war, we want to send user back to view.
+ $action = 'view';
+ }
+ // Note: Transferring character to the new account etc happens later in $action = 'claim'
+ }
+ }
+ }
+ }
+
+ // See a specific character in auction,
+ // silently fallback to list if he doesn't exist or is already sold
+ if ($action === 'view') { // View a character in the auction
+ if (!isset($zaid)) {
+ $zaid = (isset($_GET['zaid']) && (int)$_GET['zaid'] > 0) ? (int)$_GET['zaid'] : false;
+ }
+ if ($zaid !== false) {
+ // Retrieve basic character information
+ $character = mysql_select_single("
+ SELECT
+ `za`.`id` AS `zaid`,
+ `za`.`player_id`,
+ `za`.`original_account_id`,
+ `za`.`bidder_account_id`,
+ `za`.`time_begin`,
+ `za`.`time_end`,
+ CASE WHEN `za`.`price` > `za`.`bid`
+ THEN `za`.`price`
+ ELSE `za`.`bid`+{$step}
+ END AS `price`,
+ CASE WHEN `za`.`original_account_id` = {$this_account_id}
+ THEN 1
+ ELSE 0
+ END AS `own`,
+ CASE WHEN `za`.`original_account_id` = {$this_account_id}
+ THEN `p`.`name`
+ ELSE ''
+ END AS `name`,
+ CASE WHEN `za`.`original_account_id` = {$this_account_id}
+ THEN `za`.`bid`
+ ELSE 0
+ END AS `bid`,
+ CASE WHEN `za`.`original_account_id` = {$this_account_id}
+ THEN `za`.`deposit`
+ ELSE 0
+ END AS `deposit`,
+ `p`.`vocation`,
+ `p`.`level`,
+ `p`.`balance`,
+ `p`.`lookbody` AS `body`,
+ `p`.`lookfeet` AS `feet`,
+ `p`.`lookhead` AS `head`,
+ `p`.`looklegs` AS `legs`,
+ `p`.`looktype` AS `type`,
+ `p`.`lookaddons` AS `addons`,
+ `p`.`maglevel` AS `magic`,
+ `p`.`skill_fist` AS `fist`,
+ `p`.`skill_club` AS `club`,
+ `p`.`skill_sword` AS `sword`,
+ `p`.`skill_axe` AS `axe`,
+ `p`.`skill_dist` AS `dist`,
+ `p`.`skill_shielding` AS `shielding`,
+ `p`.`skill_fishing` AS `fishing`
+ FROM `znote_auction_player` za
+ INNER JOIN `players` p
+ ON `za`.`player_id` = `p`.`id`
+ WHERE `za`.`id` = {$zaid}
+ AND `za`.`sold` = 0
+ LIMIT 1;
+ ");
+ //data_dump($character, false, "Character info");
+
+ if (is_array($character) && !empty($character)) {
+ // If the end of the bid is in the future, the bid is currently ongoing
+ $bidding_period = ((int)$character['time_end']+1 > time()) ? true : false;
+ $player_items = mysql_select_multi("
+ SELECT `itemtype`, SUM(`count`) AS `count`
+ FROM `player_items`
+ WHERE `player_id` = {$character['player_id']}
+ GROUP BY `itemtype`
+ ORDER BY MIN(`pid`) ASC
+ ");
+ $depot_items = mysql_select_multi("
+ SELECT `itemtype`, SUM(`count`) AS `count`
+ FROM `player_depotitems`
+ WHERE `player_id` = {$character['player_id']}
+ GROUP BY `itemtype`
+ ORDER BY MIN(`pid`) ASC
+ ");
+ $account = mysql_select_single("
+ SELECT `points`
+ FROM `znote_accounts`
+ WHERE `account_id` = {$this_account_id}
+ AND `points` >= {$character['price']}
+ LIMIT 1;
+ ");
+ ?>
+
So far so good!
+ You currently have the highest bid at:
+
+
If nobody bids higher than you, this character will be yours in:
+ .
+
+
+
+
+
+
So far so good!
+ You currently have the highest bid at:
+
+
If nobody bids higher than you, this character will be yours in:
+ .
+
+
+
You cannot afford to buy this character.
+
+
+
You are the seller of this character.
+ Name:
+ Price:
+ Bid:
+ Deposit:
+
+
The bidding period has ended, you can wait until someone decides to instantly buy it, or you can reclaim your character to your account.
+
+
+
The bidding period will last for . After this period, you can reclaim your character if nobody has bid on it.
+
+
+
+
+
+
Character skills:
+
magic
+
fist
+
club
+
sword
+
axe
+
dist
+
shielding
+
fishing
+
+
+
+
+
+
+
Player items:
+
+
+
Image
+
Item
+
Count
+
+
+
+
" alt="Item Image">
+
+
+
+
+
+
+
+
+
+
+
+
+
Depot items:
+
+
+
Image
+
Item
+
Count
+
+
+
+
" alt="Item Image">
+
+
+
+
+
+ 0) ? (int)$_POST['pid'] : false;
+ $cost = (isset($_POST['cost']) && (int)$_POST['cost'] > 0) ? (int)$_POST['cost'] : false;
+ $deposit = (int)$cost * ($auction['deposit'] / 100);
+ $password = SHA1($_POST['password']);
+
+ // Verify values
+ $status = false;
+ $account = false;
+ if ($pid > 0 && $cost >= $auction['lowestPrice']) {
+ $account = mysql_select_single("
+ SELECT `a`.`id`, `a`.`password`, `za`.`points`
+ FROM `accounts` a
+ INNER JOIN `znote_accounts` za
+ ON `a`.`id` = `za`.`account_id`
+ WHERE `a`.`id`= {$this_account_id}
+ AND `a`.`password`='{$password}'
+ AND `za`.`points` >= {$deposit}
+ LIMIT 1
+ ;");
+ if (isset($account['password']) && $account['password'] === $password) {
+ // Check if player exist, is offline and not already in auction
+ // And is not a tutor or a GM+.
+ $player = mysql_select_single("
+ SELECT `p`.`id`, `p`.`name`,
+ CASE
+ WHEN `po`.`player_id` IS NULL
+ THEN 0
+ ELSE 1
+ END AS `online`,
+ CASE
+ WHEN `za`.`player_id` IS NULL
+ THEN 0
+ ELSE 1
+ END AS `alreadyInAuction`
+ FROM `players` p
+ LEFT JOIN `players_online` po
+ ON `p`.`id` = `po`.`player_id`
+ LEFT JOIN `znote_auction_player` za
+ ON `p`.`id` = `za`.`player_id`
+ AND `p`.`account_id` = `za`.`original_account_id`
+ AND `za`.`claimed` = 0
+ WHERE `p`.`id` = {$pid}
+ AND `p`.`account_id` = {$this_account_id}
+ AND `p`.`group_id` = 1
+ LIMIT 1
+ ;");
+ // Verify storage account ID exist
+ $storage_account = mysql_select_single("
+ SELECT `id`
+ FROM `accounts`
+ WHERE `id`={$auction['storage_account_id']}
+ LIMIT 1;
+ ");
+ if ($storage_account === false) {
+ data_dump($auction, false, "Configured storage_account_id in config.php does not exist!");
+ } else {
+ if (isset($player['online']) && $player['online'] == 0) {
+ if (isset($player['alreadyInAuction']) && $player['alreadyInAuction'] == 0) {
+ $status = true;
+ }
+ }
+ }
+ }
+ }
+ if ($status) {
+ $time_begin = time();
+ $time_end = $time_begin + ($auction['biddingDuration']);
+ // Insert row to znote_auction_player
+ mysql_insert("
+ INSERT INTO `znote_auction_player` (
+ `player_id`,
+ `original_account_id`,
+ `bidder_account_id`,
+ `time_begin`,
+ `time_end`,
+ `price`,
+ `bid`,
+ `deposit`,
+ `sold`,
+ `claimed`
+ ) VALUES (
+ {$pid},
+ {$this_account_id},
+ 0,
+ {$time_begin},
+ {$time_end},
+ {$cost},
+ 0,
+ {$deposit},
+ 0,
+ 0
+ );
+ ");
+ // Move player to storage account
+ mysql_update("
+ UPDATE `players`
+ SET `account_id` = {$auction['storage_account_id']}
+ WHERE `id` = {$pid}
+ LIMIT 1;
+ ");
+ // Hide character from public character list (in pidprofile.php)
+ mysql_update("
+ UPDATE `znote_players`
+ SET `hide_char` = 1
+ WHERE `player_id` = {$pid}
+ LIMIT 1;
+ ");
+ // Remove deposit from account
+ $afterDeposit = $account['points'] - $deposit;
+ mysql_update("
+ UPDATE `znote_accounts`
+ SET `points` = {$afterDeposit}
+ WHERE `account_id` = {$account['id']}
+ LIMIT 1;
+ ");
+ }
+ $action = 'list';
+ }
+
+ // If we are refunding a player back to its original owner
+ // silently continues to list
+ if ($action === 'refund') {
+ $zaid = (isset($_POST['zaid']) && (int)$_POST['zaid'] > 0) ? (int)$_POST['zaid'] : false;
+ //data_dump($_POST, false, "POST");
+ if ($zaid !== false) {
+ $time = time();
+ // If original account is the one trying to get it back,
+ // and bidding period is over,
+ // and its not labeled as sold
+ // and nobody has bid on it
+ $character = mysql_select_single("
+ SELECT `player_id`
+ FROM `znote_auction_player`
+ WHERE `id`= {$zaid}
+ AND `original_account_id` = {$this_account_id}
+ AND `time_end` <= {$time}
+ AND `bidder_account_id` = 0
+ AND `bid` = 0
+ AND `sold` = 0
+ LIMIT 1
+ ");
+ //data_dump($character, false, "Character");
+ if ($character !== false) {
+ // Move character to buyer account and give it a new name
+ mysql_update("
+ UPDATE `players`
+ SET `account_id` = {$this_account_id}
+ WHERE `id` = {$character['player_id']}
+ LIMIT 1;
+ ");
+ // Set label to sold
+ mysql_update("
+ UPDATE `znote_auction_player`
+ SET `sold` = 1
+ WHERE `id`= {$zaid}
+ LIMIT 1;
+ ");
+ // Show character in public character list (in characterprofile.php)
+ mysql_update("
+ UPDATE `znote_players`
+ SET `hide_char` = 0
+ WHERE `player_id` = {$character['player_id']}
+ LIMIT 1;
+ ");
+ }
+ }
+ $action = 'list';
+ }
+
+ // If we are claiming a character
+ // If validation fails then explain why, but then head over to list regardless of status
+ if ($action === 'claim') {
+ $zaid = (isset($_POST['zaid']) && (int)$_POST['zaid'] > 0) ? (int)$_POST['zaid'] : false;
+ $name = (isset($_POST['name']) && !empty($_POST['name'])) ? getValue($_POST['name']) : false;
+ $errors = array();
+ //data_dump($_POST, $name, "Post data:");
+ if ($zaid === false) {
+ $errors[] = 'We are unable to find this auction order.';
+ }
+ if ((int)$auction['storage_account_id'] === $this_account_id) {
+ $errors[] = 'Silly you! You cannot claim characters with the storage account configured in $config[\'shop_auction\'][\'storage_account_id\'] because you already have those characters in your account! :P';
+ if ($is_admin) {
+ $errors[] = "ADMIN: The storage account in config.php should not be the same as the admin account.";
+ }
+ }
+ if ($name === false) {
+ $errors[] = 'Please give the character a name.';
+ } else {
+ // begin name validation
+ $name = validate_name($name);
+ if (user_character_exist($name) !== false) {
+ $errors[] = 'Sorry, that character name already exist.';
+ }
+ if (!preg_match("/^[a-zA-Z_ ]+$/", $name)) {
+ $errors[] = 'Your name may only contain a-z, A-Z and spaces.';
+ }
+ if (strlen($name) < $config['minL'] || strlen($name) > $config['maxL']) {
+ $errors[] = 'Your character name must be between ' . $config['minL'] . ' - ' . $config['maxL'] . ' characters long.';
+ }
+ // name restriction
+ $resname = explode(" ", $name);
+ foreach($resname as $res) {
+ if(in_array(strtolower($res), $config['invalidNameTags'])) {
+ $errors[] = 'Your username contains a restricted word.';
+ }
+ else if(strlen($res) == 1) {
+ $errors[] = 'Too short words in your name.';
+ }
+ }
+ $name = format_character_name($name);
+ // end name validation
+ if (empty($errors)) {
+ // Make sure you have access to claim this zaid character.
+ // And that you haven't already claimed it.
+ // And that the character isn't online...
+ $character = mysql_select_single("
+ SELECT
+ `za`.`id` AS `zaid`,
+ `za`.`player_id`,
+ `p`.`account_id`
+ FROM `znote_auction_player` za
+ INNER JOIN `players` p
+ ON `za`.`player_id` = `p`.`id`
+ LEFT JOIN `players_online` po
+ ON `p`.`id` = `po`.`player_id`
+ WHERE `za`.`id` = {$zaid}
+ AND `za`.`sold` = 1
+ AND `p`.`account_id` != {$this_account_id}
+ AND `za`.`bidder_account_id` = {$this_account_id}
+ AND `po`.`player_id` IS NULL
+ ");
+ //data_dump($character, false, "Character");
+ if ($character !== false) {
+ // Set character to claimed
+ mysql_update("
+ UPDATE `znote_auction_player`
+ SET `claimed`='1'
+ WHERE `id` = {$character['zaid']}
+ ");
+ // Move character to buyer account and give it a new name
+ mysql_update("
+ UPDATE `players`
+ SET `name` = '{$name}',
+ `account_id` = {$this_account_id}
+ WHERE `id` = {$character['player_id']}
+ LIMIT 1;
+ ");
+ // Show character in public character list (in characterprofile.php)
+ mysql_update("
+ UPDATE `znote_players`
+ SET `hide_char` = 0
+ WHERE `player_id` = {$character['player_id']}
+ LIMIT 1;
+ ");
+ // Remove character from other players VIP lists
+ mysql_delete("
+ DELETE FROM `account_viplist`
+ WHERE `player_id` = {$character['player_id']}
+ ");
+ // Remove the character deathlist
+ mysql_delete("
+ DELETE FROM `player_deaths`
+ WHERE `player_id` = {$character['player_id']}
+ ");
+ } else {
+ $errors[] = "You either don't have access to claim this character, or you have already claimed it, or this character isn't sold yet, or we were unable to find this auction order.";
+ if ($is_admin) {
+ $errors[] = "ADMIN: ... Or character is online.";
+ }
+ }
+ }
+ }
+ if (!empty($errors)) {
+ //data_dump($errors, false, "Errors:");
+ ?>
+
+
+
#
+
Issues occurred while claiming your name
+
+ $error): ?>
+
+
+
+
+
+
+ `za`.`bid`
+ THEN `za`.`price`
+ ELSE `za`.`bid`
+ END AS `price`,
+ `za`.`time_begin`,
+ `za`.`time_end`,
+ `p`.`vocation`,
+ `p`.`level`,
+ `p`.`lookbody` AS `body`,
+ `p`.`lookfeet` AS `feet`,
+ `p`.`lookhead` AS `head`,
+ `p`.`looklegs` AS `legs`,
+ `p`.`looktype` AS `type`,
+ `p`.`lookaddons` AS `addons`
+ FROM `znote_auction_player` za
+ INNER JOIN `players` p
+ ON `za`.`player_id` = `p`.`id`
+ WHERE `p`.`account_id` = {$auction['storage_account_id']}
+ AND `za`.`claimed` = 0
+ AND `za`.`sold` = 1
+ AND `za`.`bidder_account_id` = {$this_account_id}
+ ORDER BY `p`.`level` desc
+ ");
+ //data_dump($pending, false, "Pending characters:");
+ if ($pending !== false) {
+ ?>
+
Congratulations!
+
You have 1) ? 'characters' : 'a character'; ?> ready to claim!
+ `za`.`bid`
+ THEN `za`.`price`
+ ELSE `za`.`bid`+{$step}
+ END AS `price`,
+ `za`.`time_begin`,
+ `za`.`time_end`,
+ `p`.`vocation`,
+ `p`.`level`,
+ `p`.`lookbody` AS `body`,
+ `p`.`lookfeet` AS `feet`,
+ `p`.`lookhead` AS `head`,
+ `p`.`looklegs` AS `legs`,
+ `p`.`looktype` AS `type`,
+ `p`.`lookaddons` AS `addons`
+ FROM `znote_auction_player` za
+ INNER JOIN `players` p
+ ON `za`.`player_id` = `p`.`id`
+ WHERE `p`.`account_id` = {$auction['storage_account_id']}
+ AND `za`.`sold` = 0
+ ORDER BY `p`.`level` desc;
+ ");
+ //data_dump($characters, false, "List characters");
+ if ($is_admin) {
+ ?>
+
Your account does not follow the required rules to sell characters.
+ 1. Minimum level:
+ 2. Minimum already earned shop points:
+ 3. Eligible characters must be offline.
+
+ Character shop auctioning system is disabled.";
+include 'layout/overall/footer_myaccount.php'; ?>
diff --git a/blank.php b/blank.php
new file mode 100644
index 00000000..5ef62293
--- /dev/null
+++ b/blank.php
@@ -0,0 +1,6 @@
+
+
+
Blank
+
This is a blank sample page.
+
+
\ No newline at end of file
diff --git a/buypoints.php b/buypoints.php
new file mode 100644
index 00000000..532535aa
--- /dev/null
+++ b/buypoints.php
@@ -0,0 +1,107 @@
+
+
".mysqli_error($connect));
+ while($row = mysqli_fetch_assoc($results)) {
+ $array[] = $row;
+ }
+ return !empty($array) ? $array : false;
+}
+
+//////
+// Query database without expecting returned results
+
+// - mysql update
+function mysql_update($query){ voidQuery($query); }
+// mysql insert
+function mysql_insert($query){ voidQuery($query); }
+// mysql delete
+function mysql_delete($query){ voidQuery($query); }
+// Send a void query
+function voidQuery($query) {
+ global $connect;
+ global $aacQueries;
+ $aacQueries++;
+ global $accQueriesData;
+ $accQueriesData[] = "[" . elapsedTime() . "] " . $query;
+ mysqli_query($connect,$query) or die(var_dump($query)." (query - SQL error) Type: voidQuery (voidQuery is used for update, insert or delete from database)
".mysqli_error($connect));
+}
+?>
diff --git a/engine/database/znote_schema.sql b/engine/database/znote_schema.sql
new file mode 100644
index 00000000..4db8b2cd
--- /dev/null
+++ b/engine/database/znote_schema.sql
@@ -0,0 +1,312 @@
+-- Start of Znote AAC database schema
+
+SET @znote_version = '1.5_SVN';
+
+CREATE TABLE IF NOT EXISTS `znote` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `version` varchar(30) NOT NULL COMMENT 'Znote AAC version',
+ `installed` int NOT NULL,
+ `cached` int DEFAULT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+CREATE TABLE IF NOT EXISTS `znote_accounts` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `account_id` int NOT NULL,
+ `ip` bigint UNSIGNED NOT NULL,
+ `created` int NOT NULL,
+ `points` int DEFAULT 0,
+ `cooldown` int DEFAULT 0,
+ `active` tinyint NOT NULL DEFAULT '0',
+ `active_email` tinyint NOT NULL DEFAULT '0',
+ `activekey` int NOT NULL DEFAULT '0',
+ `flag` varchar(20) NOT NULL,
+ `secret` char(16) DEFAULT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+CREATE TABLE IF NOT EXISTS `znote_news` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `title` varchar(30) NOT NULL,
+ `text` text NOT NULL,
+ `date` int NOT NULL,
+ `pid` int NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+CREATE TABLE IF NOT EXISTS `znote_images` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `title` varchar(30) NOT NULL,
+ `desc` text NOT NULL,
+ `date` int NOT NULL,
+ `status` int NOT NULL,
+ `image` varchar(50) NOT NULL,
+ `delhash` varchar(30) NOT NULL,
+ `account_id` int NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+CREATE TABLE IF NOT EXISTS `znote_paypal` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `txn_id` varchar(30) NOT NULL,
+ `email` varchar(255) NOT NULL,
+ `accid` int NOT NULL,
+ `price` int NOT NULL,
+ `points` int NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+CREATE TABLE IF NOT EXISTS `znote_paygol` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `account_id` int NOT NULL,
+ `price` int NOT NULL,
+ `points` int NOT NULL,
+ `message_id` varchar(255) NOT NULL,
+ `service_id` varchar(255) NOT NULL,
+ `shortcode` varchar(255) NOT NULL,
+ `keyword` varchar(255) NOT NULL,
+ `message` varchar(255) NOT NULL,
+ `sender` varchar(255) NOT NULL,
+ `operator` varchar(255) NOT NULL,
+ `country` varchar(255) NOT NULL,
+ `currency` varchar(255) NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+CREATE TABLE IF NOT EXISTS `znote_players` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `player_id` int NOT NULL,
+ `created` int NOT NULL,
+ `hide_char` tinyint NOT NULL,
+ `comment` varchar(255) NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+CREATE TABLE IF NOT EXISTS `znote_player_reports` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `name` varchar(50) NOT NULL,
+ `posx` int NOT NULL,
+ `posy` int NOT NULL,
+ `posz` int NOT NULL,
+ `report_description` varchar(255) NOT NULL,
+ `date` int NOT NULL,
+ `status` tinyint NOT NULL DEFAULT '0',
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+CREATE TABLE IF NOT EXISTS `znote_changelog` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `text` varchar(255) NOT NULL,
+ `time` int NOT NULL,
+ `report_id` int NOT NULL,
+ `status` tinyint NOT NULL DEFAULT '0',
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+CREATE TABLE IF NOT EXISTS `znote_shop` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `type` int NOT NULL,
+ `itemid` int DEFAULT NULL,
+ `count` int NOT NULL DEFAULT '1',
+ `description` varchar(255) NOT NULL,
+ `points` int NOT NULL DEFAULT '10',
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+CREATE TABLE IF NOT EXISTS `znote_shop_logs` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `account_id` int NOT NULL,
+ `player_id` int NOT NULL,
+ `type` int NOT NULL,
+ `itemid` int NOT NULL,
+ `count` int NOT NULL,
+ `points` int NOT NULL,
+ `time` int NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+CREATE TABLE IF NOT EXISTS `znote_shop_orders` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `account_id` int NOT NULL,
+ `type` int NOT NULL,
+ `itemid` int NOT NULL,
+ `count` int NOT NULL,
+ `time` int NOT NULL DEFAULT '0',
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+CREATE TABLE IF NOT EXISTS `znote_visitors` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `ip` bigint NOT NULL,
+ `value` int NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+CREATE TABLE IF NOT EXISTS `znote_visitors_details` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `ip` bigint NOT NULL,
+ `time` int NOT NULL,
+ `type` tinyint NOT NULL,
+ `account_id` int NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+-- Forum 1/3 (boards)
+CREATE TABLE IF NOT EXISTS `znote_forum` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `name` varchar(50) NOT NULL,
+ `access` tinyint NOT NULL,
+ `closed` tinyint NOT NULL,
+ `hidden` tinyint NOT NULL,
+ `guild_id` int NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+-- Forum 2/3 (threads)
+CREATE TABLE IF NOT EXISTS `znote_forum_threads` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `forum_id` int NOT NULL,
+ `player_id` int NOT NULL,
+ `player_name` varchar(50) NOT NULL,
+ `title` varchar(50) NOT NULL,
+ `text` text NOT NULL,
+ `created` int NOT NULL,
+ `updated` int NOT NULL,
+ `sticky` tinyint NOT NULL,
+ `hidden` tinyint NOT NULL,
+ `closed` tinyint NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+-- Forum 3/3 (posts)
+CREATE TABLE IF NOT EXISTS `znote_forum_posts` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `thread_id` int NOT NULL,
+ `player_id` int NOT NULL,
+ `player_name` varchar(50) NOT NULL,
+ `text` text NOT NULL,
+ `created` int NOT NULL,
+ `updated` int NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+-- Pending characters for deletion
+CREATE TABLE IF NOT EXISTS `znote_deleted_characters` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `original_account_id` int NOT NULL,
+ `character_name` varchar(255) NOT NULL,
+ `time` datetime NOT NULL,
+ `done` tinyint NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+CREATE TABLE IF NOT EXISTS `znote_guild_wars` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `limit` int NOT NULL DEFAULT '0',
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+-- Helpdesk system
+CREATE TABLE IF NOT EXISTS `znote_tickets` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `owner` int NOT NULL,
+ `username` varchar(32) CHARACTER SET latin1 NOT NULL,
+ `subject` text CHARACTER SET latin1 NOT NULL,
+ `message` text CHARACTER SET latin1 NOT NULL,
+ `ip` bigint NOT NULL,
+ `creation` int NOT NULL,
+ `status` varchar(20) CHARACTER SET latin1 NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+CREATE TABLE IF NOT EXISTS `znote_tickets_replies` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `tid` int NOT NULL,
+ `username` varchar(32) CHARACTER SET latin1 NOT NULL,
+ `message` text CHARACTER SET latin1 NOT NULL,
+ `created` int NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+CREATE TABLE IF NOT EXISTS `znote_global_storage` (
+ `key` varchar(32) NOT NULL,
+ `value` TEXT NOT NULL,
+ UNIQUE (`key`)
+) ENGINE=InnoDB;
+
+-- Character auction system
+CREATE TABLE IF NOT EXISTS `znote_auction_player` (
+ `id` int NOT NULL AUTO_INCREMENT,
+ `player_id` int NOT NULL,
+ `original_account_id` int NOT NULL,
+ `bidder_account_id` int NOT NULL,
+ `time_begin` int NOT NULL,
+ `time_end` int NOT NULL,
+ `price` int NOT NULL,
+ `bid` int NOT NULL,
+ `deposit` int NOT NULL,
+ `sold` tinyint NOT NULL,
+ `claimed` tinyint NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB;
+
+-- Populate basic info
+INSERT INTO `znote` (`version`, `installed`) VALUES
+(@znote_version, UNIX_TIMESTAMP(CURDATE()));
+
+-- Add default forum boards
+INSERT INTO `znote_forum` (`name`, `access`, `closed`, `hidden`, `guild_id`) VALUES
+('Staff Board', '4', '0', '0', '0'),
+('Tutors Board', '2', '0', '0', '0'),
+('Discussion', '1', '0', '0', '0'),
+('Feedback', '1', '0', '1', '0');
+
+-- Convert existing accounts in database to be Znote AAC compatible
+INSERT INTO `znote_accounts` (`account_id`, `ip`, `created`, `flag`)
+SELECT
+ `a`.`id` AS `account_id`,
+ 0 AS `ip`,
+ UNIX_TIMESTAMP(CURDATE()) AS `created`,
+ '' AS `flag`
+FROM `accounts` AS `a`
+LEFT JOIN `znote_accounts` AS `z`
+ ON `a`.`id` = `z`.`account_id`
+WHERE `z`.`created` IS NULL;
+
+-- Convert existing players in database to be Znote AAC compatible
+INSERT INTO `znote_players` (`player_id`, `created`, `hide_char`, `comment`)
+SELECT
+ `p`.`id` AS `player_id`,
+ UNIX_TIMESTAMP(CURDATE()) AS `created`,
+ 0 AS `hide_char`,
+ '' AS `comment`
+FROM `players` AS `p`
+LEFT JOIN `znote_players` AS `z`
+ ON `p`.`id` = `z`.`player_id`
+WHERE `z`.`created` IS NULL;
+
+-- Delete duplicate account records
+DELETE `d` FROM `znote_accounts` AS `d`
+INNER JOIN (
+ SELECT `i`.`account_id`,
+ MAX(`i`.`id`) AS `retain`
+ FROM `znote_accounts` AS `i`
+ GROUP BY `i`.`account_id`
+ HAVING COUNT(`i`.`id`) > 1
+) AS `x`
+ ON `d`.`account_id` = `x`.`account_id`
+ AND `d`.`id` != `x`.`retain`;
+
+-- Delete duplicate player records
+DELETE `d` FROM `znote_players` AS `d`
+INNER JOIN (
+ SELECT `i`.`player_id`,
+ MAX(`i`.`id`) AS `retain`
+ FROM `znote_players` AS `i`
+ GROUP BY `i`.`player_id`
+ HAVING COUNT(`i`.`id`) > 1
+) AS `x`
+ ON `d`.`player_id` = `x`.`player_id`
+ AND `d`.`id` != `x`.`retain`;
+
+-- End of Znote AAC database schema
diff --git a/engine/footer.php b/engine/footer.php
new file mode 100644
index 00000000..6cefc6cb
--- /dev/null
+++ b/engine/footer.php
@@ -0,0 +1,11 @@
+
\ No newline at end of file
diff --git a/engine/function/cache.php b/engine/function/cache.php
new file mode 100644
index 00000000..7c140bb0
--- /dev/null
+++ b/engine/function/cache.php
@@ -0,0 +1,122 @@
+_file = $file . self::EXT;
+ $this->setExpiration(config('cache_lifespan'));
+ }
+
+
+ /**
+ * Sets the cache expiration limit (IMPORTANT NOTE: seconds, NOT ms!).
+ *
+ * @param integer $span
+ * @access public
+ * @return void
+ **/
+ public function setExpiration($span) {
+ $this->_lifespan = $span;
+ }
+
+
+ /**
+ * Set the content you'd like to cache.
+ *
+ * @param mixed $content
+ * @access public
+ * @return void
+ **/
+ public function setContent($content) {
+ switch (strtolower(gettype($content))) {
+ case 'array':
+ $this->_content = json_encode($content);
+ break;
+
+ default:
+ $this->_content = $content;
+ break;
+ }
+ }
+
+
+ /**
+ * Validates whether it is time to refresh the cache data or not.
+ *
+ * @access public
+ * @return boolean
+ **/
+ public function hasExpired() {
+ if (is_file($this->_file) && time() < filemtime($this->_file) + $this->_lifespan) {
+ return false;
+ }
+
+ return true;
+ }
+
+ /**
+ * Returns remaining time before scoreboard will update itself.
+ *
+ * @access public
+ * @return integer
+ **/
+ public function remainingTime() {
+ $remaining = 0;
+ if (!$this->hasExpired()) {
+ $remaining = (filemtime($this->_file) + $this->_lifespan) - time();
+ }
+ return $remaining;
+ }
+
+
+ /**
+ * Saves the content into its appropriate cache file.
+ *
+ * @access public
+ * @return void
+ **/
+ public function save() {
+ $handle = fopen($this->_file, 'w');
+ fwrite($handle, $this->_content);
+ fclose($handle);
+ }
+
+
+ /**
+ * Loads the content from a specified cache file.
+ *
+ * @access public
+ * @return mixed
+ **/
+ public function load() {
+ if (!is_file($this->_file)) {
+ return false;
+ }
+
+ ob_start();
+ include_once($this->_file);
+ $content = ob_get_clean();
+
+ if (!isset($content) && strlen($content) == 0) {
+ return false;
+ }
+
+ if ($content = json_decode($content, true)) {
+ return (array) $content;
+ } else {
+ return $content;
+ }
+ }
+ }
diff --git a/engine/function/general.php b/engine/function/general.php
new file mode 100644
index 00000000..76f090f2
--- /dev/null
+++ b/engine/function/general.php
@@ -0,0 +1,613 @@
+ $getValue) {
+ if ($count > 0) $string .= '&';
+ $string .= "{$getKey}={$getValue}";
+ }
+ header("Location: {$location}?{$string}");
+ exit();
+}
+
+// Sweet error reporting
+function data_dump($print = false, $var = false, $title = false) {
+ if ($title !== false) echo "
Thank you for registering and enjoy your stay at $maildata[fromName].
";
+ $body .= "
I am an automatic no-reply e-mail. Any emails sent back to me will be ignored.
";
+
+ $mailer->sendMail($register_data['email'], $title, $body, $register_data['name']);
+ }
+}
+
+// CREATE CHARACTER
+function user_create_character($character_data) {
+ array_walk($character_data, 'array_sanitize');
+ $cnf = fullConfig();
+
+ $vocation = (int)$character_data['vocation'];
+ $playercnf = $cnf['player'];
+ $base = $playercnf['base'];
+ $create = $playercnf['create'];
+ $skills = $create['skills'][$vocation];
+
+ $outfit = ($character_data['sex'] == 1) ? $create['male_outfit'] : $create['female_outfit'];
+
+ $leveldiff = $create['level'] - $base['level'];
+
+ $gains = $cnf['vocations_gain'][$vocation];
+
+ $health = $base['health'] + ( $gains['hp'] * $leveldiff );
+ $mana = $base['mana'] + ( $gains['mp'] * $leveldiff );
+ $cap = $base['cap'] + ( $gains['cap'] * $leveldiff );
+
+ // This is TFS 0.2 compatible import data with Znote AAC mysql schema
+ if (config('ServerEngine') !== 'OTHIRE') {
+ $import_data = array(
+ 'name' => $character_data['name'],
+ 'group_id' => 1,
+ 'account_id' => $character_data['account_id'],
+ 'level' => $create['level'],
+ 'vocation' => $vocation,
+ 'health' => $health,
+ 'healthmax' => $health,
+ 'experience' => level_to_experience($create['level']),
+ 'lookbody' => $outfit['body'], /* STARTER OUTFITS */
+ 'lookfeet' => $outfit['feet'],
+ 'lookhead' => $outfit['head'],
+ 'looklegs' => $outfit['legs'],
+ 'looktype' => $outfit['id'],
+ 'lookaddons' => 0,
+ 'maglevel' => $skills['magic'],
+ 'mana' => $mana,
+ 'manamax' => $mana,
+ 'manaspent' => 0,
+ 'soul' => $base['soul'],
+ 'town_id' => $character_data['town_id'],
+ 'posx' => $cnf['default_pos']['x'],
+ 'posy' => $cnf['default_pos']['y'],
+ 'posz' => $cnf['default_pos']['z'],
+ 'conditions' => '',
+ 'cap' => $cap,
+ 'sex' => $character_data['sex'],
+ 'lastlogin' => 0,
+ 'lastip' => $character_data['lastip'],
+ 'save' => 1,
+ 'skull' => 0,
+ 'skulltime' => 0,
+ 'rank_id' => 0,
+ 'guildnick' => '',
+ 'lastlogout' => 0,
+ 'blessings' => 0,
+ 'direction' => 0,
+ 'loss_experience' => 10,
+ 'loss_mana' => 10,
+ 'loss_skills' => 10,
+ 'premend' => 0,
+ 'online' => 0,
+ 'balance' => 0
+ );
+ } else {
+ $import_data = array(
+ 'name' => $character_data['name'],
+ 'group_id' => 1,
+ 'account_id' => $character_data['account_id'],
+ 'level' => $create['level'],
+ 'vocation' => $vocation,
+ 'health' => $health,
+ 'healthmax' => $health,
+ 'experience' => level_to_experience($create['level']),
+ 'lookbody' => $outfit['body'], /* STARTER OUTFITS */
+ 'lookfeet' => $outfit['feet'],
+ 'lookhead' => $outfit['head'],
+ 'looklegs' => $outfit['legs'],
+ 'looktype' => $outfit['id'],
+ 'maglevel' => $skills['magic'],
+ 'mana' => $mana,
+ 'manamax' => $mana,
+ 'manaspent' => 0,
+ 'soul' => $base['soul'],
+ 'town_id' => $character_data['town_id'],
+ 'posx' => $cnf['default_pos']['x'],
+ 'posy' => $cnf['default_pos']['y'],
+ 'posz' => $cnf['default_pos']['z'],
+ 'conditions' => '',
+ 'cap' => $cap,
+ 'sex' => $character_data['sex'],
+ 'lastlogin' => 0,
+ 'lastip' => $character_data['lastip'],
+ 'save' => 1,
+ 'skull_type' => 0,
+ 'skull_time' => 0,
+ 'rank_id' => 0,
+ 'guildnick' => '',
+ 'lastlogout' => 0,
+ 'direction' => 0,
+ 'loss_experience' => 100,
+ 'loss_mana' => 100,
+ 'loss_skills' => 100,
+ 'loss_items' => 10,
+ 'online' => 0,
+ 'balance' => 0
+ );
+ }
+
+ // Clients below 7.8 don't have outfit addons
+ if (isset($import_data['lookaddons']) && config('client') < 780) {
+ unset($import_data['lookaddons']);
+ }
+
+ // TFS 1.0 variations
+ if ($cnf['ServerEngine'] === 'TFS_10') {
+ unset($import_data['rank_id']);
+ unset($import_data['guildnick']);
+ unset($import_data['direction']);
+ unset($import_data['loss_experience']);
+ unset($import_data['loss_mana']);
+ unset($import_data['loss_skills']);
+ unset($import_data['premend']);
+ unset($import_data['online']);
+
+ // Skills can be added into the same query on TFS 1.0+
+ $import_data['skill_fist'] = $skills['fist'];
+ $import_data['skill_club'] = $skills['club'];
+ $import_data['skill_sword'] = $skills['sword'];
+ $import_data['skill_axe'] = $skills['axe'];
+ $import_data['skill_dist'] = $skills['dist'];
+ $import_data['skill_shielding'] = $skills['shield'];
+ $import_data['skill_fishing'] = $skills['fishing'];
+ }
+
+ // If you are no vocation (id 0), use these details instead:
+ if ($vocation === 0) {
+ $import_data['level'] = $create['novocation']['level'];
+ $import_data['experience'] = level_to_experience($create['novocation']['level']);
+
+ if ($create['novocation']['forceTown'] === true) {
+ $import_data['town_id'] = $create['novocation']['townId'];
+ }
+ }
+
+ $fields = array_keys($import_data); // Fetch select fields
+ $data = array_values($import_data); // Fetch insert data
+
+ $fields_sql = implode("`, `", $fields); // Convert array into SQL compatible string
+ $data_sql = implode("', '", $data); // Convert array into SQL compatible string
+
+ mysql_insert("INSERT INTO `players`(`$fields_sql`) VALUES ('$data_sql');");
+
+ $created = time();
+ $charid = user_character_id($import_data['name']);
+ mysql_insert("INSERT INTO `znote_players`(`player_id`, `created`, `hide_char`, `comment`) VALUES ('$charid', '$created', '0', '');");
+
+ // Player skills TFS 0.2, 0.3/4. (TFS 1.0 is done above character creation)
+ if ($cnf['ServerEngine'] != 'TFS_10') {
+ mysql_delete("DELETE FROM `player_skills` WHERE `player_id`='{$charid}';");
+ mysql_insert("INSERT INTO `player_skills` (`player_id`, `skillid`, `value`) VALUES ('{$charid}', '0', '".$skills['fist']."'), ('{$charid}', '1', '".$skills['club']."'), ('{$charid}', '2', '".$skills['sword']."'), ('{$charid}', '3', '".$skills['axe']."'), ('{$charid}', '4', '".$skills['dist']."'), ('{$charid}', '5', '".$skills['shield']."'), ('{$charid}', '6', '".$skills['fishing']."');");
+ }
+}
+
+// Returns counted value of all players online
+function user_count_online() {
+ if (config('ServerEngine') == 'TFS_10') {
+ $online = mysql_select_single("SELECT COUNT(`player_id`) AS `value` FROM `players_online`;");
+ return ($online !== false) ? $online['value'] : 0;
+ } else {
+ $data = mysql_select_single("SELECT COUNT(`id`) AS `count` from `players` WHERE `online` = 1;");
+ return ($data !== false) ? $data['count'] : 0;
+ }
+}
+
+// Returns counted value of all accounts.
+function user_count_accounts() {
+ $result = mysql_select_single("SELECT COUNT(`id`) AS `id` from `accounts`;");
+ return ($result !== false) ? $result['id'] : 0;
+}
+
+/* user_character_data (fetches whatever data you want from players table)!
+ Usage:
+ $player = user_data(player_ID, 'name', 'level');
+ echo "Character name: ". $player['name'] .". Level: ". $player['level'];
+*/
+function user_character_data($user_id) {
+ $data = array();
+ $user_id = (int)$user_id;
+ $func_num_args = func_num_args();
+ $func_get_args = func_get_args();
+ if ($func_num_args > 1) {
+ unset($func_get_args[0]);
+ $fields = '`'. implode('`, `', $func_get_args) .'`';
+ $data = mysql_select_single("SELECT $fields FROM `players` WHERE `id` = $user_id;");
+ return $data;
+ }
+}
+
+// return query data from znote_players table
+function user_znote_character_data($character_id) {
+ $data = array();
+ $charid = (int)$character_id;
+
+ $func_num_args = func_num_args();
+ $func_get_args = func_get_args();
+
+ if ($func_num_args > 1) {
+ unset($func_get_args[0]);
+
+ $fields = '`'. implode('`, `', $func_get_args) .'`';
+ $data = mysql_select_single("SELECT $fields FROM `znote_players` WHERE `player_id` = $charid;");
+ return $data;
+ }
+}
+
+// return query data from znote table
+// usage: $znoteAAC = user_znote_data('version');
+// echo $znoteAAC['version'];
+function user_znote_data() {
+ $data = array();
+
+ $func_num_args = func_num_args();
+ $func_get_args = func_get_args();
+
+ if ($func_num_args > 0) {
+
+ $fields = '`'. implode('`, `', $func_get_args) .'`';
+ return mysql_select_single("SELECT $fields FROM `znote`;");
+ } else return false;
+}
+
+// return query data from znote_accounts table
+// See documentation on user_data. This fetches information from znote_accounts table.
+function user_znote_account_data($account_id) {
+ $data = array();
+ $accid = (int)$account_id;
+
+ $func_num_args = func_num_args();
+ $func_get_args = func_get_args();
+
+ if ($func_num_args > 1) {
+ unset($func_get_args[0]);
+
+ $fields = '`'. implode('`, `', $func_get_args) .'`';
+ return mysql_select_single("SELECT $fields FROM `znote_accounts` WHERE `account_id` = $accid LIMIT 1;");
+ } else return false;
+}
+
+// return query data from znote_visitors table
+// See documentation on user_data, but this uses $longip instead.
+function user_znote_visitor_data($longip) {
+ $data = array();
+ $longip = (int)$longip;
+
+ $func_num_args = func_num_args();
+ $func_get_args = func_get_args();
+
+ if ($func_num_args > 1) {
+ unset($func_get_args[0]);
+
+ $fields = '`'. implode('`, `', $func_get_args) .'`';
+ return mysql_select_single("SELECT $fields FROM `znote_visitors` WHERE `ip` = $longip;");
+ } else return false;
+}
+
+// return query data from znote_visitors_details table
+// See documentation on user_data, but this uses $longip instead.
+function user_znote_visitor_details_data($longip) {
+ $data = array();
+ $longip = (int)$longip;
+
+ $func_num_args = func_num_args();
+ $func_get_args = func_get_args();
+
+ if ($func_num_args > 1) {
+ unset($func_get_args[0]);
+
+ $fields = '`'. implode('`, `', $func_get_args) .'`';
+ return mysql_select_single("SELECT $fields FROM `znote_visitors_details` WHERE `ip` = $longip;");
+ } else return false;
+}
+
+/* user_data (fetches whatever data you want from accounts table)!
+ Usage:
+ $account = user_data(account_ID, 'password', 'email');
+ echo $account['email']; //Will then echo out that accounts mail address.
+*/
+function user_data($user_id) {
+ $data = array();
+ $user_id = sanitize($user_id);
+
+ $func_num_args = func_num_args();
+ $func_get_args = func_get_args();
+
+ if ($func_num_args > 1) {
+ unset($func_get_args[0]);
+
+ $fields = '`'. implode('`, `', $func_get_args) .'`';
+ return mysql_select_single("SELECT $fields FROM `accounts` WHERE `id` = $user_id LIMIT 1;");
+ } else return false;
+}
+
+// Checks if user is activated (Not in use atm)
+function user_activated($username) {
+ $username = sanitize($username);
+ // Deprecated, removed from DB.
+ return false;
+}
+
+// Checks that username exist in database
+function user_exist($username) {
+ $username = sanitize($username);
+ if (config('ServerEngine') !== 'OTHIRE')
+ $data = mysql_select_single("SELECT `id` FROM `accounts` WHERE `name`='$username';");
+ else
+ $data = mysql_select_single("SELECT `id` FROM `accounts` WHERE `id`='$username';");
+ return ($data !== false) ? true : false;
+}
+
+function user_name($id) { //USERNAME FROM PLAYER ID
+ $id = (int)$id;
+ $name = mysql_select_single("SELECT `name` FROM `players` WHERE `id`='$id';");
+ if ($name !== false) return $name['name'];
+ else return false;
+}
+
+// Checks that character name exist
+function user_character_exist($username) {
+ $username = sanitize($username);
+ $player = mysql_select_single("SELECT `id` FROM `players` WHERE `name`='$username';");
+ return ($player !== false) ? $player['id'] : false;
+}
+
+// Checks that this email exist.
+function user_email_exist($email) {
+ $email = sanitize($email);
+ $data = mysql_select_single("SELECT `id` FROM `accounts` WHERE `email`='$email';");
+ return ($data !== false) ? true : false;
+}
+
+// Fetch user account ID from registered email. (this is used by etc lost account)
+function user_id_from_email($email) {
+ $email = sanitize($email);
+ $data = mysql_select_single("SELECT `id` FROM `accounts` WHERE `email`='$email';");
+ return ($data !== false) ? $data['id'] : false;
+}
+
+// Checks that a password exist in the database.
+function user_password_exist($password) {
+ $password = sha1($password); // No need to sanitize passwords since we encrypt them.
+ $data = mysql_select_single("SELECT `id` FROM `accounts` WHERE `password`='$password';");
+ return ($data !== false) ? true : false;
+}
+
+// Verify that submitted password match stored password in account id
+function user_password_match($password, $account_id) {
+ $password = sha1($password); // No need to sanitize passwords since we encrypt them.
+ $account_id = (int)$account_id;
+ $data = mysql_select_single("SELECT `id` FROM `accounts` WHERE `password`='$password' AND `id`='$account_id';");
+ return ($data !== false) ? true : false;
+}
+
+// Get user ID from name
+function user_id($username) {
+ $username = sanitize($username);
+ if (config('ServerEngine') !== 'OTHIRE')
+ $data = mysql_select_single("SELECT `id` FROM `accounts` WHERE `name`='$username' LIMIT 1;");
+ else
+ $data = mysql_select_single("SELECT `id` FROM `accounts` WHERE `id`='$username' LIMIT 1;");
+ if ($data !== false) return $data['id'];
+ else return false;
+}
+
+// Get user login ID from username and password
+function user_login_id($username, $password) {
+ $username = sanitize($username);
+ $password = sha1($password);
+ if (config('ServerEngine') !== 'OTHIRE')
+ $data = mysql_select_single("SELECT `id` FROM `accounts` WHERE `name`='$username' AND `password`='$password' LIMIT 1;");
+ else
+ $data = mysql_select_single("SELECT `id` FROM `accounts` WHERE `id`='$username' AND `password`='$password' LIMIT 1;");
+ if ($data !== false) return $data['id'];
+ else return false;
+}
+
+// TFS 0.3+ compatibility.
+function user_login_id_03($username, $password) {
+ if (config('salt') === true) {
+ if (user_exist($username)) {
+ $user_id = user_id($username);
+ $username = sanitize($username);
+
+ $data = mysql_select_single("SELECT `salt`, `id`, `name`, `password` FROM `accounts` WHERE `id`='$user_id';");
+ $salt = $data['salt'];
+ if (!empty($salt)) $password = sha1($salt.$password);
+ else $password = sha1($password);
+ return ($data !== false && $data['name'] == $username && $data['password'] == $password) ? $data['id'] : false;
+ } else return false;
+ } else return user_login_id($username, $password);
+}
+
+// Get character ID from character name
+function user_character_id($charname) {
+ $charname = sanitize($charname);
+ $char = mysql_select_single("SELECT `id` FROM `players` WHERE `name`='$charname';");
+ if ($char !== false) return $char['id'];
+ else return false;
+}
+
+// Get character name from character ID
+function user_character_name($charID) {
+ $charID = (int)$charID;
+ $char = mysql_select_single('SELECT `name` FROM `players` WHERE `id` = ' . $charID);
+ if ($char !== false) return $char['name'];
+ else return false;
+}
+
+// Hide user character.
+function user_character_hide($username) {
+ $username = sanitize($username);
+ $username = user_character_id($username);
+ $char = mysql_select_single("SELECT `hide_char` FROM `znote_players` WHERE `player_id`='$username';");
+ if ($char !== false) return $char['hide_char'];
+ else return false;
+}
+
+// Login with a user. (TFS 0.2)
+function user_login($username, $password) {
+ $username = sanitize($username);
+ $password = sha1($password);
+ if (config('ServerEngine') !== 'OTHIRE')
+ $data = mysql_select_single("SELECT `id` FROM accounts WHERE name='$username' AND password='$password';");
+ else
+ $data = mysql_select_single("SELECT `id` FROM accounts WHERE id='$username' AND password='$password';");
+ return ($data !== false) ? $data['id'] : false;
+}
+
+// Login a user with TFS 0.3 compatibility
+function user_login_03($username, $password) {
+ if (config('salt') === true) {
+ $username = sanitize($username);
+ $data = mysql_select_single("SELECT `salt`, `id`, `password`, `name` FROM `accounts` WHERE `name`='$username';");
+ $salt = $data['salt'];
+ if (!empty($salt)) $password = sha1($salt.$password);
+ else $password = sha1($password);
+ return ($data !== false && $data['name'] == $username && $data['password'] == $password) ? $data['id'] : false;
+ } else return user_login($username, $password);
+}
+
+// Verify that user is logged in
+function user_logged_in() {
+ return (getSession('user_id') !== false) ? true : false;
+}
+
+function guild_war_invitation($cid, $gid) {
+ $cid = (int)$cid;
+ $gid = (int)$gid;
+ $gname = get_guild_name($cid);
+ $ename = get_guild_name($gid);
+ $time = time();
+ mysql_insert("INSERT INTO `guild_wars` (`guild1`, `guild2`, `name1`, `name2`, `status`, `started`, `ended`) VALUES ('$cid', '$gid', '$gname', '$ename', '0', '$time', '0');");
+}
+
+function accept_war_invitation($cid, $gid) {
+ $cid = (int)$cid;
+ $gid = (int)$gid;
+ mysql_update("UPDATE `guild_wars` SET `status` = 1 WHERE `guild1` = '$cid' AND `guild2` = '$gid' AND `status` = 0;");
+}
+
+function reject_war_invitation($cid, $gid) {
+ $cid = (int)$cid;
+ $gid = (int)$gid;
+ $time = time();
+ mysql_update("UPDATE `guild_wars` SET `status` = 2, `ended` = '$time' WHERE `guild1` = '$cid' AND `guild2` = '$gid';");
+}
+
+function cancel_war_invitation($cid, $gid) {
+ $cid = (int)$cid;
+ $gid = (int)$gid;
+ $time = time();
+ mysql_update("UPDATE `guild_wars` SET `status` = 3, `ended` = '$time' WHERE `guild2` = '$cid' AND `guild1` = '$gid';");
+}
+
+?>
diff --git a/engine/guildimg/default@logo.gif b/engine/guildimg/default@logo.gif
new file mode 100644
index 00000000..404a0df8
Binary files /dev/null and b/engine/guildimg/default@logo.gif differ
diff --git a/engine/img/bg.png b/engine/img/bg.png
new file mode 100644
index 00000000..96fe6896
Binary files /dev/null and b/engine/img/bg.png differ
diff --git a/engine/img/lifebarra.png b/engine/img/lifebarra.png
new file mode 100644
index 00000000..3f81199f
Binary files /dev/null and b/engine/img/lifebarra.png differ
diff --git a/engine/img/manabar.png b/engine/img/manabar.png
new file mode 100644
index 00000000..38dbdd83
Binary files /dev/null and b/engine/img/manabar.png differ
diff --git a/engine/img/o/b_l.png b/engine/img/o/b_l.png
new file mode 100644
index 00000000..5c4e286b
Binary files /dev/null and b/engine/img/o/b_l.png differ
diff --git a/engine/img/o/b_m.png b/engine/img/o/b_m.png
new file mode 100644
index 00000000..e73cf7cf
Binary files /dev/null and b/engine/img/o/b_m.png differ
diff --git a/engine/img/o/b_r.png b/engine/img/o/b_r.png
new file mode 100644
index 00000000..2835fdb2
Binary files /dev/null and b/engine/img/o/b_r.png differ
diff --git a/engine/img/o/m_l.png b/engine/img/o/m_l.png
new file mode 100644
index 00000000..39731452
Binary files /dev/null and b/engine/img/o/m_l.png differ
diff --git a/engine/img/o/m_m.png b/engine/img/o/m_m.png
new file mode 100644
index 00000000..5874199c
Binary files /dev/null and b/engine/img/o/m_m.png differ
diff --git a/engine/img/o/m_r.png b/engine/img/o/m_r.png
new file mode 100644
index 00000000..60d98e89
Binary files /dev/null and b/engine/img/o/m_r.png differ
diff --git a/engine/img/o/t_l.png b/engine/img/o/t_l.png
new file mode 100644
index 00000000..3bcec98c
Binary files /dev/null and b/engine/img/o/t_l.png differ
diff --git a/engine/img/o/t_m.png b/engine/img/o/t_m.png
new file mode 100644
index 00000000..677a1c1f
Binary files /dev/null and b/engine/img/o/t_m.png differ
diff --git a/engine/img/o/t_r.png b/engine/img/o/t_r.png
new file mode 100644
index 00000000..14514585
Binary files /dev/null and b/engine/img/o/t_r.png differ
diff --git a/engine/img/outfit.png b/engine/img/outfit.png
new file mode 100644
index 00000000..7ca99c3f
Binary files /dev/null and b/engine/img/outfit.png differ
diff --git a/engine/img/outfitbackground.png b/engine/img/outfitbackground.png
new file mode 100644
index 00000000..f8536f60
Binary files /dev/null and b/engine/img/outfitbackground.png differ
diff --git a/engine/img/skillsbackground.png b/engine/img/skillsbackground.png
new file mode 100644
index 00000000..e43f1e58
Binary files /dev/null and b/engine/img/skillsbackground.png differ
diff --git a/engine/init.php b/engine/init.php
new file mode 100644
index 00000000..9da40fef
--- /dev/null
+++ b/engine/init.php
@@ -0,0 +1,177 @@
+1. Find your php.ini file. 2. Uncomment extension=php_curl Restart web server.
If you don't want this then disable paypal & use_captcha in config.php.");
+}
+if ($config['use_captcha'] && !extension_loaded('openssl')) {
+ die("php openSSL is not enabled. It is required to for captcha services. 1. Find your php.ini file. 2. Uncomment extension=php_openssl Restart web server.
If you don't want this then disable use_captcha in config.php.");
+}
+
+// References ( & ) works as an alias for a variable,
+// they point to the same memmory, instead of duplicating it.
+if (!isset($config['TFSVersion'])) $config['TFSVersion'] = &$config['ServerEngine'];
+if (!isset($config['ServerEngine'])) $config['ServerEngine'] = &$config['TFSVersion'];
+
+require_once 'database/connect.php';
+require_once 'function/general.php';
+require_once 'function/users.php';
+require_once 'function/cache.php';
+require_once 'function/mail.php';
+require_once 'function/token.php';
+require_once 'function/itemparser/itemlistparser.php';
+
+if (isset($_SESSION['token'])) {
+ $_SESSION['old_token'] = $_SESSION['token'];
+}
+Token::generate();
+
+$tfs_10_hasPremDays = true; // https://github.com/otland/forgottenserver/pull/2813
+
+if (user_logged_in() === true) {
+ $session_user_id = getSession('user_id');
+ if ($config['ServerEngine'] !== 'OTHIRE') {
+ if ($config['ServerEngine'] == 'TFS_10') {
+ $hasPremDays = mysql_select_single("SHOW COLUMNS from `accounts` WHERE `Field` = 'premdays'");
+ if ($hasPremDays === false) {
+ $tfs_10_hasPremDays = false;
+ $user_data = user_data($session_user_id, 'id', 'name', 'password', 'email', 'premium_ends_at');
+ $user_data['premdays'] = ($user_data['premium_ends_at'] - time() > 0) ? floor(($user_data['premium_ends_at'] - time()) / 86400) : 0;
+ } else {
+ $user_data = user_data($session_user_id, 'id', 'name', 'password', 'email', 'premdays');
+ }
+ } else {
+ $user_data = user_data($session_user_id, 'id', 'name', 'password', 'email', 'premdays');
+ }
+ } else
+ $user_data = user_data($session_user_id, 'id', 'password', 'email', 'premend');
+ $user_znote_data = user_znote_account_data($session_user_id, 'ip', 'created', 'points', 'cooldown', 'flag' ,'active_email');
+}
+$errors = array();
+// Log IP
+if ($config['log_ip']) {
+ $visitor_config = $config['ip_security'];
+
+ $flush = $config['flush_ip_logs'];
+ if ($flush != false) {
+ $timef = $time - $flush;
+ if (getCache() < $timef) {
+ $timef = $time - $visitor_config['time_period'];
+ mysql_delete("DELETE FROM znote_visitors_details WHERE time <= '$timef'");
+ setCache($time);
+ }
+ }
+
+ $visitor_data = znote_visitors_get_data();
+
+ znote_visitor_set_data($visitor_data); // update or insert data
+ znote_visitor_insert_detailed_data(0); // detailed data
+
+ $visitor_detailed = znote_visitors_get_detailed_data($visitor_config['time_period']);
+
+ // max activity
+ $v_activity = 0;
+ $v_register = 0;
+ $v_highscore = 0;
+ $v_c_char = 0;
+ $v_s_char = 0;
+ $v_form = 0;
+ foreach ((array)$visitor_detailed as $v_d) {
+ // Activity
+ if ($v_d['ip'] == getIPLong()) {
+ // count each type of visit
+ switch ($v_d['type']) {
+ case 0: // max activity
+ $v_activity++;
+ break;
+
+ case 1: // account registered
+ $v_register++;
+ $v_form++;
+ break;
+
+ case 2: // character creations
+ $v_c_char++;
+ $v_form++;
+ break;
+
+ case 3: // Highscore fetched
+ $v_highscore++;
+ $v_form++;
+ break;
+
+ case 4: // character searched
+ $v_s_char++;
+ $v_form++;
+ break;
+
+ case 5: // Other forms (login.?)
+ $v_form++;
+ break;
+ }
+
+ }
+ }
+
+ // Deny access if activity is too high
+ if ($v_activity > $visitor_config['max_activity']) die("Chill down. Your web activity is too big. max_activity");
+ if ($v_register > $visitor_config['max_account']) die("Chill down. You can't create multiple accounts that fast. max_account");
+ if ($v_c_char > $visitor_config['max_character']) die("Chill down. Your web activity is too big. max_character");
+ if ($v_form > $visitor_config['max_post']) die("Chill down. Your web activity is too big. max_post");
+
+ //var_dump($v_activity, $v_register, $v_highscore, $v_c_char, $v_s_char, $v_form);
+ //echo ' <--- IP logging activity past 10 seconds.';
+}
+
+// Sub page override system
+$filename = explode('/', $_SERVER['SCRIPT_NAME']);
+$filename = $filename[count($filename) - 1];
+$page_filename = str_replace('.php', '', $filename);
+if ($config['allowSubPages']) {
+ require_once 'layout/sub.php';
+ if (isset($subpages) && !empty($subpages)) {
+ foreach ($subpages as $page) {
+ if ($page['override'] && $page['file'] === $filename) {
+ require_once 'layout/overall/header.php';
+ require_once 'layout/sub/'.$page['file'];
+ require_once 'layout/overall/footer.php';
+ exit;
+ }
+ }
+ } else {
+ ?>
+
+
Old layout!
+
The layout is running an outdated sub system which is not compatible with this version of Znote AAC.
+
The file /layout/sub.php is outdated.
+ Please update it to look like THIS.
+
a",n=d.getElementsByTagName("*")||[],r=d.getElementsByTagName("a")[0],!r||!r.style||!n.length)return t;s=a.createElement("select"),u=s.appendChild(a.createElement("option")),o=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t.getSetAttribute="t"!==d.className,t.leadingWhitespace=3===d.firstChild.nodeType,t.tbody=!d.getElementsByTagName("tbody").length,t.htmlSerialize=!!d.getElementsByTagName("link").length,t.style=/top/.test(r.getAttribute("style")),t.hrefNormalized="/a"===r.getAttribute("href"),t.opacity=/^0.5/.test(r.style.opacity),t.cssFloat=!!r.style.cssFloat,t.checkOn=!!o.value,t.optSelected=u.selected,t.enctype=!!a.createElement("form").enctype,t.html5Clone="<:nav>"!==a.createElement("nav").cloneNode(!0).outerHTML,t.inlineBlockNeedsLayout=!1,t.shrinkWrapBlocks=!1,t.pixelPosition=!1,t.deleteExpando=!0,t.noCloneEvent=!0,t.reliableMarginRight=!0,t.boxSizingReliable=!0,o.checked=!0,t.noCloneChecked=o.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!u.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}o=a.createElement("input"),o.setAttribute("value",""),t.input=""===o.getAttribute("value"),o.value="t",o.setAttribute("type","radio"),t.radioValue="t"===o.value,o.setAttribute("checked","t"),o.setAttribute("name","t"),l=a.createDocumentFragment(),l.appendChild(o),t.appendChecked=o.checked,t.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip;for(f in x(t))break;return t.ownLast="0"!==f,x(function(){var n,r,o,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",l=a.getElementsByTagName("body")[0];l&&(n=a.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",l.appendChild(n).appendChild(d),d.innerHTML="
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+
+
+
+ test
+
+
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+