diff --git a/src/Entities/Habbo.php b/src/Entities/Habbo.php
index 0879f89..e94319d 100644
--- a/src/Entities/Habbo.php
+++ b/src/Entities/Habbo.php
@@ -3,6 +3,7 @@
* The entitymodel for a Habbo object
*/
namespace HabboAPI\Entities;
+use Carbon\Carbon;
/**
* Class Habbo
@@ -27,11 +28,13 @@ class Habbo implements Entity
*/
public function parse($data)
{
+ // These attributes are shared between Habbo and Friends
$this->setId($data['uniqueId']);
$this->setHabboName($data['name']);
$this->setMotto($data['motto']);
$this->setFigureString($data['figureString']);
+ // These could be missing..
if (isset($data['memberSince'])) {
$this->setMemberSince($data['memberSince']);
}
@@ -111,7 +114,7 @@ protected function setId($id)
}
/**
- * @return mixed
+ * @return Carbon
*/
public function getMemberSince()
{
@@ -119,11 +122,11 @@ public function getMemberSince()
}
/**
- * @param mixed $memberSince
+ * @param Carbon $memberSince
*/
protected function setMemberSince($memberSince)
{
- $this->memberSince = $memberSince;
+ $this->memberSince = Carbon::parse($memberSince);
}
/**
diff --git a/src/Entities/Photo.php b/src/Entities/Photo.php
new file mode 100644
index 0000000..6ef77be
--- /dev/null
+++ b/src/Entities/Photo.php
@@ -0,0 +1,218 @@
+setId($data['id']);
+ $this->setPreviewUrl($data['previewUrl']);
+ $this->setTags($data['tags']);
+ $this->setType($data['type']);
+ $this->setUrl($data['url']);
+ $this->setTakenOn($data['time']);
+ $this->setCreatorUniqueId($data['creator_uniqueId']);
+ $this->setCreatorName($data['creator_name']);
+ $this->setCreatorId($data['creator_id']);
+ $this->setRoomId($data['room_id']);
+ $this->setLikes($data['likes']);
+ }
+
+ public function __toString()
+ {
+ return $this->getUrl();
+ }
+
+ public function getId()
+ {
+ return $this->id;
+ }
+
+ /**
+ * @param string $id
+ */
+ public function setId($id)
+ {
+ $this->id = $id;
+ }
+
+ /**
+ * @return string
+ */
+ public function getPreviewUrl()
+ {
+ return $this->previewUrl;
+ }
+
+ /**
+ * @param string $previewUrl
+ */
+ public function setPreviewUrl($previewUrl)
+ {
+ $this->previewUrl = $previewUrl;
+ }
+
+ /**
+ * @return array
+ */
+ public function getTags()
+ {
+ return $this->tags;
+ }
+
+ /**
+ * @param array $tags
+ */
+ public function setTags($tags)
+ {
+ $this->tags = $tags;
+ }
+
+ /**
+ * @return string
+ */
+ public function getCreatorUniqueId()
+ {
+ return $this->creatorUniqueId;
+ }
+
+ /**
+ * @param string $creatorUniqueId
+ */
+ public function setCreatorUniqueId($creatorUniqueId)
+ {
+ $this->creatorUniqueId = $creatorUniqueId;
+ }
+
+ /**
+ * @return string
+ */
+ public function getCreatorName()
+ {
+ return $this->creatorName;
+ }
+
+ /**
+ * @param string $creatorName
+ */
+ public function setCreatorName($creatorName)
+ {
+ $this->creatorName = $creatorName;
+ }
+
+ /**
+ * @return int
+ */
+ public function getCreatorId()
+ {
+ return $this->creatorId;
+ }
+
+ /**
+ * @param int $creatorId
+ */
+ public function setCreatorId($creatorId)
+ {
+ $this->creatorId = $creatorId;
+ }
+
+ /**
+ * @return string
+ */
+ public function getType()
+ {
+ return $this->type;
+ }
+
+ /**
+ * @param string $type
+ */
+ public function setType($type)
+ {
+ $this->type = $type;
+ }
+
+ /**
+ * @return string
+ */
+ public function getUrl()
+ {
+ return $this->url;
+ }
+
+ /**
+ * @param string $url
+ */
+ public function setUrl($url)
+ {
+ $this->url = $url;
+ }
+
+ /**
+ * @return Carbon
+ */
+ public function getTakenOn()
+ {
+ return $this->takenOn;
+ }
+
+ /**
+ * @param Carbon $takenOn
+ */
+ public function setTakenOn($takenOn)
+ {
+ // takenOn is a microtime() format
+ $timestamp = floor($takenOn / 1e3);
+ $this->takenOn = Carbon::createFromTimestamp($timestamp);
+ }
+
+ /**
+ * @return int
+ */
+ public function getRoomId()
+ {
+ return $this->roomId;
+ }
+
+ /**
+ * @param int $roomId
+ */
+ public function setRoomId($roomId)
+ {
+ $this->roomId = $roomId;
+ }
+
+ /**
+ * @return array
+ */
+ public function getLikes()
+ {
+ return $this->likes;
+ }
+
+ /**
+ * @param array $likes
+ */
+ public function setLikes($likes)
+ {
+ $this->likes = $likes;
+ }
+
+}
\ No newline at end of file
diff --git a/src/Entities/Profile.php b/src/Entities/Profile.php
new file mode 100644
index 0000000..60468fb
--- /dev/null
+++ b/src/Entities/Profile.php
@@ -0,0 +1,132 @@
+getHabbo()->getHabboName();
+ }
+
+ public function getId()
+ {
+ return $this->getHabbo()->getId();
+ }
+
+ /**
+ * @return Habbo
+ */
+ public function getHabbo()
+ {
+ return $this->habbo;
+ }
+
+ /**
+ * @param Habbo $habbo
+ */
+ public function setHabbo(Habbo $habbo)
+ {
+ $this->habbo = $habbo;
+ }
+
+ /**
+ * @return array
+ */
+ public function getFriends()
+ {
+ return $this->friends;
+ }
+
+ /**
+ * @param Habbo $friend
+ */
+ public function addFriend(Habbo $friend)
+ {
+ $this->friends[] = $friend;
+ }
+
+ /**
+ * @return array
+ */
+ public function getGroups()
+ {
+ return $this->groups;
+ }
+
+ /**
+ * @param Group $group
+ */
+ public function addGroup(Group $group)
+ {
+ $this->groups[] = $group;
+ }
+
+ /**
+ * @return array
+ */
+ public function getRooms()
+ {
+ return $this->rooms;
+ }
+
+ /**
+ * @param Room $room
+ */
+ public function addRoom(Room $room)
+ {
+ $this->rooms[] = $room;
+ }
+
+ /**
+ * @return array
+ */
+ public function getBadges()
+ {
+ return $this->badges;
+ }
+
+ /**
+ * @param Badge $badge
+ */
+ public function addBadge(Badge $badge)
+ {
+ $this->badges[] = $badge;
+ }
+
+ public function getCounts()
+ {
+ return array(
+ 'habbo' => count($this->habbo),
+ 'badges' => count($this->badges),
+ 'friends' => count($this->friends),
+ 'groups' => count($this->groups),
+ 'rooms' => count($this->rooms),
+ );
+ }
+}
+
diff --git a/src/Entities/Room.php b/src/Entities/Room.php
index e2d3a57..0322c64 100644
--- a/src/Entities/Room.php
+++ b/src/Entities/Room.php
@@ -3,6 +3,7 @@
* The entitymodel for a Room object
*/
namespace HabboAPI\Entities;
+use Carbon\Carbon;
/**
* Class Room
@@ -19,7 +20,7 @@ class Room implements Entity
private $creationTime;
private $maximumVisitors;
private $tags;
- private $officialRoom;
+ private $showOwnerName;
private $ownerName;
private $ownerUniqueId;
private $categories;
@@ -38,7 +39,7 @@ public function parse($room)
$this->setDescription($room['description']);
$this->setMaximumVisitors($room['maximumVisitors']);
$this->setTags($room['tags']);
- $this->setOfficialRoom($room['officialRoom']);
+ $this->setShowOwnerName($room['showOwnerName']);
$this->setOwnerName($room['ownerName']);
$this->setOwnerUniqueId($room['ownerUniqueId']);
$this->setCategories($room['categories']);
@@ -169,7 +170,7 @@ public function setThumbnailUrl($thumbnailUrl)
}
/**
- * @return string
+ * @return Carbon
*/
public function getCreationTime()
{
@@ -177,11 +178,11 @@ public function getCreationTime()
}
/**
- * @param string $creationTime
+ * @param Carbon $creationTime
*/
public function setCreationTime($creationTime)
{
- $this->creationTime = $creationTime;
+ $this->creationTime = Carbon::parse($creationTime);
}
/**
@@ -203,17 +204,17 @@ public function setMaximumVisitors($maximumVisitors)
/**
* @return boolean
*/
- public function getOfficialRoom()
+ public function getShowOwnerName()
{
- return $this->officialRoom;
+ return $this->showOwnerName;
}
/**
- * @param boolean $officialRoom
+ * @param boolean $showOwnerName
*/
- public function setOfficialRoom($officialRoom)
+ public function setShowOwnerName($showOwnerName)
{
- $this->officialRoom = $officialRoom;
+ $this->showOwnerName = $showOwnerName;
}
/**
diff --git a/src/HabboAPI.php b/src/HabboAPI.php
index af6576f..bfcc349 100644
--- a/src/HabboAPI.php
+++ b/src/HabboAPI.php
@@ -4,6 +4,9 @@
*/
namespace HabboAPI;
+use HabboAPI\Entities\Habbo;
+use HabboAPI\Entities\Profile;
+
/** Class HabboAPI
*
* Contains all the nice methods for the HabboAPI
@@ -19,10 +22,10 @@ class HabboAPI
private $parser;
/**
- * Constructor, requires a HabboParser object
- * @param HabboParser $parser
+ * Constructor, requires an implementation of a HabboParserInterface
+ * @param HabboParserInterface $parser
*/
- public function __construct(HabboParser $parser)
+ public function __construct(HabboParserInterface $parser)
{
$this->parser = $parser;
}
@@ -30,25 +33,32 @@ public function __construct(HabboParser $parser)
/** Based on a username, get a simplified Habbo object
*
* @param string $identifier
- * @return Entities\Habbo
+ * @param bool $useUniqueId
+ * @return Habbo
*/
- public function getHabbo($identifier, $hhid = false)
+ public function getHabbo($identifier, $useUniqueId = false)
{
- if ($hhid) {
- return $this->parser->parseHabbo($identifier, 'hhid');
- } else {
- return $this->parser->parseHabbo($identifier);
- }
+ return $this->parser->parseHabbo($identifier, $useUniqueId);
}
/** Based on a unique ID, get a full Habbo profile object
*
* @param string $id The unique ID Habbo uses for their api. Starts with "hh
-" (i.e. "hhus-")
- * @return array
+ * @return Profile
*/
public function getProfile($id)
{
return $this->parser->parseProfile($id);
}
+ /** getPhotos returns all 200 public photos or all the users photos if an id is given
+ *
+ * @param string|null $id The unique ID Habbo uses for their api. Starts with "hh-" (i.e. "hhus-")
+ * @return array Array of Photo objects
+ */
+ public function getPhotos($id = null)
+ {
+ return $this->parser->parsePhotos($id);
+ }
+
}
\ No newline at end of file
diff --git a/src/HabboParser.php b/src/HabboParser.php
index 957957e..5839990 100644
--- a/src/HabboParser.php
+++ b/src/HabboParser.php
@@ -8,8 +8,9 @@
use HabboAPI\Entities\Badge;
use HabboAPI\Entities\Group;
use HabboAPI\Entities\Habbo;
+use HabboAPI\Entities\Photo;
+use HabboAPI\Entities\Profile;
use HabboAPI\Entities\Room;
-use InvalidArgumentException;
/**
* Class HabboParser
@@ -27,14 +28,17 @@ class HabboParser implements HabboParserInterface
*/
private $api_base;
+ private $hotel;
+
/**
* HabboParser constructor, needs to be injected with $api_base URL
*
- * @param string $api_base
+ * @param string $hotel
*/
- public function __construct($api_base = 'https://www.habbo.com/api/public/')
+ public function __construct($hotel = 'com')
{
- $this->api_base = $api_base;
+ $this->hotel = $hotel;
+ $this->api_base = 'https://www.habbo.' . $hotel;
}
@@ -42,67 +46,25 @@ public function __construct($api_base = 'https://www.habbo.com/api/public/')
* Parses the Habbo user endpoint
*
* @param $identifier
- * @param string $type
+ * @param bool $useUniqueId
* @return Habbo
* @throws Exception
*/
- public function parseHabbo($identifier, $type = "name")
+ public function parseHabbo($identifier, $useUniqueId = false)
{
- switch ($type) {
- case "name":
- $url = 'users?name=' . $identifier;
- break;
- case "hhid":
- $url = 'users/' . $identifier;
- break;
- default:
- throw new InvalidArgumentException("Invalid type defined for parseHabbo");
+ if ($useUniqueId) {
+ $url = '/api/public/users/' . $identifier;
+ } else {
+ $url = '/api/public/users?name=' . $identifier;
}
- $data = $this->_callUrl($this->api_base . $url);
+ list($data) = $this->_callUrl($this->api_base . $url);
$habbo = new Habbo();
$habbo->parse($data);
return $habbo;
}
- /**
- * Curl call based on $url
- *
- * @param string $url
- * @return array
- * @throws Exception
- */
- protected function _callUrl($url)
- {
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_USERAGENT, 'github.com/gerbenjacobs/habbo-api 1.0.6');
- curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- $json = curl_exec($ch);
- $response = json_decode($json, true);
- $response['info'] = curl_getinfo($ch);
-
- if ($response['info']['http_code'] != 200) {
- throw new Exception($this->_extractError($response), $response['info']['http_code']);
- }
- curl_close($ch);
- return $response;
- }
-
- private function _extractError($response)
- {
- if (isset($response['errors'])) {
- return $response['errors'][0]['msg'];
- } else if (isset($response['error'])) {
- return $response['error'];
- } else {
- return 'Unknown';
- }
- }
-
/**
* Parses the Habbo Profile endpoints
*
@@ -114,56 +76,102 @@ private function _extractError($response)
public function parseProfile($id)
{
// Collect JSON
- $data = $this->_callUrl($this->api_base . "users/" . $id . "/profile");
+ list($data) = $this->_callUrl($this->api_base . "/api/public/users/" . $id . "/profile");
+
+ // Create Profile entity
+ $profile = new Profile();
// Habbo
$habbo = new Habbo();
$habbo->parse($data['user']);
+ $profile->setHabbo($habbo);
// Friends
- $friends = array();
foreach ($data['friends'] as $friend) {
$temp_friend = new Habbo();
$temp_friend->parse($friend);
- $friends[] = $temp_friend;
- unset($temp_friend);
+ $profile->addFriend($temp_friend);
}
// Groups
- $groups = array();
foreach ($data['groups'] as $group) {
$temp_group = new Group();
$temp_group->parse($group);
- $groups[] = $temp_group;
- unset($temp_group);
+ $profile->addGroup($temp_group);
}
// Rooms
- $rooms = array();
foreach ($data['rooms'] as $room) {
$temp_room = new Room();
$temp_room->parse($room);
- $rooms[] = $temp_room;
- unset($temp_room);
+ $profile->addRoom($temp_room);
}
// Badges
- $badges = array();
foreach ($data['badges'] as $badge) {
$temp_badge = new Badge();
$temp_badge->parse($badge);
- $badges[] = $temp_badge;
- unset($temp_badge);
+ $profile->addBadge($temp_badge);
+ }
+
+ // Return the Profile
+ return $profile;
+ }
+
+ public function parsePhotos($id = null)
+ {
+ $url = (isset($id)) ? '/extradata/public/users/' . $id . '/photos' : '/extradata/public/photos';
+
+ list($data) = $this->_callUrl($this->api_base . $url);
+
+ $photos = array();
+
+ foreach ($data as $photo_data) {
+ $temp_photo = new Photo();
+ $temp_photo->parse($photo_data);
+ $photos[] = $temp_photo;
+ unset($temp_photo);
}
- // Return it all..
- return array(
- "habbo" => $habbo,
- "friends" => $friends,
- "groups" => $groups,
- "rooms" => $rooms,
- "badges" => $badges,
- );
+ return $photos;
}
-}
\ No newline at end of file
+ /**
+ * Curl call based on $url
+ *
+ * @param string $url
+ * @return array
+ * @throws Exception
+ */
+ protected function _callUrl($url)
+ {
+ $ch = curl_init();
+ curl_setopt($ch, CURLOPT_URL, $url);
+ curl_setopt($ch, CURLOPT_USERAGENT, 'github.com/gerbenjacobs/habbo-api v2.0.0');
+ curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
+ curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
+ // urls at /extradata/ require javascript/cookie validation, trick them.
+ curl_setopt($ch, CURLOPT_COOKIE, "DOADFgsjnrSFgsg329gaFGa3ggs9434sgSGS43tsgSHSG35=#d6e7d09c41133ce41f6b466b0dbf500980f0f395#BRMM#1450468364#1115280811#");
+ $json = curl_exec($ch);
+ $response = json_decode($json, true);
+ $info = curl_getinfo($ch);
+
+ if ($info['http_code'] != 200) {
+ throw new Exception($this->_extractError($response), $info['http_code']);
+ }
+ curl_close($ch);
+ return array($response, $info);
+ }
+
+ private function _extractError($response)
+ {
+ if (isset($response['errors'])) {
+ return $response['errors'][0]['msg'];
+ } else if (isset($response['error'])) {
+ return $response['error'];
+ } else {
+ return 'Unknown';
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/HabboParserInterface.php b/src/HabboParserInterface.php
index af56695..542ac9d 100644
--- a/src/HabboParserInterface.php
+++ b/src/HabboParserInterface.php
@@ -5,7 +5,9 @@
interface HabboParserInterface
{
- public function parseHabbo($identifier, $type = "name");
+ public function parseHabbo($identifier, $useUniqueId = false);
public function parseProfile($id);
+
+ public function parsePhotos($id = null);
}
\ No newline at end of file
diff --git a/tests/Entities/HabboTest.php b/tests/Entities/HabboTest.php
index 7a4d367..c149d92 100644
--- a/tests/Entities/HabboTest.php
+++ b/tests/Entities/HabboTest.php
@@ -52,7 +52,8 @@ public function testGetMotto()
public function testGetMemberSince()
{
- $this->assertEquals('2001-10-06T12:21:53.000+0000', $this->habbo->getMemberSince());
+ $this->assertInstanceOf('\Carbon\Carbon', $this->habbo->getMemberSince());
+ $this->assertEquals('Oct 6, 2001', $this->habbo->getMemberSince()->toFormattedDateString());
}
public function testFiveSelectedBadges()
diff --git a/tests/Entities/PhotoTest.php b/tests/Entities/PhotoTest.php
new file mode 100644
index 0000000..bae5c9a
--- /dev/null
+++ b/tests/Entities/PhotoTest.php
@@ -0,0 +1,50 @@
+photo = new Photo();
+ $this->photo->parse(self::$data[0]);
+ }
+
+ public function testEntityType()
+ {
+ $this->assertInstanceOf('HabboAPI\Entities\Photo', $this->photo);
+ }
+
+ public function testProperties()
+ {
+ $this->assertEquals('171ed8e4-6424-4c10-8ef1-bdddde2b4343', $this->photo->getId());
+ $this->assertEquals('//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31212674-1448057454995.png', $this->photo->getPreviewUrl());
+ $this->assertEquals(array(), $this->photo->getTags());
+ $this->assertEquals('hhus-9cd61b156972c2eb33a145d69918f965', $this->photo->getCreatorUniqueId());
+ $this->assertEquals('koeientemmer', $this->photo->getCreatorName());
+ $this->assertEquals(31212674, $this->photo->getCreatorId());
+ $this->assertEquals('PHOTO', $this->photo->getType());
+ $this->assertEquals('//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31212674-1448057454995.png', $this->photo->getUrl());
+ $this->assertInstanceOf('\Carbon\Carbon', $this->photo->getTakenOn());
+ $this->assertEquals('Nov 20, 2015', $this->photo->getTakenOn()->toFormattedDateString());
+ $this->assertEquals(65285667, $this->photo->getRoomId());
+ $this->assertEquals(array('aapo'), $this->photo->getLikes());
+ }
+
+}
+
\ No newline at end of file
diff --git a/tests/Entities/ProfileTest.php b/tests/Entities/ProfileTest.php
new file mode 100644
index 0000000..0fd90c8
--- /dev/null
+++ b/tests/Entities/ProfileTest.php
@@ -0,0 +1,77 @@
+profile = new Profile();
+
+ // Create and add Habbo
+ $habbo = new Habbo();
+ $habbo->parse(self::$data['user']);
+ $this->profile->setHabbo($habbo);
+
+ // Create and add all Badge
+ foreach (self::$data['badges'] as $badge_data) {
+ $badge = new Badge();
+ $badge->parse($badge_data);
+ $this->profile->addBadge($badge);
+ }
+
+ // Create and add all Groups
+ foreach (self::$data['groups'] as $group_data) {
+ $group = new Group();
+ $group->parse($group_data);
+ $this->profile->addGroup($group);
+ }
+
+ // Create and add all Friends
+ foreach (self::$data['friends'] as $friend_data) {
+ $friend = new Habbo();
+ $friend->parse($friend_data);
+ $this->profile->addFriend($friend);
+ }
+
+ // Create and add all Rooms
+ foreach (self::$data['rooms'] as $room_data) {
+ $room = new Room();
+ $room->parse($room_data);
+ $this->profile->addRoom($room);
+ }
+ }
+
+ public function testEntityType()
+ {
+ $this->assertInstanceOf('HabboAPI\Entities\Profile', $this->profile);
+ }
+
+ public function testCounts()
+ {
+ $counts = $this->profile->getCounts();
+
+ $this->assertEquals(1, $counts['habbo'], "Habbo count should be 1");
+ $this->assertEquals(203, $counts['badges'], "Badges count should be 203");
+ $this->assertEquals(9, $counts['groups'], "Groups count should be 9");
+ $this->assertEquals(147, $counts['friends'], "Friends count should be 147");
+ $this->assertEquals(5, $counts['rooms'], "Rooms count should be 5");
+ }
+
+}
diff --git a/tests/Entities/RoomTest.php b/tests/Entities/RoomTest.php
index 8fbdf70..f458520 100644
--- a/tests/Entities/RoomTest.php
+++ b/tests/Entities/RoomTest.php
@@ -58,7 +58,8 @@ public function testGetCategories()
public function testGetCreationTime()
{
- $this->assertEquals('2010-06-10T09:02:16.000+0000', $this->entity->getCreationTime());
+ $this->assertInstanceOf('\Carbon\Carbon', $this->entity->getCreationTime());
+ $this->assertEquals('Jun 10, 2010', $this->entity->getCreationTime()->toFormattedDateString());
}
public function testGetMaximumVisitors()
@@ -66,9 +67,9 @@ public function testGetMaximumVisitors()
$this->assertEquals(25, $this->entity->getMaximumVisitors());
}
- public function testGetOfficialRoom()
+ public function testGetShowOwnerName()
{
- $this->assertEquals(true, $this->entity->getOfficialRoom());
+ $this->assertEquals(true, $this->entity->getShowOwnerName());
}
public function testGetOwnerName()
diff --git a/tests/HabboParserTest.php b/tests/HabboParserTest.php
index d72188d..1818df6 100644
--- a/tests/HabboParserTest.php
+++ b/tests/HabboParserTest.php
@@ -1,12 +1,15 @@
habboParserMock->expects($this->once())->method('_callUrl')->will($this->returnValue(self::$habbo));
+ $this->habboParserMock->expects($this->once())->method('_callUrl')->will($this->returnValue(array(self::$habbo)));
/** @var Habbo $habboObject */
$habboObject = $this->habboParserMock->parseHabbo('koeientemmer');
@@ -47,26 +52,24 @@ public function testParseHabboWithId()
$this->habboParserMock->parseHabbo('hhus-9cd61b156972c2eb33a145d69918f965', 'hhid');
}
- /**
- * @expectedException InvalidArgumentException
- */
- public function testParseHabboWithInvalidType()
- {
- $this->habboParserMock->parseHabbo('hhus-9cd61b156972c2eb33a145d69918f965', 'invalid');
- }
-
public function testParseProfile()
{
// Replace parseProfile with static data
- $this->habboParserMock->expects($this->once())->method('_callUrl')->will($this->returnValue(self::$profile));
+ $this->habboParserMock->expects($this->once())->method('_callUrl')->will($this->returnValue(array(self::$profile)));
+ /** @var Profile $profile */
$profile = $this->habboParserMock->parseProfile('hhus-9cd61b156972c2eb33a145d69918f965');
- $this->assertInstanceOf('HabboAPI\Entities\Habbo', $profile['habbo']);
- $this->assertInstanceOf('HabboAPI\Entities\Habbo', $profile['friends'][0]);
- $this->assertInstanceOf('HabboAPI\Entities\Group', $profile['groups'][0]);
- $this->assertInstanceOf('HabboAPI\Entities\Room', $profile['rooms'][0]);
- $this->assertInstanceOf('HabboAPI\Entities\Badge', $profile['badges'][0]);
+ $friends = $profile->getFriends();
+ $groups = $profile->getGroups();
+ $rooms = $profile->getRooms();
+ $badges = $profile->getBadges();
+ $this->assertInstanceOf('HabboAPI\Entities\Profile', $profile);
+ $this->assertInstanceOf('HabboAPI\Entities\Habbo', $profile->getHabbo());
+ $this->assertInstanceOf('HabboAPI\Entities\Habbo', $friends[0]);
+ $this->assertInstanceOf('HabboAPI\Entities\Group', $groups[0]);
+ $this->assertInstanceOf('HabboAPI\Entities\Room', $rooms[0]);
+ $this->assertInstanceOf('HabboAPI\Entities\Badge', $badges[0]);
}
/**
@@ -79,4 +82,29 @@ public function testErrorHabbo()
$this->habboParserMock->parseHabbo('someHabboNameThatDoesNotExist');
}
+
+ public function testParseHabboPhotos()
+ {
+ // Replace Habbo Parser mock with static data
+ $this->habboParserMock->expects($this->once())->method('_callUrl')->will($this->returnValue(array(self::$photos)));
+
+ $photos = $this->habboParserMock->parsePhotos('hhus-9cd61b156972c2eb33a145d69918f965');
+
+ $this->assertEquals(2, count($photos), "Should contain 2 photos");
+ $this->assertInstanceOf('HabboAPI\Entities\Photo', $photos[0]);
+ $this->assertInstanceOf('HabboAPI\Entities\Photo', $photos[1]);
+ }
+
+ public function testParsePublicPhotos()
+ {
+ // Replace Habbo Parser mock with static data
+ $this->habboParserMock->expects($this->once())->method('_callUrl')->will($this->returnValue(array(self::$public_photos)));
+
+ $photos = $this->habboParserMock->parsePhotos();
+
+ $this->assertEquals(200, count($photos), "Should contain 200 photos");
+ foreach ($photos as $photo) {
+ $this->assertInstanceOf('HabboAPI\Entities\Photo', $photo);
+ }
+ }
}
diff --git a/tests/data/com_koeientemmer_gethabbo.json b/tests/data/com_koeientemmer_gethabbo.json
index 25246c6..de4b379 100644
--- a/tests/data/com_koeientemmer_gethabbo.json
+++ b/tests/data/com_koeientemmer_gethabbo.json
@@ -2,32 +2,38 @@
"uniqueId": "hhus-9cd61b156972c2eb33a145d69918f965",
"name": "koeientemmer",
"figureString": "hr-155-42.hd-195-1.ch-255-76.lg-285-81.sh-290-1408.ha-3430",
- "selectedBadges": [{
- "badgeIndex": 1,
- "code": "YODUK",
- "name": "Master Yoduck",
- "description": "Use the nondescript motion imparting field!"
- }, {
- "badgeIndex": 2,
- "code": "UK183",
- "name": "The Sims - Katy Perry Sweet Treats",
- "description": "I beat the The Sims Katy Perry Sweet Treats Quiz!"
- }, {
- "badgeIndex": 3,
- "code": "Z63_HHUK",
- "name": "Valued BETA tester",
- "description": "Helped shape the new Habbo June 2009"
- }, {
- "badgeIndex": 4,
- "code": "Z64_HHUK",
- "name": "Official BETA tester",
- "description": "Helped shape the new Habbo June 2009"
- }, {
- "badgeIndex": 5,
- "code": "UK119",
- "name": "Master Shifu's Badge of Honour",
- "description": "Kung Fu Panda 2 visited Habbo December 2010"
- }],
+ "selectedBadges": [
+ {
+ "badgeIndex": 1,
+ "code": "YODUK",
+ "name": "Master Yoduck",
+ "description": "Use the nondescript motion imparting field!"
+ },
+ {
+ "badgeIndex": 2,
+ "code": "UK183",
+ "name": "The Sims - Katy Perry Sweet Treats",
+ "description": "I beat the The Sims Katy Perry Sweet Treats Quiz!"
+ },
+ {
+ "badgeIndex": 3,
+ "code": "Z63_HHUK",
+ "name": "Valued BETA tester",
+ "description": "Helped shape the new Habbo June 2009"
+ },
+ {
+ "badgeIndex": 4,
+ "code": "Z64_HHUK",
+ "name": "Official BETA tester",
+ "description": "Helped shape the new Habbo June 2009"
+ },
+ {
+ "badgeIndex": 5,
+ "code": "UK119",
+ "name": "Master Shifu's Badge of Honour",
+ "description": "Kung Fu Panda 2 visited Habbo December 2010"
+ }
+ ],
"motto": "Oldskooler than Dionysus!",
"memberSince": "2001-10-06T12:21:53.000+0000",
"profileVisible": true,
diff --git a/tests/data/com_koeientemmer_getphotos.json b/tests/data/com_koeientemmer_getphotos.json
new file mode 100644
index 0000000..eb1a2fc
--- /dev/null
+++ b/tests/data/com_koeientemmer_getphotos.json
@@ -0,0 +1,30 @@
+[
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31212674-1448057454995.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-9cd61b156972c2eb33a145d69918f965",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31212674-1448057454995.png",
+ "version": 1,
+ "time": 1448057455732,
+ "creator_name": "koeientemmer",
+ "creator_id": 31212674,
+ "room_id": 65285667,
+ "id": "171ed8e4-6424-4c10-8ef1-bdddde2b4343",
+ "likes": ["aapo"]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31212674-1448057083152.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-9cd61b156972c2eb33a145d69918f965",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31212674-1448057083152.png",
+ "version": 1,
+ "time": 1448057083969,
+ "creator_name": "koeientemmer",
+ "creator_id": 31212674,
+ "room_id": 31146034,
+ "id": "a0fbe989-81fb-417f-8bdc-4e9bf877d173",
+ "likes": []
+ }
+]
\ No newline at end of file
diff --git a/tests/data/com_koeientemmer_getprofile.json b/tests/data/com_koeientemmer_getprofile.json
index 212a253..bf79136 100644
--- a/tests/data/com_koeientemmer_getprofile.json
+++ b/tests/data/com_koeientemmer_getprofile.json
@@ -3,1735 +3,2135 @@
"uniqueId": "hhus-9cd61b156972c2eb33a145d69918f965",
"name": "koeientemmer",
"figureString": "hr-155-42.hd-195-1.ch-255-76.lg-285-81.sh-290-1408.ha-3430",
- "selectedBadges": [{
- "badgeIndex": 1,
+ "selectedBadges": [
+ {
+ "badgeIndex": 1,
+ "code": "YODUK",
+ "name": "Master Yoduck",
+ "description": "Use the nondescript motion imparting field!"
+ },
+ {
+ "badgeIndex": 2,
+ "code": "UK183",
+ "name": "The Sims - Katy Perry Sweet Treats",
+ "description": "I beat the The Sims Katy Perry Sweet Treats Quiz!"
+ },
+ {
+ "badgeIndex": 3,
+ "code": "Z63_HHUK",
+ "name": "Valued BETA tester",
+ "description": "Helped shape the new Habbo June 2009"
+ },
+ {
+ "badgeIndex": 4,
+ "code": "Z64_HHUK",
+ "name": "Official BETA tester",
+ "description": "Helped shape the new Habbo June 2009"
+ },
+ {
+ "badgeIndex": 5,
+ "code": "UK119",
+ "name": "Master Shifu's Badge of Honour",
+ "description": "Kung Fu Panda 2 visited Habbo December 2010"
+ }
+ ],
+ "motto": "Oldskooler than Dionysus!",
+ "memberSince": "2001-10-06T12:21:53.000+0000",
+ "profileVisible": true,
+ "lastWebAccess": null
+ },
+ "friends": [
+ {
+ "name": "!!!toon!!!",
+ "motto": "Puhekupla.com",
+ "uniqueId": "hhus-eafa7f30310f817172231ac9ba3a3baa",
+ "figureString": "hr-155-48.hd-180-1.ch-215-1408.lg-3023-64.sh-3068-1408-85.wa-2001.cp-3286"
+ },
+ {
+ "name": "!zenda!",
+ "motto": "Believe & Live for today",
+ "uniqueId": "hhus-27d71e540e314d49ffe9eabb45e747db",
+ "figureString": "hd-180-14.ch-210-1408.lg-275-1408.sh-905-1408"
+ },
+ {
+ "name": "-!!",
+ "motto": "boom yo !!|!!1°",
+ "uniqueId": "hhus-bc8ee1d4d095c7fa4dab7a13f2422fe3",
+ "figureString": "hr-837-31.hd-600-30.ch-669-88.lg-705-88.sh-730-81.cp-3125-81"
+ },
+ {
+ "name": "-doornroosje.",
+ "motto": "Neuk gezond, neuk een appel",
+ "uniqueId": "hhus-80ff60f828511ca0090031f039b4cc84",
+ "figureString": "hr-890-37.hd-600-7.ch-691-77.lg-720-62.sh-725-78.he-1610.fa-1212"
+ },
+ {
+ "name": "-Larsboy-",
+ "motto": "Go Holland! Go Holland!",
+ "uniqueId": "hhus-b7e894971d6e62e5e72abef3c1267e31",
+ "figureString": "hr-155-37.hd-180-2.ch-3110-69-62.lg-3116-62-69.sh-305-62.he-1609-73.ea-1406.ca-1815-69"
+ },
+ {
+ "name": ".:Gijs:.",
+ "motto": "Scania R730 16 Liter V8 3500Nm.",
+ "uniqueId": "hhus-5f2f6c9ab3c57b1d9c406b2b5c218c1c",
+ "figureString": "hr-155-31.hd-185-14.ch-210-1408.lg-285-1408.sh-290-1408"
+ },
+ {
+ "name": ".barbiee",
+ "motto": "Ha.",
+ "uniqueId": "hhus-79b27430273906d65f1945853c3088de",
+ "figureString": "hr-515-34.hd-600-2.ch-665-77.lg-710-63.ha-1006"
+ },
+ {
+ "name": "123debby",
+ "motto": "That's me!",
+ "uniqueId": "hhus-63952c36a4eea4f220e0e4a92b81a288",
+ "figureString": "hr-545-45.hd-600-8.ch-660-73.lg-720-1408.sh-730-1408.he-1609-73"
+ },
+ {
+ "name": "=Atlantis=",
+ "motto": "Update your own motto...",
+ "uniqueId": "hhus-226106ab4c9559eca78b42a245dd54c9",
+ "figureString": "hr-891-45.hd-185-4.ch-3030-82.lg-285-89.sh-290-62"
+ },
+ {
+ "name": "Administratie",
+ "motto": "Ftw..",
+ "uniqueId": "hhus-4e644be4a2bdab314e969c0285dee676",
+ "figureString": "hr-831-32.hd-180-3.ch-3050-107-62.lg-3201-110-62.sh-3206-104.ca-3219-1323"
+ },
+ {
+ "name": "aleah1362",
+ "motto": "Pretty Hurts|",
+ "uniqueId": "hhus-92c6580345114a426008a365031ddcbb",
+ "figureString": "hr-836-32.hd-605-7.ch-3014-96.lg-3202-1339-1408.sh-3154-92-96.fa-1202-92.ca-3292-100.cc-3289-78"
+ },
+ {
+ "name": "Angelcostarica",
+ "motto": "Habbo.es -> WELCH",
+ "uniqueId": "hhus-34d9d3acc31cfbb7bcbfbf7496ab2ed7",
+ "figureString": "hr-155-35.hd-208-1.ch-877-88-64.lg-270-91.sh-305-90.ca-1805-64.wa-2001"
+ },
+ {
+ "name": "antonio119",
+ "motto": "[NLC] Owner",
+ "uniqueId": "hhus-f170d4a99836911bfcfd9a78c7c5bb04",
+ "figureString": "hd-209-14.ch-210-1408.lg-270-1408"
+ },
+ {
+ "name": "arcboosteur",
+ "motto": "Das Ruhenheim º",
+ "uniqueId": "hhus-bdccdb543d489eddac7c628234e89fed",
+ "figureString": "hr-802-42.hd-180-1.ch-805-1408.lg-285-68.sh-295-1408.ha-1014.he-1610.fa-1201"
+ },
+ {
+ "name": "ArmedSingapore",
+ "motto": "(USMC) SSgt/FLO/DI [B10] {&Y^HQAOJ}",
+ "uniqueId": "hhus-97e2b47b0d6b5663f94ceb5962d3f1dd",
+ "figureString": "hd-180-1.ch-220-89.lg-285-88.fa-1201.wa-2009-89"
+ },
+ {
+ "name": "Bart..",
+ "motto": "Shoot some heroin & fuck with the star",
+ "uniqueId": "hhus-fc2e0849ff9aa394a1187fbb7d5fb4af",
+ "figureString": "hr-115-1136.hd-190-1026.ch-215-1286.lg-275-1184.sh-305-1286"
+ },
+ {
+ "name": "BauenII",
+ "motto": "Habfan.nl - Owner",
+ "uniqueId": "hhus-070ead683f395ce57d80b29531f43b8d",
+ "figureString": "hr-125-45.hd-180-2.ch-3030-73.lg-285-82.sh-290-62"
+ },
+ {
+ "name": "BellaBoo374",
+ "motto": "",
+ "uniqueId": "hhus-1229d7a8a39fa5ca810279e138b37da1",
+ "figureString": "hr-891-45.hd-605-1.ch-685-76.lg-700-62.sh-730-77.ha-1005-62.wa-2001"
+ },
+ {
+ "name": "Bflorens",
+ "motto": "the way i like it.",
+ "uniqueId": "hhus-1a3b858859b9a11931c10f90e5e97a8c",
+ "figureString": "ha-1017-.lg-270-64.sh-290-62.hr-170-45.hd-180-3.ch-215-83.ea-1401-62"
+ },
+ {
+ "name": "Biermonster",
+ "motto": "Wtf.",
+ "uniqueId": "hhus-21236c92ec4bb4f4ce967a2274eb6115",
+ "figureString": "hr-170-42.hd-200-2.ch-875-62-62.lg-270-62.ea-1401-80.fa-1208-73"
+ },
+ {
+ "name": "BIGxMAC",
+ "motto": "",
+ "uniqueId": "hhus-6c74a4d60c5ecdbf64f1e4108fc22a8f",
+ "figureString": "hr-155-33.hd-195-2.ch-235-82.lg-285-63.sh-290-62.ca-1801-65"
+ },
+ {
+ "name": "brendan1357",
+ "motto": "Been there done that..",
+ "uniqueId": "hhus-be83b59c866a0fefe4b04aeddebc97cd",
+ "figureString": "hd-180-14.ch-210-1408.lg-3078-1408.sh-295-1408.fa-1201"
+ },
+ {
+ "name": "Bubblejuice.nl",
+ "motto": "Owner bubblejuice.nl :D",
+ "uniqueId": "hhus-52fb7c35897e9755f8b10fdcfd73c490",
+ "figureString": "hr-155-42.hd-185-14.ch-255-1408.lg-275-1408.sh-295-1408"
+ },
+ {
+ "name": "Bunny_Purple",
+ "motto": "",
+ "uniqueId": "hhus-87d06ddef31c26db2556cd227b9925b9",
+ "figureString": "hr-893-31.hd-185-28.ch-215-62.lg-280-75.ha-1008"
+ },
+ {
+ "name": "Cachiporros",
+ "motto": "",
+ "uniqueId": "hhus-d7876f0fa6295c7464ae2503ba9c4b36",
+ "figureString": "hr-155-37.hd-180-3.ch-3030-80.lg-275-64"
+ },
+ {
+ "name": "Cavke",
+ "motto": "",
+ "uniqueId": "hhus-17935fb20f32923a84c962b5ad168965",
+ "figureString": "hd-600-1.ch-630-89.lg-715-77.sh-730-91.hr-890-45.ca-1803-87.ea-1401-69"
+ },
+ {
+ "name": "Chaz",
+ "motto": "l33t",
+ "uniqueId": "hhus-40c1da323117b8c5b5f90953b0ea22fc",
+ "figureString": "hr-828-34.hd-180-22.ch-3167.lg-275-63.sh-290-84.he-1603-72.cc-3007-81-81"
+ },
+ {
+ "name": "choi",
+ "motto": "absolutely fine",
+ "uniqueId": "hhus-d445b031c32abe98c9856b72533d4d46",
+ "figureString": "hr-3278-49-40.hd-3091-13.ch-3077-100-1408.lg-270-92.sh-3027-1335-110.cc-3186-1336"
+ },
+ {
+ "name": "Clemster.",
+ "motto": "Pinguin?",
+ "uniqueId": "hhus-619f390e32b3e6b53d3bc31f59c0f34d",
+ "figureString": "hr-165-45.hd-180-1.ch-3030-83.lg-285-64.sh-290-1408.fa-3147-1408"
+ },
+ {
+ "name": "Codified",
+ "motto": "Teves",
+ "uniqueId": "hhus-22b7cef12be09ea22f1a095057b4b1e0",
+ "figureString": "hd-180-30.ch-3030-1408.lg-270-64.sh-305-64.ea-1406"
+ },
+ {
+ "name": "Cooldied",
+ "motto": "Don't touch the red button...",
+ "uniqueId": "hhus-4a1e16c89a4b5491c9233d74d43ad640",
+ "figureString": "hr-125-38.hd-190-8.ch-267-1408.lg-3116-72-1408.sh-295-76.fa-1201.ca-1802.wa-2001"
+ },
+ {
+ "name": "CoolShankar1",
+ "motto": " Cadet",
+ "uniqueId": "hhus-d9806928ec711fc10b82cc61ba452a12",
+ "figureString": "hd-180-1.ch-220-62.lg-285-64.sh-300-64.ca-1804-64.wa-2001"
+ },
+ {
+ "name": "D0SIER",
+ "motto": "",
+ "uniqueId": "hhus-ed7606b49e51acd037b382ee05faec56",
+ "figureString": "hr-893-46.ha-1023-67.hd-180-16.lg-280-73.wa-2004-87.ea-1406-.sh-908-79.ca-1803-65.ch-240-83"
+ },
+ {
+ "name": "Dancingfish",
+ "motto": "-,_\"",
+ "uniqueId": "hhus-a004ddd8b21a9065e832669db5a22c72",
+ "figureString": "hr-125-40.hd-209-30.ch-3030-80.lg-275-64.sh-305-76.fa-1202-91.ca-1813"
+ },
+ {
+ "name": "djcesar",
+ "motto": "Be yourself.",
+ "uniqueId": "hhus-5b95ba4568cef7e67fb6b01907d16807",
+ "figureString": "hr-893-36.hd-180-1.ch-877-1408-1408.lg-285-1408.sh-906-1408.ea-1401-1408"
+ },
+ {
+ "name": "DjMaxi",
+ "motto": "Be careful with bad people!",
+ "uniqueId": "hhus-9e3fae940bd058f06d88575d747c2bf7",
+ "figureString": "hr-155-42.hd-180-1.ch-255-64.lg-275-82.ha-3404-64-82.ea-1406"
+ },
+ {
+ "name": "Djridk",
+ "motto": "From The Netherlands",
+ "uniqueId": "hhus-cc6df5f8fdbfbe0bbfe431fcb1d7c2e7",
+ "figureString": "hr-165-45.hd-209-2.ch-235-73.lg-275-62.sh-295-62"
+ },
+ {
+ "name": "DoYouLiftBro",
+ "motto": "",
+ "uniqueId": "hhus-ba0da0b6c7ce4a2ccd749fc8c0342d80",
+ "figureString": "hr-828-1407.hd-190-7.ch-3208-110-1408.lg-3057-100.fa-1201"
+ },
+ {
+ "name": "Dragon-nccb",
+ "motto": "advent? already?!!!",
+ "uniqueId": "hhus-d655846432ccf14dd1efd8ddea92b48a",
+ "figureString": "hr-3012-34.hd-600-2.ch-3245-96.lg-3202-96-1408.sh-3252-110-92.ha-1006.he-3149-92.cc-3246-96"
+ },
+ {
+ "name": "DumbGenius1999",
+ "motto": "RICH AF",
+ "uniqueId": "hhus-43ea4c54070dcf2582f13bec5bda30b8",
+ "figureString": "hr-155-39.hd-208-8.ch-255-80.lg-275-64.ha-3117-81.he-1609-66"
+ },
+ {
+ "name": "E-B-2",
+ "motto": "from the netherlands",
+ "uniqueId": "hhus-819d9baee06217024ae3805e7f6f9a71",
+ "figureString": "hr-170-39.hd-180-8.ch-878-64-70.lg-3116-67-67.sh-295-67"
+ },
+ {
+ "name": "ED.DY",
+ "motto": " -=- Made in Russia -=-",
+ "uniqueId": "hhus-3d1bb2951a77594af0d9da8942337929",
+ "figureString": "hr-165-61.hd-3091-8.ch-3215-110.lg-285-64.sh-3115-63-62"
+ },
+ {
+ "name": "elliewalker1",
+ "motto": "",
+ "uniqueId": "hhus-2a339135f201a46dc86d0521abae92fd",
+ "figureString": "hr-545-32.hd-600-1.ch-645-68.lg-695-68.he-3274-74"
+ },
+ {
+ "name": "Emmerrrrrrr",
+ "motto": "habborator.org",
+ "uniqueId": "hhus-391d98cd253aea3843c3d485c98c48ab",
+ "figureString": "hr-500-31.hd-600-1.ch-685-87.lg-715-62.sh-730-62.ha-1005-87"
+ },
+ {
+ "name": "EmoCaptain09",
+ "motto": "[PNP] Police Officer III [gav] [1k]",
+ "uniqueId": "hhus-6a7611d888c8cd54ca53fee354cc919d",
+ "figureString": "hr-3090-39.hd-209-8.ch-3030-1408.lg-3078-73.sh-300-1408.ha-3117-1408.ca-1807"
+ },
+ {
+ "name": "Esuoh.it",
+ "motto": "Auguri Italia! 150 anni portati bene!",
+ "uniqueId": "hhus-5382bcf41bb454592f79205386daf6af",
+ "figureString": "hr-545-45.hd-600-3.ch-665-81.lg-700-81.sh-725-62"
+ },
+ {
+ "name": "FamousSeaShell",
+ "motto": "Music Inspires Me.",
+ "uniqueId": "hhus-0a074813ffa93da2ee9cccbefd60232f",
+ "figureString": "hd-180-7.ch-210-62.lg-270-62"
+ },
+ {
+ "name": "Farnedy",
+ "motto": "Helper! farned - ESHABBO",
+ "uniqueId": "hhus-e6c110ece60f39d42ff8408abe881468",
+ "figureString": "hr-110-42.hd-207-1370.ch-220-1408.lg-275-1408.sh-305-64.fa-1201.ca-1810"
+ },
+ {
+ "name": "FernandoLOOL",
+ "motto": "Eltemplodelamusica.com - Argentina",
+ "uniqueId": "hhus-a351a371839acc6cdc37c5f1741bed99",
+ "figureString": "hr-830-40.hd-190-10.ch-3030-82.lg-3023-72.fa-3147-72.cp-3286"
+ },
+ {
+ "name": "Fibonacci",
+ "motto": "Touch too much.",
+ "uniqueId": "hhus-a2c2fb5232d8d27a1fc3ae09273be40e",
+ "figureString": "hr-125-60.hd-3103-2.ch-255-1322.lg-280-110.sh-3016-110.ha-1012-1322.he-3071-92.ea-3170-1323.fa-1205-110.ca-1816"
+ },
+ {
+ "name": "fred655",
+ "motto": "Updating motto ...",
+ "uniqueId": "hhus-d57c13e210de309f72c6dba1406f8202",
+ "figureString": "hr-165-39.hd-180-8.ch-878-76-84.lg-3078-81.sh-300-64.ea-1403-75"
+ },
+ {
+ "name": "FredBeav",
+ "motto": "[Alliumphobia] silly sufferers",
+ "uniqueId": "hhus-1c451fde0e4e4fe107be25fc52e42f77",
+ "figureString": "hr-530-31.hd-605-24.ch-884-71.lg-715-71.sh-907-71.fa-1206-84.ca-1806-68"
+ },
+ {
+ "name": "GamerdmoneyV2",
+ "motto": "[EPF] TM [S]",
+ "uniqueId": "hhus-71fe48bb300301b427fcc388b93d83f2",
+ "figureString": "hr-828-31.hd-190-2.ch-255-96.lg-3058-64.sh-3089-63"
+ },
+ {
+ "name": "GerardYoBling",
+ "motto": "Gerard-Yo-Bling from Habbo.nl",
+ "uniqueId": "hhus-e47331a6339360f2c7e574e5f63ed658",
+ "figureString": "hr-115-42.hd-180-1.ch-808-1408.lg-270-64.sh-290-1408.cc-3280-1320-1408"
+ },
+ {
+ "name": "Gerben",
+ "motto": "Habbies.nl",
+ "uniqueId": "hhus-158f03f719d36c698d853712a4910d60",
+ "figureString": "hr-155-42.hd-195-1.ch-255-76.lg-285-90.sh-290-1408"
+ },
+ {
+ "name": "getsumdude",
+ "motto": "Add getsum200",
+ "uniqueId": "hhus-66c9633bd3861bd724a8c766b5efada4",
+ "figureString": "hr-155-42.hd-180-1.ch-255-64.lg-280-79.sh-3115-62-62.fa-1201"
+ },
+ {
+ "name": "Ginnegapper",
+ "motto": "Hoi",
+ "uniqueId": "hhus-66a122dd036139a5882fa692acdbfa4b",
+ "figureString": "hd-180-3.ch-215-79.lg-285-77.sh-290-62.ha-1002-62.hr-893-45"
+ },
+ {
+ "name": "Grassprietje",
+ "motto": "",
+ "uniqueId": "hhus-656ecd6285b0486873c582d2f10e03cc",
+ "figureString": "hd-629-1.ch-675-72.lg-720-74.sh-725-1408.ha-1015.wa-2001"
+ },
+ {
+ "name": "Guarante",
+ "motto": "Journalist - Puhekupla",
+ "uniqueId": "hhus-71196d74bd192c206499cae1a097ed25",
+ "figureString": "hr-515-34.hd-628-10.ch-660-71.lg-700-1408.he-1609-73.fa-1202-88"
+ },
+ {
+ "name": "H24",
+ "motto": " Josh. 16 Agein.",
+ "uniqueId": "hhus-b93a8c28ec7bcce552bc8491fa7c139a",
+ "figureString": "hr-115-45.hd-190-10.ch-210-63.lg-281-82.sh-290-91"
+ },
+ {
+ "name": "hassan625",
+ "motto": "Thinking",
+ "uniqueId": "hhus-3bdfb2538b52aaa977f3994ca85ce17c",
+ "figureString": "hr-831-61.hd-209-1.ch-3234-108.lg-3023-1336.sh-3016-107.ha-3209-62.ea-3107-62-62.fa-1201.ca-3085-1321.cc-3158-1336"
+ },
+ {
+ "name": "heet",
+ "motto": "",
+ "uniqueId": "hhus-0fc68249e88350536000f85ff2b16f8e",
+ "figureString": "hr-155-31.hd-209-1.ch-210-1408.lg-275-1408.sh-290-1408.ha-1006.fa-3276-72.wa-3211-1408-1408"
+ },
+ {
+ "name": "Hotgerrit-jan12",
+ "motto": "",
+ "uniqueId": "hhus-f8e731503ebaae7394af6ba5277f461e",
+ "figureString": "hr-115-33.hd-180-7.ch-235-62.lg-270-64.sh-3115-63-62.ea-1404-62.wa-2009-62.cc-260-62"
+ },
+ {
+ "name": "Htech",
+ "motto": "",
+ "uniqueId": "hhus-bebf1708a6b7092b6c0cbb2c060c2d6c",
+ "figureString": "hr-893-45.hd-180-2.ch-3030-62.lg-285-82.ea-1404-62"
+ },
+ {
+ "name": "Ibex..",
+ "motto": "",
+ "uniqueId": "hhus-14aae131e4fe4292066c768c877d4efc",
+ "figureString": "hr-893-42.hd-180-4.ch-210-62.lg-285-82"
+ },
+ {
+ "name": "Jack_the-Black",
+ "motto": "[Sony] Receptionist II [TED]",
+ "uniqueId": "hhus-228405fca0afce83206abf3eafc6992a",
+ "figureString": "hr-165-42.hd-180-2.ch-220-83.lg-280-83.sh-300-62.fa-1201.ca-1819"
+ },
+ {
+ "name": "jatt.side",
+ "motto": "Unacceptable to hotel management",
+ "uniqueId": "hhus-72aef545b69add9071b0ddf392e83ad5",
+ "figureString": "hr-115-45.hd-180-3.ch-3111-73-73.lg-3116-73-73.sh-3115-73-73.ha-1003-62.fa-1201"
+ },
+ {
+ "name": "Jeaster",
+ "motto": "[NOPD] F.A.A [MtrH]",
+ "uniqueId": "hhus-6a82bc6c4910cf639abc9e7798e1980e",
+ "figureString": "hr-3163-33.hd-3091-2.ch-3077-96-64.lg-3058-110.sh-3089-110.ca-3085-1321.wa-2009-110.cc-3009-110-110"
+ },
+ {
+ "name": "jeffhardyv3",
+ "motto": "Do what ever the BOBBA you wanna do!",
+ "uniqueId": "hhus-bbaa52b2b8ee32ad9d5bf6fb1b02bfbb",
+ "figureString": "hr-155-45.hd-180-8.ch-3321-85.lg-280-73.sh-290-1320.ha-1006.fa-3344-90"
+ },
+ {
+ "name": "JESDINERO",
+ "motto": "I'm from CATALONIA.™",
+ "uniqueId": "hhus-25013404d4c38e39051e948dfb32e11c",
+ "figureString": "hr-110-45.hd-180-1.ch-235-76.lg-3116-71-64.sh-905-1408.he-1606-1408.fa-1204.ca-1806-85.wa-3211-1408-1408"
+ },
+ {
+ "name": "JockTraper",
+ "motto": " Field Agent ll ",
+ "uniqueId": "hhus-9fdf8e8590c50d061d5de01c94694376",
+ "figureString": "hr-155-39.hd-195-1.ch-210-62.lg-280-64.ea-1403-62.cc-260-62"
+ },
+ {
+ "name": "joe.666666",
+ "motto": "yolo",
+ "uniqueId": "hhus-0b9f3f22a70897c4dc821c901c756ddd",
+ "figureString": "hr-155-42.hd-209-1.ch-878-64-1408.lg-285-64.sh-300-64.ea-1404-64.cc-260-73"
+ },
+ {
+ "name": "jorentje1997",
+ "motto": "",
+ "uniqueId": "hhus-01f3094eeca786f4b7acea1e5a8fd47a",
+ "figureString": "hr-893-31.hd-209-3.ch-877-70-79.lg-270-82"
+ },
+ {
+ "name": "Jorg3.",
+ "motto": "Owner HabboSecurity.es - Jorge. [.ES]",
+ "uniqueId": "hhus-dcffcf12dbfb8622d94cc79dd940c925",
+ "figureString": "hr-676-31.hd-180-1.ch-804-82.lg-3088-1408-1408.sh-3068-82-82.ha-1013-82.fa-1201"
+ },
+ {
+ "name": "justin39634",
+ "motto": "",
+ "uniqueId": "hhus-7f86a374057c471527c48de4b813c06b",
+ "figureString": "hr-802-45.hd-185-1.ch-809-1408.lg-3088-73-1408.sh-3068-64-64"
+ },
+ {
+ "name": "kartrider",
+ "motto": "iel",
+ "uniqueId": "hhus-7981741f86ea62cecc95d1f69cb82673",
+ "figureString": "hr-155-39.hd-180-1.ch-804-82.lg-3023-64.sh-3068-91-1408.wa-2007"
+ },
+ {
+ "name": "kielokukka$",
+ "motto": ":)",
+ "uniqueId": "hhus-7fe9aa627eab9a29ca07f094a1963ac7",
+ "figureString": "hr-9534-37.hd-3096-2.ch-3060-77.lg-3019-64.sh-3035-66.ca-1804-64.cp-3124-62"
+ },
+ {
+ "name": "killcancer",
+ "motto": "",
+ "uniqueId": "hhus-5a6c92233b274837e94e5d24203d4164",
+ "figureString": "hr-837-61.hd-3097-29.ch-3014-110.lg-3019-110.ea-1402.fa-1212.ca-3217-78-64.cc-3008-63-64"
+ },
+ {
+ "name": "kingfarishaniff",
+ "motto": "Noobs, Noobs everywhere..",
+ "uniqueId": "hhus-0d69c95253312876df9cc9016a3d5d7a",
+ "figureString": "hr-3260-43.hd-180-2.ch-3001-96-85.lg-3202-110-62.sh-3016-93.ha-3117-110.cc-3007-79-78"
+ },
+ {
+ "name": "Kingtrust",
+ "motto": "",
+ "uniqueId": "hhus-8afb3dab06fed3752b8d7d5d5d381e6e",
+ "figureString": "hr-3163-52.hd-185-10.ch-3077-1329-85.lg-3017-85-73.sh-295-64.ea-3107-110-92.ca-1817.cc-3186-85"
+ },
+ {
+ "name": "laurensh1#",
+ "motto": "Habborator.org :-)",
+ "uniqueId": "hhus-64d135cb9ff923e145308670d7de5692",
+ "figureString": "hr-125-40.hd-180-14.ch-3030-64.lg-285-64.sh-295-64.ea-1404-1408.fa-1201.ca-1815-1408.cc-260-1408"
+ },
+ {
+ "name": "LeenBakker",
+ "motto": "I FART BUBBLES |",
+ "uniqueId": "hhus-3432adde5e6047ccfd513dbbe2dea816",
+ "figureString": "hr-125-42.hd-185-10.ch-215-1315.lg-3116-64-81.sh-295-62.ea-1406.fa-1204"
+ },
+ {
+ "name": "Lix",
+ "motto": "Dead!",
+ "uniqueId": "hhus-19e90938f225978783079ec81c22d4eb",
+ "figureString": "hr-515-47.hd-626-1.ch-823-82.lg-3216-64.sh-725-66.he-3274-82.wa-2002"
+ },
+ {
+ "name": "lloyd789",
+ "motto": "",
+ "uniqueId": "hhus-7b4ee0aaf6d16a7709fecaece0e01cfc",
+ "figureString": "hr-155-31.hd-190-1.ch-240-73.lg-285-82.sh-290-1408"
+ },
+ {
+ "name": "loltje",
+ "motto": "Puma234 from the Netherlands",
+ "uniqueId": "hhus-5bd8e7b8f67cc02c91cc0397770a5427",
+ "figureString": "hr-115-42.hd-180-7.ch-255-76.lg-285-83.sh-290-62"
+ },
+ {
+ "name": "Lovliest",
+ "motto": "Do You Want to Build a Snowman?",
+ "uniqueId": "hhus-c56f8e234497f1f249c4457f102fa2c6",
+ "figureString": "hr-515-45.hd-600-1.ch-660-81.lg-700-80.sh-725-81.he-3465-81-80.ca-3414-80"
+ },
+ {
+ "name": "Luxuryas",
+ "motto": "(\\(\\ \r(=*.^) Habbo.com.br |\r(_\")\")",
+ "uniqueId": "hhus-62d81b2741d31dd5c6403b393ce4a866",
+ "figureString": "hr-170-34.hd-190-19.ch-255-66.lg-3290-68.sh-908-1408.ha-3298-1408-73.he-3297-1408.ea-1404-64.fa-3276-72.ca-1819.cc-3280-1320-1408"
+ },
+ {
+ "name": "manderijntje",
+ "motto": "Guaranteed to stay fresh",
+ "uniqueId": "hhus-1d5bc19e2af575990910ef205f3468c3",
+ "figureString": "hr-830-42.hd-180-1370.ch-805-66.lg-285-1408.sh-305-1408"
+ },
+ {
+ "name": "Marco.11",
+ "motto": "Habbospot dot nl",
+ "uniqueId": "hhus-a2934971e58eefc5bfa7716e0f3ef02f",
+ "figureString": "hr-681-31.hd-195-28.ch-220-62.lg-270-83.sh-908-62.fa-1212.ca-1819"
+ },
+ {
+ "name": "Mesox",
+ "motto": "HabboFun.nl",
+ "uniqueId": "hhus-adc0590348e370ae90b0a4920e165970",
+ "figureString": "hr-165-34.hd-180-14.ch-215-1408.lg-275-73.sh-295-1408.ca-1804-73"
+ },
+ {
+ "name": "miriam34",
+ "motto": "to have fun",
+ "uniqueId": "hhus-10a920d33fb7efe87152a5732ec15409",
+ "figureString": "hr-545-31.hd-600-1.ch-635-1408.lg-700-1408.sh-730-1408"
+ },
+ {
+ "name": "Mironal",
+ "motto": "",
+ "uniqueId": "hhus-fd850a7c7bbd4b966685548502148fee",
+ "figureString": "hr-125-32.hd-190-1.ch-250-82.lg-280-64.sh-305-82.ca-1801-64"
+ },
+ {
+ "name": "Moeris",
+ "motto": "old skool... keep'n it real! •",
+ "uniqueId": "hhus-ad8d9721748a910321d2e884f3677f3e",
+ "figureString": "hd-180-1369.ch-3110-83-80.lg-3116-83-75.sh-295-81.ha-1009-81.he-1610.fa-1212.wa-2001"
+ },
+ {
+ "name": "monkred",
+ "motto": "USMC: Col, DIRINT, USCC.",
+ "uniqueId": "hhus-00e01b0a738c6fe9e082f5fc9e9cf9f3",
+ "figureString": "hd-3092-1.ch-875-1425-1321.lg-285-82.sh-300-110.ea-1403-110.fa-1201.ca-3413-93.wa-2009-1426"
+ },
+ {
+ "name": "Mumiiiefied",
+ "motto": "9",
+ "uniqueId": "hhus-e7b433fac67776dfec18ea951891f5c3",
+ "figureString": "hr-145-45.hd-190-24.ch-210-63.lg-275-64.sh-300-62.ea-1406"
+ },
+ {
+ "name": "mynameisgabriel",
+ "motto": "Winter is Coming",
+ "uniqueId": "hhus-5a24341300c9c9e69935a83a80e08d1f",
+ "figureString": "hr-155-31.hd-190-10.ch-215-84.lg-281-1408.sh-295-1408"
+ },
+ {
+ "name": "Nederland.x.",
+ "motto": "#notinmyname",
+ "uniqueId": "hhus-ac1bbd359a9e85c0230f1cc69adff77c",
+ "figureString": "hd-615-1370.ch-660-1408.lg-705-1408.ha-1010-1408.fa-1205-64"
+ },
+ {
+ "name": "NeverSkem",
+ "motto": "Waiting for TI5",
+ "uniqueId": "hhus-813aed11132ab9943f093ed96b5bc5b8",
+ "figureString": "hd-180-10.ch-230-1408.lg-270-1408.sh-290-1408.ha-1014.ea-1406.fa-1210"
+ },
+ {
+ "name": "NLHinki46",
+ "motto": "Habbo Hotel Nederland: Hinki46",
+ "uniqueId": "hhus-374c5c9f833fa0f20b1f5a1a07a0b99f",
+ "figureString": "hr-893-45.hd-180-2.ea-1404-64.lg-281-1315.sh-295-1315.ch-250-1315"
+ },
+ {
+ "name": "Optimar",
+ "motto": "[EPF] Recruit",
+ "uniqueId": "hhus-3535209ee3fabea7ec758d1fabc36114",
+ "figureString": "hr-115-42.hd-180-3.ch-225-82.lg-285-64.sh-3115-64-64.wa-2009-64"
+ },
+ {
+ "name": "Origif",
+ "motto": "Habbo.dk & ShockNews.dk",
+ "uniqueId": "hhus-9038c066ab0d4b3a3b12648998cb0d93",
+ "figureString": "hr-125-32.hd-180-1370.ch-235-73.lg-285-91"
+ },
+ {
+ "name": "Ounz",
+ "motto": "Habbies.nl",
+ "uniqueId": "hhus-16c081e4c635559e8e9eb6eb2197d33a",
+ "figureString": "hr-155-42.hd-180-1.ch-3030-90.lg-285-80.sh-290-1408.he-3329-72-1408.fa-1204"
+ },
+ {
+ "name": "paul748",
+ "motto": "",
+ "uniqueId": "hhus-3c5ddbe725acce9645b87284119ca919",
+ "figureString": "hd-180-1.ch-210-1408.lg-3116-1408-1408"
+ },
+ {
+ "name": "Paulwalla",
+ "motto": "ju",
+ "uniqueId": "hhus-bc4beeb2ad81ccbd1216c86fafa7ef2d",
+ "figureString": "hr-3090-33.hd-200-2.ch-210-62.lg-285-64.cc-260-89.cp-3126-62"
+ },
+ {
+ "name": "POKeEMIEL",
+ "motto": "pokemon",
+ "uniqueId": "hhus-aa6a3c6cdc13d8a1bf7497bc4e5f151d",
+ "figureString": "hr-890-45.hd-625-10.ch-660-82.lg-3216-64.sh-907-64.he-3274-64"
+ },
+ {
+ "name": "pquadro20",
+ "motto": "<< Italia. >>",
+ "uniqueId": "hhus-33c956f078bb0cf6416de5d4d6f8e1a6",
+ "figureString": "hd-195-10.ch-255-1408.lg-3023-1408.sh-3068-1408-1408.ha-1004-1408"
+ },
+ {
+ "name": "Qaito",
+ "motto": "aka EJS12 @ NL",
+ "uniqueId": "hhus-3892c2dee964173335b46fd5cf85fd4d",
+ "figureString": "hr-115-39.hd-180-3.ch-3030-91.lg-3116-81-81.sh-290-62"
+ },
+ {
+ "name": "Queenzachy",
+ "motto": " Security II ",
+ "uniqueId": "hhus-ceaa842968caffc45f470d6f3aec0564",
+ "figureString": "hr-155-45.hd-205-1.ch-255-85.lg-285-85.sh-290-85.ha-1002-85"
+ },
+ {
+ "name": "R0l3IN",
+ "motto": "",
+ "uniqueId": "hhus-3b228546513779c352b4a0c1778e9e12",
+ "figureString": "hr-893-45.hd-180-2.ch-210-73.lg-285-78.sh-290-62"
+ },
+ {
+ "name": "radicalhabbo",
+ "motto": "love more worry less",
+ "uniqueId": "hhus-750752a65489f5bbed7e0b09933a396d",
+ "figureString": "hr-3090-34.hd-190-1.ch-266.lg-285-82.ha-1004-1408"
+ },
+ {
+ "name": "raiderflow*",
+ "motto": "Hi , from Belgium !",
+ "uniqueId": "hhus-a49c01a6137d4a33ca0afbd161e61003",
+ "figureString": "hr-155-45.hd-180-14.ch-3030-1408.lg-285-81.sh-290-1408"
+ },
+ {
+ "name": "raydevinlr",
+ "motto": "Mmm..",
+ "uniqueId": "hhus-d97ec1afe160f080a5e176c8335bc588",
+ "figureString": "hr-155-45.hd-180-1.ch-3030-1408.lg-3320-82-82.sh-290-1408.cc-3294-64-1408"
+ },
+ {
+ "name": "riagentheco",
+ "motto": "ƒHabbo Helperƒ",
+ "uniqueId": "hhus-c2738e28ffcdff0d0fbd66b7241f0b63",
+ "figureString": "hr-890-39.hd-600-10.ch-685-72.lg-715-72.sh-907-72.ca-1810.wa-2008"
+ },
+ {
+ "name": "roan100",
+ "motto": "Dutch",
+ "uniqueId": "hhus-88cd74b74d286a57d2c9414f9f97723c",
+ "figureString": "hr-893-31.hd-180-1.ch-878-83-1408.lg-280-1408.sh-295-64.ca-1805-1408.wa-2007"
+ },
+ {
+ "name": "Rored",
+ "motto": "fku o/",
+ "uniqueId": "hhus-ced3013ca3362e75f2d34432cb49ebe1",
+ "figureString": "hr-802-31.hd-209-8.ch-210-64.lg-3078-64.sh-300-64.ha-1021-64.he-1601.wa-3074-64-1408"
+ },
+ {
+ "name": "RubSt",
+ "motto": "El nombre es Ruben.",
+ "uniqueId": "hhus-f9ebce3bd17d9310479cda316cead590",
+ "figureString": "hr-893-45.hd-180-2.ch-215-73.lg-275-64.sh-290-62.ea-1401-62"
+ },
+ {
+ "name": "Russell360&",
+ "motto": "",
+ "uniqueId": "hhus-ea7a9e203b4f2987933a031233b08d9e",
+ "figureString": "hd-200-28.ch-210-62.lg-280-64.sh-908-63.ha-1002-62.wa-2004-68.cc-260-62"
+ },
+ {
+ "name": "ryan1806",
+ "motto": "Holds: soup",
+ "uniqueId": "hhus-681aa4f24ba85f8d5f6500225e89ab46",
+ "figureString": "hr-155-42.hd-180-1.ch-245-83.lg-285-91.sh-300-77"
+ },
+ {
+ "name": "samus...",
+ "motto": "Habbo Helper 2oo3! Habbo.es !",
+ "uniqueId": "hhus-d4929ac35d3c2ebc5fc60ff247c1162d",
+ "figureString": "hr-893-42.hd-190-14.ch-262-1408.lg-285-90.sh-290-1408.fa-1201"
+ },
+ {
+ "name": "Sarenta",
+ "motto": "",
+ "uniqueId": "hhus-cf89c941e3b96d64931ea3ed6ad3e6b0",
+ "figureString": "hd-600-1.sh-730-62.hr-545-45.lg-715-62.ch-660-64"
+ },
+ {
+ "name": "Shadowguus",
+ "motto": "",
+ "uniqueId": "hhus-d3ecfec5b577a6c281bbde7934bef30e",
+ "figureString": "hr-893-39.hd-180-2.ch-215-66.lg-275-82"
+ },
+ {
+ "name": "Simon,.",
+ "motto": "{CSI} Bailiff l H-H",
+ "uniqueId": "hhus-845016f59b2bb4e43bcf2c82f005484d",
+ "figureString": "hr-110-31.hd-185-7.ch-225-71.lg-270-64.sh-300-64.cc-260-71"
+ },
+ {
+ "name": "sirerichar90",
+ "motto": ".:.tefi/ Habbo.es",
+ "uniqueId": "hhus-cf2f9b789a762be8fd87fb323608d576",
+ "figureString": "hr-170-40.hd-180-1.ch-210-73.lg-275-64.sh-295-64.ha-1009-73.fa-1205-62.ca-1817"
+ },
+ {
+ "name": "sirjonasxx",
+ "motto": " ººº HABBO - BUGS ººº",
+ "uniqueId": "hhus-67c261599ce29b25e9945afd5acb3273",
+ "figureString": "hr-893-42.hd-180-2.ch-3030-63.lg-275-64.sh-295-64.ca-1813"
+ },
+ {
+ "name": "Skittles",
+ "motto": "Al mijn vrienden strijden als mandela.",
+ "uniqueId": "hhus-4f4d6771ad51cc1c48f3480a5fbd9fca",
+ "figureString": "hr-830-48.hd-180-1.ch-210-1408.lg-3216-1320.sh-3068-91-85.ha-3173-64.cc-3294-85-66.cp-3126-64"
+ },
+ {
+ "name": "skunkboyjr",
+ "motto": "And He lived happily ever after...",
+ "uniqueId": "hhus-33084f8a08577a6ac4a66153d0ea0853",
+ "figureString": "hd-205-1.ch-255-1408.lg-280-1408.sh-906-1408"
+ },
+ {
+ "name": "slimmeke1",
+ "motto": "Ambassador on habbo.nl",
+ "uniqueId": "hhus-b19c53799ec612548dabaa96f6729698",
+ "figureString": "hd-180-2.ch-3015-96.lg-280-110.sh-3016-1325.ha-1012-96"
+ },
+ {
+ "name": "SoylentBob",
+ "motto": "been a while :)",
+ "uniqueId": "hhus-f22918c9881525f974b548c63b8847a8",
+ "figureString": "hr-3090-49.hd-209-1.ch-210-100.lg-270-62.sh-906-91.ea-1404-62"
+ },
+ {
+ "name": "spectorTheHabbo",
+ "motto": "I | My SIS.",
+ "uniqueId": "hhus-c58785c576a33e5d4480e36d217a3f3e",
+ "figureString": "hr-891-1316.hd-209-13.ch-255-82.lg-275-62.ha-1003-82.ea-1404-62"
+ },
+ {
+ "name": "speedy-100",
+ "motto": "Raawwrrrr, om nom nom nom.",
+ "uniqueId": "hhus-6bd051a02d646ca0761f45360c65c8e0",
+ "figureString": "hr-155-47.hd-180-1.ch-255-91.lg-280-64.sh-290-1408"
+ },
+ {
+ "name": "Steenpad",
+ "motto": "",
+ "uniqueId": "hhus-a3409f335b6a2a1209901ddedc2f7b54",
+ "figureString": "hr-540-32.hd-629-2.ch-660-65.lg-720-83.sh-730-75.he-1610"
+ },
+ {
+ "name": "Stitch-",
+ "motto": "Im Just Being Random (: ~ Andy ~",
+ "uniqueId": "hhus-0787b3fc769c03a92ba38bc0a301770e",
+ "figureString": "hr-125-31.hd-180-1.ch-3030-62.lg-280-70.ha-1008.ea-1406.ca-1806-70"
+ },
+ {
+ "name": "Teletext-",
+ "motto": "From the Netherlands.",
+ "uniqueId": "hhus-a9b1fd882ab488a4923a8f0da7a315fd",
+ "figureString": "hr-155-45.hd-180-3.ch-245-62.lg-285-91.sh-295-62.ca-1815-91"
+ },
+ {
+ "name": "Tenenkaas",
+ "motto": "New account: SuperArnejan",
+ "uniqueId": "hhus-b6dfda84d6565175c82e4285aa85c4a2",
+ "figureString": "hd-185-2.ch-235-1315.lg-285-64.sh-290-62.hr-115-45"
+ },
+ {
+ "name": "ThaSprout",
+ "motto": "Did you smash though?",
+ "uniqueId": "hhus-751d5bb9fd0b4d0fa5ea72830fa4d7b9",
+ "figureString": "hd-205-1.ch-220-85.lg-270-89.sh-906-91.ea-1403-62.fa-1208-64"
+ },
+ {
+ "name": "TheDogGoesMoo",
+ "motto": "Where Do 5 Gays Walk, One Direction",
+ "uniqueId": "hhus-5cc75f3de94ca2316430cc2bbce6f059",
+ "figureString": "hr-3012-61.hd-605-2.ch-660-96.lg-3057-62.he-1606-96.fa-3230-110"
+ },
+ {
+ "name": "tibouleboss",
+ "motto": "Born. - french habbo",
+ "uniqueId": "hhus-7c30a6797872ba6574ee6db6fea01edd",
+ "figureString": "hd-180-28.ch-876-72-62.lg-270-80.ha-1007"
+ },
+ {
+ "name": "UglyChild",
+ "motto": "ugly",
+ "uniqueId": "hhus-f778899c88a9b71b1ceaed36e37e795c",
+ "figureString": "hd-180-1.ch-210-1408.lg-275-82.sh-290-1408.ha-1003-1408"
+ },
+ {
+ "name": "Ushgarak",
+ "motto": "",
+ "uniqueId": "hhus-04b00a733f655188810ab012a126a70b",
+ "figureString": "hr-155-32.hd-195-1.ch-878-64-1408.lg-285-81.sh-305-1408.fa-3276-73"
+ },
+ {
+ "name": "Vineen08",
+ "motto": "#habbonoise",
+ "uniqueId": "hhus-26146642b7f284492a97338c34830e44",
+ "figureString": "hr-892-37.hd-209-1.ch-875-64-64.lg-280-64.sh-300-64.ha-1014.fa-1204"
+ },
+ {
+ "name": "Vorez",
+ "motto": "ik kanker jij kankert wij kankeren",
+ "uniqueId": "hhus-967ac9d2854745de8582276e5857a65f",
+ "figureString": "hr-155-39.hd-180-2.ch-255-89.lg-275-87"
+ },
+ {
+ "name": "Wallix",
+ "motto": "Wall-e 'nd ix",
+ "uniqueId": "hhus-edda0587bc0c4862f9dae0f2a0e19d1e",
+ "figureString": "hr-115-42.hd-180-1.ch-3030-64.lg-285-82.sh-305-62"
+ },
+ {
+ "name": "Woise",
+ "motto": "o\\_/l'\"o\"\\_==__ \\»(‡)___(‡)_»",
+ "uniqueId": "hhus-d0481b51e2f31fc5d8c59e3b660f9ad4",
+ "figureString": "hr-170-45.hd-180-8.ch-804-81.lg-280-64.ha-1004-64.fa-1201"
+ },
+ {
+ "name": "zawwathelost",
+ "motto": "",
+ "uniqueId": "hhus-901216d6b6d035dac7187030315dde98",
+ "figureString": "hr-165-45.hd-190-2.ch-3030-73.lg-280-64.sh-290-62"
+ },
+ {
+ "name": "ZhishenKhoo",
+ "motto": "[3SS] Head Lt; Khoo EQ: Glock/Blade",
+ "uniqueId": "hhus-db30f5089732de90a6ab5d95e70b41b3",
+ "figureString": "hr-3163-61.hd-209-1.ch-3030-110.lg-3078-110.sh-3016-76.ca-3175-92.wa-3263-1325-92.cc-3007-76-76"
+ },
+ {
+ "name": "zout",
+ "motto": "sprakeloos",
+ "uniqueId": "hhus-bed6452d2960078b9d9c3eb3628f0e6f",
+ "figureString": "hr-892-31.hd-625-14.ch-660-72.lg-710-72.sh-725-80.ha-1020"
+ },
+ {
+ "name": "zukur",
+ "motto": "Idiots surrounded by me!",
+ "uniqueId": "hhus-7c43173b35503f7f99a3a33fb3df43b8",
+ "figureString": "hd-600-1.ch-880-82.lg-705-82.sh-730-90.he-1610.fa-1206-64"
+ }
+ ],
+ "groups": [
+ {
+ "id": "g-hhus-1332dcd15645042afc396f726351721d",
+ "name": "Ditch the Label",
+ "description": "The official Ditch the Label anti-bullying public group. Join now and support our cause! Find out more at www.DitchtheLabel.org",
+ "type": "NORMAL",
+ "roomId": "r-hhus-a08de337a9dc601102b0139194164f78",
+ "badgeCode": "b13114s19134a55aa7427bc0a3f0c083e94232fb3475",
+ "primaryColour": "242424",
+ "secondaryColour": "ffffff",
+ "isAdmin": false
+ },
+ {
+ "id": "g-hhus-91626d8b14dc7d1d74587c5ae7fc4305",
+ "name": "HabboHelpers.com",
+ "description": "HabboHelpers.com, an official fansite for Habbo.com bringing in the new community of Habbo Helpers! Could you be the next helper? Join us now!",
+ "type": "NORMAL",
+ "roomId": "r-hhus-5d4b5af38748480c9200bc96683b6d18",
+ "badgeCode": "b19134s28091s85113s85114s801159ebea67b07ce5e25a12e79cc5a337608",
+ "primaryColour": "bd2121",
+ "secondaryColour": "c0c0c0",
+ "isAdmin": false
+ },
+ {
+ "id": "g-hhus-48abd5701c898ffebc98d476bf38c018",
+ "name": "HabbolifeForum",
+ "description": "HabboLifeForum.com is one of most famous fansites in Habbo Italy",
+ "type": "NORMAL",
+ "roomId": "r-hhus-8472834d25a5a96ce67b255f3203a440",
+ "badgeCode": "b22054s12067t16057s54111230b63226bfdc4a0d4173e87ddf0f2e5",
+ "primaryColour": "43a0d1",
+ "secondaryColour": "00539b",
+ "isAdmin": false
+ },
+ {
+ "id": "g-hhus-c86db765b12d3146dde2495d19510cf4",
+ "name": "Habbowidgets.com",
+ "description": "If you like Habbowidgets, join the group :D",
+ "type": "NORMAL",
+ "roomId": "r-hhus-49cb84ec587476b574febefffd7a0cd4",
+ "badgeCode": "b25144t10015t00064s85063bfb91685c240600dca32f96f035ef53d",
+ "primaryColour": "0066bf",
+ "secondaryColour": "ffd601",
+ "isAdmin": true
+ },
+ {
+ "id": "g-hhus-aaaf0afa1d5f5f7ddd5fcddb071fe092",
+ "name": "Habbox.com",
+ "description": "Habbox is an official fansite of Habbo which has been around since 2003! Which makes us the oldest running Fansite. We provide you with the latest Habbo news, guides and rare values. We also have a forum, radio and Wiki! We host events and competitions!",
+ "type": "NORMAL",
+ "roomId": "r-hhus-9978ec749fbcb9b5ff7700905c682564",
+ "badgeCode": "b22014s17013s85024s17015e337bc4b2dff128a0e86fda6ad4a487c",
+ "primaryColour": "ec7600",
+ "secondaryColour": "575757",
+ "isAdmin": false
+ },
+ {
+ "id": "g-hhus-59ad480a8d7e557c4a80a11ec4cf0582",
+ "name": "Official Habbo Helpers",
+ "description": "Become a Helper and help other Habbos.",
+ "type": "NORMAL",
+ "roomId": "r-hhus-fcd7db220093b38a9b638dc97d86c916",
+ "badgeCode": "b27124s05125s02113s85094ef615ea9e645c9b9ed1e8238fd4c6623",
+ "primaryColour": "ebebeb",
+ "secondaryColour": "bf2222",
+ "isAdmin": false
+ },
+ {
+ "id": "g-hhus-3df14d1f984304384939c637181dcdde",
+ "name": "Read and share open beta",
+ "description": "Read and share open beta",
+ "type": "NORMAL",
+ "roomId": "r-hhus-7527c58ce58c36913432f4fa9e86d9f8",
+ "badgeCode": "b21034t2711407a3cde5853d88f0d86f77bab140b8c1",
+ "primaryColour": "ffffff",
+ "secondaryColour": "84de00",
+ "isAdmin": false
+ },
+ {
+ "id": "g-hhus-70fae41ecd66086ffe32c6ffbcf229d7",
+ "name": "Sneak Peekers",
+ "description": "Join this group if you want a preview of some features we're working on. Read the blue info terminal at the stairs for further details!",
+ "type": "NORMAL",
+ "roomId": "r-hhus-d4da0e9515461142be51b58471ee31db",
+ "badgeCode": "b24134s20023s20025s59171s06117b02e0890039dce36e999573e0544e40e",
+ "primaryColour": "ffd601",
+ "secondaryColour": "242424",
+ "isAdmin": false
+ },
+ {
+ "id": "g-hhus-fd92759bc932225f663f1521be8ce255",
+ "name": "UK",
+ "description": "",
+ "type": "NORMAL",
+ "roomId": "r-hhus-dcf2e2a74a39f64dc627c5ef32a1aa83",
+ "badgeCode": "b22114s19107t50064e4bcf7c532fdcecc1467d2185d975783",
+ "primaryColour": "ffd601",
+ "secondaryColour": "ffffff",
+ "isAdmin": false
+ }
+ ],
+ "rooms": [
+ {
+ "id": "r-hhus-a091e0f1d891108b49ca7af953386f0f",
+ "name": "Venice Beach Rollercoaster",
+ "description": "Ahh well..",
+ "creationTime": "2010-06-10T09:02:16.000+0000",
+ "maximumVisitors": 25,
+ "tags": [
+ "habbies"
+ ],
+ "showOwnerName": true,
+ "ownerName": "koeientemmer",
+ "ownerUniqueId": "hhus-9cd61b156972c2eb33a145d69918f965",
+ "thumbnailUrl": "https://habbo-stories-content.s3.amazonaws.com/navigator-thumbnail/hhus/31159787.png",
+ "imageUrl": "https://habbo-stories-content.s3.amazonaws.com/fullroom-photo/hhus/31159787.png",
+ "rating": 116,
+ "categories": [
+ "navigator.flatcategory.global.CHAT"
+ ]
+ },
+ {
+ "id": "r-hhus-abb87256459a4f9069a8fe86f5a188ed",
+ "name": "Venice Beach Seaworld",
+ "description": "Come and relax.. or die face to face with the great whites..",
+ "creationTime": "2010-06-10T09:02:21.000+0000",
+ "maximumVisitors": 25,
+ "tags": [],
+ "showOwnerName": true,
+ "ownerName": "koeientemmer",
+ "ownerUniqueId": "hhus-9cd61b156972c2eb33a145d69918f965",
+ "thumbnailUrl": "https://habbo-stories-content.s3.amazonaws.com/navigator-thumbnail/hhus/31159823.png",
+ "imageUrl": "https://habbo-stories-content.s3.amazonaws.com/fullroom-photo/hhus/31159823.png",
+ "rating": 11,
+ "categories": [
+ "navigator.flatcategory.global.CHAT"
+ ]
+ },
+ {
+ "id": "r-hhus-e6f2266fe691e2aa7490351680585af8",
+ "name": "Hell yeah",
+ "description": null,
+ "creationTime": "2011-05-19T18:53:33.000+0000",
+ "maximumVisitors": 25,
+ "tags": [],
+ "showOwnerName": true,
+ "ownerName": "koeientemmer",
+ "ownerUniqueId": "hhus-9cd61b156972c2eb33a145d69918f965",
+ "thumbnailUrl": "https://habbo-stories-content.s3.amazonaws.com/navigator-thumbnail/hhus/46093264.png",
+ "imageUrl": "https://habbo-stories-content.s3.amazonaws.com/fullroom-photo/hhus/46093264.png",
+ "rating": 6,
+ "categories": [
+ "navigator.flatcategory.global.CHAT"
+ ]
+ },
+ {
+ "id": "r-hhus-49cb84ec587476b574febefffd7a0cd4",
+ "name": "Habbowidgets.com",
+ "description": "Group room for Habbowidgets!",
+ "creationTime": "2013-04-20T16:05:18.000+0000",
+ "habboGroupId": "g-hhus-c86db765b12d3146dde2495d19510cf4",
+ "maximumVisitors": 50,
+ "tags": [
+ "habbowidgets"
+ ],
+ "showOwnerName": true,
+ "ownerName": "koeientemmer",
+ "ownerUniqueId": "hhus-9cd61b156972c2eb33a145d69918f965",
+ "thumbnailUrl": "https://habbo-stories-content.s3.amazonaws.com/navigator-thumbnail/hhus/62423647.png",
+ "imageUrl": "https://habbo-stories-content.s3.amazonaws.com/fullroom-photo/hhus/62423647.png",
+ "rating": 447,
+ "categories": [
+ "navigator.flatcategory.global.CHAT"
+ ]
+ },
+ {
+ "id": "r-hhus-0f7319d1291373ddd1d609ac129fd82f",
+ "name": "Bouwers Club",
+ "description": null,
+ "creationTime": "2013-12-04T15:13:43.000+0000",
+ "maximumVisitors": 25,
+ "tags": [],
+ "showOwnerName": true,
+ "ownerName": "koeientemmer",
+ "ownerUniqueId": "hhus-9cd61b156972c2eb33a145d69918f965",
+ "thumbnailUrl": "https://habbo-stories-content.s3.amazonaws.com/navigator-thumbnail/hhus/65285667.png",
+ "imageUrl": "https://habbo-stories-content.s3.amazonaws.com/fullroom-photo/hhus/65285667.png",
+ "rating": 0,
+ "categories": [
+ "navigator.flatcategory.global.CHAT"
+ ]
+ }
+ ],
+ "badges": [
+ {
+ "code": "THI41",
+ "name": "...will go on!!!",
+ "description": "Winner of broken hearts 2/2"
+ },
+ {
+ "code": "UK052",
+ "name": "0800 Reverse",
+ "description": "Got home safely in the Justin Case quest"
+ },
+ {
+ "code": "UK117",
+ "name": "0800 Reverse",
+ "description": "No Credit. No Problem. Stay connected with 0800 Reverse"
+ },
+ {
+ "code": "UK136",
+ "name": "0800 Reverse: Mobile to Mobile",
+ "description": "Group Member"
+ },
+ {
+ "code": "ACH_RegistrationDuration20",
+ "name": "100 % True Habbo XX",
+ "description": "Be a member of the community for 1825 days."
+ },
+ {
+ "code": "COM12",
+ "name": "100,000 Fans Badge",
+ "description": "One of 100,000 awesome Fans!"
+ },
+ {
+ "code": "BR071",
+ "name": "1Goal",
+ "description": "I support 1Goal. Education for all."
+ },
+ {
+ "code": "ACH_AvatarTags1",
+ "name": "5 words of wisdom I",
+ "description": "For tagging yourself with 5 tags."
+ },
+ {
+ "code": "ACH_RespectEarned5",
+ "name": "50% Respected Habbo V",
+ "description": "For earning respect 166 times."
+ },
+ {
+ "code": "NL008",
+ "name": "50,000 Fans Badge",
+ "description": "A big thanks for getting us 50,000 Fans!"
+ },
+ {
+ "code": "thx",
+ "name": "<3",
+ "description": "<3"
+ },
+ {
+ "code": "DRA04",
+ "name": "A fond farewell to the Dragon",
+ "description": "Comemorating its return in 2024"
+ },
+ {
+ "code": "UK076",
+ "name": "Aliens in the Attic",
+ "description": "Saved Habbo from those Aliens in the Attic"
+ },
+ {
+ "code": "UK031_HHUK",
+ "name": "Alvin and the Chipmunks",
+ "description": "Supported Alvin and the Chipmunks in the Squeakquel bands battle"
+ },
+ {
+ "code": "UK095",
+ "name": "Alvin dvd",
+ "description": "Winner of the Squeakqual treasure hunt."
+ },
+ {
+ "code": "ancients_start",
+ "name": "Ancient Map Part I",
+ "description": "Following in the footsteps of the Ancients..."
+ },
+ {
+ "code": "ancients_ssahara",
+ "name": "Ancient Map Part II",
+ "description": "Following in the footsteps of the Ancients..."
+ },
+ {
+ "code": "AF1_HHUK",
+ "name": "April Fools Day 2009",
+ "description": "You got pranked on April Fools Day 2009"
+ },
+ {
+ "code": "XM9_HHUK",
+ "name": "Arctic Snowballers!",
+ "description": "For Arctic Maze survivors!"
+ },
+ {
+ "code": "CAG_HHUK",
+ "name": "Atlantis World",
+ "description": "Winner in the Frederic Santini Comp - Atlantis. Sep 09."
+ },
+ {
+ "code": "GLD_HHUK",
+ "name": "Badger",
+ "description": "Level 4 - The digger one - has information you cannot find. Sorry. This Achievement is not available at the moment."
+ },
+ {
+ "code": "THI99",
+ "name": "Balloons",
+ "description": "Air in plastic"
+ },
+ {
+ "code": "GLB_HHUK",
+ "name": "Bambi",
+ "description": "Level 2 - The loving one - Sorry. This Achievement is not available at the moment."
+ },
+ {
+ "code": "ACH_BattleBallPlayer5",
+ "name": "Battle Ball Player V",
+ "description": "For playing Battle Banzai."
+ },
+ {
+ "code": "ACH_BattleBallWinner2",
+ "name": "Battle Banzai Star II",
+ "description": "For gaining 125 winner points at Battle Banzai"
+ },
+ {
+ "code": "ACH_GamePlayed2",
+ "name": "Battle Royal II",
+ "description": "For playing and winning Snow Storm or for the game of Battle Ball 5 times."
+ },
+ {
+ "code": "HWD03",
+ "name": "Best Actress Prediction",
+ "description": "Predicted the best actress from the 2011 awards!"
+ },
+ {
+ "code": "HWD06",
+ "name": "Best Animated Film Prediction",
+ "description": "Predicted the best animated film of the 2011 awards!"
+ },
+ {
+ "code": "COM13",
+ "name": "Bot Love Badge",
+ "description": "Found the Bot I married - Vegas 2011"
+ },
+ {
+ "code": "NYR04",
+ "name": "Brain Explosion",
+ "description": "I answered all ten HC Velocity quiz questions correctly! New Year 2010/2011."
+ },
+ {
+ "code": "UK051_HHUK",
+ "name": "Bronze Santa Hat",
+ "description": "I helped revive Santa's broken heart and miserable mood in time for Christmas. December 2009."
+ },
+ {
+ "code": "ACH_RoomDecoBC5",
+ "name": "Builders Club Designer V",
+ "description": "Build a room with 32 Builders Club furnis."
+ },
+ {
+ "code": "ACH_BuildersClub1",
+ "name": "Builders Club Member I",
+ "description": "For being Builders Club member for 1 days"
+ },
+ {
+ "code": "GLA_HHUK",
+ "name": "Bunny",
+ "description": "Level 1 - The speedy one - Sorry. This Achievement is not available at the moment."
+ },
+ {
+ "code": "CNY01_HHUK",
+ "name": "CNY 2010",
+ "description": "Chinese New Year observation quest winner."
+ },
+ {
+ "code": "ACH_PetLover1",
+ "name": "Can I Keep Him? I",
+ "description": "Own 1 pet to earn this badge."
+ },
+ {
+ "code": "UK112",
+ "name": "Capri-Sun Limited Edition Badge",
+ "description": "A big thanks from Ed and Omar for catching all the Capri-Sun pouches!"
+ },
+ {
+ "code": "ACH_SelfModChatScrollSpeedSeen1",
+ "name": "Chat Scroll Speed",
+ "description": "For being aware of chat scroll speed options"
+ },
+ {
+ "code": "UK111",
+ "name": "ChildLine Anti-Bullying Badge",
+ "description": "Take action together against bullying!"
+ },
+ {
+ "code": "UK176",
+ "name": "ChildLine Goup",
+ "description": "I am a member of the ChildLine group"
+ },
+ {
+ "code": "UK175",
+ "name": "ChildLine Self-harm Awarness",
+ "description": "I correctly answered the ChildLine Self-harm Awareness Quiz!"
+ },
+ {
+ "code": "XMS08",
+ "name": "Christmas Maze 5",
+ "description": "Christmas Maze 5"
+ },
+ {
+ "code": "CLB02",
+ "name": "Clearasil Ultra 2",
+ "description": "Shine shine"
+ },
+ {
+ "code": "FBC12",
+ "name": "Creepy Church Myth (3/4)",
+ "description": "Creepy Church Myth"
+ },
+ {
+ "code": "Z85",
+ "name": "Crew Member",
+ "description": "I joined the Dance Crew!"
+ },
+ {
+ "code": "STO01",
+ "name": "Curious Creatures",
+ "description": "\"Read and Share, Super Rare\", quoth the Raven"
+ },
+ {
+ "code": "ACH_SelfModDoorModeSeen1",
+ "name": "Door Mode",
+ "description": "For being aware of room door modes"
+ },
+ {
+ "code": "ACH_NinjasNotSpotted3",
+ "name": "Dragon Ninja Spotter III",
+ "description": "Almost spotted 111 Dragon Ninjas. Good work!"
+ },
+ {
+ "code": "EUR02",
+ "name": "Eurovision Semi Final 2",
+ "description": "Your pick made it all the way to the finals!"
+ },
+ {
+ "code": "RADZZ",
+ "name": "Event Promoter",
+ "description": "Event Promoter"
+ },
+ {
+ "code": "ACH_EsA2",
+ "name": "FREEZE Fighter II",
+ "description": "Freeze 5 Habbos to earn this badge!"
+ },
+ {
+ "code": "BBBH1_HHUK",
+ "name": "Farewell Big Hand",
+ "description": "Awarded to all who paid tribute to the Big Hand. November 2009."
+ },
+ {
+ "code": "ACH_BaseJumpDaysPlayed1",
+ "name": "Fast Food Regular I",
+ "description": "For playing Fast Food on 2 different days"
+ },
+ {
+ "code": "ACH_BaseJumpMissile3",
+ "name": "Fast Food Rocketeer III",
+ "description": "For launching 10 missiles in Fast Food"
+ },
+ {
+ "code": "ACH_BaseJumpWins5",
+ "name": "Fast Food Winner V",
+ "description": "For winning 35 times in Fast Food"
+ },
+ {
+ "code": "CNS03",
+ "name": "Fierce Badge of the Dragon",
+ "description": "Habbo Chinese New Year 2013"
+ },
+ {
+ "code": "ACH_FireworksCharger1",
+ "name": "Firestarter I",
+ "description": "For charging 20 Pixels into Firework Furni."
+ },
+ {
+ "code": "UK081",
+ "name": "Flag it",
+ "description": "1/3 of the Click Clever, Click Safe Code"
+ },
+ {
+ "code": "UK008",
+ "name": "Flint's Meatballs",
+ "description": "Saved Habbo from a freak weather machine"
+ },
+ {
+ "code": "ACH_RoomDecoFloor1",
+ "name": "Floor Designer I",
+ "description": "For setting 3 floors to my rooms."
+ },
+ {
+ "code": "GLE_HHUK",
+ "name": "Fox",
+ "description": "Level 5 - The clever one - is swift of thought and foot. Sorry. This Achievement is not available at the moment."
+ },
+ {
+ "code": "MRG00",
+ "name": "Friendship Bracelet",
+ "description": "A stranger is a friend you have yet to meet!"
+ },
+ {
+ "code": "ACH_RoomDecoFurniTypeCount9",
+ "name": "Furni Collector IX",
+ "description": "For building a room with 59 different Furnis."
+ },
+ {
+ "code": "AU019",
+ "name": "Generator Rex Badge",
+ "description": "Generator Rex Group Member"
+ },
+ {
+ "code": "ACH_GuideRequester2",
+ "name": "Get Help II",
+ "description": "You requested 5 help requests."
+ },
+ {
+ "code": "ACH_GuideTourTaker3",
+ "name": "Get a Tour III",
+ "description": "You spent 10 minutes on tour with one of the Helpers."
+ },
+ {
+ "code": "ACH_GuideFeedbackGiver2",
+ "name": "Give Feedback II",
+ "description": "For Giving feedback 5 times to Helpers."
+ },
+ {
+ "code": "FBC06",
+ "name": "Gold Bar Spotter",
+ "description": "I spotted the Facebook Gold Bar!"
+ },
+ {
+ "code": "NI5",
+ "name": "Gold Rush - Mythology",
+ "description": "Gold Rush - Mythology"
+ },
+ {
+ "code": "ACH_GuideAdvertisementReader1",
+ "name": "Gran Tourismo",
+ "description": "Check out the guided Tours"
+ },
+ {
+ "code": "UK114",
+ "name": "Gulliver's Travels \"Happy Face\" badge",
+ "description": "I found the wheat, so Gulliver didn't go hungry!"
+ },
+ {
+ "code": "UK027",
+ "name": "Guy Fawkes Quest",
+ "description": "I stopped Guy Fawkes blowing up Habbo Parliament. November 2009."
+ },
+ {
+ "code": "NEC_HHUK",
+ "name": "HMF Golden Glitterball",
+ "description": "Official HMF:Neon Best New Artist Supporter"
+ },
+ {
+ "code": "UK090",
+ "name": "HTTYD - Quest",
+ "description": "Official friend of the dragons"
+ },
+ {
+ "code": "FBC09",
+ "name": "Habbo 2k",
+ "description": "Did you know Habbo was invented in the year 2000?"
+ },
+ {
+ "code": "ACH_Citizenship1",
+ "name": "Habbo Citizen",
+ "description": "For passing the Habbo Citizen talent track"
+ },
+ {
+ "code": "UK035",
+ "name": "Habbo Music Academy",
+ "description": "I support the Habbo Music Academy. November 2009."
+ },
+ {
+ "code": "ROO10",
+ "name": "Habbo Palooza 2013 Quiz",
+ "description": "For replying correctly to the Quiz"
+ },
+ {
+ "code": "MRG03",
+ "name": "Habbo UK",
+ "description": "Remembering My Habbo Roots"
+ },
+ {
+ "code": "Z40",
+ "name": "Habbo UK 8th Birthday",
+ "description": "Habbo UK 8th Birthday"
+ },
+ {
+ "code": "UKBD1",
+ "name": "Habbo UK is 9!",
+ "description": "9th Birthday Badge"
+ },
+ {
+ "code": "US0S",
+ "name": "Habbo.com Relaunch Badge",
+ "description": "We Heart Habbo.com!"
+ },
+ {
+ "code": "HOP03_HHUK",
+ "name": "Habbolympics 2010 - Bronze Badge",
+ "description": "Habbolympics 2010 - Bronze Badge"
+ },
+ {
+ "code": "UK019",
+ "name": "Habboween 09 - FRANKENSTEIN QUEST",
+ "description": "Habboween 09 - FRANKENSTEIN QUEST"
+ },
+ {
+ "code": "GLO01",
+ "name": "Habboween 2012",
+ "description": "Habboween 2012"
+ },
+ {
+ "code": "UK187",
+ "name": "Habbox Maze Winner",
+ "description": "Habbox Maze Hall of Famer"
+ },
+ {
+ "code": "ACH_HappyHour1",
+ "name": "Happy Hour I",
+ "description": "For spending a Happy moment in Habbo! Log in during Happy Hour to receive this achievement."
+ },
+ {
+ "code": "HJ5",
+ "name": "Harajuku Quest Music",
+ "description": "Winner of the Harajuku Lovers quest"
+ },
+ {
+ "code": "NT038",
+ "name": "Helpers Quiz badge",
+ "description": "I passed the HabboHelpers.com Helpers Quiz"
+ },
+ {
+ "code": "SG018",
+ "name": "Honour IP",
+ "description": "Honour Intellectual Property (IP) by supporting originality and making a stand against piracy today!"
+ },
+ {
+ "code": "Z39_HHUK",
+ "name": "Hotel For Dogs Maze Winner",
+ "description": "Tracked the scent and made it to the Hotel"
+ },
+ {
+ "code": "FR005_HHUK",
+ "name": "Hotel Happenings Fan",
+ "description": "I read the Hotel Happenings Newsletter, every Tuesday! Do you?"
+ },
+ {
+ "code": "ACH_RoomEntry6",
+ "name": "House Guest VI",
+ "description": "For hanging out in 240 guest rooms that you do not own. Out of towner."
+ },
+ {
+ "code": "UK034",
+ "name": "I Love Music",
+ "description": "I took part in the HMA Sing-Song vote. December 2009."
+ },
+ {
+ "code": "ACH_PetLevelUp3",
+ "name": "I play with pets III",
+ "description": "Train your pets up at least 10 levels to earn this badge."
+ },
+ {
+ "code": "Z78",
+ "name": "Ice Age Quest Winner",
+ "description": "Ice Age 3 Quest"
+ },
+ {
+ "code": "ACH_TagC3",
+ "name": "Ice Ice Baby III",
+ "description": "Show time on ice 16 minutes on this level."
+ },
+ {
+ "code": "ACH_SelfModIgnoreSeen1",
+ "name": "Ignore",
+ "description": "For being aware of ignore option"
+ },
+ {
+ "code": "ACH_HabbosVsWildQuestCompleted6",
+ "name": "In The Footsteps Of The Ancients Quester VI",
+ "description": "For completing 13 In The Footsteps Of The Ancients quests"
+ },
+ {
+ "code": "RA6",
+ "name": "Iron Maiden Badge",
+ "description": "Maze of Death Quest 2010"
+ },
+ {
+ "code": "COM08",
+ "name": "It Gets Better",
+ "description": "Everyone deserves to be respected for who they are. Speak up for tolerance and love!"
+ },
+ {
+ "code": "JAD01",
+ "name": "King of Jade",
+ "description": "Keeper of Zodiac wisdom and a decent cuppa"
+ },
+ {
+ "code": "UK161",
+ "name": "Kitty Softpaws",
+ "description": "\"She is a bad kitty\""
+ },
+ {
+ "code": "ACH_BaseJumpBigParachute1",
+ "name": "Last Minute Life Saver I",
+ "description": "For using a large parachute perfectly 2 times in Fast Food"
+ },
+ {
+ "code": "ACH_HabboWayGraduate1",
+ "name": "Level I Habbo Way",
+ "description": "For passing the Habbo Way quiz!"
+ },
+ {
+ "code": "ACH_SafetyQuizGraduate1",
+ "name": "Level I Safety tips",
+ "description": "For passing the Safety quiz!"
+ },
+ {
+ "code": "ACH_HorseConsecutiveJumpsCount3",
+ "name": "Level III equestrian",
+ "description": "For jumping over 8 obstacles successfully"
+ },
+ {
+ "code": "ACH_GiftReceiver2",
+ "name": "Like me a bit more II",
+ "description": "For receiving 6 gifts."
+ },
+ {
+ "code": "ACH_AvatarLooks1",
+ "name": "Looks that Kill I",
+ "description": "For changing your look for the first time."
+ },
+ {
+ "code": "ACH_BattleBallTilesLocked2",
+ "name": "Lord of the tiles II",
+ "description": "Lock 65 tiles."
+ },
+ {
+ "code": "HWN07",
+ "name": "Luck Quiz Badge",
+ "description": "Habboween 2010"
+ },
+ {
+ "code": "FBC14",
+ "name": "MONSTER!",
+ "description": "I found the Monster Plant!"
+ },
+ {
+ "code": "MTV01_HHUK",
+ "name": "MTV EMA 2009",
+ "description": "Member of the MTV EMA 2009 Group."
+ },
+ {
+ "code": "UK119",
+ "name": "Master Shifu's Badge of Honour",
+ "description": "Kung Fu Panda 2 visited Habbo December 2010"
+ },
+ {
"code": "YODUK",
"name": "Master Yoduck",
"description": "Use the nondescript motion imparting field!"
- }, {
- "badgeIndex": 2,
+ },
+ {
+ "code": "ACH_Motto1",
+ "name": "Master of Words I",
+ "description": "For editing your motto for the first time."
+ },
+ {
+ "code": "USP_HHUK",
+ "name": "Medieval World",
+ "description": "Winner in the Frederic Santini Comp - Medieval. Sep 09."
+ },
+ {
+ "code": "UK078",
+ "name": "Member of The Flock",
+ "description": "Friend of Fang"
+ },
+ {
+ "code": "MPS01",
+ "name": "Monster Plant Gardener Competition Consolation Badge",
+ "description": "For participating in the Monster Plant gardening competition. Well done, good job, sport!"
+ },
+ {
+ "code": "ACH_MonsterPlantQuestCompleted6",
+ "name": "Monster Plant Quester VI",
+ "description": "For completing 18 Monster Plant quests"
+ },
+ {
+ "code": "ACH_MonsterPlantTreater2",
+ "name": "Monster Plant Tender II",
+ "description": "For tending to 30 Monster Plants"
+ },
+ {
+ "code": "THI40",
+ "name": "My heart...",
+ "description": "Winner of broken hearts 1/2"
+ },
+ {
+ "code": "ACH_PetRespectReceiver8",
+ "name": "My pets get all the love VIII",
+ "description": "Have someone scratch your pet at least 300 times to earn this badge."
+ },
+ {
+ "code": "ACH_MysteryBox3",
+ "name": "Mystery Box explorer III",
+ "description": "For completing 3 quests in the 2012 Christmas calendar"
+ },
+ {
+ "code": "Z59",
+ "name": "NATM History Quest",
+ "description": "NATM History Quest"
+ },
+ {
+ "code": "TWIC1_HHUK",
+ "name": "New Moon Badge: Cullens",
+ "description": "Level 1 Badge awarded to trivia quest winners in Cullen's world. November 2009."
+ },
+ {
+ "code": "TWIQ1_HHUK",
+ "name": "New Moon Badge: Jacob",
+ "description": "Level 1 Badge awarded to trivia quest winners in Jacob's world. November 2009."
+ },
+ {
+ "code": "TWIV1_HHUK",
+ "name": "New Moon Badge: Volturi",
+ "description": "Level 1 Badge awarded to trivia quest winners in Volturi's world. November 2009."
+ },
+ {
+ "code": "ACH_RespectGiven8",
+ "name": "Nice as pie! VIII",
+ "description": "For giving respect 170 times."
+ },
+ {
+ "code": "ACH_GiftGiver1",
+ "name": "Nice one I",
+ "description": "For giving a gift."
+ },
+ {
+ "code": "DE016",
+ "name": "Nokia Maze Challenge Gold Badge",
+ "description": "Congratulations! You made it through the maze."
+ },
+ {
+ "code": "AU015",
+ "name": "OZ Artist 2010",
+ "description": "Channel [V] Group Member"
+ },
+ {
+ "code": "VIK07",
+ "name": "Odin Runestone",
+ "description": "Carve your Viking Runestone"
+ },
+ {
+ "code": "Z64_HHUK",
+ "name": "Official BETA tester",
+ "description": "Helped shape the new Habbo June 2009"
+ },
+ {
+ "code": "ACH_GuideOnDutyPresence3",
+ "name": "On Duty III",
+ "description": "For being on-duty as Helper for 120 minutes."
+ },
+ {
+ "code": "ACH_AllTimeHotelPresence10",
+ "name": "Online time X - F5 Tornado",
+ "description": "For spending total of 4320 min. in hotel."
+ },
+ {
+ "code": "GLC_HHUK",
+ "name": "Otter",
+ "description": "Level 3 - The one who will not let you sink under pressure. Sorry. This Achievement is not available at the moment."
+ },
+ {
+ "code": "PAT2",
+ "name": "Patrol General",
+ "description": "Patrol General"
+ },
+ {
+ "code": "peg01",
+ "name": "Pegasus Rider",
+ "description": "Participated in the Community Challenge"
+ },
+ {
+ "code": "ACH_PetRespectGiver9",
+ "name": "Pet lover IX",
+ "description": "Scratch anyone's pet at least 250 times to earn this badge."
+ },
+ {
+ "code": "FBC18",
+ "name": "Plant Puzzler",
+ "description": ""
+ },
+ {
+ "code": "ACH_GamePlayerExperience3",
+ "name": "Player III",
+ "description": "Gather 480 victory points."
+ },
+ {
+ "code": "UK126",
+ "name": "Pokémon Black Version",
+ "description": "Pokémon Black Version"
+ },
+ {
+ "code": "FRE",
+ "name": "Prehistoric World",
+ "description": "Winner in the Frederic Santini Comp - Prehistoric. Sep 09."
+ },
+ {
+ "code": "DK2",
+ "name": "Pub(lic) Crawl Cider",
+ "description": "St Patrick's Day 2011!"
+ },
+ {
+ "code": "UK244",
+ "name": "Puhekupla Badge 2014",
+ "description": "Puhekupla Badge 2014"
+ },
+ {
+ "code": "UK121",
+ "name": "Rango Group Member",
+ "description": "Strangers don't last long here!"
+ },
+ {
+ "code": "UK123",
+ "name": "Rango's toy fish",
+ "description": "Wind it up and watch it fly"
+ },
+ {
+ "code": "UK131",
+ "name": "Rango: Beans Badge",
+ "description": "Beans was the winner of the Rango poll!"
+ },
+ {
+ "code": "UK122",
+ "name": "Rangos Safe!",
+ "description": "I got Rango out of the desert"
+ },
+ {
+ "code": "ACH_RbTagC2",
+ "name": "Roller Derby Raider II",
+ "description": "For rollerblading for 8 minutes."
+ },
+ {
+ "code": "ACH_RoomDecoFurniCount11",
+ "name": "Room Builder XI",
+ "description": "For building a room with 110 Furnis."
+ },
+ {
+ "code": "ACH_RoomDecoHosting10",
+ "name": "Room Host X",
+ "description": "Other Habbos have spent 3790 minutes in your rooms!"
+ },
+ {
+ "code": "ACH_RoomCompetitionVoter1",
+ "name": "Room competition voter I",
+ "description": "For voting 3 times in room competitions"
+ },
+ {
+ "code": "WD006",
+ "name": "Royal Wedding Badge 2011",
+ "description": "Here comes the bride..."
+ },
+ {
+ "code": "ST4",
+ "name": "STEM Cosmetics",
+ "description": "You need Science and Maths skills for this job!"
+ },
+ {
+ "code": "FI190",
+ "name": "Safety Self Help badge",
+ "description": "I learned a thing or two about self help in Habbo"
+ },
+ {
+ "code": "XM10A",
+ "name": "Season's Greetings",
+ "description": "Happy Holidays from me to you! Xmas 2010"
+ },
+ {
+ "code": "ACH_GuideGroupMember1",
+ "name": "Shed The Light",
+ "description": "Joined a Habbo guide group."
+ },
+ {
+ "code": "ACH_SummerQuestCompleted1",
+ "name": "Shell Collector I",
+ "description": "For completing 1 daily quests."
+ },
+ {
+ "code": "UK050_HHUK",
+ "name": "Silver Santa Hat",
+ "description": "I helped revive Santa's broken heart and miserable mood in time for Christmas. December 2009."
+ },
+ {
+ "code": "UK007",
+ "name": "Skulduggery Pleasant's Asst.",
+ "description": "Skulduggery Pleasant"
+ },
+ {
+ "code": "ACH_SnowWarTotalScore1",
+ "name": "SnowStorm level I",
+ "description": "For getting a total score of 10 in SnowStorm Shuffle"
+ },
+ {
+ "code": "ACH_Xm10QuestCompleted7",
+ "name": "Snowflake collector VII",
+ "description": "For 3 Snowflake quests completed on this level."
+ },
+ {
+ "code": "ACH_FriendListSize5",
+ "name": "Socializer V",
+ "description": "For having 150 friends in your friendlist"
+ },
+ {
+ "code": "UK094_HHUK",
+ "name": "St Patrick's Day Quest",
+ "description": "St Patrick's Day Quest"
+ },
+ {
+ "code": "UK038",
+ "name": "St Trinians Alumni",
+ "description": "Member of the St Trinians School and gold finder"
+ },
+ {
+ "code": "UK003",
+ "name": "Star 1",
+ "description": "HPV new badge"
+ },
+ {
+ "code": "UK004",
+ "name": "Star 2",
+ "description": "HPV badge"
+ },
+ {
+ "code": "UK005",
+ "name": "Star 3",
+ "description": "HPV badge"
+ },
+ {
+ "code": "HWN09",
+ "name": "Star Tarot Badge",
+ "description": "For Habboween 2010 Group Members"
+ },
+ {
+ "code": "UK107",
+ "name": "Street Dance 3D",
+ "description": "You can really move on the dance floor!"
+ },
+ {
+ "code": "BGW4",
+ "name": "Sunscreen Level 3",
+ "description": "A gift from the Big Wave!"
+ },
+ {
+ "code": "ACH_NotesReceived1",
+ "name": "Swamped By Stickies Level I",
+ "description": "I've received 2 notes in my rooms!"
+ },
+ {
+ "code": "COM03",
+ "name": "Taylor Swift Fan",
+ "description": "I was there for Taylor Swift's 'Speak Now' Live release show!"
+ },
+ {
+ "code": "UK077",
+ "name": "TeenLifeCheck",
+ "description": "Took the TeenLifeCheck 2010"
+ },
+ {
+ "code": "AC6_HHUK",
+ "name": "The Angry Spirit Ape",
+ "description": "Used the inner Angry Spirit Ape to find the Lost Tribe of Bensalem"
+ },
+ {
+ "code": "COM10",
+ "name": "The Chronicles of Narnia: Dawn Treader Badge",
+ "description": "I found the 7 lost lords of Narnia!"
+ },
+ {
+ "code": "EGG08",
+ "name": "The Golden Egg",
+ "description": "I'm such an epic egg."
+ },
+ {
+ "code": "PATRL",
+ "name": "The Habbo Patrol",
+ "description": "Protecting chat for innocent Habbos!"
+ },
+ {
+ "code": "HWN04",
+ "name": "The Moon Quest",
+ "description": "Habboween 2010"
+ },
+ {
"code": "UK183",
"name": "The Sims - Katy Perry Sweet Treats",
"description": "I beat the The Sims Katy Perry Sweet Treats Quiz!"
- }, {
- "badgeIndex": 3,
+ },
+ {
+ "code": "COM05",
+ "name": "The Sims 3 - Bad Karma badge",
+ "description": "You have bad karma!"
+ },
+ {
+ "code": "UK140",
+ "name": "The Sims 3 Generations",
+ "description": "Group Member"
+ },
+ {
+ "code": "COM22",
+ "name": "The Sims Medieval",
+ "description": "King Hero badge - I completed The Sims Medieval Quiz"
+ },
+ {
+ "code": "THE01",
+ "name": "Theatre Opening Reward",
+ "description": "Reward for finding Theaterdome on opening day"
+ },
+ {
+ "code": "ACH_PetFeeding2",
+ "name": "They're eating all my credits! II",
+ "description": "Give your pets at least 600 points of food to earn this badge."
+ },
+ {
+ "code": "ACH_TraderPass1",
+ "name": "Trading pass I",
+ "description": "Without a trading pass you can't trade: you have to have an account that is 1 day old and you have to verify your email."
+ },
+ {
+ "code": "ACH_Login1",
+ "name": "Traveller I",
+ "description": "For logging in 5 days in a row. Rad!"
+ },
+ {
+ "code": "ACH_GuideEnrollmentLifetime16",
+ "name": "True Helper XVI",
+ "description": "For being a Helper for 1095 days."
+ },
+ {
+ "code": "ACH_EmailVerification1",
+ "name": "True You I",
+ "description": "For activating your email address. Thanks!"
+ },
+ {
+ "code": "HQ006_HHUK",
+ "name": "Urban CSI Bronze",
+ "description": "Awarded to the remaining CSI Detectives. October 2009."
+ },
+ {
+ "code": "VAL14",
+ "name": "Valentines 2013",
+ "description": "I was here, darling"
+ },
+ {
"code": "Z63_HHUK",
"name": "Valued BETA tester",
"description": "Helped shape the new Habbo June 2009"
- }, {
- "badgeIndex": 4,
- "code": "Z64_HHUK",
- "name": "Official BETA tester",
- "description": "Helped shape the new Habbo June 2009"
- }, {
- "badgeIndex": 5,
- "code": "UK119",
- "name": "Master Shifu's Badge of Honour",
- "description": "Kung Fu Panda 2 visited Habbo December 2010"
- }],
- "motto": "Oldskooler than Dionysus!",
- "memberSince": "2001-10-06T12:21:53.000+0000",
- "profileVisible": true,
- "lastWebAccess": null
- },
- "friends": [{
- "name": "!!!toon!!!",
- "motto": "Puhekupla.com",
- "uniqueId": "hhus-eafa7f30310f817172231ac9ba3a3baa",
- "figureString": "hr-155-48.hd-180-1.ch-215-1408.lg-3023-64.sh-3068-1408-85.wa-2001.cp-3286"
- }, {
- "name": "!zenda!",
- "motto": "Believe & Live for today",
- "uniqueId": "hhus-27d71e540e314d49ffe9eabb45e747db",
- "figureString": "hd-180-14.ch-210-1408.lg-275-1408.sh-905-1408"
- }, {
- "name": "-!!",
- "motto": "boom yo !!|!!1°",
- "uniqueId": "hhus-bc8ee1d4d095c7fa4dab7a13f2422fe3",
- "figureString": "hr-837-31.hd-600-30.ch-665-88.lg-715-88.sh-906-1408"
- }, {
- "name": "-doornroosje.",
- "motto": "Neuk gezond, neuk een appel",
- "uniqueId": "hhus-80ff60f828511ca0090031f039b4cc84",
- "figureString": "hr-890-37.hd-600-7.ch-691-77.lg-720-62.sh-725-78.he-1610.fa-1212"
- }, {
- "name": "-Larsboy-",
- "motto": "Go Holland! Go Holland!",
- "uniqueId": "hhus-b7e894971d6e62e5e72abef3c1267e31",
- "figureString": "hr-155-37.hd-180-2.ch-3110-69-62.lg-3116-62-69.sh-305-62.he-1609-73.ea-1406.ca-1815-69"
- }, {
- "name": ".:Gijs:.",
- "motto": "Scania R730 16 Liter V8 3500Nm.",
- "uniqueId": "hhus-5f2f6c9ab3c57b1d9c406b2b5c218c1c",
- "figureString": "hr-155-31.hd-185-14.ch-210-1408.lg-285-1408.sh-290-1408"
- }, {
- "name": ".barbiee",
- "motto": "Ha.",
- "uniqueId": "hhus-79b27430273906d65f1945853c3088de",
- "figureString": "hr-515-34.hd-600-2.ch-665-77.lg-710-63.ha-1006"
- }, {
- "name": "123debby",
- "motto": "That's me!",
- "uniqueId": "hhus-63952c36a4eea4f220e0e4a92b81a288",
- "figureString": "hr-545-45.hd-600-8.ch-660-73.lg-720-1408.sh-730-1408.he-1609-73"
- }, {
- "name": "=Atlantis=",
- "motto": "Update your own motto...",
- "uniqueId": "hhus-226106ab4c9559eca78b42a245dd54c9",
- "figureString": "hr-891-45.hd-185-4.ch-3030-82.lg-285-89.sh-290-62"
- }, {
- "name": "Administratie",
- "motto": "Ftw..",
- "uniqueId": "hhus-4e644be4a2bdab314e969c0285dee676",
- "figureString": "hr-831-32.hd-180-3.ch-3050-107-62.lg-3201-110-62.sh-3206-104.ca-3219-1323"
- }, {
- "name": "aleah1362",
- "motto": "Pretty Hurts|",
- "uniqueId": "hhus-92c6580345114a426008a365031ddcbb",
- "figureString": "hr-836-32.hd-605-7.ch-3014-96.lg-3202-1339-1408.sh-3154-92-96.fa-1202-92.ca-3292-100.cc-3289-78"
- }, {
- "name": "Angelcostarica",
- "motto": "Habbo.es -> WELCH",
- "uniqueId": "hhus-34d9d3acc31cfbb7bcbfbf7496ab2ed7",
- "figureString": "hr-155-35.hd-208-1.ch-877-88-64.lg-270-91.sh-305-90.ca-1805-64.wa-2001"
- }, {
- "name": "antonio119",
- "motto": "[NLC] Owner",
- "uniqueId": "hhus-f170d4a99836911bfcfd9a78c7c5bb04",
- "figureString": "hd-209-14.ch-210-1408.lg-270-1408"
- }, {
- "name": "arcboosteur",
- "motto": "Das Ruhenheim º",
- "uniqueId": "hhus-bdccdb543d489eddac7c628234e89fed",
- "figureString": "hr-802-42.hd-180-1.ch-805-1408.lg-285-68.sh-295-1408.ha-1014.he-1610.fa-1201"
- }, {
- "name": "ArmedSingapore",
- "motto": "(USMC) SSgt/FLO/DI [B10] {&Y^HQAOJ}",
- "uniqueId": "hhus-97e2b47b0d6b5663f94ceb5962d3f1dd",
- "figureString": "hd-180-1.ch-220-89.lg-285-88.fa-1201.wa-2009-89"
- }, {
- "name": "Bart..",
- "motto": "Shoot some heroin & fuck with the star",
- "uniqueId": "hhus-fc2e0849ff9aa394a1187fbb7d5fb4af",
- "figureString": "hr-115-1136.hd-190-1026.ch-215-1286.lg-275-1184.sh-305-1286"
- }, {
- "name": "BauenII",
- "motto": "Habfan.nl - Owner",
- "uniqueId": "hhus-070ead683f395ce57d80b29531f43b8d",
- "figureString": "hr-125-45.hd-180-2.ch-3030-73.lg-285-82.sh-290-62"
- }, {
- "name": "BellaBoo374",
- "motto": "",
- "uniqueId": "hhus-1229d7a8a39fa5ca810279e138b37da1",
- "figureString": "hr-891-45.hd-605-1.ch-685-76.lg-700-62.sh-730-77.ha-1005-62.wa-2001"
- }, {
- "name": "Bflorens",
- "motto": "the way i like it.",
- "uniqueId": "hhus-1a3b858859b9a11931c10f90e5e97a8c",
- "figureString": "ha-1017-.lg-270-64.sh-290-62.hr-170-45.hd-180-3.ch-215-83.ea-1401-62"
- }, {
- "name": "Biermonster",
- "motto": "Wtf.",
- "uniqueId": "hhus-21236c92ec4bb4f4ce967a2274eb6115",
- "figureString": "hr-170-42.hd-200-2.ch-875-62-62.lg-270-62.ea-1401-80.fa-1208-73"
- }, {
- "name": "BIGxMAC",
- "motto": "",
- "uniqueId": "hhus-6c74a4d60c5ecdbf64f1e4108fc22a8f",
- "figureString": "hr-155-33.hd-195-2.ch-235-82.lg-285-63.sh-290-62.ca-1801-65"
- }, {
- "name": "brendan1357",
- "motto": "Been there done that..",
- "uniqueId": "hhus-be83b59c866a0fefe4b04aeddebc97cd",
- "figureString": "hd-180-14.ch-210-1408.lg-3078-1408.sh-295-1408.fa-1201"
- }, {
- "name": "Bubblejuice.nl",
- "motto": "Owner bubblejuice.nl :D",
- "uniqueId": "hhus-52fb7c35897e9755f8b10fdcfd73c490",
- "figureString": "hr-155-42.hd-185-14.ch-255-1408.lg-275-1408.sh-295-1408"
- }, {
- "name": "Bunny_Purple",
- "motto": "",
- "uniqueId": "hhus-87d06ddef31c26db2556cd227b9925b9",
- "figureString": "hr-893-31.hd-185-28.ch-215-62.lg-280-75.ha-1008"
- }, {
- "name": "Cachiporros",
- "motto": "",
- "uniqueId": "hhus-d7876f0fa6295c7464ae2503ba9c4b36",
- "figureString": "hr-155-37.hd-180-3.ch-3030-80.lg-275-64"
- }, {
- "name": "Cavke",
- "motto": "",
- "uniqueId": "hhus-17935fb20f32923a84c962b5ad168965",
- "figureString": "hd-600-1.ch-630-89.lg-715-77.sh-730-91.hr-890-45.ca-1803-87.ea-1401-69"
- }, {
- "name": "Chaz",
- "motto": "l33t",
- "uniqueId": "hhus-40c1da323117b8c5b5f90953b0ea22fc",
- "figureString": "hr-828-34.hd-180-22.ch-3167.lg-275-63.sh-290-84.he-1603-72.cc-3007-81-81"
- }, {
- "name": "choi",
- "motto": "absolutely fine",
- "uniqueId": "hhus-d445b031c32abe98c9856b72533d4d46",
- "figureString": "hr-3278-49-40.hd-3091-13.ch-3077-100-1408.lg-270-92.sh-3027-1335-110.cc-3186-1336"
- }, {
- "name": "Clemster.",
- "motto": "Pinguin?",
- "uniqueId": "hhus-619f390e32b3e6b53d3bc31f59c0f34d",
- "figureString": "hr-165-45.hd-180-1.ch-3030-83.lg-285-64.sh-290-1408.fa-3147-1408"
- }, {
- "name": "Codified",
- "motto": "Teves",
- "uniqueId": "hhus-22b7cef12be09ea22f1a095057b4b1e0",
- "figureString": "hd-180-30.ch-3030-1408.lg-270-64.sh-305-64.ea-1406"
- }, {
- "name": "Cooldied",
- "motto": "Don't touch the red button...",
- "uniqueId": "hhus-4a1e16c89a4b5491c9233d74d43ad640",
- "figureString": "hr-125-38.hd-190-8.ch-267-1408.lg-3116-72-1408.sh-295-76.fa-1201.ca-1802.wa-2001"
- }, {
- "name": "CoolShankar1",
- "motto": " Cadet",
- "uniqueId": "hhus-d9806928ec711fc10b82cc61ba452a12",
- "figureString": "hd-180-1.ch-220-62.lg-285-64.sh-300-64.ca-1804-64.wa-2001"
- }, {
- "name": "D0SIER",
- "motto": "",
- "uniqueId": "hhus-ed7606b49e51acd037b382ee05faec56",
- "figureString": "hr-893-46.ha-1023-67.hd-180-16.lg-280-73.wa-2004-87.ea-1406-.sh-908-79.ca-1803-65.ch-240-83"
- }, {
- "name": "Dancingfish",
- "motto": "-,_\"",
- "uniqueId": "hhus-a004ddd8b21a9065e832669db5a22c72",
- "figureString": "hr-125-40.hd-209-30.ch-245-1408.lg-275-64.sh-305-76.fa-1202-91.ca-1813"
- }, {
- "name": "djcesar",
- "motto": "Be yourself.",
- "uniqueId": "hhus-5b95ba4568cef7e67fb6b01907d16807",
- "figureString": "hr-893-36.hd-180-1.ch-877-1408-1408.lg-285-1408.sh-906-1408.ea-1401-1408"
- }, {
- "name": "DjMaxi",
- "motto": "Be careful with bad people!",
- "uniqueId": "hhus-9e3fae940bd058f06d88575d747c2bf7",
- "figureString": "hr-155-42.hd-180-1.ch-255-64.lg-275-82.ha-3404-64-82.ea-1406"
- }, {
- "name": "Djridk",
- "motto": "From The Netherlands",
- "uniqueId": "hhus-cc6df5f8fdbfbe0bbfe431fcb1d7c2e7",
- "figureString": "hr-165-45.hd-209-2.ch-235-73.lg-275-62.sh-295-62"
- }, {
- "name": "DoYouLiftBro",
- "motto": "",
- "uniqueId": "hhus-ba0da0b6c7ce4a2ccd749fc8c0342d80",
- "figureString": "hr-828-1407.hd-190-7.ch-3208-1432-1408.lg-3057-110.fa-1201"
- }, {
- "name": "Dragon-nccb",
- "motto": "advent? already?!!!",
- "uniqueId": "hhus-d655846432ccf14dd1efd8ddea92b48a",
- "figureString": "hr-3012-34.hd-600-2.ch-3321-1416.lg-3434-110-1321.sh-3435-110-1321.ha-3272-1417-95.he-3149-99.ca-3151-1417-1416.wa-2003.cc-3246-95"
- }, {
- "name": "DumbGenius1999",
- "motto": "RICH AF",
- "uniqueId": "hhus-43ea4c54070dcf2582f13bec5bda30b8",
- "figureString": "hr-155-39.hd-208-8.ch-255-80.lg-275-64.ha-3117-81.he-1609-66"
- }, {
- "name": "E-B-2",
- "motto": "from the netherlands",
- "uniqueId": "hhus-819d9baee06217024ae3805e7f6f9a71",
- "figureString": "hr-170-39.hd-180-8.ch-878-64-70.lg-3116-67-67.sh-295-67"
- }, {
- "name": "ED.DY",
- "motto": " -=- Made in Russia -=-",
- "uniqueId": "hhus-3d1bb2951a77594af0d9da8942337929",
- "figureString": "hr-165-61.hd-3091-8.ch-3215-110.lg-285-64.sh-3115-63-62"
- }, {
- "name": "elliewalker1",
- "motto": "",
- "uniqueId": "hhus-2a339135f201a46dc86d0521abae92fd",
- "figureString": "hr-545-32.hd-600-1.ch-645-68.lg-695-68.he-3274-74"
- }, {
- "name": "Emmerrrrrrr",
- "motto": "habborator.org",
- "uniqueId": "hhus-391d98cd253aea3843c3d485c98c48ab",
- "figureString": "hr-500-31.hd-600-1.ch-685-87.lg-715-62.sh-730-62.ha-1005-87"
- }, {
- "name": "EmoCaptain09",
- "motto": "[PNP] Police Officer III [gav] [1k]",
- "uniqueId": "hhus-6a7611d888c8cd54ca53fee354cc919d",
- "figureString": "hr-3090-39.hd-209-8.ch-3030-1408.lg-3078-73.sh-300-1408.ha-3117-1408.ca-1807"
- }, {
- "name": "Esuoh.it",
- "motto": "Auguri Italia! 150 anni portati bene!",
- "uniqueId": "hhus-5382bcf41bb454592f79205386daf6af",
- "figureString": "hr-545-45.hd-600-3.ch-665-81.lg-700-81.sh-725-62"
- }, {
- "name": "FamousSeaShell",
- "motto": "Music Inspires Me.",
- "uniqueId": "hhus-0a074813ffa93da2ee9cccbefd60232f",
- "figureString": "hd-180-7.ch-210-62.lg-270-62"
- }, {
- "name": "Farnedy",
- "motto": "Helper! farned - ESHABBO",
- "uniqueId": "hhus-e6c110ece60f39d42ff8408abe881468",
- "figureString": "hr-110-42.hd-207-1370.ch-220-1408.lg-275-1408.sh-305-64.fa-1201.ca-1810"
- }, {
- "name": "FernandoLOOL",
- "motto": "Eltemplodelamusica.com - Argentina",
- "uniqueId": "hhus-a351a371839acc6cdc37c5f1741bed99",
- "figureString": "hr-830-40.hd-190-10.ch-3030-82.lg-3023-72.fa-3147-72.cp-3286"
- }, {
- "name": "Fibonacci",
- "motto": "Touch too much.",
- "uniqueId": "hhus-a2c2fb5232d8d27a1fc3ae09273be40e",
- "figureString": "hr-125-60.hd-3103-2.ch-255-1322.lg-280-110.sh-3016-110.ha-1012-1322.he-3071-92.ea-3170-1323.fa-1205-110.ca-1816"
- }, {
- "name": "fred655",
- "motto": "Updating motto ...",
- "uniqueId": "hhus-d57c13e210de309f72c6dba1406f8202",
- "figureString": "hr-165-39.hd-180-8.ch-878-76-84.lg-3078-81.sh-300-64.ea-1403-75"
- }, {
- "name": "FredBeav",
- "motto": "[Alliumphobia] silly sufferers",
- "uniqueId": "hhus-1c451fde0e4e4fe107be25fc52e42f77",
- "figureString": "hr-530-31.hd-605-24.ch-884-71.lg-715-71.sh-907-71.fa-1206-84.ca-1806-68"
- }, {
- "name": "GamerdmoneyV2",
- "motto": "[EPF] TM [S]",
- "uniqueId": "hhus-71fe48bb300301b427fcc388b93d83f2",
- "figureString": "hr-828-31.hd-190-2.ch-255-96.lg-3058-64.sh-3089-63"
- }, {
- "name": "GerardYoBling",
- "motto": "Gerard-Yo-Bling from Habbo.nl",
- "uniqueId": "hhus-e47331a6339360f2c7e574e5f63ed658",
- "figureString": "hr-115-42.hd-180-1.ch-808-1408.lg-270-64.sh-290-1408.cc-3280-1320-1408"
- }, {
- "name": "Gerben",
- "motto": "Habbies.nl",
- "uniqueId": "hhus-158f03f719d36c698d853712a4910d60",
- "figureString": "hr-155-42.hd-195-1.ch-255-79.lg-285-90.sh-290-62"
- }, {
- "name": "getsumdude",
- "motto": "Add getsum200",
- "uniqueId": "hhus-66c9633bd3861bd724a8c766b5efada4",
- "figureString": "hr-155-42.hd-180-1.ch-255-64.lg-280-79.sh-3115-62-62.fa-1201"
- }, {
- "name": "Ginnegapper",
- "motto": "Hoi",
- "uniqueId": "hhus-66a122dd036139a5882fa692acdbfa4b",
- "figureString": "hd-180-3.ch-215-79.lg-285-77.sh-290-62.ha-1002-62.hr-893-45"
- }, {
- "name": "Grassprietje",
- "motto": "",
- "uniqueId": "hhus-656ecd6285b0486873c582d2f10e03cc",
- "figureString": "hd-629-1.ch-675-72.lg-720-74.sh-725-1408.ha-1015.wa-2001"
- }, {
- "name": "Guarante",
- "motto": "Journalist - Puhekupla",
- "uniqueId": "hhus-71196d74bd192c206499cae1a097ed25",
- "figureString": "hr-515-34.hd-628-10.ch-660-71.lg-700-1408.he-1609-73.fa-1202-88"
- }, {
- "name": "H24",
- "motto": " Josh. 16 Agein.",
- "uniqueId": "hhus-b93a8c28ec7bcce552bc8491fa7c139a",
- "figureString": "hr-115-45.hd-190-10.ch-210-63.lg-281-82.sh-290-91"
- }, {
- "name": "hassan625",
- "motto": "Thinking",
- "uniqueId": "hhus-3bdfb2538b52aaa977f3994ca85ce17c",
- "figureString": "hr-831-61.hd-209-1.ch-3234-108.lg-3023-1336.sh-3016-107.ha-3209-62.ea-3107-62-62.fa-1201.ca-3085-1321.cc-3158-1336"
- }, {
- "name": "heet",
- "motto": "",
- "uniqueId": "hhus-0fc68249e88350536000f85ff2b16f8e",
- "figureString": "hr-155-31.hd-209-1.ch-210-1408.lg-275-1408.sh-290-1408.ha-1006.fa-3276-72.wa-3211-1408-1408"
- }, {
- "name": "Hotgerrit-jan12",
- "motto": "",
- "uniqueId": "hhus-f8e731503ebaae7394af6ba5277f461e",
- "figureString": "hr-115-33.hd-180-7.ch-235-62.lg-270-64.sh-3115-63-62.ea-1404-62.wa-2009-62.cc-260-62"
- }, {
- "name": "Htech",
- "motto": "",
- "uniqueId": "hhus-bebf1708a6b7092b6c0cbb2c060c2d6c",
- "figureString": "hr-893-45.hd-180-2.ch-3030-62.lg-285-82.ea-1404-62"
- }, {
- "name": "Ibex..",
- "motto": "",
- "uniqueId": "hhus-14aae131e4fe4292066c768c877d4efc",
- "figureString": "hr-893-42.hd-180-4.ch-210-62.lg-285-82"
- }, {
- "name": "Jack_the-Black",
- "motto": "[Sony] Receptionist II [TED]",
- "uniqueId": "hhus-228405fca0afce83206abf3eafc6992a",
- "figureString": "hr-165-42.hd-180-2.ch-220-83.lg-280-83.sh-300-62.fa-1201.ca-1819"
- }, {
- "name": "jatt.side",
- "motto": "Unacceptable to hotel management",
- "uniqueId": "hhus-72aef545b69add9071b0ddf392e83ad5",
- "figureString": "hr-115-45.hd-180-3.ch-3111-73-73.lg-3116-73-73.sh-3115-73-73.ha-1003-62.fa-1201"
- }, {
- "name": "Jeaster",
- "motto": "[NOPD] F.A.A [MtrH]",
- "uniqueId": "hhus-6a82bc6c4910cf639abc9e7798e1980e",
- "figureString": "hr-3163-33.hd-3091-2.ch-3077-96-64.lg-3058-110.sh-3089-110.ca-3085-1321.wa-2009-110.cc-3009-110-110"
- }, {
- "name": "jeffhardyv3",
- "motto": "Do what ever the BOBBA you wanna do!",
- "uniqueId": "hhus-bbaa52b2b8ee32ad9d5bf6fb1b02bfbb",
- "figureString": "hr-155-45.hd-180-8.ch-3321-85.lg-280-73.sh-290-1320.ha-1006.fa-3344-90"
- }, {
- "name": "JESDINERO",
- "motto": "I'm from CATALONIA.™",
- "uniqueId": "hhus-25013404d4c38e39051e948dfb32e11c",
- "figureString": "hr-110-45.hd-180-1.ch-235-76.lg-3116-71-64.sh-905-1408.he-1606-1408.fa-1204.ca-1806-85.wa-3211-1408-1408"
- }, {
- "name": "JockTraper",
- "motto": " Field Agent ll ",
- "uniqueId": "hhus-9fdf8e8590c50d061d5de01c94694376",
- "figureString": "hr-155-39.hd-195-1.ch-210-62.lg-280-64.ea-1403-62.cc-260-62"
- }, {
- "name": "joe.666666",
- "motto": "yolo",
- "uniqueId": "hhus-0b9f3f22a70897c4dc821c901c756ddd",
- "figureString": "hr-155-42.hd-209-1.ch-878-64-1408.lg-285-64.sh-300-64.ea-1404-64.cc-260-73"
- }, {
- "name": "jorentje1997",
- "motto": "",
- "uniqueId": "hhus-01f3094eeca786f4b7acea1e5a8fd47a",
- "figureString": "hr-893-31.hd-209-3.ch-877-70-79.lg-270-82"
- }, {
- "name": "Jorg3.",
- "motto": "Owner HabboSecurity.es - Jorge. [.ES]",
- "uniqueId": "hhus-dcffcf12dbfb8622d94cc79dd940c925",
- "figureString": "hr-676-31.hd-180-1.ch-804-82.lg-3088-1408-1408.sh-3068-82-82.ha-1013-82.fa-1201"
- }, {
- "name": "justin39634",
- "motto": "",
- "uniqueId": "hhus-7f86a374057c471527c48de4b813c06b",
- "figureString": "hr-802-45.hd-185-1.ch-809-1408.lg-3088-73-1408.sh-3068-64-64"
- }, {
- "name": "kartrider",
- "motto": "iel",
- "uniqueId": "hhus-7981741f86ea62cecc95d1f69cb82673",
- "figureString": "hr-155-39.hd-180-1.ch-804-82.lg-3023-64.sh-3068-91-1408.wa-2007"
- }, {
- "name": "kielokukka$",
- "motto": ":)",
- "uniqueId": "hhus-7fe9aa627eab9a29ca07f094a1963ac7",
- "figureString": "hr-9534-37.hd-3096-2.ch-3060-77.lg-3019-64.sh-3035-66.ca-1804-64.cp-3124-62"
- }, {
- "name": "killcancer",
- "motto": "",
- "uniqueId": "hhus-5a6c92233b274837e94e5d24203d4164",
- "figureString": "hr-837-61.hd-3097-29.ch-3014-110.lg-3019-110.ea-1402.fa-1212.ca-3217-78-64.cc-3008-63-64"
- }, {
- "name": "kingfarishaniff",
- "motto": "Noobs, Noobs everywhere..",
- "uniqueId": "hhus-0d69c95253312876df9cc9016a3d5d7a",
- "figureString": "hr-3260-43.hd-180-2.ch-3001-96-85.lg-3202-110-62.sh-3016-93.ha-3117-110.cc-3007-79-78"
- }, {
- "name": "Kingtrust",
- "motto": "",
- "uniqueId": "hhus-8afb3dab06fed3752b8d7d5d5d381e6e",
- "figureString": "hr-3163-52.hd-185-10.ch-3077-1329-85.lg-3017-85-73.sh-295-64.ea-3107-110-92.ca-1817.cc-3186-85"
- }, {
- "name": "laurensh1#",
- "motto": "Habborator.org :-)",
- "uniqueId": "hhus-64d135cb9ff923e145308670d7de5692",
- "figureString": "hr-125-40.hd-180-14.ch-3030-64.lg-285-64.sh-295-64.ea-1404-1408.fa-1201.ca-1815-1408.cc-260-1408"
- }, {
- "name": "LeenBakker",
- "motto": "I FART BUBBLES |",
- "uniqueId": "hhus-3432adde5e6047ccfd513dbbe2dea816",
- "figureString": "hr-125-42.hd-185-10.ch-215-1315.lg-3116-64-81.sh-295-62.ea-1406.fa-1204"
- }, {
- "name": "Lix",
- "motto": "Dead!",
- "uniqueId": "hhus-19e90938f225978783079ec81c22d4eb",
- "figureString": "hr-515-47.hd-626-1.ch-823-82.lg-3216-64.sh-725-66.he-3274-82.wa-2002"
- }, {
- "name": "lloyd789",
- "motto": "",
- "uniqueId": "hhus-7b4ee0aaf6d16a7709fecaece0e01cfc",
- "figureString": "hr-155-31.hd-190-1.ch-240-73.lg-285-82.sh-290-1408"
- }, {
- "name": "loltje",
- "motto": "Puma234 from the Netherlands",
- "uniqueId": "hhus-5bd8e7b8f67cc02c91cc0397770a5427",
- "figureString": "hr-115-42.hd-180-7.ch-255-76.lg-285-83.sh-290-62"
- }, {
- "name": "Lovliest",
- "motto": "~ The one who dreams hard ~",
- "uniqueId": "hhus-c56f8e234497f1f249c4457f102fa2c6",
- "figureString": "hr-515-45.hd-600-1.ch-660-64.lg-710-72.sh-725-64.he-3358-72-72.ca-3414-72"
- }, {
- "name": "Luxuryas",
- "motto": "(\\(\\ \r(=*.^) Habbo.com.br |\r(_\")\")",
- "uniqueId": "hhus-62d81b2741d31dd5c6403b393ce4a866",
- "figureString": "hr-170-34.hd-190-19.ch-255-66.lg-3290-68.sh-908-1408.ha-3298-1408-73.he-3297-1408.ea-1404-64.fa-3276-72.ca-1819.cc-3280-1320-1408"
- }, {
- "name": "manderijntje",
- "motto": "Guaranteed to stay fresh",
- "uniqueId": "hhus-1d5bc19e2af575990910ef205f3468c3",
- "figureString": "hr-830-42.hd-180-1370.ch-805-66.lg-285-1408.sh-305-1408"
- }, {
- "name": "Marco.11",
- "motto": "Habbospot dot nl",
- "uniqueId": "hhus-a2934971e58eefc5bfa7716e0f3ef02f",
- "figureString": "hr-681-31.hd-195-28.ch-220-62.lg-270-83.sh-908-62.fa-1212.ca-1819"
- }, {
- "name": "Mesox",
- "motto": "HabboFun.nl",
- "uniqueId": "hhus-adc0590348e370ae90b0a4920e165970",
- "figureString": "hr-165-34.hd-180-14.ch-215-1408.lg-275-73.sh-295-1408.ca-1804-73"
- }, {
- "name": "miriam34",
- "motto": "to have fun",
- "uniqueId": "hhus-10a920d33fb7efe87152a5732ec15409",
- "figureString": "hr-545-31.hd-600-1.ch-635-1408.lg-700-1408.sh-730-1408"
- }, {
- "name": "Mironal",
- "motto": "",
- "uniqueId": "hhus-fd850a7c7bbd4b966685548502148fee",
- "figureString": "hr-125-32.hd-190-1.ch-250-82.lg-280-64.sh-305-82.ca-1801-64"
- }, {
- "name": "Moeris",
- "motto": "old skool... keep'n it real! •",
- "uniqueId": "hhus-ad8d9721748a910321d2e884f3677f3e",
- "figureString": "hd-180-1369.ch-3110-83-80.lg-3116-83-75.sh-295-81.ha-1009-81.he-1610.fa-1212.wa-2001"
- }, {
- "name": "monkred",
- "motto": "USMC: Col, DIRINT, USCC.",
- "uniqueId": "hhus-00e01b0a738c6fe9e082f5fc9e9cf9f3",
- "figureString": "hd-3092-1.ch-875-1425-1321.lg-285-82.sh-300-110.ea-1403-110.fa-1201.ca-3413-93.wa-2009-1426"
- }, {
- "name": "Mumiiiefied",
- "motto": "9",
- "uniqueId": "hhus-e7b433fac67776dfec18ea951891f5c3",
- "figureString": "hr-145-45.hd-190-24.ch-210-63.lg-275-64.sh-300-62.ea-1406"
- }, {
- "name": "mynameisgabriel",
- "motto": "Winter is Coming",
- "uniqueId": "hhus-5a24341300c9c9e69935a83a80e08d1f",
- "figureString": "hr-155-31.hd-190-10.ch-215-84.lg-281-1408.sh-295-1408"
- }, {
- "name": "Nederland.x.",
- "motto": "#notinmyname",
- "uniqueId": "hhus-ac1bbd359a9e85c0230f1cc69adff77c",
- "figureString": "hr-165-45.hd-205-1370.ch-220-90.lg-280-90.ha-1010-1408.fa-1205-64"
- }, {
- "name": "NeverSkem",
- "motto": "Waiting for TI5",
- "uniqueId": "hhus-813aed11132ab9943f093ed96b5bc5b8",
- "figureString": "hd-180-10.ch-230-1408.lg-270-1408.sh-290-1408.ha-1014.ea-1406.fa-1210"
- }, {
- "name": "NLHinki46",
- "motto": "Habbo Hotel Nederland: Hinki46",
- "uniqueId": "hhus-374c5c9f833fa0f20b1f5a1a07a0b99f",
- "figureString": "hr-893-45.hd-180-2.ea-1404-64.lg-281-1315.sh-295-1315.ch-250-1315"
- }, {
- "name": "Optimar",
- "motto": "[EPF] Recruit",
- "uniqueId": "hhus-3535209ee3fabea7ec758d1fabc36114",
- "figureString": "hr-115-42.hd-180-3.ch-225-82.lg-285-64.sh-3115-64-64.wa-2009-64"
- }, {
- "name": "Origif",
- "motto": "Habbo.dk & ShockNews.dk",
- "uniqueId": "hhus-9038c066ab0d4b3a3b12648998cb0d93",
- "figureString": "hr-125-32.hd-180-1370.ch-235-73.lg-285-91"
- }, {
- "name": "Ounz",
- "motto": "Habbies.nl",
- "uniqueId": "hhus-16c081e4c635559e8e9eb6eb2197d33a",
- "figureString": "hr-155-42.hd-180-1.ch-3030-90.lg-285-80.sh-290-1408.fa-1204"
- }, {
- "name": "paul748",
- "motto": "",
- "uniqueId": "hhus-3c5ddbe725acce9645b87284119ca919",
- "figureString": "hd-180-1.ch-210-1408.lg-3116-1408-1408"
- }, {
- "name": "Paulwalla",
- "motto": "ju",
- "uniqueId": "hhus-bc4beeb2ad81ccbd1216c86fafa7ef2d",
- "figureString": "hr-3090-33.hd-200-2.ch-210-62.lg-285-64.cc-260-89.cp-3126-62"
- }, {
- "name": "POKeEMIEL",
- "motto": "pokemon",
- "uniqueId": "hhus-aa6a3c6cdc13d8a1bf7497bc4e5f151d",
- "figureString": "hr-890-45.hd-625-10.ch-660-82.lg-3216-64.sh-907-64.he-3274-64"
- }, {
- "name": "pquadro20",
- "motto": "<< Italia. >>",
- "uniqueId": "hhus-33c956f078bb0cf6416de5d4d6f8e1a6",
- "figureString": "hd-195-10.ch-255-1408.lg-3023-1408.sh-3068-1408-1408.ha-1004-1408"
- }, {
- "name": "Qaito",
- "motto": "aka EJS12 @ NL",
- "uniqueId": "hhus-3892c2dee964173335b46fd5cf85fd4d",
- "figureString": "hr-115-39.hd-180-3.ch-3030-91.lg-3116-81-81.sh-290-62"
- }, {
- "name": "Queenzachy",
- "motto": " Security II ",
- "uniqueId": "hhus-ceaa842968caffc45f470d6f3aec0564",
- "figureString": "hr-155-45.hd-205-1.ch-255-85.lg-285-85.sh-290-85.ha-1002-85"
- }, {
- "name": "R0l3IN",
- "motto": "",
- "uniqueId": "hhus-3b228546513779c352b4a0c1778e9e12",
- "figureString": "hr-893-45.hd-180-2.ch-210-73.lg-285-78.sh-290-62"
- }, {
- "name": "radicalhabbo",
- "motto": "love more worry less",
- "uniqueId": "hhus-750752a65489f5bbed7e0b09933a396d",
- "figureString": "hr-3090-34.hd-190-1.ch-266.lg-285-82.ha-1004-1408"
- }, {
- "name": "raiderflow*",
- "motto": "Hi , from Belgium !",
- "uniqueId": "hhus-a49c01a6137d4a33ca0afbd161e61003",
- "figureString": "hr-155-45.hd-180-14.ch-3030-1408.lg-285-81.sh-290-1408"
- }, {
- "name": "raydevinlr",
- "motto": "Mmm..",
- "uniqueId": "hhus-d97ec1afe160f080a5e176c8335bc588",
- "figureString": "hr-155-45.hd-180-1.ch-3030-1408.lg-3320-82-82.sh-290-1408.cc-3294-64-1408"
- }, {
- "name": "riagentheco",
- "motto": "ƒHabbo Helperƒ",
- "uniqueId": "hhus-c2738e28ffcdff0d0fbd66b7241f0b63",
- "figureString": "hr-890-39.hd-600-10.ch-685-72.lg-715-72.sh-907-72.ca-1810.wa-2008"
- }, {
- "name": "roan100",
- "motto": "Dutch",
- "uniqueId": "hhus-88cd74b74d286a57d2c9414f9f97723c",
- "figureString": "hr-893-31.hd-180-1.ch-878-83-1408.lg-280-1408.sh-295-64.ca-1805-1408.wa-2007"
- }, {
- "name": "Rored",
- "motto": "fku o/",
- "uniqueId": "hhus-ced3013ca3362e75f2d34432cb49ebe1",
- "figureString": "hr-802-31.hd-209-8.ch-210-64.lg-3078-64.sh-300-64.ha-1021-64.he-1601.wa-3074-64-1408"
- }, {
- "name": "RubSt",
- "motto": "El nombre es Ruben.",
- "uniqueId": "hhus-f9ebce3bd17d9310479cda316cead590",
- "figureString": "hr-893-45.hd-180-2.ch-215-73.lg-275-64.sh-290-62.ea-1401-62"
- }, {
- "name": "Russell360&",
- "motto": "",
- "uniqueId": "hhus-ea7a9e203b4f2987933a031233b08d9e",
- "figureString": "hd-200-28.ch-210-62.lg-280-64.sh-908-63.ha-1002-62.wa-2004-68.cc-260-62"
- }, {
- "name": "ryan1806",
- "motto": "Holds: soup",
- "uniqueId": "hhus-681aa4f24ba85f8d5f6500225e89ab46",
- "figureString": "hr-155-42.hd-180-1.ch-245-83.lg-285-91.sh-300-77"
- }, {
- "name": "samus...",
- "motto": "Habbo Helper 2oo3! Habbo.es !",
- "uniqueId": "hhus-d4929ac35d3c2ebc5fc60ff247c1162d",
- "figureString": "hr-893-42.hd-190-14.ch-262-1408.lg-285-90.sh-290-1408.fa-1201"
- }, {
- "name": "Sarenta",
- "motto": "",
- "uniqueId": "hhus-cf89c941e3b96d64931ea3ed6ad3e6b0",
- "figureString": "hd-600-1.sh-730-62.hr-545-45.lg-715-62.ch-660-64"
- }, {
- "name": "Shadowguus",
- "motto": "",
- "uniqueId": "hhus-d3ecfec5b577a6c281bbde7934bef30e",
- "figureString": "hr-893-39.hd-180-2.ch-215-66.lg-275-82"
- }, {
- "name": "Simon,.",
- "motto": "{CSI} Bailiff l H-H",
- "uniqueId": "hhus-845016f59b2bb4e43bcf2c82f005484d",
- "figureString": "hr-110-31.hd-185-7.ch-225-71.lg-270-64.sh-300-64.cc-260-71"
- }, {
- "name": "sirerichar90",
- "motto": ".:.tefi/ Habbo.es",
- "uniqueId": "hhus-cf2f9b789a762be8fd87fb323608d576",
- "figureString": "hr-170-40.hd-180-1.ch-210-73.lg-275-64.sh-295-64.ha-1009-73.fa-1205-62.ca-1817"
- }, {
- "name": "sirjonasxx",
- "motto": " ººº HABBO - BUGS ººº",
- "uniqueId": "hhus-67c261599ce29b25e9945afd5acb3273",
- "figureString": "hr-893-42.hd-180-2.ch-3030-63.lg-275-64.sh-295-64.ca-1813"
- }, {
- "name": "Skittles",
- "motto": "Al mijn vrienden strijden als mandela.",
- "uniqueId": "hhus-4f4d6771ad51cc1c48f3480a5fbd9fca",
- "figureString": "hr-830-48.hd-180-1.ch-210-1408.lg-3216-1320.sh-3068-91-85.ha-3173-64.cc-3294-85-66.cp-3126-64"
- }, {
- "name": "skunkboyjr",
- "motto": "And He lived happily ever after...",
- "uniqueId": "hhus-33084f8a08577a6ac4a66153d0ea0853",
- "figureString": "hd-205-1.ch-255-1408.lg-280-1408.sh-906-1408"
- }, {
- "name": "slimmeke1",
- "motto": "Ambassador on habbo.nl",
- "uniqueId": "hhus-b19c53799ec612548dabaa96f6729698",
- "figureString": "hd-180-14.ch-210-1408.lg-280-1408"
- }, {
- "name": "SoylentBob",
- "motto": "been a while :)",
- "uniqueId": "hhus-f22918c9881525f974b548c63b8847a8",
- "figureString": "hr-3090-49.hd-209-1.ch-210-100.lg-270-62.sh-906-91.ea-1404-62"
- }, {
- "name": "spectorTheHabbo",
- "motto": "I | My SIS.",
- "uniqueId": "hhus-c58785c576a33e5d4480e36d217a3f3e",
- "figureString": "hr-891-1316.hd-209-13.ch-255-82.lg-275-62.ha-1003-82.ea-1404-62"
- }, {
- "name": "speedy-100",
- "motto": "Raawwrrrr, om nom nom nom.",
- "uniqueId": "hhus-6bd051a02d646ca0761f45360c65c8e0",
- "figureString": "hr-155-47.hd-180-1.ch-255-91.lg-280-64.sh-290-1408"
- }, {
- "name": "Steenpad",
- "motto": "",
- "uniqueId": "hhus-a3409f335b6a2a1209901ddedc2f7b54",
- "figureString": "hr-540-32.hd-629-2.ch-660-65.lg-720-83.sh-730-75.he-1610"
- }, {
- "name": "Stitch-",
- "motto": "Im Just Being Random (: ~ Andy ~",
- "uniqueId": "hhus-0787b3fc769c03a92ba38bc0a301770e",
- "figureString": "hr-125-31.hd-180-1.ch-3030-62.lg-280-70.ha-1008.ea-1406.ca-1806-70"
- }, {
- "name": "Teletext-",
- "motto": "From the Netherlands.",
- "uniqueId": "hhus-a9b1fd882ab488a4923a8f0da7a315fd",
- "figureString": "hr-155-45.hd-180-3.ch-245-62.lg-285-91.sh-295-62.ca-1815-91"
- }, {
- "name": "Tenenkaas",
- "motto": "New account: SuperArnejan",
- "uniqueId": "hhus-b6dfda84d6565175c82e4285aa85c4a2",
- "figureString": "hd-185-2.ch-235-1315.lg-285-64.sh-290-62.hr-115-45"
- }, {
- "name": "ThaSprout",
- "motto": "Did you smash though?",
- "uniqueId": "hhus-751d5bb9fd0b4d0fa5ea72830fa4d7b9",
- "figureString": "hd-205-1.ch-220-85.lg-270-89.sh-906-91.ea-1403-62.fa-1208-64"
- }, {
- "name": "TheDogGoesMoo",
- "motto": "Where Do 5 Gays Walk, One Direction",
- "uniqueId": "hhus-5cc75f3de94ca2316430cc2bbce6f059",
- "figureString": "hr-3012-61.hd-605-2.ch-660-96.lg-3057-62.he-1606-96.fa-3230-110"
- }, {
- "name": "tibouleboss",
- "motto": "Born. - french habbo",
- "uniqueId": "hhus-7c30a6797872ba6574ee6db6fea01edd",
- "figureString": "hd-180-28.ch-876-72-62.lg-270-80.ha-1007"
- }, {
- "name": "UglyChild",
- "motto": "ugly",
- "uniqueId": "hhus-f778899c88a9b71b1ceaed36e37e795c",
- "figureString": "hd-180-1.ch-210-1408.lg-275-82.sh-290-1408.ha-1003-1408"
- }, {
- "name": "Ushgarak",
- "motto": "",
- "uniqueId": "hhus-04b00a733f655188810ab012a126a70b",
- "figureString": "hr-155-32.hd-195-1.ch-878-64-1408.lg-285-81.sh-305-1408.fa-3276-73"
- }, {
- "name": "Vineen08",
- "motto": "#habbonoise",
- "uniqueId": "hhus-26146642b7f284492a97338c34830e44",
- "figureString": "hr-892-37.hd-209-1.ch-875-64-64.lg-280-64.sh-300-64.ha-1014.fa-1204"
- }, {
- "name": "Vorez",
- "motto": "ik kanker jij kankert wij kankeren",
- "uniqueId": "hhus-967ac9d2854745de8582276e5857a65f",
- "figureString": "hr-155-39.hd-180-2.ch-255-89.lg-275-87"
- }, {
- "name": "Wallix",
- "motto": "Wall-e 'nd ix",
- "uniqueId": "hhus-edda0587bc0c4862f9dae0f2a0e19d1e",
- "figureString": "hr-115-42.hd-180-1.ch-3030-64.lg-285-82.sh-305-62"
- }, {
- "name": "Woise",
- "motto": "o\\_/l'\"o\"\\_==__ \\»(‡)___(‡)_»",
- "uniqueId": "hhus-d0481b51e2f31fc5d8c59e3b660f9ad4",
- "figureString": "hr-170-45.hd-180-8.ch-804-81.lg-280-64.ha-1004-64.fa-1201"
- }, {
- "name": "zawwathelost",
- "motto": "",
- "uniqueId": "hhus-901216d6b6d035dac7187030315dde98",
- "figureString": "hr-165-45.hd-190-2.ch-3030-73.lg-280-64.sh-290-62"
- }, {
- "name": "ZhishenKhoo",
- "motto": "[3SS] Head Lt; Khoo EQ: Glock/Blade",
- "uniqueId": "hhus-db30f5089732de90a6ab5d95e70b41b3",
- "figureString": "hr-3163-61.hd-209-1.ch-3030-110.lg-3078-110.sh-3016-76.ca-3175-92.wa-3263-1325-92.cc-3007-76-76"
- }, {
- "name": "zout",
- "motto": "sprakeloos",
- "uniqueId": "hhus-bed6452d2960078b9d9c3eb3628f0e6f",
- "figureString": "hr-892-31.hd-625-14.ch-660-72.lg-710-72.sh-725-80.ha-1020"
- }, {
- "name": "zukur",
- "motto": "Idiots surrounded by me!",
- "uniqueId": "hhus-7c43173b35503f7f99a3a33fb3df43b8",
- "figureString": "hd-600-1.ch-880-82.lg-705-82.sh-730-90.he-1610.fa-1206-64"
- }],
- "groups": [{
- "id": "g-hhus-1332dcd15645042afc396f726351721d",
- "name": "Ditch the Label",
- "description": "The official Ditch the Label anti-bullying public group. Join now and support our cause! Find out more at www.DitchtheLabel.org",
- "type": "NORMAL",
- "roomId": "r-hhus-a08de337a9dc601102b0139194164f78",
- "badgeCode": "b13114s19134a55aa7427bc0a3f0c083e94232fb3475",
- "primaryColour": "242424",
- "secondaryColour": "ffffff",
- "isAdmin": false
- }, {
- "id": "g-hhus-c86db765b12d3146dde2495d19510cf4",
- "name": "HabboHelpers.com",
- "description": "HabbboHelpers.com is a community for all Habbos worldwide who'd like to expand their Habbo Helper experience and chat with other Habbo Helpers from all over the world.",
- "type": "NORMAL",
- "roomId": "r-hhus-49cb84ec587476b574febefffd7a0cd4",
- "badgeCode": "b27114s02024s85114344b8b79da75befaac992a26ceb1ceb1",
- "primaryColour": "d96d00",
- "secondaryColour": "e5e5e5",
- "isAdmin": true
- }, {
- "id": "g-hhus-91626d8b14dc7d1d74587c5ae7fc4305",
- "name": "HabboHelpers.com",
- "description": "HabboHelpers.com, an official fansite for Habbo.com bringing in the new community of Habbo Helpers! Could you be the next helper? Join us now!",
- "type": "NORMAL",
- "roomId": "r-hhus-5d4b5af38748480c9200bc96683b6d18",
- "badgeCode": "b19134s28091s85113s85114s801159ebea67b07ce5e25a12e79cc5a337608",
- "primaryColour": "bd2121",
- "secondaryColour": "c0c0c0",
- "isAdmin": false
- }, {
- "id": "g-hhus-48abd5701c898ffebc98d476bf38c018",
- "name": "HabbolifeForum",
- "description": "HabboLifeForum.com is one of most famous fansites in Habbo Italy",
- "type": "NORMAL",
- "roomId": "r-hhus-8472834d25a5a96ce67b255f3203a440",
- "badgeCode": "b22054s12067t16057s54111230b63226bfdc4a0d4173e87ddf0f2e5",
- "primaryColour": "43a0d1",
- "secondaryColour": "00539b",
- "isAdmin": false
- }, {
- "id": "g-hhus-aaaf0afa1d5f5f7ddd5fcddb071fe092",
- "name": "Habbox.com",
- "description": "Habbox is an official fansite of Habbo which has been around since 2003! Which makes us the oldest running Fansite. We provide you with the latest Habbo news, guides and rare values. We also have a forum, radio and Wiki! We host events and competitions!",
- "type": "NORMAL",
- "roomId": "r-hhus-9978ec749fbcb9b5ff7700905c682564",
- "badgeCode": "b22014s17013s85024s17015e337bc4b2dff128a0e86fda6ad4a487c",
- "primaryColour": "ec7600",
- "secondaryColour": "575757",
- "isAdmin": false
- }, {
- "id": "g-hhus-59ad480a8d7e557c4a80a11ec4cf0582",
- "name": "Official Habbo Helpers",
- "description": "Become a Helper and help other Habbos.",
- "type": "NORMAL",
- "roomId": "r-hhus-fcd7db220093b38a9b638dc97d86c916",
- "badgeCode": "b27124s05125s02113s85094ef615ea9e645c9b9ed1e8238fd4c6623",
- "primaryColour": "ebebeb",
- "secondaryColour": "bf2222",
- "isAdmin": false
- }, {
- "id": "g-hhus-3df14d1f984304384939c637181dcdde",
- "name": "Read and share open beta",
- "description": "Read and share open beta",
- "type": "NORMAL",
- "roomId": "r-hhus-7527c58ce58c36913432f4fa9e86d9f8",
- "badgeCode": "b21034t2711407a3cde5853d88f0d86f77bab140b8c1",
- "primaryColour": "ffffff",
- "secondaryColour": "84de00",
- "isAdmin": false
- }, {
- "id": "g-hhus-70fae41ecd66086ffe32c6ffbcf229d7",
- "name": "Sneak Peekers",
- "description": "Join this group if you want a preview of some features we're working on. Read the blue info terminal at the stairs for further details!",
- "type": "NORMAL",
- "roomId": "r-hhus-d4da0e9515461142be51b58471ee31db",
- "badgeCode": "b24134s20023s20025s59171s06117b02e0890039dce36e999573e0544e40e",
- "primaryColour": "ffd601",
- "secondaryColour": "242424",
- "isAdmin": false
- }, {
- "id": "g-hhus-fd92759bc932225f663f1521be8ce255",
- "name": "UK",
- "description": "",
- "type": "NORMAL",
- "roomId": "r-hhus-dcf2e2a74a39f64dc627c5ef32a1aa83",
- "badgeCode": "b22114s19107t50064e4bcf7c532fdcecc1467d2185d975783",
- "primaryColour": "ffd601",
- "secondaryColour": "ffffff",
- "isAdmin": false
- }],
- "rooms": [{
- "id": "r-hhus-a091e0f1d891108b49ca7af953386f0f",
- "name": "Venice Beach Rollercoaster",
- "description": "Ahh well..",
- "creationTime": "2010-06-10T09:02:16.000+0000",
- "maximumVisitors": 25,
- "tags": ["habbies"],
- "officialRoom": true,
- "ownerName": "koeientemmer",
- "ownerUniqueId": "hhus-9cd61b156972c2eb33a145d69918f965",
- "thumbnailUrl": "https://habbo-stories-content.s3.amazonaws.com/navigator-thumbnail/hhus/31159787.png",
- "imageUrl": "https://habbo-stories-content.s3.amazonaws.com/fullroom-photo/hhus/31159787.png",
- "rating": 116,
- "categories": ["navigator.flatcategory.global.CHAT"]
- }, {
- "id": "r-hhus-abb87256459a4f9069a8fe86f5a188ed",
- "name": "Venice Beach Seaworld",
- "description": "Come and relax.. or die face to face with the great whites..",
- "creationTime": "2010-06-10T09:02:21.000+0000",
- "maximumVisitors": 25,
- "tags": [],
- "officialRoom": true,
- "ownerName": "koeientemmer",
- "ownerUniqueId": "hhus-9cd61b156972c2eb33a145d69918f965",
- "thumbnailUrl": "https://habbo-stories-content.s3.amazonaws.com/navigator-thumbnail/hhus/31159823.png",
- "imageUrl": "https://habbo-stories-content.s3.amazonaws.com/fullroom-photo/hhus/31159823.png",
- "rating": 11,
- "categories": []
- }, {
- "id": "r-hhus-e6f2266fe691e2aa7490351680585af8",
- "name": "Hell yeah",
- "description": null,
- "creationTime": "2011-05-19T18:53:33.000+0000",
- "maximumVisitors": 25,
- "tags": [],
- "officialRoom": true,
- "ownerName": "koeientemmer",
- "ownerUniqueId": "hhus-9cd61b156972c2eb33a145d69918f965",
- "thumbnailUrl": "https://habbo-stories-content.s3.amazonaws.com/navigator-thumbnail/hhus/46093264.png",
- "imageUrl": "https://habbo-stories-content.s3.amazonaws.com/fullroom-photo/hhus/46093264.png",
- "rating": 6,
- "categories": ["navigator.flatcategory.global.CHAT"]
- }, {
- "id": "r-hhus-49cb84ec587476b574febefffd7a0cd4",
- "name": "HabboHelpers.com",
- "description": "",
- "creationTime": "2013-04-20T16:05:18.000+0000",
- "habboGroupId": "g-hhus-c86db765b12d3146dde2495d19510cf4",
- "maximumVisitors": 10,
- "tags": ["habbohelpers"],
- "officialRoom": true,
- "ownerName": "koeientemmer",
- "ownerUniqueId": "hhus-9cd61b156972c2eb33a145d69918f965",
- "thumbnailUrl": "https://habbo-stories-content.s3.amazonaws.com/navigator-thumbnail/hhus/62423647.png",
- "imageUrl": "https://habbo-stories-content.s3.amazonaws.com/fullroom-photo/hhus/62423647.png",
- "rating": 447,
- "categories": []
- }, {
- "id": "r-hhus-0f7319d1291373ddd1d609ac129fd82f",
- "name": "Bouwers Club",
- "description": null,
- "creationTime": "2013-12-04T15:13:43.000+0000",
- "maximumVisitors": 25,
- "tags": [],
- "officialRoom": true,
- "ownerName": "koeientemmer",
- "ownerUniqueId": "hhus-9cd61b156972c2eb33a145d69918f965",
- "thumbnailUrl": "https://habbo-stories-content.s3.amazonaws.com/navigator-thumbnail/hhus/65285667.png",
- "imageUrl": "https://habbo-stories-content.s3.amazonaws.com/fullroom-photo/hhus/65285667.png",
- "rating": 0,
- "categories": ["navigator.flatcategory.global.CHAT"]
- }],
- "badges": [{
- "code": "THI41",
- "name": "...will go on!!!",
- "description": "Winner of broken hearts 2/2"
- }, {
- "code": "UK052",
- "name": "0800 Reverse",
- "description": "Got home safely in the Justin Case quest"
- }, {
- "code": "UK117",
- "name": "0800 Reverse",
- "description": "No Credit. No Problem. Stay connected with 0800 Reverse"
- }, {
- "code": "UK136",
- "name": "0800 Reverse: Mobile to Mobile",
- "description": "Group Member"
- }, {
- "code": "ACH_RegistrationDuration20",
- "name": "100 % True Habbo XX",
- "description": "Be a member of the community for 1825 days."
- }, {
- "code": "COM12",
- "name": "100,000 Fans Badge",
- "description": "One of 100,000 awesome Fans!"
- }, {
- "code": "BR071",
- "name": "1Goal",
- "description": "I support 1Goal. Education for all."
- }, {
- "code": "ACH_AvatarTags1",
- "name": "5 words of wisdom I",
- "description": "For tagging yourself with 5 tags."
- }, {
- "code": "ACH_RespectEarned5",
- "name": "50% Respected Habbo V",
- "description": "For earning respect 166 times."
- }, {
- "code": "NL008",
- "name": "50,000 Fans Badge",
- "description": "A big thanks for getting us 50,000 Fans!"
- }, {
- "code": "thx",
- "name": "<3",
- "description": "<3"
- }, {
- "code": "DRA04",
- "name": "A fond farewell to the Dragon",
- "description": "Comemorating its return in 2024"
- }, {
- "code": "UK076",
- "name": "Aliens in the Attic",
- "description": "Saved Habbo from those Aliens in the Attic"
- }, {
- "code": "UK031_HHUK",
- "name": "Alvin and the Chipmunks",
- "description": "Supported Alvin and the Chipmunks in the Squeakquel bands battle"
- }, {
- "code": "UK095",
- "name": "Alvin dvd",
- "description": "Winner of the Squeakqual treasure hunt."
- }, {
- "code": "ancients_start",
- "name": "Ancient Map Part I",
- "description": "Following in the footsteps of the Ancients..."
- }, {
- "code": "ancients_ssahara",
- "name": "Ancient Map Part II",
- "description": "Following in the footsteps of the Ancients..."
- }, {
- "code": "AF1_HHUK",
- "name": "April Fools Day 2009",
- "description": "You got pranked on April Fools Day 2009"
- }, {
- "code": "XM9_HHUK",
- "name": "Arctic Snowballers!",
- "description": "For Arctic Maze survivors!"
- }, {
- "code": "CAG_HHUK",
- "name": "Atlantis World",
- "description": "Winner in the Frederic Santini Comp - Atlantis. Sep 09."
- }, {
- "code": "GLD_HHUK",
- "name": "Badger",
- "description": "Level 4 - The digger one - has information you cannot find. Sorry. This Achievement is not available at the moment."
- }, {
- "code": "THI99",
- "name": "Balloons",
- "description": "Air in plastic"
- }, {
- "code": "GLB_HHUK",
- "name": "Bambi",
- "description": "Level 2 - The loving one - Sorry. This Achievement is not available at the moment."
- }, {
- "code": "ACH_BattleBallPlayer5",
- "name": "Battle Ball Player V",
- "description": "For playing Battle Banzai."
- }, {
- "code": "ACH_BattleBallWinner2",
- "name": "Battle Banzai Star II",
- "description": "For gaining 125 winner points at Battle Banzai"
- }, {
- "code": "ACH_GamePlayed2",
- "name": "Battle Royal II",
- "description": "For playing and winning Snow Storm or for the game of Battle Ball 5 times."
- }, {
- "code": "HWD03",
- "name": "Best Actress Prediction",
- "description": "Predicted the best actress from the 2011 awards!"
- }, {
- "code": "HWD06",
- "name": "Best Animated Film Prediction",
- "description": "Predicted the best animated film of the 2011 awards!"
- }, {
- "code": "COM13",
- "name": "Bot Love Badge",
- "description": "Found the Bot I married - Vegas 2011"
- }, {
- "code": "NYR04",
- "name": "Brain Explosion",
- "description": "I answered all ten HC Velocity quiz questions correctly! New Year 2010/2011."
- }, {
- "code": "UK051_HHUK",
- "name": "Bronze Santa Hat",
- "description": "I helped revive Santa's broken heart and miserable mood in time for Christmas. December 2009."
- }, {
- "code": "ACH_RoomDecoBC4",
- "name": "Builders Club Designer IV",
- "description": "Build a room with 16 Builders Club furnis."
- }, {
- "code": "GLA_HHUK",
- "name": "Bunny",
- "description": "Level 1 - The speedy one - Sorry. This Achievement is not available at the moment."
- }, {
- "code": "CNY01_HHUK",
- "name": "CNY 2010",
- "description": "Chinese New Year observation quest winner."
- }, {
- "code": "ACH_PetLover1",
- "name": "Can I Keep Him? I",
- "description": "Own 1 pet to earn this badge."
- }, {
- "code": "UK112",
- "name": "Capri-Sun Limited Edition Badge",
- "description": "A big thanks from Ed and Omar for catching all the Capri-Sun pouches!"
- }, {
- "code": "ACH_SelfModChatScrollSpeedSeen1",
- "name": "Chat Scroll Speed",
- "description": "For being aware of chat scroll speed options"
- }, {
- "code": "UK111",
- "name": "ChildLine Anti-Bullying Badge",
- "description": "Take action together against bullying!"
- }, {
- "code": "UK176",
- "name": "ChildLine Goup",
- "description": "I am a member of the ChildLine group"
- }, {
- "code": "UK175",
- "name": "ChildLine Self-harm Awarness",
- "description": "I correctly answered the ChildLine Self-harm Awareness Quiz!"
- }, {
- "code": "XMS08",
- "name": "Christmas Maze 5",
- "description": "Christmas Maze 5"
- }, {
- "code": "CLB02",
- "name": "Clearasil Ultra 2",
- "description": "Shine shine"
- }, {
- "code": "FBC12",
- "name": "Creepy Church Myth (3/4)",
- "description": "Creepy Church Myth"
- }, {
- "code": "Z85",
- "name": "Crew Member",
- "description": "I joined the Dance Crew!"
- }, {
- "code": "STO01",
- "name": "Curious Creatures",
- "description": "\"Read and Share, Super Rare\", quoth the Raven"
- }, {
- "code": "ACH_SelfModDoorModeSeen1",
- "name": "Door Mode",
- "description": "For being aware of room door modes"
- }, {
- "code": "ACH_NinjasNotSpotted3",
- "name": "Dragon Ninja Spotter III",
- "description": "Almost spotted 111 Dragon Ninjas. Good work!"
- }, {
- "code": "EUR02",
- "name": "Eurovision Semi Final 2",
- "description": "Your pick made it all the way to the finals!"
- }, {
- "code": "RADZZ",
- "name": "Event Promoter",
- "description": "Event Promoter"
- }, {
- "code": "ACH_EsA2",
- "name": "FREEZE Fighter II",
- "description": "Freeze 5 Habbos to earn this badge!"
- }, {
- "code": "BBBH1_HHUK",
- "name": "Farewell Big Hand",
- "description": "Awarded to all who paid tribute to the Big Hand. November 2009."
- }, {
- "code": "ACH_BaseJumpDaysPlayed1",
- "name": "Fast Food Regular I",
- "description": "For playing Fast Food on 2 different days"
- }, {
- "code": "ACH_BaseJumpMissile3",
- "name": "Fast Food Rocketeer III",
- "description": "For launching 10 missiles in Fast Food"
- }, {
- "code": "ACH_BaseJumpWins5",
- "name": "Fast Food Winner V",
- "description": "For winning 35 times in Fast Food"
- }, {
- "code": "CNS03",
- "name": "Fierce Badge of the Dragon",
- "description": "Habbo Chinese New Year 2013"
- }, {
- "code": "ACH_FireworksCharger1",
- "name": "Firestarter I",
- "description": "For charging 20 Pixels into Firework Furni."
- }, {
- "code": "UK081",
- "name": "Flag it",
- "description": "1/3 of the Click Clever, Click Safe Code"
- }, {
- "code": "UK008",
- "name": "Flint's Meatballs",
- "description": "Saved Habbo from a freak weather machine"
- }, {
- "code": "GLE_HHUK",
- "name": "Fox",
- "description": "Level 5 - The clever one - is swift of thought and foot. Sorry. This Achievement is not available at the moment."
- }, {
- "code": "MRG00",
- "name": "Friendship Bracelet",
- "description": "A stranger is a friend you have yet to meet!"
- }, {
- "code": "ACH_RoomDecoFurniTypeCount9",
- "name": "Furni Collector IX",
- "description": "For building a room with 59 different Furnis."
- }, {
- "code": "AU019",
- "name": "Generator Rex Badge",
- "description": "Generator Rex Group Member"
- }, {
- "code": "ACH_GuideRequester2",
- "name": "Get Help II",
- "description": "You requested 5 help requests."
- }, {
- "code": "ACH_GuideTourTaker3",
- "name": "Get a Tour III",
- "description": "You spent 10 minutes on tour with one of the Helpers."
- }, {
- "code": "ACH_GuideFeedbackGiver2",
- "name": "Give Feedback II",
- "description": "For Giving feedback 5 times to Helpers."
- }, {
- "code": "FBC06",
- "name": "Gold Bar Spotter",
- "description": "I spotted the Facebook Gold Bar!"
- }, {
- "code": "NI5",
- "name": "Gold Rush - Mythology",
- "description": "Gold Rush - Mythology"
- }, {
- "code": "ACH_GuideAdvertisementReader1",
- "name": "Gran Tourismo",
- "description": "Check out the guided Tours"
- }, {
- "code": "ACH_GiftReceiver1",
- "name": "Greet me I",
- "description": "For receiving a gift."
- }, {
- "code": "UK114",
- "name": "Gulliver's Travels \"Happy Face\" badge",
- "description": "I found the wheat, so Gulliver didn't go hungry!"
- }, {
- "code": "UK027",
- "name": "Guy Fawkes Quest",
- "description": "I stopped Guy Fawkes blowing up Habbo Parliament. November 2009."
- }, {
- "code": "NEC_HHUK",
- "name": "HMF Golden Glitterball",
- "description": "Official HMF:Neon Best New Artist Supporter"
- }, {
- "code": "UK090",
- "name": "HTTYD - Quest",
- "description": "Official friend of the dragons"
- }, {
- "code": "FBC09",
- "name": "Habbo 2k",
- "description": "Did you know Habbo was invented in the year 2000?"
- }, {
- "code": "ACH_Citizenship1",
- "name": "Habbo Citizen",
- "description": "For passing the Habbo Citizen talent track"
- }, {
- "code": "UK035",
- "name": "Habbo Music Academy",
- "description": "I support the Habbo Music Academy. November 2009."
- }, {
- "code": "ROO10",
- "name": "Habbo Palooza 2013 Quiz",
- "description": "For replying correctly to the Quiz"
- }, {
- "code": "MRG03",
- "name": "Habbo UK",
- "description": "Remembering My Habbo Roots"
- }, {
- "code": "Z40",
- "name": "Habbo UK 8th Birthday",
- "description": "Habbo UK 8th Birthday"
- }, {
- "code": "UKBD1",
- "name": "Habbo UK is 9!",
- "description": "9th Birthday Badge"
- }, {
- "code": "US0S",
- "name": "Habbo.com Relaunch Badge",
- "description": "We Heart Habbo.com!"
- }, {
- "code": "HOP03_HHUK",
- "name": "Habbolympics 2010 - Bronze Badge",
- "description": "Habbolympics 2010 - Bronze Badge"
- }, {
- "code": "UK019",
- "name": "Habboween 09 - FRANKENSTEIN QUEST",
- "description": "Habboween 09 - FRANKENSTEIN QUEST"
- }, {
- "code": "GLO01",
- "name": "Habboween 2012",
- "description": "Habboween 2012"
- }, {
- "code": "UK187",
- "name": "Habbox Maze Winner",
- "description": "Habbox Maze Hall of Famer"
- }, {
- "code": "ACH_HappyHour1",
- "name": "Happy Hour I",
- "description": "For spending a Happy moment in Habbo! Log in during Happy Hour to receive this achievement."
- }, {
- "code": "HJ5",
- "name": "Harajuku Quest Music",
- "description": "Winner of the Harajuku Lovers quest"
- }, {
- "code": "NT038",
- "name": "Helpers Quiz badge",
- "description": "I passed the HabboHelpers.com Helpers Quiz"
- }, {
- "code": "SG018",
- "name": "Honour IP",
- "description": "Honour Intellectual Property (IP) by supporting originality and making a stand against piracy today!"
- }, {
- "code": "Z39_HHUK",
- "name": "Hotel For Dogs Maze Winner",
- "description": "Tracked the scent and made it to the Hotel"
- }, {
- "code": "FR005_HHUK",
- "name": "Hotel Happenings Fan",
- "description": "I read the Hotel Happenings Newsletter, every Tuesday! Do you?"
- }, {
- "code": "ACH_RoomEntry6",
- "name": "House Guest VI",
- "description": "For hanging out in 240 guest rooms that you do not own. Out of towner."
- }, {
- "code": "UK034",
- "name": "I Love Music",
- "description": "I took part in the HMA Sing-Song vote. December 2009."
- }, {
- "code": "ACH_PetLevelUp3",
- "name": "I play with pets III",
- "description": "Train your pets up at least 10 levels to earn this badge."
- }, {
- "code": "Z78",
- "name": "Ice Age Quest Winner",
- "description": "Ice Age 3 Quest"
- }, {
- "code": "ACH_TagC3",
- "name": "Ice Ice Baby III",
- "description": "Show time on ice 16 minutes on this level."
- }, {
- "code": "ACH_SelfModIgnoreSeen1",
- "name": "Ignore",
- "description": "For being aware of ignore option"
- }, {
- "code": "ACH_HabbosVsWildQuestCompleted6",
- "name": "In The Footsteps Of The Ancients Quester VI",
- "description": "For completing 13 In The Footsteps Of The Ancients quests"
- }, {
- "code": "RA6",
- "name": "Iron Maiden Badge",
- "description": "Maze of Death Quest 2010"
- }, {
- "code": "COM08",
- "name": "It Gets Better",
- "description": "Everyone deserves to be respected for who they are. Speak up for tolerance and love!"
- }, {
- "code": "JAD01",
- "name": "King of Jade",
- "description": "Keeper of Zodiac wisdom and a decent cuppa"
- }, {
- "code": "UK161",
- "name": "Kitty Softpaws",
- "description": "\"She is a bad kitty\""
- }, {
- "code": "ACH_BaseJumpBigParachute1",
- "name": "Last Minute Life Saver I",
- "description": "For using a large parachute perfectly 2 times in Fast Food"
- }, {
- "code": "ACH_HabboWayGraduate1",
- "name": "Level I Habbo Way",
- "description": "For passing the Habbo Way quiz!"
- }, {
- "code": "ACH_SafetyQuizGraduate1",
- "name": "Level I Safety tips",
- "description": "For passing the Safety quiz!"
- }, {
- "code": "ACH_HorseConsecutiveJumpsCount3",
- "name": "Level III equestrian",
- "description": "For jumping over 8 obstacles successfully"
- }, {
- "code": "ACH_AvatarLooks1",
- "name": "Looks that Kill I",
- "description": "For changing your look for the first time."
- }, {
- "code": "ACH_BattleBallTilesLocked2",
- "name": "Lord of the tiles II",
- "description": "Lock 65 tiles."
- }, {
- "code": "HWN07",
- "name": "Luck Quiz Badge",
- "description": "Habboween 2010"
- }, {
- "code": "FBC14",
- "name": "MONSTER!",
- "description": "I found the Monster Plant!"
- }, {
- "code": "MTV01_HHUK",
- "name": "MTV EMA 2009",
- "description": "Member of the MTV EMA 2009 Group."
- }, {
- "code": "UK119",
- "name": "Master Shifu's Badge of Honour",
- "description": "Kung Fu Panda 2 visited Habbo December 2010"
- }, {
- "code": "YODUK",
- "name": "Master Yoduck",
- "description": "Use the nondescript motion imparting field!"
- }, {
- "code": "ACH_Motto1",
- "name": "Master of Words I",
- "description": "For editing your motto for the first time."
- }, {
- "code": "USP_HHUK",
- "name": "Medieval World",
- "description": "Winner in the Frederic Santini Comp - Medieval. Sep 09."
- }, {
- "code": "UK078",
- "name": "Member of The Flock",
- "description": "Friend of Fang"
- }, {
- "code": "MPS01",
- "name": "Monster Plant Gardener Competition Consolation Badge",
- "description": "For participating in the Monster Plant gardening competition. Well done, good job, sport!"
- }, {
- "code": "ACH_MonsterPlantQuestCompleted6",
- "name": "Monster Plant Quester VI",
- "description": "For completing 18 Monster Plant quests"
- }, {
- "code": "ACH_MonsterPlantTreater2",
- "name": "Monster Plant Tender II",
- "description": "For tending to 30 Monster Plants"
- }, {
- "code": "THI40",
- "name": "My heart...",
- "description": "Winner of broken hearts 1/2"
- }, {
- "code": "ACH_PetRespectReceiver7",
- "name": "My pets get all the love VII",
- "description": "Have someone scratch your pet at least 200 times to earn this badge."
- }, {
- "code": "ACH_MysteryBox3",
- "name": "Mystery Box explorer III",
- "description": "For completing 3 quests in the 2012 Christmas calendar"
- }, {
- "code": "Z59",
- "name": "NATM History Quest",
- "description": "NATM History Quest"
- }, {
- "code": "TWIC1_HHUK",
- "name": "New Moon Badge: Cullens",
- "description": "Level 1 Badge awarded to trivia quest winners in Cullen's world. November 2009."
- }, {
- "code": "TWIQ1_HHUK",
- "name": "New Moon Badge: Jacob",
- "description": "Level 1 Badge awarded to trivia quest winners in Jacob's world. November 2009."
- }, {
- "code": "TWIV1_HHUK",
- "name": "New Moon Badge: Volturi",
- "description": "Level 1 Badge awarded to trivia quest winners in Volturi's world. November 2009."
- }, {
- "code": "ACH_RespectGiven8",
- "name": "Nice as pie! VIII",
- "description": "For giving respect 170 times."
- }, {
- "code": "ACH_GiftGiver1",
- "name": "Nice one I",
- "description": "For giving a gift."
- }, {
- "code": "DE016",
- "name": "Nokia Maze Challenge Gold Badge",
- "description": "Congratulations! You made it through the maze."
- }, {
- "code": "AU015",
- "name": "OZ Artist 2010",
- "description": "Channel [V] Group Member"
- }, {
- "code": "VIK07",
- "name": "Odin Runestone",
- "description": "Carve your Viking Runestone"
- }, {
- "code": "Z64_HHUK",
- "name": "Official BETA tester",
- "description": "Helped shape the new Habbo June 2009"
- }, {
- "code": "ACH_GuideOnDutyPresence3",
- "name": "On Duty III",
- "description": "For being on-duty as Helper for 120 minutes."
- }, {
- "code": "ACH_AllTimeHotelPresence10",
- "name": "Online time X - F5 Tornado",
- "description": "For spending total of 4320 min. in hotel."
- }, {
- "code": "GLC_HHUK",
- "name": "Otter",
- "description": "Level 3 - The one who will not let you sink under pressure. Sorry. This Achievement is not available at the moment."
- }, {
- "code": "PAT2",
- "name": "Patrol General",
- "description": "Patrol General"
- }, {
- "code": "peg01",
- "name": "Pegasus Rider",
- "description": "Participated in the Community Challenge"
- }, {
- "code": "ACH_PetRespectGiver9",
- "name": "Pet lover IX",
- "description": "Scratch anyone's pet at least 250 times to earn this badge."
- }, {
- "code": "FBC18",
- "name": "Plant Puzzler",
- "description": ""
- }, {
- "code": "ACH_GamePlayerExperience3",
- "name": "Player III",
- "description": "Gather 480 victory points."
- }, {
- "code": "UK126",
- "name": "Pokémon Black Version",
- "description": "Pokémon Black Version"
- }, {
- "code": "FRE",
- "name": "Prehistoric World",
- "description": "Winner in the Frederic Santini Comp - Prehistoric. Sep 09."
- }, {
- "code": "DK2",
- "name": "Pub(lic) Crawl Cider",
- "description": "St Patrick's Day 2011!"
- }, {
- "code": "UK244",
- "name": "Puhekupla Badge 2014",
- "description": "Puhekupla Badge 2014"
- }, {
- "code": "UK121",
- "name": "Rango Group Member",
- "description": "Strangers don't last long here!"
- }, {
- "code": "UK123",
- "name": "Rango's toy fish",
- "description": "Wind it up and watch it fly"
- }, {
- "code": "UK131",
- "name": "Rango: Beans Badge",
- "description": "Beans was the winner of the Rango poll!"
- }, {
- "code": "UK122",
- "name": "Rangos Safe!",
- "description": "I got Rango out of the desert"
- }, {
- "code": "ACH_RbTagC2",
- "name": "Roller Derby Raider II",
- "description": "For rollerblading for 8 minutes."
- }, {
- "code": "ACH_RoomDecoFurniCount11",
- "name": "Room Builder XI",
- "description": "For building a room with 110 Furnis."
- }, {
- "code": "ACH_RoomDecoHosting10",
- "name": "Room Host X",
- "description": "Other Habbos have spent 3790 minutes in your rooms!"
- }, {
- "code": "ACH_RoomCompetitionVoter1",
- "name": "Room competition voter I",
- "description": "For voting 3 times in room competitions"
- }, {
- "code": "WD006",
- "name": "Royal Wedding Badge 2011",
- "description": "Here comes the bride..."
- }, {
- "code": "ST4",
- "name": "STEM Cosmetics",
- "description": "You need Science and Maths skills for this job!"
- }, {
- "code": "XM10A",
- "name": "Season's Greetings",
- "description": "Happy Holidays from me to you! Xmas 2010"
- }, {
- "code": "ACH_GuideGroupMember1",
- "name": "Shed The Light",
- "description": "Joined a Habbo guide group."
- }, {
- "code": "ACH_SummerQuestCompleted1",
- "name": "Shell Collector I",
- "description": "For completing 1 daily quests."
- }, {
- "code": "UK050_HHUK",
- "name": "Silver Santa Hat",
- "description": "I helped revive Santa's broken heart and miserable mood in time for Christmas. December 2009."
- }, {
- "code": "UK007",
- "name": "Skulduggery Pleasant's Asst.",
- "description": "Skulduggery Pleasant"
- }, {
- "code": "ACH_SnowWarTotalScore1",
- "name": "SnowStorm level I",
- "description": "For getting a total score of 10 in SnowStorm Shuffle"
- }, {
- "code": "ACH_Xm10QuestCompleted7",
- "name": "Snowflake collector VII",
- "description": "For 3 Snowflake quests completed on this level."
- }, {
- "code": "ACH_FriendListSize5",
- "name": "Socializer V",
- "description": "For having 150 friends in your friendlist"
- }, {
- "code": "UK094_HHUK",
- "name": "St Patrick's Day Quest",
- "description": "St Patrick's Day Quest"
- }, {
- "code": "UK038",
- "name": "St Trinians Alumni",
- "description": "Member of the St Trinians School and gold finder"
- }, {
- "code": "UK003",
- "name": "Star 1",
- "description": "HPV new badge"
- }, {
- "code": "UK004",
- "name": "Star 2",
- "description": "HPV badge"
- }, {
- "code": "UK005",
- "name": "Star 3",
- "description": "HPV badge"
- }, {
- "code": "HWN09",
- "name": "Star Tarot Badge",
- "description": "For Habboween 2010 Group Members"
- }, {
- "code": "UK107",
- "name": "Street Dance 3D",
- "description": "You can really move on the dance floor!"
- }, {
- "code": "BGW4",
- "name": "Sunscreen Level 3",
- "description": "A gift from the Big Wave!"
- }, {
- "code": "ACH_NotesReceived1",
- "name": "Swamped By Stickies Level I",
- "description": "I've received 2 notes in my rooms!"
- }, {
- "code": "COM03",
- "name": "Taylor Swift Fan",
- "description": "I was there for Taylor Swift's 'Speak Now' Live release show!"
- }, {
- "code": "UK077",
- "name": "TeenLifeCheck",
- "description": "Took the TeenLifeCheck 2010"
- }, {
- "code": "AC6_HHUK",
- "name": "The Angry Spirit Ape",
- "description": "Used the inner Angry Spirit Ape to find the Lost Tribe of Bensalem"
- }, {
- "code": "COM10",
- "name": "The Chronicles of Narnia: Dawn Treader Badge",
- "description": "I found the 7 lost lords of Narnia!"
- }, {
- "code": "EGG08",
- "name": "The Golden Egg",
- "description": "I'm such an epic egg."
- }, {
- "code": "PATRL",
- "name": "The Habbo Patrol",
- "description": "Protecting chat for innocent Habbos!"
- }, {
- "code": "HWN04",
- "name": "The Moon Quest",
- "description": "Habboween 2010"
- }, {
- "code": "UK183",
- "name": "The Sims - Katy Perry Sweet Treats",
- "description": "I beat the The Sims Katy Perry Sweet Treats Quiz!"
- }, {
- "code": "COM05",
- "name": "The Sims 3 - Bad Karma badge",
- "description": "You have bad karma!"
- }, {
- "code": "UK140",
- "name": "The Sims 3 Generations",
- "description": "Group Member"
- }, {
- "code": "COM22",
- "name": "The Sims Medieval",
- "description": "King Hero badge - I completed The Sims Medieval Quiz"
- }, {
- "code": "THE01",
- "name": "Theatre Opening Reward",
- "description": "Reward for finding Theaterdome on opening day"
- }, {
- "code": "ACH_PetFeeding2",
- "name": "They're eating all my credits! II",
- "description": "Give your pets at least 600 points of food to earn this badge."
- }, {
- "code": "ACH_TraderPass1",
- "name": "Trading pass I",
- "description": "Without a trading pass you can't trade: you have to have an account that is 1 day old and you have to verify your email."
- }, {
- "code": "ACH_Login1",
- "name": "Traveller I",
- "description": "For logging in 5 days in a row. Rad!"
- }, {
- "code": "ACH_GuideEnrollmentLifetime16",
- "name": "True Helper XVI",
- "description": "For being a Helper for 1095 days."
- }, {
- "code": "ACH_EmailVerification1",
- "name": "True You I",
- "description": "For activating your email address. Thanks!"
- }, {
- "code": "HQ006_HHUK",
- "name": "Urban CSI Bronze",
- "description": "Awarded to the remaining CSI Detectives. October 2009."
- }, {
- "code": "VAL14",
- "name": "Valentines 2013",
- "description": "I was here, darling"
- }, {
- "code": "Z63_HHUK",
- "name": "Valued BETA tester",
- "description": "Helped shape the new Habbo June 2009"
- }, {
- "code": "THI55",
- "name": "Venice 2013",
- "description": "I know everything about love"
- }, {
- "code": "ACH_ViciousViking1",
- "name": "Vicious Viking I",
- "description": "For burning 1 Viking Coties"
- }, {
- "code": "ACH_RoomDecoWallpaper1",
- "name": "Wall Designer I",
- "description": "For adding 3 wallpapers to my rooms."
- }, {
- "code": "XMS09",
- "name": "Xmas Maze Finale",
- "description": "Xmas Maze Finale"
- }, {
- "code": "APC09",
- "name": "You know everything you need to know to defeat the Four Horsemen",
- "description": "Habbocalypse 2015"
- }, {
- "code": "UK074",
- "name": "Youth in Revolt 1",
- "description": "You are an aspiring novelist, love classic prose, overly nice and polite to your elders."
- }, {
- "code": "US0R",
- "name": "Zombie Badge",
- "description": "Solved the Zombie Chasers Quiz!"
- }, {
- "code": "UK030",
- "name": "bullyproof",
- "description": "Celebrated the bullyproof moment in Habbo, November 2009."
- }, {
- "code": "UK124",
- "name": "de Blob 2 Badge",
- "description": "I helped Blob find colour!"
- }]
+ },
+ {
+ "code": "THI55",
+ "name": "Venice 2013",
+ "description": "I know everything about love"
+ },
+ {
+ "code": "ACH_ViciousViking1",
+ "name": "Vicious Viking I",
+ "description": "For burning 1 Viking Coties"
+ },
+ {
+ "code": "ACH_RoomDecoWallpaper1",
+ "name": "Wall Designer I",
+ "description": "For adding 3 wallpapers to my rooms."
+ },
+ {
+ "code": "XMS09",
+ "name": "Xmas Maze Finale",
+ "description": "Xmas Maze Finale"
+ },
+ {
+ "code": "APC09",
+ "name": "You know everything you need to know to defeat the Four Horsemen",
+ "description": "Habbocalypse 2015"
+ },
+ {
+ "code": "UK074",
+ "name": "Youth in Revolt 1",
+ "description": "You are an aspiring novelist, love classic prose, overly nice and polite to your elders."
+ },
+ {
+ "code": "US0R",
+ "name": "Zombie Badge",
+ "description": "Solved the Zombie Chasers Quiz!"
+ },
+ {
+ "code": "UK030",
+ "name": "bullyproof",
+ "description": "Celebrated the bullyproof moment in Habbo, November 2009."
+ },
+ {
+ "code": "UK124",
+ "name": "de Blob 2 Badge",
+ "description": "I helped Blob find colour!"
+ }
+ ]
}
\ No newline at end of file
diff --git a/tests/data/com_public_photos.json b/tests/data/com_public_photos.json
new file mode 100644
index 0000000..839fa69
--- /dev/null
+++ b/tests/data/com_public_photos.json
@@ -0,0 +1,3009 @@
+[
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61369662-1449585828367.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-262a6a4347df81d9914bb09b92aa8c13",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61369662-1449585828367.png",
+ "version": 1,
+ "time": 1449585829310,
+ "creator_name": "isabelly111",
+ "creator_id": 61369662,
+ "room_id": 71512932,
+ "id": "8cbd4f52-f936-4b04-8b8b-d6ed6c2a9719",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58165782-1449584927005.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-b64bee8837d10f3ed8631f20ec68b1cc",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58165782-1449584927005.png",
+ "version": 1,
+ "time": 1449584927820,
+ "creator_name": "preety-lady",
+ "creator_id": 58165782,
+ "room_id": 70984452,
+ "id": "b365b4e0-ad7a-4a8c-9299-6bb65559a86c",
+ "likes": [
+ "yusfirdaus"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61368846-1449584549843.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-ced813f308cb273a2e23b5fcf2a22197",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61368846-1449584549843.png",
+ "version": 1,
+ "time": 1449584550828,
+ "creator_name": ".Senpai.",
+ "creator_id": 61368846,
+ "room_id": 67487704,
+ "id": "295cdd7d-196e-49b4-b5a4-3f5b36497f15",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59398791-1449584409919.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-1d315407491f0088fb1a8afa8f72aab3",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59398791-1449584409919.png",
+ "version": 1,
+ "time": 1449584411103,
+ "creator_name": "BlameHabbo",
+ "creator_id": 59398791,
+ "room_id": 69060843,
+ "id": "85658efb-964b-4e9c-ae88-96f7c7638247",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60854195-1449583966494.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-4a2ce3246fdd389818e1d1ce56441578",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60854195-1449583966494.png",
+ "version": 1,
+ "time": 1449583967668,
+ "creator_name": "daimen12",
+ "creator_id": 60854195,
+ "room_id": 59727851,
+ "id": "33ef8847-e05c-4654-b673-0231e3be6bda",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58872540-1449583820673.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-f40b3bf4644c8b1fb2feceb098441cf0",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58872540-1449583820673.png",
+ "version": 1,
+ "time": 1449583821721,
+ "creator_name": "Ghastly,",
+ "creator_id": 58872540,
+ "room_id": 67399098,
+ "id": "d9945b0b-0340-40c0-a4be-4bd57789d51c",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59805228-1449583699403.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-df72eb48db5bd8c6fcf4a1cd5c420abd",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59805228-1449583699403.png",
+ "version": 1,
+ "time": 1449583700212,
+ "creator_name": "980202",
+ "creator_id": 59805228,
+ "room_id": 69118543,
+ "id": "ac86f4aa-1b57-4b69-a3e3-f042b47a45ea",
+ "likes": [
+ "980202"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-47677383-1449583348714.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-d69eddd0813302732f8be4b961b29e3c",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-47677383-1449583348714.png",
+ "version": 1,
+ "time": 1449583349658,
+ "creator_name": "StormXTheFast",
+ "creator_id": 47677383,
+ "room_id": 69610079,
+ "id": "f7998de7-8cab-489d-ae48-ccf5dc9737f9",
+ "likes": [
+ "StormXTheFast"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-22467492-1449583330387.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-f9177cd7fcdb6461cad024e2088b23a5",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-22467492-1449583330387.png",
+ "version": 1,
+ "time": 1449583331125,
+ "creator_name": "JUANNENAS",
+ "creator_id": 22467492,
+ "room_id": 71696741,
+ "id": "fad39874-4868-4794-a08d-46d4c4e6a358",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-57653845-1449583177010.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-bb63b2eda17575669c81b94f14fc40ac",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-57653845-1449583177010.png",
+ "version": 1,
+ "time": 1449583177994,
+ "creator_name": "kiary007",
+ "creator_id": 57653845,
+ "room_id": 43545738,
+ "id": "fd835052-353c-4740-8e4d-c8b8d2aaedd5",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-25784848-1449582375742.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-5f99a678542b036c4ea1bfbcbff09b73",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-25784848-1449582375742.png",
+ "version": 1,
+ "time": 1449582376546,
+ "creator_name": "killerklownz13",
+ "creator_id": 25784848,
+ "room_id": 58638587,
+ "id": "217d029c-5d3a-48c5-a8c0-1cdbc99124b3",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59988776-1449582133991.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-f3baac2084524514079353d354373e8c",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59988776-1449582133991.png",
+ "version": 1,
+ "time": 1449582135122,
+ "creator_name": "!iBrookei!",
+ "creator_id": 59988776,
+ "room_id": 70197852,
+ "id": "38089fe7-73b4-4662-a71c-667d7c1ef120",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-39609834-1449581732129.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-932ef681783dfe4beb1a461569f35050",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-39609834-1449581732129.png",
+ "version": 1,
+ "time": 1449581732858,
+ "creator_name": "nurainnajw98",
+ "creator_id": 39609834,
+ "room_id": 71683331,
+ "id": "933eaee8-fedc-447f-9509-da9123a508bf",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60109581-1449581643155.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-098c719ae99c97e6594261d41d366c58",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60109581-1449581643155.png",
+ "version": 1,
+ "time": 1449581644088,
+ "creator_name": "rizuanmohdf",
+ "creator_id": 60109581,
+ "room_id": 68948144,
+ "id": "ca0cb098-bdd2-4b4b-b160-2179bbe508bf",
+ "likes": [
+ "rizuanmohdf"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60095123-1449580887917.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-e147e52906e303f86aa879460ae9221f",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60095123-1449580887917.png",
+ "version": 1,
+ "time": 1449580888890,
+ "creator_name": "rastahuman",
+ "creator_id": 60095123,
+ "room_id": 63921640,
+ "id": "a4337fd2-ec82-4158-a987-ebe9bed79c88",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59551385-1449578973442.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-68308e21c266098ba24b7a72c711c526",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59551385-1449578973442.png",
+ "version": 1,
+ "time": 1449578974173,
+ "creator_name": "Trololololol626",
+ "creator_id": 59551385,
+ "room_id": 70650145,
+ "id": "e8b37139-ac9e-4a11-b6a5-bfb18cb60fb3",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61074115-1449578962551.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-6b751d6e81f48557cf22a0f682f45bed",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61074115-1449578962551.png",
+ "version": 1,
+ "time": 1449578963419,
+ "creator_name": "kennard273",
+ "creator_id": 61074115,
+ "room_id": 71156428,
+ "id": "d1c794e5-f197-4623-9736-9c6b978c924e",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-9715990-1449578652573.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-99c64eeab7e348a5f04c8c904943f388",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-9715990-1449578652573.png",
+ "version": 1,
+ "time": 1449578653511,
+ "creator_name": "Stevie-Hawk",
+ "creator_id": 9715990,
+ "room_id": 71056721,
+ "id": "22659779-ebf4-44a8-a115-2e3aa8c4b6be",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59092284-1449577610495.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-0bf1853525e7dd060e7b49041522d6db",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59092284-1449577610495.png",
+ "version": 1,
+ "time": 1449577611548,
+ "creator_name": "EmmaThePotato",
+ "creator_id": 59092284,
+ "room_id": 71639729,
+ "id": "fbb44549-6bef-4a98-aeb8-623e65306d96",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61263026-1449576663699.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-eb0717ee44e9bf741cbcb7bc7207dffe",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61263026-1449576663699.png",
+ "version": 1,
+ "time": 1449576664680,
+ "creator_name": "Anama_sa",
+ "creator_id": 61263026,
+ "room_id": 69977544,
+ "id": "85884d66-6eac-45d2-9e56-4958232d66da",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30646330-1449576528824.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-1f196325650abda8f9bd6e9acdd2b2d4",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30646330-1449576528824.png",
+ "version": 1,
+ "time": 1449576529623,
+ "creator_name": "AvZ",
+ "creator_id": 30646330,
+ "room_id": 71696773,
+ "id": "5060e779-133c-47c6-bffe-6d11f5d654e7",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61327838-1449576420888.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-fed0fe38da729eb6babe53141317d432",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61327838-1449576420888.png",
+ "version": 1,
+ "time": 1449576421630,
+ "creator_name": "imnotmikey_",
+ "creator_id": 61327838,
+ "room_id": 71648649,
+ "id": "c7aa2781-42ce-4181-a12a-7a1e4417e698",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60701198-1449576158649.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-2197fc35e207aa1d83f76e0a84998425",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60701198-1449576158649.png",
+ "version": 1,
+ "time": 1449576159713,
+ "creator_name": ",lethologica",
+ "creator_id": 60701198,
+ "room_id": 71696242,
+ "id": "9d6fe36c-c846-4a52-9081-053e269da03a",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-46628976-1449574562087.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-276ec8e4f24e355de0992aa15701ee19",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-46628976-1449574562087.png",
+ "version": 1,
+ "time": 1449574562924,
+ "creator_name": "XiaoMin...",
+ "creator_id": 46628976,
+ "room_id": 60496531,
+ "id": "aef58b3f-8989-45d4-b7e6-c54ffeaa5826",
+ "likes": [
+ "XiaoMin..."
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59924071-1449573929377.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-cdba15dd3494a192f25c3c6c4bb75356",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59924071-1449573929377.png",
+ "version": 1,
+ "time": 1449573930122,
+ "creator_name": "leilamilani",
+ "creator_id": 59924071,
+ "room_id": 71660121,
+ "id": "0e115624-ee86-4153-8f8c-447322972fe8",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61300208-1449572956789.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-490bcb65fd8c3d50f94e7bb5e6cb31fc",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61300208-1449572956789.png",
+ "version": 1,
+ "time": 1449572957741,
+ "creator_name": "BabyChicken084",
+ "creator_id": 61300208,
+ "room_id": 69724463,
+ "id": "c14985ae-b41b-4479-9b22-cfbbeb5e557f",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61304060-1449572480962.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-def1194f782a3e19de4e6937190b43a2",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61304060-1449572480962.png",
+ "version": 1,
+ "time": 1449572481829,
+ "creator_name": "--NewFlame--",
+ "creator_id": 61304060,
+ "room_id": 70286750,
+ "id": "d7f0057d-93a0-42d1-88ce-df0087980865",
+ "likes": [
+ "--NewFlame--"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-54605626-1449571711936.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-1cccc189d9cd975bb0b7c5576b80bd1b",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-54605626-1449571711936.png",
+ "version": 1,
+ "time": 1449571712856,
+ "creator_name": "Dr.John-Smith",
+ "creator_id": 54605626,
+ "room_id": 68796507,
+ "id": "523e84f5-bcea-444d-8012-ff286d2cc001",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-44303473-1449571588771.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-93420f806acef2a9e0a41260b26c33f9",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-44303473-1449571588771.png",
+ "version": 1,
+ "time": 1449571589542,
+ "creator_name": "r0wl0",
+ "creator_id": 44303473,
+ "room_id": 71694773,
+ "id": "e76ee288-b743-482f-a126-5e1aa2956d30",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-13465811-1449569777620.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-f02c980b8394c556c8415ad2a3adf25b",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-13465811-1449569777620.png",
+ "version": 1,
+ "time": 1449569778573,
+ "creator_name": "BabyRock21",
+ "creator_id": 13465811,
+ "room_id": 61752053,
+ "id": "43d78c07-d0c5-4355-a096-a93031c89952",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-47559253-1449569362240.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-82b649dc7b24743876719e50b99ed257",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-47559253-1449569362240.png",
+ "version": 1,
+ "time": 1449569363282,
+ "creator_name": "kikuto",
+ "creator_id": 47559253,
+ "room_id": 71681266,
+ "id": "8afa104c-df80-4cbb-b181-3b704476b40a",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61149322-1449569083211.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-33b19aaed9c0afab8a4fabc68dfc20e7",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61149322-1449569083211.png",
+ "version": 1,
+ "time": 1449569084120,
+ "creator_name": "KirstaySwift",
+ "creator_id": 61149322,
+ "room_id": 43545738,
+ "id": "82a0a1b2-df9a-477b-98da-fa503590da80",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60869344-1449568963624.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-3cc4a89383d322c67662bc99b6bd7ebb",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60869344-1449568963624.png",
+ "version": 1,
+ "time": 1449568964504,
+ "creator_name": "ObakengRay",
+ "creator_id": 60869344,
+ "room_id": 70761852,
+ "id": "2c80b380-e86b-4855-a4cd-f82e62ac7582",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-55790417-1449567437695.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-9a9bdc0f2da49c8a7da67d7add446ccc",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-55790417-1449567437695.png",
+ "version": 1,
+ "time": 1449567438666,
+ "creator_name": "CurlyPwn",
+ "creator_id": 55790417,
+ "room_id": 71675750,
+ "id": "bc9acfc3-ff89-4c6a-be9f-c718c2dad72e",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-53543599-1449566187121.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-cfdba7b1f1e52d6d082b43faa00bf28c",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-53543599-1449566187121.png",
+ "version": 1,
+ "time": 1449566188194,
+ "creator_name": "Voidlord13",
+ "creator_id": 53543599,
+ "room_id": 71661200,
+ "id": "703dcc33-94b7-4a7d-94d0-f9e77f5bc690",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-39882966-1449565999711.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-d32512da769adb00deff6c20ff9fdd95",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-39882966-1449565999711.png",
+ "version": 1,
+ "time": 1449566000687,
+ "creator_name": "jockmanuhero",
+ "creator_id": 39882966,
+ "room_id": 71015083,
+ "id": "6f842a2b-67ae-497f-b4e2-e0f41008029a",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-2003066-1449563235983.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-655cf8a0b7952924183f75e0db38bc10",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-2003066-1449563235983.png",
+ "version": 1,
+ "time": 1449563236858,
+ "creator_name": "islands",
+ "creator_id": 2003066,
+ "room_id": 68801828,
+ "id": "00f7cc6b-4709-4c05-a387-86980608c4dc",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-53975015-1449563185464.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-c8247ea65c5de3cc9b44c70057931aa4",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-53975015-1449563185464.png",
+ "version": 1,
+ "time": 1449563186447,
+ "creator_name": "Starz1999",
+ "creator_id": 53975015,
+ "room_id": 70825588,
+ "id": "f9181f70-bc3f-417e-b060-d111ba014ea7",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61368434-1449562872218.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-068f5012321899e41879f78b697d9d95",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61368434-1449562872218.png",
+ "version": 1,
+ "time": 1449562876290,
+ "creator_name": "Death_Punk",
+ "creator_id": 61368434,
+ "room_id": 68807110,
+ "id": "6a2ed370-3318-4d83-a403-acada5f4b448",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61301831-1449560122896.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-d73b179138931ec291c7bf58ce77461f",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61301831-1449560122896.png",
+ "version": 1,
+ "time": 1449560123921,
+ "creator_name": "irwyles",
+ "creator_id": 61301831,
+ "room_id": 71588206,
+ "id": "b9cefaa9-87cf-4701-8a6e-102c081a9bc0",
+ "likes": [
+ "imnotmikey_"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-57162338-1449559511417.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-6e396b6f2fc31634cf6871a6cd28cb3f",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-57162338-1449559511417.png",
+ "version": 1,
+ "time": 1449559512098,
+ "creator_name": "LimePhone",
+ "creator_id": 57162338,
+ "room_id": 66238045,
+ "id": "be1413ac-3ea7-4222-b68c-4d51d7ee6ecd",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60939180-1449558982291.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-507f0a2b9320ac13debd354be961b406",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60939180-1449558982291.png",
+ "version": 1,
+ "time": 1449558983113,
+ "creator_name": "katie101202677",
+ "creator_id": 60939180,
+ "room_id": 70910054,
+ "id": "73016c93-221d-43d0-a007-da7634f3fb42",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60852362-1449557869025.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-1608d1d6370a2b476889013df233d805",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60852362-1449557869025.png",
+ "version": 1,
+ "time": 1449557871118,
+ "creator_name": ":.heavenpeace.:",
+ "creator_id": 60852362,
+ "room_id": 71147338,
+ "id": "49f307c6-f3a8-4822-9805-693de3b92aa6",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60409078-1449557816646.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-c67e1c494c9cf0f077fbfeca1f9e685a",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60409078-1449557816646.png",
+ "version": 1,
+ "time": 1449557817583,
+ "creator_name": "gemilang77",
+ "creator_id": 60409078,
+ "room_id": 71595796,
+ "id": "7d0a1a43-7165-4ba1-ac74-75258d7ada9b",
+ "likes": [
+ "gemilang77"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-18423690-1449556579102.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-ad5150e38d0bf9cc37310f1cf5f4eb1c",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-18423690-1449556579102.png",
+ "version": 1,
+ "time": 1449556580032,
+ "creator_name": "stina2345",
+ "creator_id": 18423690,
+ "room_id": 56154913,
+ "id": "c14e4fa6-1ff4-4d59-b9df-1c579eba6768",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-57518167-1449554575815.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-c2d0ee504b98d1886356f998e973d53f",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-57518167-1449554575815.png",
+ "version": 1,
+ "time": 1449554576952,
+ "creator_name": "PearlEggs",
+ "creator_id": 57518167,
+ "room_id": 70338580,
+ "id": "6f3b4bd3-a593-4260-8dd4-09877d058a94",
+ "likes": [
+ ":FrozenTears:"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30632172-1449553917572.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-b0dad5648aa21c1520cb51fc8f00c56d",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30632172-1449553917572.png",
+ "version": 1,
+ "time": 1449553918530,
+ "creator_name": "Disclose",
+ "creator_id": 30632172,
+ "room_id": 71660122,
+ "id": "7f6d7c39-7d2f-4d25-aac3-7823e10e1326",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-54600007-1449553827332.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-6c3c7eea6505b6062611b8adb7d817d1",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-54600007-1449553827332.png",
+ "version": 1,
+ "time": 1449553828016,
+ "creator_name": "bvcjr",
+ "creator_id": 54600007,
+ "room_id": 69118542,
+ "id": "181e7e0f-3cd1-4e14-be32-dea5dc0fe52f",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60296171-1449553200423.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-7d33ad0481330e1159088964d83ea151",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60296171-1449553200423.png",
+ "version": 1,
+ "time": 1449553201250,
+ "creator_name": "Kellarellaaa",
+ "creator_id": 60296171,
+ "room_id": 68610371,
+ "id": "c9e54945-079d-4e34-8ae9-a708bcc8798b",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-29535017-1449552656598.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-888c7b86a90c3ca38b81272c9f201bb1",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-29535017-1449552656598.png",
+ "version": 1,
+ "time": 1449552657306,
+ "creator_name": "Tequilas",
+ "creator_id": 29535017,
+ "room_id": 29953164,
+ "id": "3436a5e2-0bcf-4e6a-888b-721d05bf615b",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-220946-1449552029849.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-024af4104d033aa76bf4c68648f85920",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-220946-1449552029849.png",
+ "version": 1,
+ "time": 1449552031141,
+ "creator_name": "Origo",
+ "creator_id": 220946,
+ "room_id": 68801828,
+ "id": "189ed079-9443-497f-96aa-91ff62e06786",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60621863-1449551361759.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-4fb86aebcdfadd0b7b276137c6abbb4d",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60621863-1449551361759.png",
+ "version": 1,
+ "time": 1449551362773,
+ "creator_name": "TSL74118",
+ "creator_id": 60621863,
+ "room_id": 71689901,
+ "id": "1410facc-7381-443e-a19f-223ef8d24db1",
+ "likes": [
+ "pasitehhabbo"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-47212120-1449551058928.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-a7762f27ec08c02695c32d740d31a4c4",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-47212120-1449551058928.png",
+ "version": 1,
+ "time": 1449551060481,
+ "creator_name": "Celerys",
+ "creator_id": 47212120,
+ "room_id": 68448923,
+ "id": "0b80eff5-e5d6-46a4-a158-d4d079d366b1",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-12112827-1449551056905.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-4c0923b9a9dc955e9a8ae2697be119d2",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-12112827-1449551056905.png",
+ "version": 1,
+ "time": 1449551057809,
+ "creator_name": "ShoeShopping",
+ "creator_id": 12112827,
+ "room_id": 71632518,
+ "id": "7d34e173-5b1f-4710-8b88-498ecdecc93e",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61021429-1449550385241.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-28eed8f509fc51de129fd6844e90a50e",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61021429-1449550385241.png",
+ "version": 1,
+ "time": 1449550386037,
+ "creator_name": "-Luxurious,",
+ "creator_id": 61021429,
+ "room_id": 71048710,
+ "id": "6fc106ce-cbab-42c2-8f75-79337af0c0e2",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60704577-1449548639294.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-0a33e95cef6c77d876f79f88121db1ef",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60704577-1449548639294.png",
+ "version": 1,
+ "time": 1449548640214,
+ "creator_name": "192193945",
+ "creator_id": 60704577,
+ "room_id": 27320961,
+ "id": "43b20eb0-f40e-43ea-9093-cc6810cac215",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31236494-1449548360409.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-aeb25583e952ad3407c74f95f564c0d7",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31236494-1449548360409.png",
+ "version": 1,
+ "time": 1449548361324,
+ "creator_name": "fernygirl",
+ "creator_id": 31236494,
+ "room_id": 70170123,
+ "id": "334e5685-9aa4-4352-90d2-e59423330105",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-57730481-1449547408404.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-09fc0cb65990f129895f382342104ab6",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-57730481-1449547408404.png",
+ "version": 1,
+ "time": 1449547409199,
+ "creator_name": "Intera",
+ "creator_id": 57730481,
+ "room_id": 71394184,
+ "id": "be739e4c-273d-4da0-a307-586c22b88066",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59326918-1449545589113.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-2d54b83303f0875d3c7f18f95f7edec1",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59326918-1449545589113.png",
+ "version": 1,
+ "time": 1449545590002,
+ "creator_name": "Povicc",
+ "creator_id": 59326918,
+ "room_id": 66850589,
+ "id": "0346871d-ebf5-42a2-afbf-48022848a909",
+ "likes": [
+ "ramiro548"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-12060970-1449545203844.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-afb22b34180540f08057c5e5c17b9f83",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-12060970-1449545203844.png",
+ "version": 1,
+ "time": 1449545204710,
+ "creator_name": "LacedJeans",
+ "creator_id": 12060970,
+ "room_id": 71639387,
+ "id": "e33966e7-7b2a-468f-a5f6-e470f357997c",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-29529072-1449545101579.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-069860e0ca18ccf0b9f82eac6506b055",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-29529072-1449545101579.png",
+ "version": 1,
+ "time": 1449545102523,
+ "creator_name": "Promiscuous?",
+ "creator_id": 29529072,
+ "room_id": 65496923,
+ "id": "8f3d61e2-4316-49fe-b444-c47fcbb66992",
+ "likes": [
+ "megajvbthea"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-53851891-1449543916546.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-e5946f253cd0edefa33b8e2d25783cca",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-53851891-1449543916546.png",
+ "version": 1,
+ "time": 1449543917467,
+ "creator_name": "YellowPillow",
+ "creator_id": 53851891,
+ "room_id": 71654349,
+ "id": "010cd37c-9ed2-4a9c-a565-aa6901a40a7f",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59873579-1449543670892.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-8b96b9ada25482bf822f55efd9627959",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59873579-1449543670892.png",
+ "version": 1,
+ "time": 1449543671863,
+ "creator_name": "Krypno",
+ "creator_id": 59873579,
+ "room_id": 71694761,
+ "id": "1d334097-6e1b-4cb7-8ca0-7b774fd4b4a4",
+ "likes": [
+ "Krypno"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31186982-1449542001772.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-1395534dd7f23da86ef0bc3f1a04c0d6",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31186982-1449542001772.png",
+ "version": 1,
+ "time": 1449542002687,
+ "creator_name": "Klorne",
+ "creator_id": 31186982,
+ "room_id": 71453107,
+ "id": "b9d34c33-e04e-482c-b36b-231fcfe5a1e9",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58622903-1449541431247.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-441333d8f590406b0e00ce2f9375c841",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58622903-1449541431247.png",
+ "version": 1,
+ "time": 1449541432189,
+ "creator_name": "Recurl",
+ "creator_id": 58622903,
+ "room_id": 40370086,
+ "id": "3fb27b38-ff65-4558-b587-0748dbea51a7",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-56249862-1449541004027.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-436725e9d2736162311fcd10a3ad86f9",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-56249862-1449541004027.png",
+ "version": 1,
+ "time": 1449541005074,
+ "creator_name": "minalthehyp",
+ "creator_id": 56249862,
+ "room_id": 63848727,
+ "id": "32e126b5-89a2-4ec7-bf4d-0c56cd6e8fc5",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61298086-1449540281302.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-6a592c4c1c491eab45159146c15b50ce",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61298086-1449540281302.png",
+ "version": 1,
+ "time": 1449540282218,
+ "creator_name": "Laupie",
+ "creator_id": 61298086,
+ "room_id": 71693791,
+ "id": "0735e715-0b6a-4a48-9ed5-61c9f6d050ba",
+ "likes": [
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31435671-1449539552117.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-2cc51abad98d096ada2c41edabc58f97",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31435671-1449539552117.png",
+ "version": 1,
+ "time": 1449539553082,
+ "creator_name": "Funkyluvbug",
+ "creator_id": 31435671,
+ "room_id": 54905684,
+ "id": "e7042f86-8789-4f88-b336-2b190642919f",
+ "likes": [
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-37897607-1449539353844.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-109e3e69eb2b8b9e2b3a1ab0f2f381b4",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-37897607-1449539353844.png",
+ "version": 1,
+ "time": 1449539354700,
+ "creator_name": "furqanHero",
+ "creator_id": 37897607,
+ "room_id": 71660336,
+ "id": "2ceae727-7879-4940-aa31-53eef9ac6fe1",
+ "likes": [
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30261631-1449538788345.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-bcd69fef55da04f445e5f51326166717",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30261631-1449538788345.png",
+ "version": 1,
+ "time": 1449538789266,
+ "creator_name": "Xemnas",
+ "creator_id": 30261631,
+ "room_id": 71660121,
+ "id": "6f4be1f5-c8e1-44ab-a04d-c2e65f31ce86",
+ "likes": [
+ "fernygirl",
+ "Sryup"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59183596-1449538453675.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-1ff57d91cc3e61f3435d41b5193a8493",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59183596-1449538453675.png",
+ "version": 1,
+ "time": 1449538454541,
+ "creator_name": "Pharanoide",
+ "creator_id": 59183596,
+ "room_id": 68600638,
+ "id": "03be0b07-4105-4e5e-971f-1e48606bc70a",
+ "likes": [
+ "fernygirl",
+ "Lo,ve"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-39352588-1449537976998.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-e204e2dcc71d4641634014c8bafef264",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-39352588-1449537976998.png",
+ "version": 1,
+ "time": 1449537978199,
+ "creator_name": "judy935",
+ "creator_id": 39352588,
+ "room_id": 71649582,
+ "id": "81d64fb8-a8ff-4337-bffa-4da741ab6039",
+ "likes": [
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31392179-1449537803166.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-339ee97589bf15c2255e3eb56cd9d5c4",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31392179-1449537803166.png",
+ "version": 1,
+ "time": 1449537804281,
+ "creator_name": ".:T3RMiiNATOR",
+ "creator_id": 31392179,
+ "room_id": 71688154,
+ "id": "eeb23ae9-a811-440a-a04c-ac312d8e8154",
+ "likes": [
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61353766-1449537636135.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-0b2051dbfabffbb8c1b8e4f190c0deda",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61353766-1449537636135.png",
+ "version": 1,
+ "time": 1449537637332,
+ "creator_name": ":Furqan12",
+ "creator_id": 61353766,
+ "room_id": 71667126,
+ "id": "b88dcbcb-d4b7-4d12-b0fc-0e21f38ea7b0",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59430717-1449537623335.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-b79d12010fa03b8e5f38462e65df5bb7",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59430717-1449537623335.png",
+ "version": 1,
+ "time": 1449537624318,
+ "creator_name": "-Dyl-",
+ "creator_id": 59430717,
+ "room_id": 71687050,
+ "id": "508e8ded-1983-4607-acd8-89ec259cda64",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-20833987-1449537327747.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-e3ec5bf42cf44b367d3cdc9169a1c1b3",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-20833987-1449537327747.png",
+ "version": 1,
+ "time": 1449537328655,
+ "creator_name": "PamelitaM.",
+ "creator_id": 20833987,
+ "room_id": 70616906,
+ "id": "c55f1327-a418-4018-955e-edc577cc4d62",
+ "likes": [
+ "Lita-",
+ "-Dyl-"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61101709-1449537175716.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-73b1e541857c70e9c8c344350afbec9a",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61101709-1449537175716.png",
+ "version": 1,
+ "time": 1449537176683,
+ "creator_name": "Kuroneko.",
+ "creator_id": 61101709,
+ "room_id": 62493277,
+ "id": "a5d22c4e-ee58-4e84-83ff-4e205ce32c17",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-47784306-1449536721698.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-79879d5f6cf1475934ba384e393856b4",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-47784306-1449536721698.png",
+ "version": 1,
+ "time": 1449536722526,
+ "creator_name": "Tigercat",
+ "creator_id": 47784306,
+ "room_id": 65601687,
+ "id": "8e22f7f5-3cdf-4736-aa0b-644c128db012",
+ "likes": [
+ "-Dyl-",
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61001141-1449536707689.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-06791c0a137bcbe07b8834dfec566064",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61001141-1449536707689.png",
+ "version": 1,
+ "time": 1449536708727,
+ "creator_name": "Kittycat2246",
+ "creator_id": 61001141,
+ "room_id": 70630845,
+ "id": "c71059e3-7cba-4a10-9e3a-05f81dd96a0d",
+ "likes": [
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-27980361-1449535885211.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-50178a91aed567f29ca4950567533ea0",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-27980361-1449535885211.png",
+ "version": 1,
+ "time": 1449535886170,
+ "creator_name": "Hozziii",
+ "creator_id": 27980361,
+ "room_id": 71641163,
+ "id": "715e6de9-8d2c-4fa7-a356-31d23c57910f",
+ "likes": [
+ "-Dyl-",
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60887093-1449534140999.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-e3ca2041ba59fe4e6710e2f3d94ce3fe",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60887093-1449534140999.png",
+ "version": 1,
+ "time": 1449534141734,
+ "creator_name": "DD4L_Kayla",
+ "creator_id": 60887093,
+ "room_id": 71461312,
+ "id": "8488ecdb-1a1c-47e1-bec3-eb9ed7b0b1da",
+ "likes": [
+ "DD4L_Kayla"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-38524084-1449533873409.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-90fab29c49670bea7cfc0d581f7ec484",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-38524084-1449533873409.png",
+ "version": 1,
+ "time": 1449533874409,
+ "creator_name": "RonaldRoar",
+ "creator_id": 38524084,
+ "room_id": 69118545,
+ "id": "029c1df1-c003-4a9a-a768-3b3083a6c941",
+ "likes": [
+ "DD4L_Kayla",
+ "-Dyl-",
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60662116-1449533606654.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-4eb4c5900cd8924797ddadb0a077cd9f",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60662116-1449533606654.png",
+ "version": 1,
+ "time": 1449533607647,
+ "creator_name": "idpreferalex",
+ "creator_id": 60662116,
+ "room_id": 71691041,
+ "id": "642b75a8-cac2-49f5-a6de-b336254403ba",
+ "likes": [
+ "SyddRogue",
+ "idpreferalex",
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-42878406-1449533574921.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-cc5b17c50ad88743877d2ceaab30a9bd",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-42878406-1449533574921.png",
+ "version": 1,
+ "time": 1449533575875,
+ "creator_name": "SyddRogue",
+ "creator_id": 42878406,
+ "room_id": 71691041,
+ "id": "b2ec901d-72f3-463f-98ac-c5b3d72d3e25",
+ "likes": [
+ "SyddRogue",
+ "idpreferalex",
+ "lachlanhandsome",
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61371883-1449533048032.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-a38a28dda48937d8fc8bf716955220d4",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61371883-1449533048032.png",
+ "version": 1,
+ "time": 1449533048937,
+ "creator_name": "edilbertho",
+ "creator_id": 61371883,
+ "room_id": 71693337,
+ "id": "4496e17e-014b-44be-9567-83e96207a380",
+ "likes": [
+ "DD4L_Kayla",
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61366188-1449532688443.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-faf53f685c15edf2eb0f196da08c9bf6",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61366188-1449532688443.png",
+ "version": 1,
+ "time": 1449532689187,
+ "creator_name": "FentonTheHabbo",
+ "creator_id": 61366188,
+ "room_id": 70761852,
+ "id": "c4582ff6-e857-434e-8a9e-28ea9b9e8e08",
+ "likes": [
+ "DD4L_Kayla",
+ "MeOwMiAw"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61231769-1449531407055.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-cfa5cfaa84b15e7996b734b6d517bfde",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61231769-1449531407055.png",
+ "version": 1,
+ "time": 1449531408047,
+ "creator_name": "hey_its_hannah9",
+ "creator_id": 61231769,
+ "room_id": 70825588,
+ "id": "5f553b65-9d52-450a-b4ff-e56f26c13733",
+ "likes": [
+ "DD4L_Kayla"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58589390-1449531023011.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-9f2de77202a782d68a20b71fa41d1d96",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58589390-1449531023011.png",
+ "version": 1,
+ "time": 1449531023849,
+ "creator_name": "BlitzTherit",
+ "creator_id": 58589390,
+ "room_id": 71573491,
+ "id": "5afa9c9c-0a37-434a-bdc6-a36b2556a528",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61208717-1449530740310.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-cb8cc82ba0719cf2702ec48c0b6435e7",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61208717-1449530740310.png",
+ "version": 1,
+ "time": 1449530741145,
+ "creator_name": "miymiy",
+ "creator_id": 61208717,
+ "room_id": 71461416,
+ "id": "3e1df320-94c3-4620-aea6-05d4d253eb89",
+ "likes": [
+ "DD4L_Kayla"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60551200-1449530566520.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-0ade866ce5e3cbdacd529d57dca83085",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60551200-1449530566520.png",
+ "version": 1,
+ "time": 1449530567312,
+ "creator_name": "mariamnosseir",
+ "creator_id": 60551200,
+ "room_id": 71672798,
+ "id": "674ad178-e129-4411-847d-1cdadc58493b",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-23853849-1449529651004.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-0b411ccd12e63455069df0c9aea3377c",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-23853849-1449529651004.png",
+ "version": 1,
+ "time": 1449529651790,
+ "creator_name": "Sandboard",
+ "creator_id": 23853849,
+ "room_id": 71063691,
+ "id": "05f0165b-345c-4a0d-b08e-1ffbe14ea03a",
+ "likes": [
+ "ffsw",
+ "Sandboard"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60395887-1449529569825.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-96cdb6fbdb4d9dbc1ad7ffb2b3d1cb9d",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60395887-1449529569825.png",
+ "version": 1,
+ "time": 1449529570800,
+ "creator_name": ".Marco,",
+ "creator_id": 60395887,
+ "room_id": 71012779,
+ "id": "7c99fea6-8f23-4ce1-9fa1-dffa53d48fac",
+ "likes": [
+ "DD4L_Kayla"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60278371-1449529170341.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-d38b91c105f55668725035659adef9e0",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60278371-1449529170341.png",
+ "version": 1,
+ "time": 1449529171746,
+ "creator_name": "LifeDiaper",
+ "creator_id": 60278371,
+ "room_id": 70262710,
+ "id": "dbed5c83-a10d-4f10-81c2-fee059b6f958",
+ "likes": [
+ "DD4L_Kayla",
+ "-Dyl-"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59616804-1449528751736.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-3cce00434b8e0024ef424cb40d907fb1",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59616804-1449528751736.png",
+ "version": 1,
+ "time": 1449528752611,
+ "creator_name": "-DuckP-",
+ "creator_id": 59616804,
+ "room_id": 70262710,
+ "id": "9a9e5b1b-b14e-4453-aed4-74c851371064",
+ "likes": [
+ "DD4L_Kayla",
+ "alec4eva27"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-38311615-1449528676141.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-ce0b3e19596ad6ac1977f589e6ce1235",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-38311615-1449528676141.png",
+ "version": 1,
+ "time": 1449528676890,
+ "creator_name": "Baabycakezz",
+ "creator_id": 38311615,
+ "room_id": 43545738,
+ "id": "eb9893eb-2a1d-4964-a8e7-614ac95e456c",
+ "likes": [
+ "-Dyl-"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-54822000-1449528565323.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-ac66e1e458b2f94f6f20a4bc3654f24f",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-54822000-1449528565323.png",
+ "version": 1,
+ "time": 1449528566329,
+ "creator_name": "JockDoe",
+ "creator_id": 54822000,
+ "room_id": 71660122,
+ "id": "cc0e1e14-b129-40a2-8d2b-b7f51d787952",
+ "likes": [
+ "sophieelliott"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60099220-1449528215946.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-ab8a0645f1c4ad2c0c5051ed8624748f",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60099220-1449528215946.png",
+ "version": 1,
+ "time": 1449528216865,
+ "creator_name": "Fiercey.",
+ "creator_id": 60099220,
+ "room_id": 67602240,
+ "id": "6567168a-c77f-4a32-a07b-42b7138ebc2a",
+ "likes": [
+ "DD4L_Kayla",
+ "-Dyl-",
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61155468-1449527216616.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-36e91cd7f5f9004ba9e09ce3427c4bba",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61155468-1449527216616.png",
+ "version": 1,
+ "time": 1449527217449,
+ "creator_name": "snakey215",
+ "creator_id": 61155468,
+ "room_id": 71372165,
+ "id": "13c1ef28-34f3-409a-9bef-4c6a1db9726a",
+ "likes": [
+ "DD4L_Kayla",
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-22280095-1449527181648.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-1f46b6e65bb7a409743e9da3a13d1aa3",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-22280095-1449527181648.png",
+ "version": 1,
+ "time": 1449527182733,
+ "creator_name": "oSkaterBoyo",
+ "creator_id": 22280095,
+ "room_id": 71637794,
+ "id": "30a1d528-9ce1-48a5-947f-d39fda71171f",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-47771112-1449527039338.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-33a39fcbc8fa1238adfcaa8ae84e5b15",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-47771112-1449527039338.png",
+ "version": 1,
+ "time": 1449527040244,
+ "creator_name": "Jemba",
+ "creator_id": 47771112,
+ "room_id": 13532313,
+ "id": "c93e8e77-7c59-4124-ba09-ebffc0cc67fe",
+ "likes": [
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60412414-1449526825526.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-3c00d731b6c2e90bf4dbd98f3a4401b4",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60412414-1449526825526.png",
+ "version": 1,
+ "time": 1449526826594,
+ "creator_name": "-Sunnde",
+ "creator_id": 60412414,
+ "room_id": 71692339,
+ "id": "452c32fe-e79c-40bd-b52f-8bfac80b6287",
+ "likes": [
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61122384-1449525425271.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-b81cccacb8add21cbaf0c20b22a6bfdb",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61122384-1449525425271.png",
+ "version": 1,
+ "time": 1449525426247,
+ "creator_name": "SS-Jeff",
+ "creator_id": 61122384,
+ "room_id": 70481633,
+ "id": "22823e33-d714-45c3-82fc-b5b28a0ff4dd",
+ "likes": [
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31246244-1449525405181.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-6fb5571453653ae4952ab40e9a0bdda2",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31246244-1449525405181.png",
+ "version": 1,
+ "time": 1449525405963,
+ "creator_name": "jordanbond13",
+ "creator_id": 31246244,
+ "room_id": 71686998,
+ "id": "cb5834e3-3d09-4f8d-aada-0023288e6052",
+ "likes": [
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59814326-1449525170001.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-16ef12ed2b5a8266327ca63212fbd846",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59814326-1449525170001.png",
+ "version": 1,
+ "time": 1449525170849,
+ "creator_name": "katelyn-",
+ "creator_id": 59814326,
+ "room_id": 61487405,
+ "id": "169c9383-c9a8-48ca-a663-1253ff116ff4",
+ "likes": [
+ "sophieelliott"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59434611-1449524900843.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-4aa4091619454d59ab01eea873ad7673",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59434611-1449524900843.png",
+ "version": 1,
+ "time": 1449524902275,
+ "creator_name": "Extee",
+ "creator_id": 59434611,
+ "room_id": 71286639,
+ "id": "464ea293-2c8a-4f34-9dab-4191c805a951",
+ "likes": [
+ "-Dyl-"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31594844-1449524834258.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-74e6764bf6b132085cf0b7e04f71b07b",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31594844-1449524834258.png",
+ "version": 1,
+ "time": 1449524835757,
+ "creator_name": "dasijjj",
+ "creator_id": 31594844,
+ "room_id": 68719152,
+ "id": "66ee705f-7632-4411-af20-9a755378da8c",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61270786-1449524194511.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-a8885a5a0d9f4fe2f8a9761d1a7122a4",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61270786-1449524194511.png",
+ "version": 1,
+ "time": 1449524195450,
+ "creator_name": "gdragon-",
+ "creator_id": 61270786,
+ "room_id": 71660122,
+ "id": "13139902-5436-47c6-ab42-f42fe7187fe6",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-50657518-1449523682397.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-1a3c76e995869b24c2a6ee5a96b5bf2d",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-50657518-1449523682397.png",
+ "version": 1,
+ "time": 1449523683293,
+ "creator_name": "Sampford",
+ "creator_id": 50657518,
+ "room_id": 63623769,
+ "id": "84e3e4e6-44fc-46ea-9a5b-895391345792",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-53436188-1449523433744.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-5015ae7dc1d2647e63c6733c261ba19e",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-53436188-1449523433744.png",
+ "version": 1,
+ "time": 1449523434664,
+ "creator_name": "Plfrs",
+ "creator_id": 53436188,
+ "room_id": 63623769,
+ "id": "9b91ae5f-793e-4f94-a6cf-432b7fb2b054",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61370955-1449523342164.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-7cde8b4387b1333d79495d8747a8fdbb",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61370955-1449523342164.png",
+ "version": 1,
+ "time": 1449523345035,
+ "creator_name": "Walkerr,",
+ "creator_id": 61370955,
+ "room_id": 70825588,
+ "id": "8669d462-c082-4d5d-acc5-3f0a6589a37c",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61071463-1449522889189.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-97ccb1b1f00e254a7071cb593c61985e",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61071463-1449522889189.png",
+ "version": 1,
+ "time": 1449522890503,
+ "creator_name": "blalrsselld",
+ "creator_id": 61071463,
+ "room_id": 71140462,
+ "id": "24b8442c-f302-48bb-b13d-11b90f04ec7d",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61317367-1449521389023.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-9280420801ad28120d456b7a052b39c0",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61317367-1449521389023.png",
+ "version": 1,
+ "time": 1449521389822,
+ "creator_name": "xRubyTheDuckx",
+ "creator_id": 61317367,
+ "room_id": 71632920,
+ "id": "e6f8daa8-58e4-4fce-9de3-63700a1c7287",
+ "likes": [
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58950876-1449520090556.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-506f95d538be7692f1881f2bec3cc10b",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58950876-1449520090556.png",
+ "version": 1,
+ "time": 1449520091638,
+ "creator_name": "clairebreen",
+ "creator_id": 58950876,
+ "room_id": 71613370,
+ "id": "477b6754-e994-446a-8548-8915f3e682ea",
+ "likes": [
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-55827786-1449519790106.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-96b8db66ea94577da1d6ee29d7b921af",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-55827786-1449519790106.png",
+ "version": 1,
+ "time": 1449519791139,
+ "creator_name": "GiantEye",
+ "creator_id": 55827786,
+ "room_id": 71526211,
+ "id": "71c81388-4f41-414b-a35a-2bf7cedadbf3",
+ "likes": [
+ "Atavar",
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60579187-1449519639610.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-9785bbfdbc4d12a02e3602e07465f1c0",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60579187-1449519639610.png",
+ "version": 1,
+ "time": 1449519640648,
+ "creator_name": "avin007",
+ "creator_id": 60579187,
+ "room_id": 70456542,
+ "id": "62be338e-07a3-4cea-bd31-604df172295e",
+ "likes": [
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-38417-1449517943976.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-158f03f719d36c698d853712a4910d60",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-38417-1449517943976.png",
+ "version": 1,
+ "time": 1449517944726,
+ "creator_name": "Gerben",
+ "creator_id": 38417,
+ "room_id": 9461,
+ "id": "679bb44e-5577-434c-b4c3-3ac500217086",
+ "likes": [
+ "Grassprietje",
+ "Gerben",
+ ".toilet.",
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61329283-1449517935461.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-b35a9f619982092f60d007c073503d2c",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61329283-1449517935461.png",
+ "version": 1,
+ "time": 1449517936388,
+ "creator_name": "c.xitlyn",
+ "creator_id": 61329283,
+ "room_id": 71690354,
+ "id": "40d532ab-cd7a-4cb0-9491-6384c0781b35",
+ "likes": [
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-57681069-1449515110921.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-f37346f8cbcfaecd7a19588ba95a99b4",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-57681069-1449515110921.png",
+ "version": 1,
+ "time": 1449515111789,
+ "creator_name": "BeeHoney",
+ "creator_id": 57681069,
+ "room_id": 69371546,
+ "id": "70681aca-391b-468b-b111-ec3db2915910",
+ "likes": [
+ "babymints",
+ ".toilet.",
+ "fernygirl",
+ "MrDaze"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-42615025-1449515003165.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-941d710bd0517e78c09e65bff3b9a845",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-42615025-1449515003165.png",
+ "version": 1,
+ "time": 1449515004260,
+ "creator_name": "girlfriendz",
+ "creator_id": 42615025,
+ "room_id": 44649309,
+ "id": "62262770-63d4-4646-8c6d-7b099fd558a6",
+ "likes": [
+ "babymints",
+ "Gerben",
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61220498-1449514558114.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-5a7a01343e67255f9c03fc4e644db308",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61220498-1449514558114.png",
+ "version": 1,
+ "time": 1449514559111,
+ "creator_name": "Yukiko11",
+ "creator_id": 61220498,
+ "room_id": 71520827,
+ "id": "8369c453-4c90-49d4-9b74-b0694742097d",
+ "likes": [
+ "babymints",
+ ".toilet."
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61065218-1449514300551.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-13cfa85b0e7add36b025a3ec7f4edae7",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61065218-1449514300551.png",
+ "version": 1,
+ "time": 1449514301345,
+ "creator_name": "JustSpace",
+ "creator_id": 61065218,
+ "room_id": 70616906,
+ "id": "875ed037-9fdf-49f2-a42c-631e156a7387",
+ "likes": [
+ ".toilet."
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-54149545-1449514154528.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-2bd8a858ba35ac8313cbdba77c903f82",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-54149545-1449514154528.png",
+ "version": 1,
+ "time": 1449514155506,
+ "creator_name": "wallflower172",
+ "creator_id": 54149545,
+ "room_id": 71664756,
+ "id": "e404f84c-2a35-47e0-af10-499aa33a45d6",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61284688-1449513977774.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-46c2e814923553e603dc8ff08b00e9eb",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61284688-1449513977774.png",
+ "version": 1,
+ "time": 1449513978636,
+ "creator_name": "EchoJosh",
+ "creator_id": 61284688,
+ "room_id": 70722159,
+ "id": "17e28c87-7103-4322-a5f5-182189ea0542",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-15776073-1449513474799.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-e7d48687ec3a3798f69da0b27e8c6487",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-15776073-1449513474799.png",
+ "version": 1,
+ "time": 1449513475722,
+ "creator_name": "vampireking420",
+ "creator_id": 15776073,
+ "room_id": 11554804,
+ "id": "e9815b28-4a22-46be-a797-af4c152c8cad",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-5137979-1449512703079.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-9235e7f636dc6a9c63cf35dcb4407f89",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-5137979-1449512703079.png",
+ "version": 1,
+ "time": 1449512704190,
+ "creator_name": "TaRke",
+ "creator_id": 5137979,
+ "room_id": 68801828,
+ "id": "accb0c29-807d-4d43-ab74-7e5f94cf9fae",
+ "likes": [
+ "-Dyl-"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-22679589-1449512605519.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-024faac20e9a25d56d0b4ae7daa27452",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-22679589-1449512605519.png",
+ "version": 1,
+ "time": 1449512606314,
+ "creator_name": "SolarMystery",
+ "creator_id": 22679589,
+ "room_id": 71506829,
+ "id": "a95ed34b-0a3b-4787-b0d7-62b51a35bd19",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-56537952-1449511884592.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-7c434644df5527cbd6651421bed803c0",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-56537952-1449511884592.png",
+ "version": 1,
+ "time": 1449511885439,
+ "creator_name": "0pqs",
+ "creator_id": 56537952,
+ "room_id": 71506829,
+ "id": "8fbed232-0842-45d3-8dc5-34575b041565",
+ "likes": [
+ ".toilet."
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60607260-1449510719453.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-96be0b27a9434801386faab4a25ce5fb",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60607260-1449510719453.png",
+ "version": 1,
+ "time": 1449510720417,
+ "creator_name": "xBamItzRubyx",
+ "creator_id": 60607260,
+ "room_id": 49615226,
+ "id": "a248738b-607e-4ef5-ba31-25a2be294373",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60938066-1449510525322.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-d002d88aafc9826640cac74e49d6fcec",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60938066-1449510525322.png",
+ "version": 1,
+ "time": 1449510526196,
+ "creator_name": "IgotHacked21c",
+ "creator_id": 60938066,
+ "room_id": 70714499,
+ "id": "5c6ac1e9-fd1a-455c-a210-ad238768a925",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31292450-1449509660532.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-f69c1322c52cd2d64764bd0db448db1a",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31292450-1449509660532.png",
+ "version": 1,
+ "time": 1449509664153,
+ "creator_name": "iza620",
+ "creator_id": 31292450,
+ "room_id": 71635289,
+ "id": "682f9f10-5630-4ade-9cb8-937cb9c3da9a",
+ "likes": [
+ "MrDaze"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59641123-1449507156638.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-746c77ce89c159649030c303794bee72",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59641123-1449507156638.png",
+ "version": 1,
+ "time": 1449507157601,
+ "creator_name": "mattsleaz",
+ "creator_id": 59641123,
+ "room_id": 61733484,
+ "id": "068ad8a6-8095-411f-9f98-1338b79752f7",
+ "likes": [
+ "mattsleaz"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-55562707-1449506779471.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-3a7a9ffe6f0f1c70ebba64b2846c2be8",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-55562707-1449506779471.png",
+ "version": 1,
+ "time": 1449506780374,
+ "creator_name": "happygilmour97",
+ "creator_id": 55562707,
+ "room_id": 65929346,
+ "id": "196ed40e-d91e-43e6-92eb-a84e61f5c0ac",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-52747178-1449506583972.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-80a3ac13682db24152aa13da962233ec",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-52747178-1449506583972.png",
+ "version": 1,
+ "time": 1449506585389,
+ "creator_name": "FaNoFaLL98",
+ "creator_id": 52747178,
+ "room_id": 71622160,
+ "id": "3858e8f6-3d57-44e7-8b0d-bfe3ae73509c",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31178212-1449506520660.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-708a0962b1c2728c5eca49615a39a43f",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31178212-1449506520660.png",
+ "version": 1,
+ "time": 1449506521521,
+ "creator_name": "FRISC0",
+ "creator_id": 31178212,
+ "room_id": 64032293,
+ "id": "7f0cec54-76e9-45ba-952b-c3c3bc6d9bc7",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-54967051-1449506136727.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-7799080c1340cd124d14d629c5131263",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-54967051-1449506136727.png",
+ "version": 1,
+ "time": 1449506137663,
+ "creator_name": "hyperrahim",
+ "creator_id": 54967051,
+ "room_id": 70197852,
+ "id": "82c5081e-55f8-49bf-8e38-ebee6551dcf5",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58936684-1449504841934.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-7da237569b080ee4b32a31d6d22055b2",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58936684-1449504841934.png",
+ "version": 1,
+ "time": 1449504842743,
+ "creator_name": ":toast:",
+ "creator_id": 58936684,
+ "room_id": 69586499,
+ "id": "42176e7d-5862-47d8-8d2b-672940b1dcca",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30742254-1449504519250.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-2b4d2f10ef670479d84d90d19c6b7c2b",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30742254-1449504519250.png",
+ "version": 1,
+ "time": 1449504520179,
+ "creator_name": "prelynn",
+ "creator_id": 30742254,
+ "room_id": 71496513,
+ "id": "531dcbfe-a606-4e79-8d8d-be3839c09e1d",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61051799-1449502788769.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-a1ced3e3e3d6eb42791ff7c2401f774e",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61051799-1449502788769.png",
+ "version": 1,
+ "time": 1449502789516,
+ "creator_name": "olivia234567",
+ "creator_id": 61051799,
+ "room_id": 70438338,
+ "id": "74978fb4-e8d4-400b-93a0-0b043afa6c10",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-53525008-1449502574422.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-487951bba68be8c4020f59e792eab2f4",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-53525008-1449502574422.png",
+ "version": 1,
+ "time": 1449502575581,
+ "creator_name": "coolsadgirl",
+ "creator_id": 53525008,
+ "room_id": 71650241,
+ "id": "08c350a0-adcb-4625-b718-9261bd4e58eb",
+ "likes": [
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61369411-1449502400945.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-124f505d24b4912b36facfcdc3a308b1",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61369411-1449502400945.png",
+ "version": 1,
+ "time": 1449502401866,
+ "creator_name": "lennyT",
+ "creator_id": 61369411,
+ "room_id": 69398634,
+ "id": "56763f00-1243-43f1-94ba-85967ed3b400",
+ "likes": [
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30647703-1449501571836.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-3a1fc72fb2b56532bb9f714f13a980c0",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30647703-1449501571836.png",
+ "version": 1,
+ "time": 1449501572892,
+ "creator_name": ".::.Hurricane.::.",
+ "creator_id": 30647703,
+ "room_id": 71341350,
+ "id": "abc149cc-cba2-4baf-bda7-4a7a8fd2c813",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61137199-1449500481081.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-5abb95a082c4ad99d8f3cb844a26411b",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61137199-1449500481081.png",
+ "version": 1,
+ "time": 1449500481864,
+ "creator_name": "qunghung.",
+ "creator_id": 61137199,
+ "room_id": 71330504,
+ "id": "44f1498d-a767-4753-b805-8b8026523c90",
+ "likes": [
+ "fernygirl"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-55108604-1449499960885.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-242a0ec987851f6cedfecab8e01e31c2",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-55108604-1449499960885.png",
+ "version": 1,
+ "time": 1449499962066,
+ "creator_name": "iraLoveyou4ever",
+ "creator_id": 55108604,
+ "room_id": 69118541,
+ "id": "549ea2ab-4cb0-40d2-a131-4458a954dfcf",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-49901927-1449499887344.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-59d8d1702816f5bafddf660b06ba2a56",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-49901927-1449499887344.png",
+ "version": 1,
+ "time": 1449499888115,
+ "creator_name": "d.Dell.b",
+ "creator_id": 49901927,
+ "room_id": 68445419,
+ "id": "df2e5f39-d1ef-4de4-a530-21ef279b0c86",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-54333957-1449497334719.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-e242311a887eb679166812f5c6eb60c5",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-54333957-1449497334719.png",
+ "version": 1,
+ "time": 1449497335229,
+ "creator_name": "pjohnnq29",
+ "creator_id": 54333957,
+ "room_id": 71670369,
+ "id": "ef75c782-900d-4b10-ab7c-6a99c79f256f",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31304009-1449497324213.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-ae73f70977266d83577b161056400ef7",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31304009-1449497324213.png",
+ "version": 1,
+ "time": 1449497325203,
+ "creator_name": "-Khaotic",
+ "creator_id": 31304009,
+ "room_id": 71355180,
+ "id": "a7479078-09f4-45a2-bc04-1277f8459308",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58828501-1449496066061.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-4ef075ccc163adb18f52d955ece791db",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58828501-1449496066061.png",
+ "version": 1,
+ "time": 1449496066917,
+ "creator_name": "Yuki_Fujita",
+ "creator_id": 58828501,
+ "room_id": 70820495,
+ "id": "4bc0227b-2cef-4260-a368-e30c71d214c1",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-45595275-1449494103450.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-ba4cc3dc332f20196fe9a169fd347d69",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-45595275-1449494103450.png",
+ "version": 1,
+ "time": 1449494104454,
+ "creator_name": "Thrones,",
+ "creator_id": 45595275,
+ "room_id": 49804563,
+ "id": "a262f23e-97b0-4d8f-80fe-1def54a34767",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30451995-1449491984160.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-7ef062dca0460e1a335ad3c27668cefb",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30451995-1449491984160.png",
+ "version": 1,
+ "time": 1449491985045,
+ "creator_name": "m-girl6",
+ "creator_id": 30451995,
+ "room_id": 71298267,
+ "id": "6eb3f180-b722-4df0-bf77-8c01fcba1fe3",
+ "likes": [
+ "NaughtyDogMan"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-57852402-1449490007824.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-755942367271c3d51727058d318ffe50",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-57852402-1449490007824.png",
+ "version": 1,
+ "time": 1449490008720,
+ "creator_name": "coolhoneylanFun",
+ "creator_id": 57852402,
+ "room_id": 69977544,
+ "id": "b1232c52-7667-484e-bbcd-07228643c226",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-46077090-1449489325145.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-7914ebf82af7ed2bfda79933561c495e",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-46077090-1449489325145.png",
+ "version": 1,
+ "time": 1449489326005,
+ "creator_name": "wanderwonder",
+ "creator_id": 46077090,
+ "room_id": 71602349,
+ "id": "e8f78e74-b432-4941-80b9-5f51ae0a0b79",
+ "likes": [
+ "amy.rox",
+ "resse321"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30280996-1449489142036.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-c5ef80fe69950e10690358219908ffb8",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30280996-1449489142036.png",
+ "version": 1,
+ "time": 1449489142898,
+ "creator_name": "amy.rox",
+ "creator_id": 30280996,
+ "room_id": 71602349,
+ "id": "9fa97b2d-758d-4569-98da-39cfb92d1c93",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60806080-1449489008771.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-d5e220f749cd3bf2c73809c1455b657d",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60806080-1449489008771.png",
+ "version": 1,
+ "time": 1449489009851,
+ "creator_name": "KBJMED",
+ "creator_id": 60806080,
+ "room_id": 71602349,
+ "id": "04039a0d-c520-4ec8-b429-6599ef5e5a76",
+ "likes": [
+ "amy.rox",
+ "resse321"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-53044137-1449488638424.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-9532323191849b11c72bf12ccdcb29a2",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-53044137-1449488638424.png",
+ "version": 1,
+ "time": 1449488639787,
+ "creator_name": "kayteeTheRocker",
+ "creator_id": 53044137,
+ "room_id": 60773607,
+ "id": "89c441fd-659b-46ca-a784-a29c096a02f2",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61026003-1449488212299.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-9db4d17c9e17659ea9eacc642ea2c63e",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61026003-1449488212299.png",
+ "version": 1,
+ "time": 1449488213359,
+ "creator_name": ",Bon",
+ "creator_id": 61026003,
+ "room_id": 69398634,
+ "id": "a5e46590-d648-4ae7-8421-82c4351784c6",
+ "likes": [
+ "NaughtyDogMan",
+ "resse321"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60103332-1449487721983.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-244642b4683a06cfeafe63f81f2edc12",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60103332-1449487721983.png",
+ "version": 1,
+ "time": 1449487722974,
+ "creator_name": "princesscean",
+ "creator_id": 60103332,
+ "room_id": 60304915,
+ "id": "1911c7d6-a098-4ae3-910e-891195d67cf2",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30627900-1449487047174.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-a38c11d760e45919c31d2baff883206b",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30627900-1449487047174.png",
+ "version": 1,
+ "time": 1449487048062,
+ "creator_name": "Sanniton",
+ "creator_id": 30627900,
+ "room_id": 30803255,
+ "id": "071cae8e-27e4-4e71-9e22-bc829c3944c7",
+ "likes": [
+ "NaughtyDogMan"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61368762-1449485227956.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-181972327b9bcd0622345fc248bd94e7",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61368762-1449485227956.png",
+ "version": 1,
+ "time": 1449485228767,
+ "creator_name": "nathathesc80",
+ "creator_id": 61368762,
+ "room_id": 71689111,
+ "id": "cf039dfd-17d5-46d5-9827-e4dddbc729cf",
+ "likes": [
+ "NaughtyDogMan"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-32392451-1449484083129.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-ef6fa50480280cffde4c7fe3c8782452",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-32392451-1449484083129.png",
+ "version": 1,
+ "time": 1449484084008,
+ "creator_name": "kelsea322",
+ "creator_id": 32392451,
+ "room_id": 71301182,
+ "id": "d1662a0d-b1b5-4c94-83be-868dd017aaac",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30641244-1449483166765.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-2c734692fa732f11f2be4ce64a5a9804",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30641244-1449483166765.png",
+ "version": 1,
+ "time": 1449483167801,
+ "creator_name": "--x3Habbie",
+ "creator_id": 30641244,
+ "room_id": 71290961,
+ "id": "602273a6-7b32-4541-8af1-7b0c6145c59a",
+ "likes": [
+ "dleona",
+ "NaughtyDogMan",
+ "resse321"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-49859464-1449481678547.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-0717940f21e39e2de5b7c3ae587b6d2d",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-49859464-1449481678547.png",
+ "version": 1,
+ "time": 1449481679501,
+ "creator_name": "muhammad9477",
+ "creator_id": 49859464,
+ "room_id": 71318655,
+ "id": "e78e8546-7ee8-4429-8fe0-07de1c624c00",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60886960-1449481578446.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-04f2b771d8bc77895ea44eecb937bcbb",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60886960-1449481578446.png",
+ "version": 1,
+ "time": 1449481579342,
+ "creator_name": "grimm1",
+ "creator_id": 60886960,
+ "room_id": 70863643,
+ "id": "9ceaf64d-aa6c-4e61-b94e-4f1ba388cc8e",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-56963371-1449480690264.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-661d31843f9a99b856ed97ac3be64dd9",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-56963371-1449480690264.png",
+ "version": 1,
+ "time": 1449480691069,
+ "creator_name": "Jenn-Safety",
+ "creator_id": 56963371,
+ "room_id": 71688022,
+ "id": "8abe21f0-8af8-430a-9191-b662ab8620ef",
+ "likes": [
+ "resse321",
+ "Promiscuous?"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30355259-1449479845857.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-b6a4163f1c27e896efaa141a75b17832",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30355259-1449479845857.png",
+ "version": 1,
+ "time": 1449479846606,
+ "creator_name": "william-yoshi2",
+ "creator_id": 30355259,
+ "room_id": 71672807,
+ "id": "ea2b977e-0ac9-4c84-b512-c837a58779ff",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-42355434-1449479383063.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-5b1231030d8136304ffaf0e590ec93ad",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-42355434-1449479383063.png",
+ "version": 1,
+ "time": 1449479384303,
+ "creator_name": "shannonbryana",
+ "creator_id": 42355434,
+ "room_id": 71688022,
+ "id": "13b18801-b913-4f0b-896b-093090041fc4",
+ "likes": [
+ "Promiscuous?"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61294527-1449479335990.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-e50c306367471a48309010e55ef7ba73",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61294527-1449479335990.png",
+ "version": 1,
+ "time": 1449479337076,
+ "creator_name": "Janlen_Libiano_",
+ "creator_id": 61294527,
+ "room_id": 71659356,
+ "id": "1de5725d-942a-4297-8cfd-01810c740192",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-46888219-1449474142609.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-8430e0e4f93eed84b144ef62ae4055c3",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-46888219-1449474142609.png",
+ "version": 1,
+ "time": 1449474143584,
+ "creator_name": ",Racheal",
+ "creator_id": 46888219,
+ "room_id": 67418373,
+ "id": "b1d799d0-92cb-4ba7-a271-2b8f37b0b632",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-20075445-1449473164800.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-36021fecab78c18249bea8e0027b690e",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-20075445-1449473164800.png",
+ "version": 1,
+ "time": 1449473165577,
+ "creator_name": "RealisticDream",
+ "creator_id": 20075445,
+ "room_id": 70616899,
+ "id": "b9bfadd0-f9a8-44ca-a484-817e54ea28a1",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58590086-1449472706243.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-af8c4220c7087f47224416088927e235",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58590086-1449472706243.png",
+ "version": 1,
+ "time": 1449472707108,
+ "creator_name": "NakaharaHime",
+ "creator_id": 58590086,
+ "room_id": 71253578,
+ "id": "bd887f5c-3bbd-4a8a-8111-78131b79cc8e",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61058861-1449471723104.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-74d2787354425c8ebd158f32180b6725",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61058861-1449471723104.png",
+ "version": 1,
+ "time": 1449471724581,
+ "creator_name": ",Mellx",
+ "creator_id": 61058861,
+ "room_id": 71636315,
+ "id": "d982d582-d1b6-429b-9d7c-e43c8f9fccd8",
+ "likes": [
+ "NaughtyDogMan",
+ "MeOwMiAw"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-54489370-1449471085151.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-99aff1154691b3d2283a6937c420b738",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-54489370-1449471085151.png",
+ "version": 1,
+ "time": 1449471086054,
+ "creator_name": "coolcorb38",
+ "creator_id": 54489370,
+ "room_id": 67204387,
+ "id": "2c81d663-5994-46af-83a6-923149461abb",
+ "likes": [
+ "NaughtyDogMan"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-26375845-1449470973770.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-5ecf89bb2cd581418a2b4739a81a4167",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-26375845-1449470973770.png",
+ "version": 1,
+ "time": 1449470974512,
+ "creator_name": "Infenite",
+ "creator_id": 26375845,
+ "room_id": 62734997,
+ "id": "af2e93b0-72cd-481e-8abd-0dd4e36add8e",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-54686264-1449470740777.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-3fe5b2d7ec29bbb0e6bed79ad6936a18",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-54686264-1449470740777.png",
+ "version": 1,
+ "time": 1449470742961,
+ "creator_name": "MISTER_ISMA",
+ "creator_id": 54686264,
+ "room_id": 70298983,
+ "id": "a2ecdc93-4c6a-40a7-b98c-a33aa80e3547",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60912699-1449470573460.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-534081ae194946e8f5281e3d475808f7",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60912699-1449470573460.png",
+ "version": 1,
+ "time": 1449470574302,
+ "creator_name": "REYPRO",
+ "creator_id": 60912699,
+ "room_id": 70896340,
+ "id": "2a770eff-bdd5-4934-89c0-7c11de253274",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-53795187-1449470433867.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-fcb611df60714a302061ca4969b03df0",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-53795187-1449470433867.png",
+ "version": 1,
+ "time": 1449470434612,
+ "creator_name": "Luuk@NL",
+ "creator_id": 53795187,
+ "room_id": 61571251,
+ "id": "a7234038-8652-43b5-b779-af22ad19008a",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60767433-1449469496375.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-0246ae393c85544514c4db76162314f5",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60767433-1449469496375.png",
+ "version": 1,
+ "time": 1449469497224,
+ "creator_name": "Ashplode",
+ "creator_id": 60767433,
+ "room_id": 71418964,
+ "id": "91bdf32d-d4f9-4b8d-90f7-dd16367a4055",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59485981-1449469458418.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-2aa28bcd26359cf29fc27a39db045365",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-59485981-1449469458418.png",
+ "version": 1,
+ "time": 1449469459219,
+ "creator_name": "CanineShifter",
+ "creator_id": 59485981,
+ "room_id": 71685727,
+ "id": "63fce0c1-cbb0-4384-9f48-ed15cf2b67a1",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-36483820-1449468636760.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-7e2280f5739aa3f0d6c349761d93be99",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-36483820-1449468636760.png",
+ "version": 1,
+ "time": 1449468637643,
+ "creator_name": "BamItzChris.",
+ "creator_id": 36483820,
+ "room_id": 68428634,
+ "id": "0c61c6d7-f32c-4a25-bc26-70cd8e02a337",
+ "likes": [
+ "NaughtyDogMan"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-43938922-1449467240581.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-72c01f88dadd3bdad21078f1d07ba5fe",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-43938922-1449467240581.png",
+ "version": 1,
+ "time": 1449467241435,
+ "creator_name": "zazadira97",
+ "creator_id": 43938922,
+ "room_id": 71685727,
+ "id": "6a44ab33-7292-49cd-9334-1f71f3ff9976",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-37458055-1449466199953.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-0f9090aa5777db0b7480f812ad44f587",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-37458055-1449466199953.png",
+ "version": 1,
+ "time": 1449466200906,
+ "creator_name": "Spoliation",
+ "creator_id": 37458055,
+ "room_id": 68924201,
+ "id": "68e4f667-a9c9-4744-9a8a-ca3b2bfc9321",
+ "likes": [
+ "NaughtyDogMan"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31531803-1449465865210.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-73684a3d48f272a21044eeab31a2fe6e",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-31531803-1449465865210.png",
+ "version": 1,
+ "time": 1449465866069,
+ "creator_name": "boom...",
+ "creator_id": 31531803,
+ "room_id": 59778785,
+ "id": "5bab6714-6142-4676-b258-30c821761937",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58232176-1449465568604.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-076af362b2c46add6f664440baf33cfa",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58232176-1449465568604.png",
+ "version": 1,
+ "time": 1449465569508,
+ "creator_name": "Keattle",
+ "creator_id": 58232176,
+ "room_id": 71687729,
+ "id": "ddae8bfd-0e32-4e17-be38-1ba65c75ca0b",
+ "likes": [
+ "NaughtyDogMan"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-53820654-1449465338178.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-39d822269f99b3896d44326c6b225f01",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-53820654-1449465338178.png",
+ "version": 1,
+ "time": 1449465338993,
+ "creator_name": "hellokitty53223",
+ "creator_id": 53820654,
+ "room_id": 71685727,
+ "id": "87aa96db-bd8b-41ea-b597-14085d868b44",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61015450-1449464442864.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-f66d087c613eefd8819d2a5e13386bf2",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61015450-1449464442864.png",
+ "version": 1,
+ "time": 1449464443741,
+ "creator_name": "Seungri12",
+ "creator_id": 61015450,
+ "room_id": 71664965,
+ "id": "1cf39780-19f1-42a0-9950-0d3ccf5178ad",
+ "likes": [
+ "NaughtyDogMan",
+ "rizuanmohdf"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60007843-1449464204509.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-92aed6ac12893db2fcb21982f7679b15",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60007843-1449464204509.png",
+ "version": 1,
+ "time": 1449464205398,
+ "creator_name": "Deloufelo11",
+ "creator_id": 60007843,
+ "room_id": 68807110,
+ "id": "d1f82801-2a21-413e-9418-4fcd4978aaf0",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61164998-1449462567432.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-306204e83ba3c84f49b7aec7e53708bb",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61164998-1449462567432.png",
+ "version": 1,
+ "time": 1449462568350,
+ "creator_name": "reluvnmyself",
+ "creator_id": 61164998,
+ "room_id": 71683748,
+ "id": "236d7dbe-ef09-44c5-9291-2dc359c76d93",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-29526327-1449462474322.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-721fe7d7f53beefc9b3292055127800a",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-29526327-1449462474322.png",
+ "version": 1,
+ "time": 1449462475312,
+ "creator_name": "NAZTYJA0",
+ "creator_id": 29526327,
+ "room_id": 71578386,
+ "id": "1056eeaa-0357-447f-85b4-52bc0bb50131",
+ "likes": [
+ "leigh26",
+ "NaughtyDogMan"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-57275429-1449461879752.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-9b7ff1053f8bccb412323fb4c5181916",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-57275429-1449461879752.png",
+ "version": 1,
+ "time": 1449461880692,
+ "creator_name": "ITZLIDDAT",
+ "creator_id": 57275429,
+ "room_id": 71658502,
+ "id": "b7566f40-3688-43f1-ae6f-a1873c4680ce",
+ "likes": [
+ "basedvannah",
+ "tintinrose",
+ "NaughtyDogMan"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-43868460-1449458936207.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-e0a7f1b4f7afad982b12a59faa67bbf2",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-43868460-1449458936207.png",
+ "version": 1,
+ "time": 1449458937197,
+ "creator_name": "LJT",
+ "creator_id": 43868460,
+ "room_id": 71432443,
+ "id": "b92a0038-7eda-42df-949d-71e15900fa4b",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60294582-1449458858267.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-79b8d9cd4966951c227787e3af8f2cb9",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60294582-1449458858267.png",
+ "version": 1,
+ "time": 1449458859085,
+ "creator_name": "HyunA_15",
+ "creator_id": 60294582,
+ "room_id": 57252447,
+ "id": "3d173d2e-6bb9-44b5-97d5-a55a447d707e",
+ "likes": [
+ "dleona",
+ "NaughtyDogMan",
+ "Atavar"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61265180-1449458625280.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-63a9551775ff97bdcea0d64566c73e05",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61265180-1449458625280.png",
+ "version": 1,
+ "time": 1449458626258,
+ "creator_name": "ImJustACutie",
+ "creator_id": 61265180,
+ "room_id": 70825588,
+ "id": "f45cf818-7e0d-4ab1-b017-3071deebe6cb",
+ "likes": [
+ "basedvannah"
+ ]
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61022545-1449457290399.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-d171b8e109f506f36cc0179cedab7506",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61022545-1449457290399.png",
+ "version": 1,
+ "time": 1449457291265,
+ "creator_name": "Mr.PIRANHADON",
+ "creator_id": 61022545,
+ "room_id": 71685727,
+ "id": "25b503e0-62ec-4e53-a94c-363d47abe4a9",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58723613-1449456164529.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-e6f9e5e9d39666f2c1f27bcdcc6bb1cd",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-58723613-1449456164529.png",
+ "version": 1,
+ "time": 1449456165438,
+ "creator_name": "TheoneDark",
+ "creator_id": 58723613,
+ "room_id": 71531072,
+ "id": "accc9190-4868-4aba-bdd0-939e8b449227",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61295221-1449455837747.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-1a553e9a6d4c3e221d0a950202d6e287",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61295221-1449455837747.png",
+ "version": 1,
+ "time": 1449455838687,
+ "creator_name": "shaa_monster",
+ "creator_id": 61295221,
+ "room_id": 70364018,
+ "id": "53801cbd-ac91-41cc-bdd1-f76b12b006b2",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61333716-1449455679752.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-bcaf841dd524d7080671b221b667bbcf",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61333716-1449455679752.png",
+ "version": 1,
+ "time": 1449455680756,
+ "creator_name": "SemutMerah41",
+ "creator_id": 61333716,
+ "room_id": 70858954,
+ "id": "49145de4-1b8a-4283-8bfd-4c6bf6bcc2ba",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30634565-1449455670451.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-70b0c11206bc52d547df941c62f16550",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-30634565-1449455670451.png",
+ "version": 1,
+ "time": 1449455671282,
+ "creator_name": "MrDaze",
+ "creator_id": 30634565,
+ "room_id": 30825611,
+ "id": "642c220e-bd5d-4646-a341-389b1494ea35",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60487942-1449455298608.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-0a5ead923cecc30e20275e896734ffef",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60487942-1449455298608.png",
+ "version": 1,
+ "time": 1449455299387,
+ "creator_name": "JadeTheBEST324",
+ "creator_id": 60487942,
+ "room_id": 69384860,
+ "id": "2ca5f590-a813-4fd3-859a-b1f66154c958",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60571862-1449455290629.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-804ea9bc895046a2118b0da0f67d8091",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-60571862-1449455290629.png",
+ "version": 1,
+ "time": 1449455291623,
+ "creator_name": "MichelleRoxSox",
+ "creator_id": 60571862,
+ "room_id": 71686514,
+ "id": "8090c04a-c9fb-447d-a7a5-b5637060e67e",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61091826-1449455247467.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-2f4afbfa0ee80d0b96dc76e55e385d86",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61091826-1449455247467.png",
+ "version": 1,
+ "time": 1449455248272,
+ "creator_name": "iiabismithii",
+ "creator_id": 61091826,
+ "room_id": 71650236,
+ "id": "30a774d4-d2aa-45c4-ad23-9e1424e2c331",
+ "likes": []
+ },
+ {
+ "previewUrl": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61367314-1449455189522.png",
+ "tags": [],
+ "creator_uniqueId": "hhus-6d4da661edf00f6388fba07b6e9546ba",
+ "type": "PHOTO",
+ "url": "//habbo-stories-content.s3.amazonaws.com/servercamera/purchased/hhus/p-61367314-1449455189522.png",
+ "version": 1,
+ "time": 1449455190330,
+ "creator_name": "Pacholo",
+ "creator_id": 61367314,
+ "room_id": 71686913,
+ "id": "f791d5a3-9e03-4340-91ae-8f3490337536",
+ "likes": []
+ }
+]
\ No newline at end of file