From c43d85be9ba30235559b52886552d1f17af6e84d Mon Sep 17 00:00:00 2001 From: shonya3 Date: Sat, 5 Aug 2023 16:14:57 +0300 Subject: [PATCH] feat: add toast messages to provide information --- packages/app/index.html | 7 +- packages/app/package.json | 3 +- packages/app/src-tauri/divi/src/cards.rs | 2 +- packages/app/src-tauri/divi/src/prices.rs | 6 +- packages/app/src-tauri/lib/src/commands.rs | 12 +- packages/app/src-tauri/lib/src/error.rs | 47 ++ packages/app/src-tauri/lib/src/event.rs | 46 ++ packages/app/src-tauri/lib/src/lib.rs | 2 + packages/app/src-tauri/lib/src/poe.rs | 7 +- packages/app/src-tauri/lib/src/prices.rs | 35 +- packages/app/src-tauri/ninja.json | 1 + packages/app/src/command.ts | 6 +- packages/app/src/event.ts | 21 + packages/app/src/main.ts | 24 + packages/app/src/stores/auth.ts | 9 +- packages/app/src/toast.ts | 28 + packages/app/vite.config.ts | 27 +- pnpm-lock.yaml | 837 ++------------------- 18 files changed, 322 insertions(+), 798 deletions(-) create mode 100644 packages/app/src-tauri/lib/src/error.rs create mode 100644 packages/app/src-tauri/lib/src/event.rs create mode 100644 packages/app/src-tauri/ninja.json create mode 100644 packages/app/src/event.ts create mode 100644 packages/app/src/toast.ts diff --git a/packages/app/index.html b/packages/app/index.html index f3bd7e27..3165b58b 100644 --- a/packages/app/index.html +++ b/packages/app/index.html @@ -1,10 +1,15 @@ - + Vite + Vue + TS + +
diff --git a/packages/app/package.json b/packages/app/package.json index 9734ad5e..b5875e37 100644 --- a/packages/app/package.json +++ b/packages/app/package.json @@ -15,17 +15,18 @@ "@divicards/shared": "workspace:^", "@divicards/wc": "workspace:^", "@formkit/auto-animate": "1.0.0-beta.6", + "@shoelace-style/shoelace": "^2.6.0", "@tauri-apps/api": "^1.3.0", "lit": "^2.7.6", "pinia": "^2.1.3", "vue": "^3.3.4" }, "devDependencies": { - "@histoire/plugin-vue": "^0.16.1", "@tauri-apps/cli": "^1.3.1", "@vitejs/plugin-vue": "^4.2.3", "typescript": "^5.0.4", "vite": "^4.3.9", + "vite-plugin-static-copy": "^0.17.0", "vite-plugin-vue-devtools": "^0.0.22", "vue-tsc": "^1.6.5" } diff --git a/packages/app/src-tauri/divi/src/cards.rs b/packages/app/src-tauri/divi/src/cards.rs index 8ffd1111..59d55062 100644 --- a/packages/app/src-tauri/divi/src/cards.rs +++ b/packages/app/src-tauri/divi/src/cards.rs @@ -59,7 +59,7 @@ impl From for Cards { |DivinationCardPrice { name, price, - sparkline, + sparkline: _, }| DivinationCardRecord { name, price, diff --git a/packages/app/src-tauri/divi/src/prices.rs b/packages/app/src-tauri/divi/src/prices.rs index 90fc5307..18844677 100644 --- a/packages/app/src-tauri/divi/src/prices.rs +++ b/packages/app/src-tauri/divi/src/prices.rs @@ -1,8 +1,8 @@ use serde::{Deserialize, Serialize}; -use serde_json::Value; use crate::{ consts::{CARDS, CARDS_N}, + error::Error, league::TradeLeague, }; use serde_big_array::BigArray; @@ -24,7 +24,7 @@ pub struct DivinationCardPrice { #[serde(transparent)] pub struct Prices(#[serde(with = "BigArray")] pub [DivinationCardPrice; CARDS_N]); impl Prices { - pub async fn fetch(league: &TradeLeague) -> Result { + pub async fn fetch(league: &TradeLeague) -> Result { #[derive(Deserialize, Debug, Serialize)] struct PriceData { lines: Vec, @@ -33,7 +33,7 @@ impl Prices { let client = reqwest::Client::new(); let url = format!("https://poe.ninja/api/data/itemoverview?league={league}&type=DivinationCard&language=en"); let json = client.get(url).send().await?.text().await?; - std::fs::write("ninja.json", &json).unwrap(); + // std::fs::write("ninja.json", &json).unwrap(); let data = serde_json::from_str::(&json).unwrap(); Ok(Prices::from(data.lines)) } diff --git a/packages/app/src-tauri/lib/src/commands.rs b/packages/app/src-tauri/lib/src/commands.rs index 208165d6..1ec7fdc2 100644 --- a/packages/app/src-tauri/lib/src/commands.rs +++ b/packages/app/src-tauri/lib/src/commands.rs @@ -4,20 +4,21 @@ use divi::{ league::TradeLeague, sample::{DivinationCardsSample, SampleData}, }; -use tauri::{command, State}; +use tauri::{command, State, Window}; use crate::{js_result::JSResult, prices::AppCardPrices}; #[command] -pub async fn sample( +pub async fn sample<'a>( data: SampleData, league: Option, state: State<'_, Mutex>, + window: Window, ) -> Result, ()> { let prices = match league { Some(league) => { let mut guard = state.lock().await; - Some(guard.get_or_update(&league).await) + Some(guard.get_or_update(&league, &window).await) } None => None, }; @@ -26,12 +27,13 @@ pub async fn sample( } #[command] -pub async fn merge( +pub async fn merge<'a>( samples: Vec, state: State<'_, Mutex>, + window: Window, ) -> Result { let mut guard = state.lock().await; - let prices = guard.get_or_update(&TradeLeague::default()).await; + let prices = guard.get_or_update(&TradeLeague::default(), &window).await; Ok(DivinationCardsSample::merge(Some(prices), &samples)) } diff --git a/packages/app/src-tauri/lib/src/error.rs b/packages/app/src-tauri/lib/src/error.rs new file mode 100644 index 00000000..7203c485 --- /dev/null +++ b/packages/app/src-tauri/lib/src/error.rs @@ -0,0 +1,47 @@ +use std::fmt::Display; + +use serde::Serialize; + +#[derive(Debug)] +pub enum Error { + HttpError(reqwest::Error), + SerdeError(serde_json::Error), + DiviError(divi::error::Error), +} + +impl Display for Error { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + match self { + Error::HttpError(err) => err.fmt(f), + Error::SerdeError(err) => err.fmt(f), + Error::DiviError(err) => err.fmt(f), + } + } +} + +impl Serialize for Error { + fn serialize(&self, serializer: S) -> Result + where + S: serde::Serializer, + { + serializer.serialize_str(self.to_string().as_str()) + } +} + +impl From for Error { + fn from(value: reqwest::Error) -> Self { + Error::HttpError(value) + } +} + +impl From for Error { + fn from(value: serde_json::Error) -> Self { + Error::SerdeError(value) + } +} + +impl From for Error { + fn from(value: divi::error::Error) -> Self { + Error::DiviError(value) + } +} diff --git a/packages/app/src-tauri/lib/src/event.rs b/packages/app/src-tauri/lib/src/event.rs new file mode 100644 index 00000000..8358149d --- /dev/null +++ b/packages/app/src-tauri/lib/src/event.rs @@ -0,0 +1,46 @@ +use serde::{Deserialize, Serialize}; +use tauri::Window; + +#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] +#[serde(tag = "type")] +pub enum Event { + #[serde(rename = "toast")] + #[serde(alias = "toast")] + Toast { + variant: ToastVariant, + message: String, + }, + #[serde(rename = "auth-url")] + #[serde(alias = "auth-url")] + AuthUrl { url: String }, +} + +impl Event { + pub fn emit(&self, window: &Window) { + window.emit(&self.name(), &self).unwrap(); + } + + pub fn name(&self) -> &str { + match self { + Event::Toast { + variant: _, + message: _, + } => "toast", + Event::AuthUrl { url: _ } => "auth-url", + } + } +} + +#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)] +pub enum ToastVariant { + #[serde(rename = "info")] + Info, + #[serde(rename = "success")] + Success, + #[serde(rename = "neutral")] + Neutral, + #[serde(rename = "warning")] + Warning, + #[serde(rename = "danger")] + Danger, +} diff --git a/packages/app/src-tauri/lib/src/lib.rs b/packages/app/src-tauri/lib/src/lib.rs index 05f05015..eadb2707 100644 --- a/packages/app/src-tauri/lib/src/lib.rs +++ b/packages/app/src-tauri/lib/src/lib.rs @@ -1,6 +1,8 @@ pub mod commands; pub mod dev; pub mod discord; +pub mod error; +pub mod event; pub mod google; pub mod js_result; pub mod oauth; diff --git a/packages/app/src-tauri/lib/src/poe.rs b/packages/app/src-tauri/lib/src/poe.rs index de3be8c3..59ba13a9 100644 --- a/packages/app/src-tauri/lib/src/poe.rs +++ b/packages/app/src-tauri/lib/src/poe.rs @@ -1,6 +1,6 @@ use std::net::{IpAddr, Ipv4Addr, SocketAddr}; -use crate::oauth::AuthCodeResponse; +use crate::{event::Event, oauth::AuthCodeResponse}; use axum::{extract::Query, response::Html, routing::get, Router}; use divi::league::League; use keyring::Entry; @@ -65,6 +65,11 @@ pub async fn poe_auth(app_handle: AppHandle, window: Window) -> Result params, None => { diff --git a/packages/app/src-tauri/lib/src/prices.rs b/packages/app/src-tauri/lib/src/prices.rs index 898bf1f2..78ce8005 100644 --- a/packages/app/src-tauri/lib/src/prices.rs +++ b/packages/app/src-tauri/lib/src/prices.rs @@ -1,13 +1,12 @@ -#![allow(unused)] - -use crate::{error::Error, paths}; +use crate::{ + error::Error, + event::{Event, ToastVariant}, + paths, +}; use divi::{league::TradeLeague, prices::Prices}; use serde::{Deserialize, Serialize}; -use std::{ - collections::HashMap, - fs, - path::{Path, PathBuf}, -}; +use std::{collections::HashMap, fs, path::PathBuf}; +use tauri::Window; use tracing::{debug, instrument}; pub const DAY_AS_SECS: u64 = 86_400; @@ -28,8 +27,8 @@ impl AppCardPrices { } } - #[instrument(skip(self))] - pub async fn get_or_update(&mut self, league: &TradeLeague) -> Prices { + #[instrument(skip(self, window))] + pub async fn get_or_update(&mut self, league: &TradeLeague, window: &Window) -> Prices { match self.prices_by_league.get(league) { Some(prices) => prices.to_owned(), None => match self.up_to_date(league) { @@ -41,7 +40,7 @@ impl AppCardPrices { } false => { dbg!("get_or_update. false branch of up_to_date"); - match self.fetch_and_update(league).await { + match self.fetch_and_update(league, window).await { Ok(prices) => prices, Err(err) => { dbg!(err); @@ -57,8 +56,12 @@ impl AppCardPrices { self.dir.join(format!("{}-prices.json", { league })) } - #[instrument(skip(self))] - async fn fetch_and_update(&mut self, league: &TradeLeague) -> Result { + #[instrument(skip(self, window))] + async fn fetch_and_update( + &mut self, + league: &TradeLeague, + window: &Window, + ) -> Result { let prices = Prices::fetch(league).await?; debug!("fetch_and_update: fetched. Serializing to json"); let json = serde_json::to_string(&prices)?; @@ -71,6 +74,12 @@ impl AppCardPrices { self.prices_by_league .insert(league.to_owned(), prices.clone()); + Event::Toast { + variant: ToastVariant::Neutral, + message: format!("Prices for {league} league have been updated"), + } + .emit(&window); + Ok(prices) } diff --git a/packages/app/src-tauri/ninja.json b/packages/app/src-tauri/ninja.json new file mode 100644 index 00000000..312776e3 --- /dev/null +++ b/packages/app/src-tauri/ninja.json @@ -0,0 +1 @@ +{"lines":[{"id":636,"name":"House of Mirrors","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"HouseOfMirrors","itemClass":6,"sparkline":{"data":[0,0.24,4.09,7.93,10.82,12.98,14.18],"totalChange":14.18},"lowConfidenceSparkline":{"data":[0,0.24,4.09,7.93,10.82,12.98,14.18],"totalChange":14.18},"implicitModifiers":[],"explicitModifiers":[{"text":"{Mirror of Kalandra}","optional":false}],"flavourText":"What do you see in the mirror?","chaosValue":20151.40,"exaltedValue":1162.80,"divineValue":95.00,"count":28,"detailsId":"house-of-mirrors","tradeInfo":[],"listingCount":110},{"id":44612,"name":"Unrequited Love","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":16,"artFilename":"UnrequitedLove","itemClass":6,"sparkline":{"data":[0,0,0,0,2.00,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,2.00,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{19x Mirror Shard}","optional":false}],"flavourText":"{The pale flame of his heart disappeared in his azure reflection.\nThe work of a life.\nAmbitious, and unfinished.}","chaosValue":8484.80,"exaltedValue":489.60,"divineValue":40.00,"count":26,"detailsId":"unrequited-love","tradeInfo":[],"listingCount":131},{"id":95761,"name":"The Apothecary","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheApothecary","itemClass":6,"sparkline":{"data":[0,0.36,0.56,0.64,0.64,2.94,3.27],"totalChange":3.27},"lowConfidenceSparkline":{"data":[0,0.36,0.56,0.64,0.64,2.94,3.27],"totalChange":3.27},"implicitModifiers":[],"explicitModifiers":[{"text":"{Mageblood}","optional":false}],"flavourText":"\"You seek the power of my strongest potions, but the price will be far higher than you can imagine.\"","chaosValue":7835.71,"exaltedValue":452.15,"divineValue":36.94,"count":91,"detailsId":"the-apothecary","tradeInfo":[],"listingCount":390},{"id":98384,"name":"The Price of Devotion","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"ThePriceOfDevotion","itemClass":6,"sparkline":{"data":[0,3.48,1.74,0.87,2.61,4.35,5.22],"totalChange":5.22},"lowConfidenceSparkline":{"data":[0,3.48,1.74,0.87,2.61,4.35,5.22],"totalChange":5.22},"implicitModifiers":[],"explicitModifiers":[{"text":"{Mageblood}\n{Quality:} {+20%}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"{Unbeknown to Atziri's finest thaumaturgists, their loyalty would require far greater devotion than mere research.}","chaosValue":5133.30,"exaltedValue":296.21,"divineValue":24.20,"count":12,"detailsId":"the-price-of-devotion","tradeInfo":[],"listingCount":79},{"id":100726,"name":"The Insane Cat","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"TheInsaneCat","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Mageblood}\n{Item Level:} {84}\n{Corrupted}","optional":false}],"flavourText":"One person's madness is another person's reality.","chaosValue":2757.56,"exaltedValue":159.12,"divineValue":13.00,"count":47,"detailsId":"the-insane-cat","tradeInfo":[],"listingCount":158},{"id":1476,"name":"The Doctor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheDoctor","itemClass":6,"sparkline":{"data":[0,1.01,1.01,1.01,1.01,1.01,1.01],"totalChange":1.01},"lowConfidenceSparkline":{"data":[0,1.01,1.01,1.01,1.01,1.01,1.01],"totalChange":1.01},"implicitModifiers":[],"explicitModifiers":[{"text":"{Headhunter}","optional":false}],"flavourText":"\"They said I needed my head examined, but I'd rather just take yours.\" - Klopek the Cannibal","chaosValue":2121.20,"exaltedValue":122.40,"divineValue":10.00,"count":84,"detailsId":"the-doctor","tradeInfo":[],"listingCount":396},{"id":1529,"name":"The Immortal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":10,"artFilename":"TheImmortal","itemClass":6,"sparkline":{"data":[0,2.05,2.05,2.05,2.05,2.05,2.05],"totalChange":2.05},"lowConfidenceSparkline":{"data":[0,2.05,2.05,2.05,2.05,2.05,2.05],"totalChange":2.05},"implicitModifiers":[],"explicitModifiers":[{"text":"{House of Mirrors}","optional":false}],"flavourText":"{\"Greetings! Just because you think I'm greedy doesn't mean I'm not willing to share. You'll just have to kill me first.\"\n-Grandmaster Dy'Ness}","chaosValue":1909.08,"exaltedValue":110.16,"divineValue":9.00,"count":74,"detailsId":"the-immortal","tradeInfo":[],"listingCount":434},{"id":22522,"name":"The Demon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":10,"artFilename":"TheDemon","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,-6.67],"totalChange":-6.67},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,-6.67],"totalChange":-6.67},"implicitModifiers":[],"explicitModifiers":[{"text":"{Headhunter}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"A man who hears voices may not necessarily be crazy.","chaosValue":1781.81,"exaltedValue":102.82,"divineValue":8.40,"count":27,"detailsId":"the-demon","tradeInfo":[],"listingCount":85},{"id":1496,"name":"The Fiend","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":11,"artFilename":"TheFiend","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,-1.67],"totalChange":-1.67},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,-1.67],"totalChange":-1.67},"implicitModifiers":[],"explicitModifiers":[{"text":"{Headhunter}\n{Corrupted}","optional":false}],"flavourText":"{Your era is now,\nyour power unwavered, \nsoon we will see\nwho the gods truly favoured.}","chaosValue":1251.51,"exaltedValue":72.22,"divineValue":5.90,"count":92,"detailsId":"the-fiend","tradeInfo":[],"listingCount":370},{"id":98375,"name":"The Shieldbearer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheShieldbearer","itemClass":6,"sparkline":{"data":[0,-2.35,-3.43,-6.29,-5.71,-5.71,-13.14],"totalChange":-13.14},"lowConfidenceSparkline":{"data":[0,-2.35,-3.43,-6.29,-5.71,-5.71,-13.14],"totalChange":-13.14},"implicitModifiers":[],"explicitModifiers":[{"text":"{The Squire}","optional":false}],"flavourText":"While you grow, I shall be your knight, and you my squire. One day, you shall be the one who stands and defends our home.","chaosValue":644.84,"exaltedValue":37.21,"divineValue":3.04,"count":89,"detailsId":"the-shieldbearer","tradeInfo":[],"listingCount":493},{"id":98357,"name":"Choking Guilt","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"ChokingGuilt","itemClass":6,"sparkline":{"data":[0,-2.55,-5.88,-11.76,-5.88,-11.76,-11.76],"totalChange":-11.76},"lowConfidenceSparkline":{"data":[0,-2.55,-5.88,-11.76,-5.88,-11.76,-11.76],"totalChange":-11.76},"implicitModifiers":[],"explicitModifiers":[{"text":"{Stranglegasp}","optional":false}],"flavourText":"As death approached, clarity eluded him. The pain he had wrought surrounded him, dragging him into darkness.","chaosValue":636.36,"exaltedValue":36.72,"divineValue":3.00,"count":54,"detailsId":"choking-guilt","tradeInfo":[],"listingCount":346},{"id":20760,"name":"Seven Years Bad Luck","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":13,"artFilename":"SevenYearsBadLuck","itemClass":6,"sparkline":{"data":[0,2.31,1.28,0.87,2.56,2.56,2.31],"totalChange":2.31},"lowConfidenceSparkline":{"data":[0,2.31,1.28,0.87,2.56,2.56,2.31],"totalChange":2.31},"implicitModifiers":[],"explicitModifiers":[{"text":"{Mirror Shard}","optional":false}],"flavourText":"If enough people believe something to be true, whether or not it is becomes irrelevant.","chaosValue":399.00,"exaltedValue":23.02,"divineValue":1.88,"count":98,"detailsId":"seven-years-bad-luck","tradeInfo":[],"listingCount":2490},{"id":22454,"name":"The Price of Loyalty","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"ThePriceOfLoyalty","itemClass":6,"sparkline":{"data":[0,-7.70,-7.70,-3.08,4.18,13.70,13.70],"totalChange":13.70},"lowConfidenceSparkline":{"data":[0,-7.70,-7.70,-3.08,4.18,13.70,13.70],"totalChange":13.70},"implicitModifiers":[],"explicitModifiers":[{"text":"{Skin of the Loyal}\n{{Item Level:} {25}\n{Two-Implicit}\n{Corrupted}}","optional":false}],"flavourText":"\"Forge me a carapace from their skin, imbued with their soul. Then feed their flesh to the hounds.\"","chaosValue":313.54,"exaltedValue":18.09,"divineValue":1.48,"count":20,"detailsId":"the-price-of-loyalty","tradeInfo":[],"listingCount":286},{"id":40086,"name":"The Cheater","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TheCheater","itemClass":6,"sparkline":{"data":[0,0,0,-7.14,-7.14,-7.14,-7.14],"totalChange":-7.14},"lowConfidenceSparkline":{"data":[0,0,0,-7.14,-7.14,-7.14,-7.14],"totalChange":-7.14},"implicitModifiers":[],"explicitModifiers":[{"text":"{{Level 6 Awakened Support Gem}}\n{Quality:} {+20%}\n{Corrupted}","optional":false}],"flavourText":"Sometimes the best way to achieve greatness is to use a shortcut.","chaosValue":275.76,"exaltedValue":15.91,"divineValue":1.30,"count":84,"detailsId":"the-cheater","tradeInfo":[],"listingCount":501},{"id":54502,"name":"Love Through Ice","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"LoveThroughIce","itemClass":6,"sparkline":{"data":[0,-5.53,-10.93,-14.12,-14.12,-14.12,-14.12],"totalChange":-14.12},"lowConfidenceSparkline":{"data":[0,-5.53,-10.93,-14.12,-14.12,-14.12,-14.12],"totalChange":-14.12},"implicitModifiers":[],"explicitModifiers":[{"text":"{Unnatural Instinct}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"\"I know one lady for whose sake I will rip out my heart\"\n\n- Derrok, the Dreamer","chaosValue":212.12,"exaltedValue":12.24,"divineValue":1.00,"count":51,"detailsId":"love-through-ice","tradeInfo":[],"listingCount":431},{"id":18978,"name":"The Nurse","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheNurse","itemClass":6,"sparkline":{"data":[0,0,5,5,6.06,10,5],"totalChange":5},"lowConfidenceSparkline":{"data":[0,0,5,5,6.06,10,5],"totalChange":5},"implicitModifiers":[],"explicitModifiers":[{"text":"{The Doctor}","optional":false}],"flavourText":"We tried to tell him to get his head checked.","chaosValue":210.00,"exaltedValue":12.12,"divineValue":0.99,"count":99,"detailsId":"the-nurse","tradeInfo":[],"listingCount":2704},{"id":104232,"name":"Brother's Gift","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","artFilename":"BrotherGift","itemClass":6,"sparkline":{"data":[0,2.40,4.00,4.00,4.00,3.20,-84.35],"totalChange":-84.35},"lowConfidenceSparkline":{"data":[0,2.40,4.00,4.00,4.00,3.20,-84.35],"totalChange":-84.35},"implicitModifiers":[],"explicitModifiers":[{"text":"{5x Divine Orb}","optional":false}],"flavourText":"{Even though his flame has burned out,\nhe will never fade away.}","chaosValue":166.00,"exaltedValue":9.58,"divineValue":0.78,"count":10,"detailsId":"brothers-gift","tradeInfo":[],"listingCount":109},{"id":1603,"name":"The Sephirot","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":11,"artFilename":"TheSephirot","itemClass":6,"sparkline":{"data":[0,1.25,0,1.5,3.12,3.12,3.12],"totalChange":3.12},"lowConfidenceSparkline":{"data":[0,1.25,0,1.5,3.12,3.12,3.12],"totalChange":3.12},"implicitModifiers":[],"explicitModifiers":[{"text":"{10x Divine Orb}","optional":false}],"flavourText":"If the path to divinity were simple, we'd all be gods.","chaosValue":165.00,"exaltedValue":9.52,"divineValue":0.78,"count":99,"detailsId":"the-sephirot","tradeInfo":[],"listingCount":2820},{"id":1850,"name":"Wealth and Power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":11,"artFilename":"WealthAndPower","itemClass":6,"sparkline":{"data":[0,-2.4,-3.04,-4,-4,-4,-4],"totalChange":-4},"lowConfidenceSparkline":{"data":[0,-2.4,-3.04,-4,-4,-4,-4],"totalChange":-4},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 4 Enlighten}\n{Corrupted}","optional":false}],"flavourText":"{The greatness of a man is not in how much wealth or power he acquires, but in his integrity and his ability to positively affect those around him.}","chaosValue":120.00,"exaltedValue":6.92,"divineValue":0.57,"count":99,"detailsId":"wealth-and-power","tradeInfo":[],"listingCount":1393},{"id":23251,"name":"The Chosen","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheChosen","itemClass":6,"sparkline":{"data":[0,0,0,0,3.33,4,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,3.33,4,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Skin of the Lords}\n{Corrupted}","optional":false}],"flavourText":"They whose lives were given to clothe the Dark Dreamer... They were the lucky ones.","chaosValue":120.00,"exaltedValue":6.92,"divineValue":0.57,"count":60,"detailsId":"the-chosen","tradeInfo":[],"listingCount":590},{"id":1615,"name":"The Soul","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"TheSoul","itemClass":6,"sparkline":{"data":[0,-6.59,-6.59,9.89,9.89,26.37,26.37],"totalChange":26.37},"lowConfidenceSparkline":{"data":[0,-6.59,-6.59,9.89,9.89,26.37,26.37],"totalChange":26.37},"implicitModifiers":[],"explicitModifiers":[{"text":"{Soul Taker}","optional":false}],"flavourText":"\"Most people only have one. I'm a bit of a hoarder.\"","chaosValue":115.00,"exaltedValue":6.64,"divineValue":0.54,"count":84,"detailsId":"the-soul","tradeInfo":[],"listingCount":686},{"id":100582,"name":"Divine Beauty","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":12,"artFilename":"DivineBeauty","itemClass":6,"sparkline":{"data":[0,0,0,0,0,1.5,5],"totalChange":5},"lowConfidenceSparkline":{"data":[0,0,0,0,0,1.5,5],"totalChange":5},"implicitModifiers":[],"explicitModifiers":[{"text":"{7x Divine Orb}","optional":false}],"flavourText":"{In a land far away lived \na maiden most fair.\nHer smile melted the coldest\nof hearts, her song made\nmen and beast cry, \nher beauty unparalleled;\nDivine.}","chaosValue":105.00,"exaltedValue":6.06,"divineValue":0.50,"count":99,"detailsId":"divine-beauty","tradeInfo":[],"listingCount":4655},{"id":7393,"name":"The Endless Darkness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"TheEndlessDarkness","itemClass":6,"sparkline":{"data":[0,0,0,0,0,11.11,10],"totalChange":10},"lowConfidenceSparkline":{"data":[0,0,0,0,0,11.11,10],"totalChange":10},"implicitModifiers":[],"explicitModifiers":[{"text":"{Voidforge}","optional":false}],"flavourText":"Gaze towards the stars, but beware what gazes back.","chaosValue":99.00,"exaltedValue":5.71,"divineValue":0.47,"count":70,"detailsId":"the-endless-darkness","tradeInfo":[],"listingCount":756},{"id":104061,"name":"Matryoshka","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"Matryoshka","itemClass":6,"sparkline":{"data":[0,0,0,0,-1,-1,-2.6],"totalChange":-2.6},"lowConfidenceSparkline":{"data":[0,0,0,0,-1,-1,-2.6],"totalChange":-2.6},"implicitModifiers":[],"explicitModifiers":[{"text":" {Onyx Amulet}\n{{Item Level:} {85}\n{Quality:} {+20%}\n{Influenced Item}\n{Four Anointments}\n{Incubating Talisman Item}\n{Corrupted}}","optional":false}],"flavourText":"{I cannot contain myself,\nbut I can barely squeak,\nso many words I'd have for you,\nif I could only speak!}","chaosValue":97.40,"exaltedValue":5.62,"divineValue":0.46,"count":24,"detailsId":"matryoshka","tradeInfo":[],"listingCount":284},{"id":44364,"name":"Desecrated Virtue","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"DesecratedVirtue","itemClass":6,"sparkline":{"data":[0,0,0.56,1.58,1.58,1.58,6.09],"totalChange":6.09},"lowConfidenceSparkline":{"data":[0,0,0.56,1.58,1.58,1.58,6.09],"totalChange":6.09},"implicitModifiers":[],"explicitModifiers":[{"text":"{{Level 6 Awakened Support Gem}}\n{Quality:} {+23%}\n{Corrupted}","optional":false}],"flavourText":"{Awoken virtuous slivers of the void,\ndefiled by the avaricious, \nseized by the tyrannical.}","chaosValue":94.00,"exaltedValue":5.42,"divineValue":0.44,"count":86,"detailsId":"desecrated-virtue","tradeInfo":[],"listingCount":885},{"id":98327,"name":"Doryani's Epiphany","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"DoryanisEpiphany","itemClass":6,"sparkline":{"data":[0,0,-5.26,-5.26,-5.26,-5.26,-5.26],"totalChange":-5.26},"lowConfidenceSparkline":{"data":[0,0,-5.26,-5.26,-5.26,-5.26,-5.26],"totalChange":-5.26},"implicitModifiers":[],"explicitModifiers":[{"text":"{3x Regrading Lens}","optional":false}],"flavourText":"\"Virtue gems have facets beyond those that can be seen by the mortal eye. Let us look deeper...\"","chaosValue":90.00,"exaltedValue":5.19,"divineValue":0.42,"count":99,"detailsId":"doryanis-epiphany","tradeInfo":[],"listingCount":1136},{"id":1542,"name":"The Last One Standing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":10,"artFilename":"TheLastOneStanding","itemClass":6,"sparkline":{"data":[0,0,-7.14,-14.29,-14.29,-10,-4.57],"totalChange":-4.57},"lowConfidenceSparkline":{"data":[0,0,-7.14,-14.29,-14.29,-10,-4.57],"totalChange":-4.57},"implicitModifiers":[],"explicitModifiers":[{"text":"{Atziri's Disfavour}","optional":false}],"flavourText":"The strongest emerge from suffering. The toughest bear the most scars. The sole survivor claims the greatest of rewards.","chaosValue":66.80,"exaltedValue":3.85,"divineValue":0.31,"count":64,"detailsId":"the-last-one-standing","tradeInfo":[],"listingCount":675},{"id":44342,"name":"Brother's Stash","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","artFilename":"BrothersStash","itemClass":6,"sparkline":{"data":[0,19.51,19.51,17.07,20,16.59,-26.83],"totalChange":-26.83},"lowConfidenceSparkline":{"data":[0,19.51,19.51,17.07,20,16.59,-26.83],"totalChange":-26.83},"implicitModifiers":[],"explicitModifiers":[{"text":"{5x Exalted Orb}","optional":false}],"flavourText":"Even though he found the stash just in time,\nHe would trade it all away and then some to have him back.","chaosValue":60.00,"exaltedValue":3.46,"divineValue":0.28,"count":14,"detailsId":"brothers-stash","tradeInfo":[],"listingCount":187},{"id":93137,"name":"Imperfect Memories","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"ImperfectMemories","itemClass":6,"sparkline":{"data":[0,0,-6.83,-16.67,-16.67,-16.67,-16.67],"totalChange":-16.67},"lowConfidenceSparkline":{"data":[0,0,-6.83,-16.67,-16.67,-16.67,-16.67],"totalChange":-16.67},"implicitModifiers":[],"explicitModifiers":[{"text":"{Jewellery}\n{Item Level:} {100}\n{Three-Implicit}\n{Synthesised}","optional":false}],"flavourText":"Everything is eroded by time, but sometimes the edges that fade can make a wonderful memory even more beautiful.","chaosValue":50.00,"exaltedValue":2.89,"divineValue":0.24,"count":78,"detailsId":"imperfect-memories","tradeInfo":[],"listingCount":619},{"id":6908,"name":"The Samurai's Eye","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TheSamuraisEye","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,17.5],"totalChange":17.5},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,17.5],"totalChange":17.5},"implicitModifiers":[],"explicitModifiers":[{"text":"{Watcher's Eye}","optional":false}],"flavourText":"At night, when the seas are calm, and the skies dark, he can see it. The formless fiend that took his eye, and fractured his mind.","chaosValue":47.00,"exaltedValue":2.71,"divineValue":0.22,"count":64,"detailsId":"the-samurais-eye","tradeInfo":[],"listingCount":914},{"id":95806,"name":"A Fate Worse Than Death","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"AFateWorseThanDeath","itemClass":6,"sparkline":{"data":[0,-1.36,-2.27,0.91,0.45,2.27,2.27],"totalChange":2.27},"lowConfidenceSparkline":{"data":[0,-1.36,-2.27,0.91,0.45,2.27,2.27],"totalChange":2.27},"implicitModifiers":[],"explicitModifiers":[{"text":"{Cortex}\n{Corrupted}","optional":false}],"flavourText":"\"It was as though my very thoughts were breaking... fracturing into tiny motes to be lost on the wind.\"","chaosValue":45.00,"exaltedValue":2.60,"divineValue":0.21,"count":99,"detailsId":"a-fate-worse-than-death","tradeInfo":[],"listingCount":2044},{"id":60133,"name":"Luminous Trove","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"LuminousTrove","itemClass":6,"sparkline":{"data":[0,-2.04,-8.16,-13.47,-18.37,-18.37,-18.37],"totalChange":-18.37},"lowConfidenceSparkline":{"data":[0,-2.04,-8.16,-13.47,-18.37,-18.37,-18.37],"totalChange":-18.37},"implicitModifiers":[],"explicitModifiers":[{"text":"{Voices}\n{Corrupted}","optional":false}],"flavourText":"{Plenty enter, dreaming of treasure\nTwenty bled, slain as they fled\nShadows loom, half left doomed\nThe blind cries, five lost eyes\nCareless twins, a lich's new prize\nOne as a decoy, none pass the king\nGehennix feeds only on whispers}","chaosValue":40.00,"exaltedValue":2.31,"divineValue":0.19,"count":99,"detailsId":"luminous-trove","tradeInfo":[],"listingCount":963},{"id":60230,"name":"Broken Promises","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":2,"artFilename":"BrokenPromises","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Diamond Ring}\n{Item Level:} {87}\n{Two-Implicit}\n{Synthesised}","optional":false}],"flavourText":"Experience teaches us that the cold is not the same as the absence of warmth.","chaosValue":40.00,"exaltedValue":2.31,"divineValue":0.19,"count":69,"detailsId":"broken-promises","tradeInfo":[],"listingCount":645},{"id":1479,"name":"The Dragon's Heart","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":11,"artFilename":"TheDragonsHeart","itemClass":6,"sparkline":{"data":[0,0,0,3.57,7.14,17.86,25],"totalChange":25},"lowConfidenceSparkline":{"data":[0,0,0,3.57,7.14,17.86,25],"totalChange":25},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 4 Empower}\n{Corrupted}","optional":false}],"flavourText":"They say when a dragon dies, the flesh smoulders and burns until all that remains is the still, white-hot, heart.","chaosValue":35.00,"exaltedValue":2.02,"divineValue":0.17,"count":99,"detailsId":"the-dragons-heart","tradeInfo":[],"listingCount":5306},{"id":71295,"name":"Eternal Bonds","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"EternalBonds","itemClass":6,"sparkline":{"data":[0,0.57,0.57,0.57,0.57,0.57,-2.30],"totalChange":-2.30},"lowConfidenceSparkline":{"data":[0,0.57,0.57,0.57,0.57,0.57,-2.30],"totalChange":-2.30},"implicitModifiers":[],"explicitModifiers":[{"text":"{Replica Cortex}","optional":false}],"flavourText":"Separate, stories untold.\nTogether, memories unfold.","chaosValue":34.00,"exaltedValue":1.96,"divineValue":0.16,"count":64,"detailsId":"eternal-bonds","tradeInfo":[],"listingCount":825},{"id":22502,"name":"Remembrance","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"Remembrance","itemClass":6,"sparkline":{"data":[0,1.35,1.35,1.35,8.11,11.15,11.15],"totalChange":11.15},"lowConfidenceSparkline":{"data":[0,1.35,1.35,1.35,8.11,11.15,11.15],"totalChange":11.15},"implicitModifiers":[],"explicitModifiers":[{"text":"{Precursor's Emblem}\n{Corrupted}","optional":false}],"flavourText":"{\"For all your struggles, all your achievements, even for the greatest of us, a story is all that remains. Write it well.\" \n\n-Julius Perandus, Father of Chitus}","chaosValue":32.90,"exaltedValue":1.90,"divineValue":0.16,"count":60,"detailsId":"remembrance","tradeInfo":[],"listingCount":684},{"id":1421,"name":"The Artist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":11,"artFilename":"TheArtist","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 4 Enhance}\n{Corrupted}","optional":false}],"flavourText":"\"Paint, metal, flesh... A true artist does not limit himself.\" - Malachai the Soulless","chaosValue":30.00,"exaltedValue":1.73,"divineValue":0.14,"count":99,"detailsId":"the-artist","tradeInfo":[],"listingCount":1213},{"id":93227,"name":"Magnum Opus","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"MagnumOpus","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Item}\n{Item Level:} {100}\n{Three-Implicit}\n{Synthesised}","optional":false}],"flavourText":"Wraeclast will unite. This shall be my great work - the minds of the people made one.","chaosValue":30.00,"exaltedValue":1.73,"divineValue":0.14,"count":71,"detailsId":"magnum-opus","tradeInfo":[],"listingCount":706},{"id":93254,"name":"Duality","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":2,"artFilename":"Duality","itemClass":6,"sparkline":{"data":[0,4.40,4.40,37.36,64.84,64.84,64.84],"totalChange":64.84},"lowConfidenceSparkline":{"data":[0,4.40,4.40,37.36,64.84,64.84,64.84],"totalChange":64.84},"implicitModifiers":[],"explicitModifiers":[{"text":"{Body Armour}\n{Item Level:} {100}\n{Double-Influenced Item}","optional":false}],"flavourText":"Good and Evil can be woven together to become something greater than either.","chaosValue":30.00,"exaltedValue":1.73,"divineValue":0.14,"count":21,"detailsId":"duality","tradeInfo":[],"listingCount":284},{"id":60072,"name":"Winter's Embrace","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":2,"artFilename":"WintersEmbrace","itemClass":6,"sparkline":{"data":[0,-4.93,-3.87,-4.93,-1.41,-4.23,-1.41],"totalChange":-1.41},"lowConfidenceSparkline":{"data":[0,-4.93,-3.87,-4.93,-1.41,-4.23,-1.41],"totalChange":-1.41},"implicitModifiers":[],"explicitModifiers":[{"text":"{Circle of Fear}\n{Three-Implicit}\n{Synthesised}","optional":false}],"flavourText":"{Come home to me, my sweet.\nOh, how long you've been!\nLie with me in the frozen dark.\nI may yet find forgiveness\nNow that fear has left you.}","chaosValue":28.00,"exaltedValue":1.62,"divineValue":0.13,"count":68,"detailsId":"winters-embrace","tradeInfo":[],"listingCount":733},{"id":1487,"name":"The Enlightened","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheEnlightened","itemClass":6,"sparkline":{"data":[0,2.31,-3.85,-3.85,-3.85,-3.85,-3.85],"totalChange":-3.85},"lowConfidenceSparkline":{"data":[0,2.31,-3.85,-3.85,-3.85,-3.85,-3.85],"totalChange":-3.85},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 3 Enlighten}","optional":false}],"flavourText":"Weaving the six,\na serpent stands tall.\nWearing a crown,\nthe thousand petals call.","chaosValue":25.00,"exaltedValue":1.44,"divineValue":0.12,"count":99,"detailsId":"the-enlightened","tradeInfo":[],"listingCount":2550},{"id":2044,"name":"The Garish Power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"GarishPower","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,25],"totalChange":25},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,25],"totalChange":25},"implicitModifiers":[],"explicitModifiers":[{"text":"{Jewel}","optional":false}],"flavourText":"Maligaro may have valued function over form, but that did not mute his flair for the dramatic.","chaosValue":25.00,"exaltedValue":1.44,"divineValue":0.12,"count":61,"detailsId":"the-garish-power","tradeInfo":[],"listingCount":1220},{"id":23958,"name":"Succor of the Sinless","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"SuccorOfTheSinless","itemClass":6,"sparkline":{"data":[0,-4,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,-4,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Bottled Faith}","optional":false}],"flavourText":"Blessed is the blood of the beholden disciple. The earth is anointed by his step. The damnable are sanctified by his strike.","chaosValue":25.00,"exaltedValue":1.44,"divineValue":0.12,"count":74,"detailsId":"succor-of-the-sinless","tradeInfo":[],"listingCount":979},{"id":44114,"name":"The Gulf","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheGulf","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Thread of Hope}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"{I thought love stronger than all,\nbut time and isolation broke\nthat which madness could not.}","chaosValue":25.00,"exaltedValue":1.44,"divineValue":0.12,"count":44,"detailsId":"the-gulf","tradeInfo":[],"listingCount":610},{"id":95856,"name":"Darker Half","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TheDarkerHalf","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{5x Eldritch Chaos Orb}","optional":false}],"flavourText":"When you find what you're looking for, it's never quite right. When you have what you desire, yet you still want more.","chaosValue":25.00,"exaltedValue":1.44,"divineValue":0.12,"count":99,"detailsId":"darker-half","tradeInfo":[],"listingCount":1160},{"id":7437,"name":"Beauty Through Death","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"BeautyThroughDeath","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,-4],"totalChange":-4},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,-4],"totalChange":-4},"implicitModifiers":[],"explicitModifiers":[{"text":"{Atziri's Reflection}","optional":false}],"flavourText":"Her beauty did not fade \nher humanity did not survive.","chaosValue":24.00,"exaltedValue":1.38,"divineValue":0.11,"count":61,"detailsId":"beauty-through-death","tradeInfo":[],"listingCount":1714},{"id":95872,"name":"The Destination","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"TheDestination","itemClass":6,"sparkline":{"data":[0,0,0,0,-6.4,-5.6,-8],"totalChange":-8},"lowConfidenceSparkline":{"data":[0,0,0,0,-6.4,-5.6,-8],"totalChange":-8},"implicitModifiers":[],"explicitModifiers":[{"text":"{Watcher's Eye}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"You may be nothing to everybody, but you are everything to somebody.","chaosValue":23.00,"exaltedValue":1.33,"divineValue":0.11,"count":53,"detailsId":"the-destination","tradeInfo":[],"listingCount":605},{"id":42456,"name":"The Greatest Intentions","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":10,"artFilename":"TheGreatestIntentions","itemClass":6,"sparkline":{"data":[0,2.04,4.08,6.12,25.51,21.43,14.29],"totalChange":14.29},"lowConfidenceSparkline":{"data":[0,2.04,4.08,6.12,25.51,21.43,14.29],"totalChange":14.29},"implicitModifiers":[],"explicitModifiers":[{"text":"{The Saviour}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"Chasing purity in the rising light means facing the darkening edges of the spirit.","chaosValue":22.40,"exaltedValue":1.29,"divineValue":0.11,"count":29,"detailsId":"the-greatest-intentions","tradeInfo":[],"listingCount":528},{"id":1653,"name":"The Vast","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheVast","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Song of the Sirens}","optional":false}],"flavourText":"{Can you hear the siren's calls,\nJust beyond the sea?\nA voice which hearts\nof men enthralls,\nI too am hooked to thee.}","chaosValue":20.00,"exaltedValue":1.15,"divineValue":0.09,"count":22,"detailsId":"the-vast","tradeInfo":[],"listingCount":300},{"id":1709,"name":"Tranquillity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"Tranquillity","itemClass":6,"sparkline":{"data":[0,0,0,-1,-3,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,-1,-3,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Voltaxic Rift}","optional":false}],"flavourText":"Beware the sudden calm, for it is a sure sign of a storm on the horizon.","chaosValue":20.00,"exaltedValue":1.15,"divineValue":0.09,"count":24,"detailsId":"tranquillity","tradeInfo":[],"listingCount":559},{"id":4915,"name":"The World Eater","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheWorldEater","itemClass":6,"sparkline":{"data":[0,-1.33,17.33,9.33,25.33,17.33,33.33],"totalChange":33.33},"lowConfidenceSparkline":{"data":[0,-1.33,17.33,9.33,25.33,17.33,33.33],"totalChange":33.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Starforge}","optional":false}],"flavourText":"Its body knows no limits. Its appetite knows no bounds.","chaosValue":20.00,"exaltedValue":1.15,"divineValue":0.09,"count":37,"detailsId":"the-world-eater","tradeInfo":[],"listingCount":651},{"id":19014,"name":"The Sacrifice","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheSacrifice","itemClass":6,"sparkline":{"data":[0,33.33,33.33,33.33,33.33,33.33,33.33],"totalChange":33.33},"lowConfidenceSparkline":{"data":[0,33.33,33.33,33.33,33.33,33.33,33.33],"totalChange":33.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Six-Link Sacrificial Garb}\n{Item Level:} {100}","optional":false}],"flavourText":"For some, the price of power is never too great.","chaosValue":20.00,"exaltedValue":1.15,"divineValue":0.09,"count":39,"detailsId":"the-sacrifice","tradeInfo":[],"listingCount":597},{"id":21575,"name":"Alluring Bounty","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"AlluringBounty","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{10x Exalted Orb}","optional":false}],"flavourText":"{A treasure worth killing for \nis a treasure worth dying for.}","chaosValue":20.00,"exaltedValue":1.15,"divineValue":0.09,"count":69,"detailsId":"alluring-bounty","tradeInfo":[],"listingCount":1248},{"id":22512,"name":"The Eye of Terror","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheEyeOfTerror","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Chayula's Flawless Breachstone}","optional":false}],"flavourText":"The Lord of Chaos dreams as his Eye gazes, unblinking, at his prize. And soon, all shall tremble before his waking form.","chaosValue":20.00,"exaltedValue":1.15,"divineValue":0.09,"count":22,"detailsId":"the-eye-of-terror","tradeInfo":[],"listingCount":419},{"id":54402,"name":"The Patient","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"ThePatient","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{The Nurse}","optional":false}],"flavourText":"I have a headache, can anyone find me a nurse?","chaosValue":20.00,"exaltedValue":1.15,"divineValue":0.09,"count":99,"detailsId":"the-patient","tradeInfo":[],"listingCount":5574},{"id":60042,"name":"The Hook","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheHook","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 21 Gem}\n{Alternate Quality:} {+23%}\n{Corrupted}","optional":false}],"flavourText":"Every obsession began with a single, innocent taste.","chaosValue":20.00,"exaltedValue":1.15,"divineValue":0.09,"count":92,"detailsId":"the-hook","tradeInfo":[],"listingCount":837},{"id":20787,"name":"Monochrome","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"Monochrome","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,-1.35],"totalChange":-1.35},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,-1.35],"totalChange":-1.35},"implicitModifiers":[],"explicitModifiers":[{"text":"{2x Elevated Sextant}","optional":false}],"flavourText":"{\"You cannot portray the world using just one colour. Together, you and I, we will paint our world into perfection.\" \n- Kyra, renegade thaumaturgist}","chaosValue":19.73,"exaltedValue":1.14,"divineValue":0.09,"count":99,"detailsId":"monochrome","tradeInfo":[],"listingCount":1937},{"id":95800,"name":"Home","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"Home","itemClass":6,"sparkline":{"data":[0,3.22,0.67,4,4,4,5.56],"totalChange":5.56},"lowConfidenceSparkline":{"data":[0,3.22,0.67,4,4,4,5.56],"totalChange":5.56},"implicitModifiers":[],"explicitModifiers":[{"text":"{Exceptional Gem}\n{Quality:} {+1-20%}","optional":false}],"flavourText":"There are countless people, countless stories, and countless eras, but there is one place that, for a time, each of us loved and was loved. It matters. We matter.","chaosValue":19.00,"exaltedValue":1.10,"divineValue":0.09,"count":99,"detailsId":"home","tradeInfo":[],"listingCount":1551},{"id":1725,"name":"Turn the Other Cheek","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TurnTheOtherCheek","itemClass":6,"sparkline":{"data":[0,2.04,24.49,53.06,26.53,42.86,63.27],"totalChange":63.27},"lowConfidenceSparkline":{"data":[0,2.04,24.49,53.06,26.53,42.86,63.27],"totalChange":63.27},"implicitModifiers":[],"explicitModifiers":[{"text":"{Pacifism}\n{Corrupted}","optional":false}],"flavourText":"\"Only after one forsakes rage, can true power be found.\"\n- Sekhema Asenath","chaosValue":16.00,"exaltedValue":0.92,"divineValue":0.08,"count":37,"detailsId":"turn-the-other-cheek","tradeInfo":[],"listingCount":1332},{"id":71022,"name":"The Aspirant","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"Dream","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Item}\n{Elevated Item}\n{Influenced Item}","optional":false}],"flavourText":"{Those Exiles that survive Wraeclast\ndream not of home, but of power.}","chaosValue":15.00,"exaltedValue":0.87,"divineValue":0.07,"count":52,"detailsId":"the-aspirant","tradeInfo":[],"listingCount":673},{"id":98344,"name":"Gemcutter's Mercy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"GemcuttersMercy","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Exceptional Gem}","optional":false}],"flavourText":"When you can only have one, which shall it be?\nRed?\nBlue?\nProbably Green.","chaosValue":15.00,"exaltedValue":0.87,"divineValue":0.07,"count":87,"detailsId":"gemcutters-mercy","tradeInfo":[],"listingCount":1197},{"id":54465,"name":"Fateful Meeting","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"FatefulMeeting","itemClass":6,"sparkline":{"data":[0,0,0,-7.14,-1.43,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,-7.14,-1.43,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{League-Specific Item}\n{Double-Influenced Item}\n{Item Level:} {97}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"{Some people act as beacons, illuminating the path for others. I was lucky to meet one such person.\n\n- Anton to Zhenya}","chaosValue":14.00,"exaltedValue":0.81,"divineValue":0.07,"count":32,"detailsId":"fateful-meeting","tradeInfo":[],"listingCount":385},{"id":93186,"name":"Silence and Frost","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"SilenceAndFrost","itemClass":6,"sparkline":{"data":[0,8.18,0,13.64,27.27,27.27,27.27],"totalChange":27.27},"lowConfidenceSparkline":{"data":[0,8.18,0,13.64,27.27,27.27,27.27],"totalChange":27.27},"implicitModifiers":[],"explicitModifiers":[{"text":"{The Pandemonius}","optional":false}],"flavourText":"Cry havoc!\nUnleash pandemonium!","chaosValue":14.00,"exaltedValue":0.81,"divineValue":0.07,"count":50,"detailsId":"silence-and-frost","tradeInfo":[],"listingCount":1085},{"id":60135,"name":"The Eternal War","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheEternalWar","itemClass":6,"sparkline":{"data":[0,0,0,24,58,50,32],"totalChange":32},"lowConfidenceSparkline":{"data":[0,0,0,24,58,50,32],"totalChange":32},"implicitModifiers":[],"explicitModifiers":[{"text":"{Timeless Jewel}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"They believed, falsely, that the strongest of generals could outlast eons of corruption.","chaosValue":13.20,"exaltedValue":0.76,"divineValue":0.06,"count":40,"detailsId":"the-eternal-war","tradeInfo":[],"listingCount":659},{"id":22552,"name":"The Old Man","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":12,"artFilename":"TheOldMan","itemClass":6,"sparkline":{"data":[0,1.67,1.67,6.67,8.33,8.33,8.33],"totalChange":8.33},"lowConfidenceSparkline":{"data":[0,1.67,1.67,6.67,8.33,8.33,8.33],"totalChange":8.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Fishing Rod}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"Hear me, fish! I love and respect you, but before this day ends I will kill you dead.","chaosValue":13.00,"exaltedValue":0.75,"divineValue":0.06,"count":13,"detailsId":"the-old-man","tradeInfo":[],"listingCount":324},{"id":93301,"name":"The One That Got Away","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheOneThatGotAway","itemClass":6,"sparkline":{"data":[0,16.67,16.67,3.33,3.33,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,16.67,16.67,3.33,3.33,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Replica Bated Breath}","optional":false}],"flavourText":"{Savor life's missing pieces.\nTo complete one's final goal\nis to take one's last breath.}","chaosValue":12.00,"exaltedValue":0.69,"divineValue":0.06,"count":22,"detailsId":"the-one-that-got-away","tradeInfo":[],"listingCount":279},{"id":42462,"name":"The Long Con","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheLongCon","itemClass":6,"sparkline":{"data":[0,0,0,0,0,8,12],"totalChange":12},"lowConfidenceSparkline":{"data":[0,0,0,0,0,8,12],"totalChange":12},"implicitModifiers":[],"explicitModifiers":[{"text":"{Elderslayer's Exalted Orb}","optional":false}],"flavourText":"\"This was the proudest moment of my life.\"\n\n\"... so far\"","chaosValue":11.20,"exaltedValue":0.65,"divineValue":0.05,"count":42,"detailsId":"the-long-con","tradeInfo":[],"listingCount":805},{"id":22476,"name":"Void of the Elements","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"VoidOfTheElements","itemClass":6,"sparkline":{"data":[0,0,0,50,4,2,6],"totalChange":6},"lowConfidenceSparkline":{"data":[0,0,0,50,4,2,6],"totalChange":6},"implicitModifiers":[],"explicitModifiers":[{"text":"{Overpowering Opal Ring}\n{Item Level:} {100}\n{Elder Item}","optional":false}],"flavourText":"Though the forces of nature are mighty and intimidating, it is their absence which should be feared.","chaosValue":10.60,"exaltedValue":0.61,"divineValue":0.05,"count":29,"detailsId":"void-of-the-elements","tradeInfo":[],"listingCount":534},{"id":98328,"name":"The Leviathan","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheLeviathan","itemClass":6,"sparkline":{"data":[0,0,0,-2,-10,-16,4],"totalChange":4},"lowConfidenceSparkline":{"data":[0,0,0,-2,-10,-16,4],"totalChange":4},"implicitModifiers":[],"explicitModifiers":[{"text":"{Maven Item}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"{Ancient behemoths swam the\ndepths of the oceans long\nbefore Man walked these lands.}","chaosValue":10.40,"exaltedValue":0.60,"divineValue":0.05,"count":33,"detailsId":"the-leviathan","tradeInfo":[],"listingCount":642},{"id":95936,"name":"Further Invention","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"FurtherInvention","itemClass":6,"sparkline":{"data":[0,13.64,13.64,13.64,22.73,6.82,15.91],"totalChange":15.91},"lowConfidenceSparkline":{"data":[0,13.64,13.64,13.64,22.73,6.82,15.91],"totalChange":15.91},"implicitModifiers":[],"explicitModifiers":[{"text":"{Helmet}\n{Double-Influenced Item}\n{Item Level:} {100}","optional":false}],"flavourText":"Why not both?","chaosValue":10.20,"exaltedValue":0.59,"divineValue":0.05,"count":22,"detailsId":"further-invention","tradeInfo":[],"listingCount":437},{"id":11,"name":"Abandoned Wealth","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"AbandonedWealth","itemClass":6,"sparkline":{"data":[0,0,0,12.5,12.5,12.5,25],"totalChange":25},"lowConfidenceSparkline":{"data":[0,0,0,12.5,12.5,12.5,25],"totalChange":25},"implicitModifiers":[],"explicitModifiers":[{"text":"{3x Exalted Orb}","optional":false}],"flavourText":"When the world burned, the greedy burned with it, while the clever left as paupers.","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":99,"detailsId":"abandoned-wealth","tradeInfo":[],"listingCount":2354},{"id":131,"name":"Audacity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"Audacity","itemClass":6,"sparkline":{"data":[0,0,85,125,135,150,150],"totalChange":150},"lowConfidenceSparkline":{"data":[0,0,85,125,135,150,150],"totalChange":150},"implicitModifiers":[],"explicitModifiers":[{"text":"{Doryani's Fist}\n{Corrupted}","optional":false}],"flavourText":"{A jolt, and it moves. Or smolders.\nA current, and it lives. Or dies.\nA surge, and it transcends.\nOr... not.\nOnly one way to find out.}","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":27,"detailsId":"audacity","tradeInfo":[],"listingCount":576},{"id":2309,"name":"The Eye of the Dragon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":10,"artFilename":"TheEyeOfTheDragon","itemClass":6,"sparkline":{"data":[0,0,8,54,50,8,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,8,54,50,8,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Jewel}\n{Corrupted}","optional":false}],"flavourText":"Some powers are far too great even for the\ngods of old.","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":45,"detailsId":"the-eye-of-the-dragon","tradeInfo":[],"listingCount":783},{"id":6902,"name":"The Jeweller's Boon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheJewellersBoon","itemClass":6,"sparkline":{"data":[0,12.5,12.5,12.5,12.5,12.5,25],"totalChange":25},"lowConfidenceSparkline":{"data":[0,12.5,12.5,12.5,12.5,12.5,25],"totalChange":25},"implicitModifiers":[],"explicitModifiers":[{"text":"{Five-Linked Body Armour}\n{Influenced Item}","optional":false}],"flavourText":"The jeweller's true talent is the capacity to see a jewel's beauty before they draw it out.","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":99,"detailsId":"the-jewellers-boon","tradeInfo":[],"listingCount":3028},{"id":6981,"name":"The Undisputed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheUndisputed","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Merciless Vaal Axe}\n{Item Level:} {100}\n{Elder Item}","optional":false}],"flavourText":"To create something truly spectacular, you must risk total failure.","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":24,"detailsId":"the-undisputed","tradeInfo":[],"listingCount":567},{"id":22406,"name":"Nook's Crown","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"NooksCrown","itemClass":6,"sparkline":{"data":[0,2.04,2.04,-6.12,2.04,2.04,2.04],"totalChange":2.04},"lowConfidenceSparkline":{"data":[0,2.04,2.04,-6.12,2.04,2.04,2.04],"totalChange":2.04},"implicitModifiers":[],"explicitModifiers":[{"text":"{Bone Helmet}\n{Item Level:} {100}\n{Elder Item}","optional":false}],"flavourText":"{Every skull was once a person. \nThough 'Who?' is rarely asked. \nFriends, who wear \nthe crown of Nook, \nNever need to ask. \nThey remember.}","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":34,"detailsId":"nooks-crown","tradeInfo":[],"listingCount":555},{"id":22460,"name":"The Damned","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheDamned","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Soul Ripper}","optional":false}],"flavourText":"{Souls along a conduit of blood, \nfrom one vessel to the next.}","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":52,"detailsId":"the-damned","tradeInfo":[],"listingCount":758},{"id":40059,"name":"The Strategist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheStrategist","itemClass":6,"sparkline":{"data":[0,0,8.89,11.11,11.11,11.11,11.11],"totalChange":11.11},"lowConfidenceSparkline":{"data":[0,0,8.89,11.11,11.11,11.11,11.11],"totalChange":11.11},"implicitModifiers":[],"explicitModifiers":[{"text":"{Inspired Learning}\n{Corrupted}","optional":false}],"flavourText":"Know thine enemy better than you know thyself.","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":55,"detailsId":"the-strategist","tradeInfo":[],"listingCount":1293},{"id":42138,"name":"Prometheus' Armoury","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"PrometheusArmory","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{One-Hand Weapon}\n{Item Level:} {100}\n{Double-Influenced Item}","optional":false}],"flavourText":"It is a mortal man's folly to seek power beyond his comprehension.","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":43,"detailsId":"prometheus-armoury","tradeInfo":[],"listingCount":711},{"id":42394,"name":"The Tumbleweed","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":2,"artFilename":"TheTumbleWeed","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{{Diamond Ring of Redemption}\n{Item Level:} {100}\n{Redeemer Item}}","optional":false}],"flavourText":"Love is the only redemption after succumbing to the grasps of the Wasteland.","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":27,"detailsId":"the-tumbleweed","tradeInfo":[],"listingCount":521},{"id":42408,"name":"The Awakened","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheAwakened","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Jewellery}\n{Item Level:} {86}\n{Double-Influenced Item}","optional":false}],"flavourText":"Some seek to change the world. Others change the world as a consequence of what they seek.","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":62,"detailsId":"the-awakened","tradeInfo":[],"listingCount":1135},{"id":42420,"name":"Peaceful Moments","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"PeacefulMoments","itemClass":6,"sparkline":{"data":[0,25.71,42.86,42.86,54.29,42.86,42.86],"totalChange":42.86},"lowConfidenceSparkline":{"data":[0,25.71,42.86,42.86,54.29,42.86,42.86],"totalChange":42.86},"implicitModifiers":[],"explicitModifiers":[{"text":"{Timeless Jewel}","optional":false}],"flavourText":"Savour these moments, for they may never return.","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":66,"detailsId":"peaceful-moments","tradeInfo":[],"listingCount":1851},{"id":42508,"name":"Gift of Asenath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"GiftOfAsenath","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Asenath's Gentle Touch}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"The Golden Sekhema's words could solve many a feud. Just what form that solution took was another matter.","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":54,"detailsId":"gift-of-asenath","tradeInfo":[],"listingCount":1151},{"id":44094,"name":"The Unexpected Prize","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":2,"artFilename":"TheUnexpectedPrize","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{{Attribute Transforming Jewel}}\n{{Corrupted}}","optional":false}],"flavourText":"{They came from far and wide under a common banner.\nThey sought companionship and competition,\nbut found a treasure none had foreseen.}","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":54,"detailsId":"the-unexpected-prize","tradeInfo":[],"listingCount":1612},{"id":44251,"name":"The Bitter Blossom","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TheBitterBlossom","itemClass":6,"sparkline":{"data":[0,6.38,6.38,6.38,6.38,6.38,6.38],"totalChange":6.38},"lowConfidenceSparkline":{"data":[0,6.38,6.38,6.38,6.38,6.38,6.38],"totalChange":6.38},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 21 Chaos Gem}\n{Quality:} {+23%}\n{Corrupted}","optional":false}],"flavourText":"The pain you feel is of no consequence, it is evolution, to be made whole within something greater.","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":73,"detailsId":"the-bitter-blossom","tradeInfo":[],"listingCount":1204},{"id":54397,"name":"Draped in Dreams","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"DrapedInDreams","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Six-Link Astral Plate}\n{Item Level:} {100}\n{Influenced Item}","optional":false}],"flavourText":"The suit I wear,\nIs heavy and bare.\nA canvas, it seems, breathing life into dreams.","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":31,"detailsId":"draped-in-dreams","tradeInfo":[],"listingCount":667},{"id":60059,"name":"The Shortcut","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","artFilename":"TheShortcut","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Quicksilver Flask of the Cheetah}\n{Item Level:} {100}","optional":false}],"flavourText":"If time is the most valuable currency, how do you make more of it?","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":32,"detailsId":"the-shortcut","tradeInfo":[],"listingCount":696},{"id":60109,"name":"A Modest Request","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"AModestRequest","itemClass":6,"sparkline":{"data":[0,0,0,0,11.11,11.11,11.11],"totalChange":11.11},"lowConfidenceSparkline":{"data":[0,0,0,0,11.11,11.11,11.11],"totalChange":11.11},"implicitModifiers":[],"explicitModifiers":[{"text":"{Megalomaniac}\n{Corrupted}","optional":false}],"flavourText":"{Cede all power and wealth to me and serve me in perpetuity.\nA minor inconvenience I assure you.}","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":68,"detailsId":"a-modest-request","tradeInfo":[],"listingCount":1298},{"id":60150,"name":"Deadly Joy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"DeadlyJoy","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Torrent's Reclamation}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"{\"Be fast. That is all that matters.\"\n- Rita of the Asylum}","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":38,"detailsId":"deadly-joy","tradeInfo":[],"listingCount":1000},{"id":71302,"name":"The Catch","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":18,"artFilename":"TheCatch","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Fishing Rod}\n{Incubated}\n{Item Level:} {99}","optional":false}],"flavourText":"The largest hooks offer the greatest catch, but often the catch is the hook.","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":39,"detailsId":"the-catch","tradeInfo":[],"listingCount":585},{"id":71683,"name":"The Scout","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheScout","itemClass":6,"sparkline":{"data":[0,-5.85,-19.30,-31.41,-32.75,-32.75,-32.75],"totalChange":-32.75},"lowConfidenceSparkline":{"data":[0,-5.85,-19.30,-31.41,-32.75,-32.75,-32.75],"totalChange":-32.75},"implicitModifiers":[],"explicitModifiers":[{"text":"{7x Exalted Orb}","optional":false}],"flavourText":"The first to travel are often rewarded for their journey, but all the treasure in the world cannot bring back those that are lost.","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":99,"detailsId":"the-scout-divcard","tradeInfo":[],"listingCount":2455},{"id":98383,"name":"The Enforcer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheEnforcer","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Spiked Gloves of the Conquest (Culling Strike)}\n{Item Level:} {86}\n{Warlord Item}","optional":false}],"flavourText":"{\"Boss said to get rid of him, didn't say not to make a mess.\"\n- Rune The Goon}","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":19,"detailsId":"the-enforcer","tradeInfo":[],"listingCount":361},{"id":100481,"name":"Auspicious Ambitions","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"AuspiciousAmbitions","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Experimented Item}\n{Item Level:} {100}\n{Double-Influenced Item}","optional":false}],"flavourText":"{\"Gaze upon the mirrors of what may come and step backward into infinity.\" \n- Dexion, Thaumetic Aspirant}","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":76,"detailsId":"auspicious-ambitions","tradeInfo":[],"listingCount":1725},{"id":100603,"name":"The Wedding Gift","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":2,"artFilename":"TheWeddingGift","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Arakaali's Fang}","optional":false}],"flavourText":"The acolytes congratulated the lucky groom for becoming one with the goddess.","chaosValue":10.00,"exaltedValue":0.58,"divineValue":0.05,"count":46,"detailsId":"the-wedding-gift","tradeInfo":[],"listingCount":1127},{"id":54642,"name":"The Astromancer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheAstromancer","itemClass":6,"sparkline":{"data":[0,0,17.14,0,0,34.29,37.14],"totalChange":37.14},"lowConfidenceSparkline":{"data":[0,0,17.14,0,0,34.29,37.14],"totalChange":37.14},"implicitModifiers":[],"explicitModifiers":[{"text":"{{The Eternity Shroud}\n{Two-Implicit}\n{Corrupted}}","optional":false}],"flavourText":"{They would say that he was a dangerous man,\nunbound by the sense of morality,\nbut what does this matter,\nwhen his love for humanity is undeniable\nand completion of his work would benefit everyone?}","chaosValue":9.60,"exaltedValue":0.55,"divineValue":0.05,"count":24,"detailsId":"the-astromancer","tradeInfo":[],"listingCount":408},{"id":98234,"name":"Something Dark","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"SomethingDark","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,-4],"totalChange":-4},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,-4],"totalChange":-4},"implicitModifiers":[],"explicitModifiers":[{"text":"{Blueprint}\n{Area Level:} {83}\n{Fully Revealed}","optional":false}],"flavourText":"Even in darkness you may find a friend.","chaosValue":9.60,"exaltedValue":0.55,"divineValue":0.05,"count":99,"detailsId":"something-dark","tradeInfo":[],"listingCount":2066},{"id":57,"name":"Anarchy's Price","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":13,"artFilename":"AnarchysPrice","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,2.22],"totalChange":2.22},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,2.22],"totalChange":2.22},"implicitModifiers":[],"explicitModifiers":[{"text":"{Voltaxic Rift}\n{Corrupted}","optional":false}],"flavourText":"{Born of relentless fury and abhorrence, warped by turmoil and anguish, tainted through desire and carnality, I thirst for bloodshed once more.}","chaosValue":9.20,"exaltedValue":0.53,"divineValue":0.04,"count":32,"detailsId":"anarchys-price","tradeInfo":[],"listingCount":607},{"id":6,"name":"A Mother's Parting Gift","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"AMothersPartingGift","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Fertile Mind}\n{Corrupted}","optional":false}],"flavourText":"Nature was her domain,\nLove was her song,\nFamily was her devotion,\nKnowledge was her gift.","chaosValue":9.00,"exaltedValue":0.52,"divineValue":0.04,"count":61,"detailsId":"a-mothers-parting-gift","tradeInfo":[],"listingCount":1725},{"id":2595,"name":"Rebirth","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":27,"artFilename":"BirthOfTheThree","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Charan's Sword}","optional":false}],"flavourText":"He shattered Her smile\nScattered the fragments like ash\nAll she did was laugh","chaosValue":9.00,"exaltedValue":0.52,"divineValue":0.04,"count":79,"detailsId":"rebirth-divcard","tradeInfo":[],"listingCount":1152},{"id":22463,"name":"Azyran's Reward","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"AzyransReward","itemClass":6,"sparkline":{"data":[0,-3.23,-3.23,-3.23,-3.23,29.03,45.16],"totalChange":45.16},"lowConfidenceSparkline":{"data":[0,-3.23,-3.23,-3.23,-3.23,29.03,45.16],"totalChange":45.16},"implicitModifiers":[],"explicitModifiers":[{"text":"{Prismatic Jewel}\n{Corrupted}","optional":false}],"flavourText":"Method transcends shape and size. Do something in parallel long enough, and you will always find \nanother way.","chaosValue":9.00,"exaltedValue":0.52,"divineValue":0.04,"count":99,"detailsId":"azyrans-reward","tradeInfo":[],"listingCount":2384},{"id":24167,"name":"Etched in Blood","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"EtchedInBlood","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Rigwald's Quills}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"When you strive to write your name on the dense pages of History, someone else, inevitably, must be crossed out.","chaosValue":9.00,"exaltedValue":0.52,"divineValue":0.04,"count":38,"detailsId":"etched-in-blood","tradeInfo":[],"listingCount":716},{"id":40042,"name":"The Eldritch Decay","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheEldritchDecay","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,-10],"totalChange":-10},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,-10],"totalChange":-10},"implicitModifiers":[],"explicitModifiers":[{"text":"{Uber Elder Fragment}","optional":false}],"flavourText":"Time dismantles all things eventually, but some wish to accelerate the process.","chaosValue":9.00,"exaltedValue":0.52,"divineValue":0.04,"count":99,"detailsId":"the-eldritch-decay","tradeInfo":[],"listingCount":2354},{"id":42510,"name":"A Familiar Call","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"AFamiliarCall","itemClass":6,"sparkline":{"data":[0,0,0,-10.81,0,21.62,21.62],"totalChange":21.62},"lowConfidenceSparkline":{"data":[0,0,0,-10.81,0,21.62,21.62],"totalChange":21.62},"implicitModifiers":[],"explicitModifiers":[{"text":"{Jewellery of Farrul}\n{Item Level:} {100}\n{Shaper + Hunter Item}","optional":false}],"flavourText":"The mighty huntress always called for her share,\nBut what we shared was a lifelong bond.","chaosValue":9.00,"exaltedValue":0.52,"divineValue":0.04,"count":17,"detailsId":"a-familiar-call","tradeInfo":[],"listingCount":385},{"id":54451,"name":"Keeper's Corruption","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"KeepersCorruption","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Eldritch Bone Helmet (Concentrated Effect)}\n{Item Level:} {89}\n{Elder Item}","optional":false}],"flavourText":"With great power comes...\n\n...Even greater power.","chaosValue":9.00,"exaltedValue":0.52,"divineValue":0.04,"count":19,"detailsId":"keepers-corruption","tradeInfo":[],"listingCount":482},{"id":67895,"name":"Costly Curio","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"CostlyCurio","itemClass":6,"sparkline":{"data":[0,2.86,5.71,14.29,14.29,14.29,28.57],"totalChange":28.57},"lowConfidenceSparkline":{"data":[0,2.86,5.71,14.29,14.29,14.29,28.57],"totalChange":28.57},"implicitModifiers":[],"explicitModifiers":[{"text":"{Item}\n{Double-Influenced Item}","optional":false}],"flavourText":"\"Oh no, I couldn't possibly afford this fine artefact. I'm... just looking.\"","chaosValue":9.00,"exaltedValue":0.52,"divineValue":0.04,"count":78,"detailsId":"costly-curio","tradeInfo":[],"listingCount":2011},{"id":67973,"name":"The Emptiness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheEmptiness","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Vaal Breach}\n{Quality:} {+6%}\n{Corrupted}","optional":false}],"flavourText":"He appeared before the Light Eater, and at once knew his soul was damned.","chaosValue":9.00,"exaltedValue":0.52,"divineValue":0.04,"count":35,"detailsId":"the-emptiness","tradeInfo":[],"listingCount":679},{"id":71115,"name":"The Rabbit's Foot","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheRabbitsFoot","itemClass":6,"sparkline":{"data":[0,8.89,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,8.89,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{10x Incursion Vial}","optional":false}],"flavourText":"It is said anyone who bears this trinket is the luckiest exile in all of Wraeclast. The gods would disagree, and forever curse any whom give it away.","chaosValue":9.00,"exaltedValue":0.52,"divineValue":0.04,"count":54,"detailsId":"the-rabbits-foot","tradeInfo":[],"listingCount":1048},{"id":103554,"name":"A Chilling Wind","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"AChillingWind","itemClass":6,"sparkline":{"data":[0,0,0,0,0,40,80],"totalChange":80},"lowConfidenceSparkline":{"data":[0,0,0,0,0,40,80],"totalChange":80},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 21 Vaal Cold Snap}\n{Quality:} {+20%}\n{Corrupted}","optional":false}],"flavourText":"{All things slow under winter's \nonslaught - even life itself.}","chaosValue":9.00,"exaltedValue":0.52,"divineValue":0.04,"count":78,"detailsId":"a-chilling-wind","tradeInfo":[],"listingCount":2489},{"id":6942,"name":"Immortal Resolve","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"ImmortalResolve","itemClass":6,"sparkline":{"data":[0,0,0,21,28.57,17.14,17.14],"totalChange":17.14},"lowConfidenceSparkline":{"data":[0,0,0,21,28.57,17.14,17.14],"totalChange":17.14},"implicitModifiers":[],"explicitModifiers":[{"text":"{Six-Linked Body Armour}\n{Influenced Item}","optional":false}],"flavourText":"The threads of fate are the strongest ties.","chaosValue":8.20,"exaltedValue":0.47,"divineValue":0.04,"count":77,"detailsId":"immortal-resolve","tradeInfo":[],"listingCount":2333},{"id":22411,"name":"The Heroic Shot","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","artFilename":"TheHeroicShot","itemClass":6,"sparkline":{"data":[0,0,0,0,0,32.8,64],"totalChange":64},"lowConfidenceSparkline":{"data":[0,0,0,0,0,32.8,64],"totalChange":64},"implicitModifiers":[],"explicitModifiers":[{"text":"{17x Chromatic Orb}","optional":false}],"flavourText":"Try a thousand times, and eventually you'll have to give up.","chaosValue":8.20,"exaltedValue":0.47,"divineValue":0.04,"count":77,"detailsId":"the-heroic-shot","tradeInfo":[],"listingCount":1738},{"id":257,"name":"Chaotic Disposition","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","artFilename":"ChaoticDisposition","itemClass":6,"sparkline":{"data":[0,-9.09,-9.09,-9.09,-9.09,-9.09,-9.09],"totalChange":-9.09},"lowConfidenceSparkline":{"data":[0,-9.09,-9.09,-9.09,-9.09,-9.09,-9.09],"totalChange":-9.09},"implicitModifiers":[],"explicitModifiers":[{"text":"{5x Chaos Orb}","optional":false}],"flavourText":"Life isn't what you make of it, it's already been made for you.","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":91,"detailsId":"chaotic-disposition","tradeInfo":[],"listingCount":1536},{"id":799,"name":"Mawr Blaidd","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":16,"artFilename":"RussiaDivinationCard","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Eyes of the Greatwolf}","optional":false}],"flavourText":"Rigwald believed he'd seized great power, but it was the great power that had seized Rigwald","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":99,"detailsId":"mawr-blaidd","tradeInfo":[],"listingCount":1447},{"id":6920,"name":"Perfection","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"Perfection","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Jewellery}\n{Item Level:} {100}\n{Shaper Item}","optional":false}],"flavourText":"There are countless worlds, but only those with limitless potential will be able to achieve perfection.","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":65,"detailsId":"perfection","tradeInfo":[],"listingCount":1328},{"id":21548,"name":"Burning Blood","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"BurningBlood","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Xoph's Blood}\n{Corrupted}","optional":false}],"flavourText":"{There's a place where up is down, \nwhere right is wrong, \nwhere pleasure is agony, \nand where the living wish only for death.}","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":28,"detailsId":"burning-blood","tradeInfo":[],"listingCount":630},{"id":21571,"name":"The Primordial","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"ThePrimordial","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Jewel}\n{Primordial}","optional":false}],"flavourText":"We play at God with our necromancy, \nbut forces far more potent \nsleep within these stones.","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":99,"detailsId":"the-primordial","tradeInfo":[],"listingCount":2786},{"id":21582,"name":"Pride of the First Ones","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"PrideOfTheFirstOnes","itemClass":6,"sparkline":{"data":[0,0,16.67,20,33.33,33.33,33.33],"totalChange":33.33},"lowConfidenceSparkline":{"data":[0,0,16.67,20,33.33,33.33,33.33],"totalChange":33.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Farrul's Fur}","optional":false}],"flavourText":"Upon silent paws and masked by the reeds, \nFarrul's hunt begins as the light recedes.","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":59,"detailsId":"pride-of-the-first-ones","tradeInfo":[],"listingCount":1527},{"id":22441,"name":"Akil's Prophecy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"AkilsProphecy","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Elegant Round Shield}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"{The hatungo know many answers to the same question, \nfor time itself is a tangled web.}","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":79,"detailsId":"akils-prophecy","tradeInfo":[],"listingCount":1554},{"id":23237,"name":"Cameria's Cut","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":2,"artFilename":"CameriasCut","itemClass":6,"sparkline":{"data":[0,0,0.44,-11.11,-11.11,-11.11,-11.11],"totalChange":-11.11},"lowConfidenceSparkline":{"data":[0,0,0.44,-11.11,-11.11,-11.11,-11.11],"totalChange":-11.11},"implicitModifiers":[],"explicitModifiers":[{"text":"{Scarab}","optional":false}],"flavourText":"\"There are two ways to pay, Gold and Blood. I'll take my share in both.\"\n\n-Cameria the Coldblooded","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":83,"detailsId":"camerias-cut","tradeInfo":[],"listingCount":2188},{"id":23985,"name":"Underground Forest","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"UndergroundForest","itemClass":6,"sparkline":{"data":[0,0,-1.33,-7.56,-11.11,-11.11,-11.11],"totalChange":-11.11},"lowConfidenceSparkline":{"data":[0,0,-1.33,-7.56,-11.11,-11.11,-11.11],"totalChange":-11.11},"implicitModifiers":[],"explicitModifiers":[{"text":"{10x Awakened Sextant}","optional":false}],"flavourText":"\"In the forest again... But at least I have these.\"","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":99,"detailsId":"underground-forest","tradeInfo":[],"listingCount":2583},{"id":24681,"name":"The Fishmonger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheFishmonger","itemClass":6,"sparkline":{"data":[0,-2.44,-2.44,-2.44,-2.44,7.32,-2.44],"totalChange":-2.44},"lowConfidenceSparkline":{"data":[0,-2.44,-2.44,-2.44,-2.44,7.32,-2.44],"totalChange":-2.44},"implicitModifiers":[],"explicitModifiers":[{"text":"{Albino Rhoa Feather}","optional":false}],"flavourText":"However vicious Rhoas might be, a dedicated angler may in time tame them.","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":26,"detailsId":"the-fishmonger","tradeInfo":[],"listingCount":507},{"id":42386,"name":"The White Knight","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheWhiteKnight","itemClass":6,"sparkline":{"data":[0,9.09,24,34.55,45.45,45.45,45.45],"totalChange":45.45},"lowConfidenceSparkline":{"data":[0,9.09,24,34.55,45.45,45.45,45.45],"totalChange":45.45},"implicitModifiers":[],"explicitModifiers":[{"text":"{Six-Link Astral Plate}\n{Item Level:} {100}\n{Crusader Item}","optional":false}],"flavourText":"Where Decay festers, I shall expunge it, and leave in its place a shining monument.","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":30,"detailsId":"the-white-knight","tradeInfo":[],"listingCount":759},{"id":70703,"name":"A Stone Perfected","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"AStonePerfected","itemClass":6,"sparkline":{"data":[0,0,0,0,2.86,17.14,14.29],"totalChange":14.29},"lowConfidenceSparkline":{"data":[0,0,0,0,2.86,17.14,14.29],"totalChange":14.29},"implicitModifiers":[],"explicitModifiers":[{"text":"{Jewel}\n{Primordial}\n{1-2 Implicit}\n{Corrupted}","optional":false}],"flavourText":"{They gave the stone life. Over eons spent bathed in Corruption, that life evolved.}","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":71,"detailsId":"a-stone-perfected","tradeInfo":[],"listingCount":1637},{"id":71023,"name":"The Forgotten Treasure","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheForgottenTreasure","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Leather Belt}\n{Double-Influenced Item}","optional":false}],"flavourText":"{Don't let fool's gold deceive you.}","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":79,"detailsId":"the-forgotten-treasure","tradeInfo":[],"listingCount":1863},{"id":71089,"name":"Chasing Risk","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"ChasingRisk","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Synthesis Item}","optional":false}],"flavourText":"A fond memory fills me with nostalgia; some men would have felt guilt, but I felt no regret over the anguish and fear my ambitions caused.","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":68,"detailsId":"chasing-risk","tradeInfo":[],"listingCount":1454},{"id":93152,"name":"Justified Ambition","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"JustifiedAmbition","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Synthesis Map}","optional":false}],"flavourText":"\"Everything I have done has been for Wraeclast. You would pledge your life to me if you saw things my way... and soon, you will.\"\n- High Templar Venarius","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":99,"detailsId":"justified-ambition","tradeInfo":[],"listingCount":3277},{"id":95769,"name":"Altered Perception","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"AlteredPerception","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Simulacrum}","optional":false}],"flavourText":"You mustn't forget: you won't be leaving this place.","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":35,"detailsId":"altered-perception","tradeInfo":[],"listingCount":799},{"id":95802,"name":"The Dungeon Master","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheDungeonMaster","itemClass":6,"sparkline":{"data":[0,0,0,0,14.29,0,14.29],"totalChange":14.29},"lowConfidenceSparkline":{"data":[0,0,0,0,14.29,0,14.29],"totalChange":14.29},"implicitModifiers":[],"explicitModifiers":[{"text":"{Belt}\n{Double-Influenced Item}","optional":false}],"flavourText":"\"So desperate was I for control, I turned my entire world into a prison. Now you will share in my agony.\"","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":83,"detailsId":"the-dungeon-master","tradeInfo":[],"listingCount":1977},{"id":98275,"name":"Astral Protection","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"AstralProtection","itemClass":6,"sparkline":{"data":[0,0,0,0,10,25,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,0,10,25,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{Shield}\n{Shaper Item}","optional":false}],"flavourText":"For a time, we had something stronger than eldritch evil.\nWe had each other.","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":66,"detailsId":"astral-protection","tradeInfo":[],"listingCount":2584},{"id":103548,"name":"Poisoned Faith","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"PoisonedFaith","itemClass":6,"sparkline":{"data":[0,8,24,60,60,56,60],"totalChange":60},"lowConfidenceSparkline":{"data":[0,8,24,60,60,56,60],"totalChange":60},"implicitModifiers":[],"explicitModifiers":[{"text":"{Arakaali's Fang}\n{Corrupted}","optional":false}],"flavourText":"Even our most devout beliefs are subtly shaped by our darkest desires.","chaosValue":8.00,"exaltedValue":0.46,"divineValue":0.04,"count":53,"detailsId":"poisoned-faith","tradeInfo":[],"listingCount":1287},{"id":6937,"name":"The Rite of Elements","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheRiteofElements","itemClass":6,"sparkline":{"data":[0,0,24,25,25,25,90],"totalChange":90},"lowConfidenceSparkline":{"data":[0,0,24,25,25,25,90],"totalChange":90},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 21 Golem Gem}\n{Corrupted}","optional":false}],"flavourText":"{A mind as quick as lightning, \nfists as hard as stone, \na heart that burns with fury, \nand eyes that chill to the bone.}","chaosValue":7.60,"exaltedValue":0.44,"divineValue":0.04,"count":99,"detailsId":"the-rite-of-elements","tradeInfo":[],"listingCount":4162},{"id":1468,"name":"The Cursed King","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheCursedKing","itemClass":6,"sparkline":{"data":[0,0,48,32,36,0,48],"totalChange":48},"lowConfidenceSparkline":{"data":[0,0,48,32,36,0,48],"totalChange":48},"implicitModifiers":[],"explicitModifiers":[{"text":"{Rigwald's Curse}","optional":false}],"flavourText":"The First Ones\nmay be blasphemy,\nbut they are\npowerful blasphemy.","chaosValue":7.40,"exaltedValue":0.43,"divineValue":0.03,"count":50,"detailsId":"the-cursed-king","tradeInfo":[],"listingCount":1441},{"id":20739,"name":"The Lord of Celebration","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheLordofCelebration","itemClass":6,"sparkline":{"data":[0,0,-20,0,0,0,85],"totalChange":85},"lowConfidenceSparkline":{"data":[0,0,-20,0,0,0,85],"totalChange":85},"implicitModifiers":[],"explicitModifiers":[{"text":"{Sceptre of Celebration}\n{Shaper Item}","optional":false}],"flavourText":"Though they were a pack of elite combatants, the Emperor's royal guards were not ready to face one of his notorious parties.","chaosValue":7.40,"exaltedValue":0.43,"divineValue":0.03,"count":66,"detailsId":"the-lord-of-celebration","tradeInfo":[],"listingCount":1774},{"id":54432,"name":"Dying Light","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":10,"artFilename":"DyingLight","itemClass":6,"sparkline":{"data":[0,-4.21,20.31,27.20,30.65,34.10,37.93],"totalChange":37.93},"lowConfidenceSparkline":{"data":[0,-4.21,20.31,27.20,30.65,34.10,37.93],"totalChange":37.93},"implicitModifiers":[],"explicitModifiers":[{"text":"{Diamond Ring}\n{Item Level:} {100}\n{Shaper + Elder Item}","optional":false}],"flavourText":"Even the brightest eventually fade to darkness.","chaosValue":7.20,"exaltedValue":0.42,"divineValue":0.03,"count":42,"detailsId":"dying-light","tradeInfo":[],"listingCount":727},{"id":71079,"name":"The Prince of Darkness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"ThePrinceOfDarkness","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,44],"totalChange":44},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,44],"totalChange":44},"implicitModifiers":[],"explicitModifiers":[{"text":"{Elegant Hubris}","optional":false}],"flavourText":"{Fear a man who is willing to sacrifice anything for power.}","chaosValue":7.20,"exaltedValue":0.42,"divineValue":0.03,"count":61,"detailsId":"the-prince-of-darkness","tradeInfo":[],"listingCount":1793},{"id":1590,"name":"The Road to Power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheRoadToPower","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Runic One-Hand Weapon}\n{Item Level:} {100}","optional":false}],"flavourText":"A beacon on the horizon; a guiding light, a call for help, or a warning to turn back.","chaosValue":7.00,"exaltedValue":0.40,"divineValue":0.03,"count":61,"detailsId":"the-road-to-power","tradeInfo":[],"listingCount":1386},{"id":2035,"name":"The Polymath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"ThePolymath","itemClass":6,"sparkline":{"data":[0,0,0,14.29,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,14.29,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Astramentis}","optional":false}],"flavourText":"Genius knows no limits.","chaosValue":7.00,"exaltedValue":0.40,"divineValue":0.03,"count":81,"detailsId":"the-polymath","tradeInfo":[],"listingCount":1828},{"id":6915,"name":"The Hale Heart","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheHaleHeart","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Item}\n{Item Level:} {100}\n{Elder Item}","optional":false}],"flavourText":"Though the years weakened his mind, his body remained deadly as ever.","chaosValue":7.00,"exaltedValue":0.40,"divineValue":0.03,"count":41,"detailsId":"the-hale-heart","tradeInfo":[],"listingCount":875},{"id":6916,"name":"The Professor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheProfessor","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{The Putrid Cloister}","optional":false}],"flavourText":"The academic route to knowledge is wide and well-trodden; but it is the untaught one who scales the mountain.","chaosValue":7.00,"exaltedValue":0.40,"divineValue":0.03,"count":77,"detailsId":"the-professor","tradeInfo":[],"listingCount":1734},{"id":23911,"name":"The Craving","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheCraving","itemClass":6,"sparkline":{"data":[0,0,16,20,20,20,40],"totalChange":40},"lowConfidenceSparkline":{"data":[0,0,16,20,20,20,40],"totalChange":40},"implicitModifiers":[],"explicitModifiers":[{"text":"{Unending Hunger}","optional":false}],"flavourText":"What was once a passing thought tickling the back of the mind is now a desperate, driving desire.","chaosValue":7.00,"exaltedValue":0.40,"divineValue":0.03,"count":42,"detailsId":"the-craving","tradeInfo":[],"listingCount":1184},{"id":60046,"name":"Prejudice","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"Prejudice","itemClass":6,"sparkline":{"data":[0,0,16.67,10,0,16.67,16.67],"totalChange":16.67},"lowConfidenceSparkline":{"data":[0,0,16.67,10,0,16.67,16.67],"totalChange":16.67},"implicitModifiers":[],"explicitModifiers":[{"text":"{Item}\n{Influenced Item}","optional":false}],"flavourText":"One who is blinded by their past may only see a sliver of the present.","chaosValue":7.00,"exaltedValue":0.40,"divineValue":0.03,"count":92,"detailsId":"prejudice","tradeInfo":[],"listingCount":2705},{"id":103356,"name":"The Rusted Bard","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"TheRustedBard","itemClass":6,"sparkline":{"data":[0,-5.71,0,0,-11.43,-14.29,-7.71],"totalChange":-7.71},"lowConfidenceSparkline":{"data":[0,-5.71,0,0,-11.43,-14.29,-7.71],"totalChange":-7.71},"implicitModifiers":[],"explicitModifiers":[{"text":"{4x Tainted Mythic Orb}","optional":false}],"flavourText":"{Fourfold the refrain, fortissimo cheer.\nOne hundred rent twain, naught left for a bier.\nThe song rattles on, though hollow a bit.\nSee the hope is gone, no prize shall ye get.}","chaosValue":6.46,"exaltedValue":0.37,"divineValue":0.03,"count":63,"detailsId":"the-rusted-bard","tradeInfo":[],"listingCount":1401},{"id":20804,"name":"The Seeker","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"TheSeeker","itemClass":6,"sparkline":{"data":[0,0,0,0,-7.71,-8.29,-8.29],"totalChange":-8.29},"lowConfidenceSparkline":{"data":[0,0,0,0,-7.71,-8.29,-8.29],"totalChange":-8.29},"implicitModifiers":[],"explicitModifiers":[{"text":"{3x Orb of Annulment}","optional":false}],"flavourText":"All that is flawed is worthless. The slightest error, and this might as well be trash.","chaosValue":6.42,"exaltedValue":0.37,"divineValue":0.03,"count":75,"detailsId":"the-seeker","tradeInfo":[],"listingCount":2124},{"id":95852,"name":"Rebirth and Renewal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"RebirthAndRenewal","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,-8.57],"totalChange":-8.57},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,-8.57],"totalChange":-8.57},"implicitModifiers":[],"explicitModifiers":[{"text":"{Winged Scarab}","optional":false}],"flavourText":"Life has an end, then life begins again.","chaosValue":6.40,"exaltedValue":0.37,"divineValue":0.03,"count":63,"detailsId":"rebirth-and-renewal","tradeInfo":[],"listingCount":1302},{"id":21556,"name":"Echoes of Love","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"EchoesOfLove","itemClass":6,"sparkline":{"data":[0,0,0,66.67,66.67,73.33,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,66.67,66.67,73.33,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{Fidelitas' Spike}\n {Two-Implicit}\n {Corrupted}","optional":false}],"flavourText":"\"I gave up my body for you. I gave up my name for you. And one day I shall give up my life for you.\"","chaosValue":6.00,"exaltedValue":0.35,"divineValue":0.03,"count":72,"detailsId":"echoes-of-love","tradeInfo":[],"listingCount":2726},{"id":21567,"name":"The Fool","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheFool","itemClass":6,"sparkline":{"data":[0,24.33,66.67,66.67,66.67,86.67,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,24.33,66.67,66.67,66.67,86.67,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{20x Orb of Chance}","optional":false}],"flavourText":"Even the most learned man is a fool to his own fate.","chaosValue":6.00,"exaltedValue":0.35,"divineValue":0.03,"count":99,"detailsId":"the-fool","tradeInfo":[],"listingCount":4690},{"id":42518,"name":"The Hive of Knowledge","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheHiveOfKnowledge","itemClass":6,"sparkline":{"data":[0,20,20,20,20,20,20],"totalChange":20},"lowConfidenceSparkline":{"data":[0,20,20,20,20,20,20],"totalChange":20},"implicitModifiers":[],"explicitModifiers":[{"text":"{Machina Mitts}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"Within years of knowledge, distilled by careful craftsmanship, lies great power.","chaosValue":6.00,"exaltedValue":0.35,"divineValue":0.03,"count":43,"detailsId":"the-hive-of-knowledge","tradeInfo":[],"listingCount":916},{"id":44131,"name":"The Academic","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheAcademic","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,20],"totalChange":20},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,20],"totalChange":20},"implicitModifiers":[],"explicitModifiers":[{"text":"{Inspired Learning}","optional":false}],"flavourText":"{\"Such dedication for so many years,\nall for a couple extra letters at the front of your name...\"}","chaosValue":6.00,"exaltedValue":0.35,"divineValue":0.03,"count":78,"detailsId":"the-academic","tradeInfo":[],"listingCount":2565},{"id":67791,"name":"The Last Supper","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheLastSupper","itemClass":6,"sparkline":{"data":[0,-13.33,-13.33,-20,-26.67,-33.33,-33.33],"totalChange":-33.33},"lowConfidenceSparkline":{"data":[0,-13.33,-13.33,-20,-26.67,-33.33,-33.33],"totalChange":-33.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Bino's Kitchen Knife}","optional":false}],"flavourText":"\"Bino's brief career as a chef at Axiom saved the executioner a lot of work.\"","chaosValue":6.00,"exaltedValue":0.35,"divineValue":0.03,"count":21,"detailsId":"the-last-supper","tradeInfo":[],"listingCount":390},{"id":6917,"name":"The Beast","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheBeast","itemClass":6,"sparkline":{"data":[0,0,0,0,66.67,66.67,93.33],"totalChange":93.33},"lowConfidenceSparkline":{"data":[0,0,0,0,66.67,66.67,93.33],"totalChange":93.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Belly of the Beast}","optional":false}],"flavourText":"To know the monster, you must become the monster.","chaosValue":5.80,"exaltedValue":0.33,"divineValue":0.03,"count":70,"detailsId":"the-beast","tradeInfo":[],"listingCount":2800},{"id":40055,"name":"The Progeny of Lunaris","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":2,"artFilename":"TheProgenyofLunaris","itemClass":6,"sparkline":{"data":[0,2.94,2.94,-11.76,-11.76,-11.76,-14.71],"totalChange":-14.71},"lowConfidenceSparkline":{"data":[0,2.94,2.94,-11.76,-11.76,-11.76,-14.71],"totalChange":-14.71},"implicitModifiers":[],"explicitModifiers":[{"text":"{Dying Sun}","optional":false}],"flavourText":"Born beneath silver light, bearing Lunaris' mark.\nConjuring all his might, the Prodigy turned light to dark.","chaosValue":5.80,"exaltedValue":0.33,"divineValue":0.03,"count":20,"detailsId":"the-progeny-of-lunaris","tradeInfo":[],"listingCount":778},{"id":93208,"name":"Misery in Darkness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"MiseryInDarkness","itemClass":6,"sparkline":{"data":[0,0,0,0,12,12,16],"totalChange":16},"lowConfidenceSparkline":{"data":[0,0,0,0,12,12,16],"totalChange":16},"implicitModifiers":[],"explicitModifiers":[{"text":"{Shroud of the Lightless}","optional":false}],"flavourText":"{He wandered the bone-filled depths hoping each corner would be his last.\nEventually, he found Light.}","chaosValue":5.80,"exaltedValue":0.33,"divineValue":0.03,"count":76,"detailsId":"misery-in-darkness","tradeInfo":[],"listingCount":1718},{"id":6966,"name":"The Celestial Stone","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":10,"artFilename":"TheCelestialStone","itemClass":6,"sparkline":{"data":[0,0,0,0,0,4.4,8.8],"totalChange":8.8},"lowConfidenceSparkline":{"data":[0,0,0,0,0,4.4,8.8],"totalChange":8.8},"implicitModifiers":[],"explicitModifiers":[{"text":"{Opal Ring}\n{Item Level:} {100}\n{Shaper Item}","optional":false}],"flavourText":"Stare into its depths too long, and you may lose yourself entirely.","chaosValue":5.44,"exaltedValue":0.31,"divineValue":0.03,"count":38,"detailsId":"the-celestial-stone","tradeInfo":[],"listingCount":1088},{"id":100598,"name":"Man With Bear","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"ManWithBear","itemClass":6,"sparkline":{"data":[0,0,0,15,17,17,36],"totalChange":36},"lowConfidenceSparkline":{"data":[0,0,0,15,17,17,36],"totalChange":36},"implicitModifiers":[],"explicitModifiers":[{"text":"{Bestiary Scarab}","optional":false}],"flavourText":"A stereotypical joke may lead to an unexpected bond.","chaosValue":5.44,"exaltedValue":0.31,"divineValue":0.03,"count":99,"detailsId":"man-with-bear","tradeInfo":[],"listingCount":3430},{"id":22467,"name":"The Deal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheDeal","itemClass":6,"sparkline":{"data":[0,0,-20,-12,0,0,8],"totalChange":8},"lowConfidenceSparkline":{"data":[0,0,-20,-12,0,0,8],"totalChange":8},"implicitModifiers":[],"explicitModifiers":[{"text":"{Cartography Scarab}","optional":false}],"flavourText":"In the pursuit of wealth, as in that of power, anything goes.","chaosValue":5.40,"exaltedValue":0.31,"divineValue":0.03,"count":88,"detailsId":"the-deal","tradeInfo":[],"listingCount":3196},{"id":67872,"name":"Dementophobia","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":11,"artFilename":"Dementophobia","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,8],"totalChange":8},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,8],"totalChange":8},"implicitModifiers":[],"explicitModifiers":[{"text":"{10x Delirium Orb}","optional":false}],"flavourText":"{I never truly understood the depths of my insanity,\nuntil I realized the voices beckoning me towards the abyss,\nwere none other than my own.}","chaosValue":5.40,"exaltedValue":0.31,"divineValue":0.03,"count":99,"detailsId":"dementophobia","tradeInfo":[],"listingCount":3224},{"id":95799,"name":"The Brawny Battle Mage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheBrawnyBattleMage","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,4.4],"totalChange":4.4},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,4.4],"totalChange":4.4},"implicitModifiers":[],"explicitModifiers":[{"text":"{Merciless Tornado Wand}\n{Item Level:} {100}","optional":false}],"flavourText":"A humble piece of wood offers the simplest solution to life's problems: just hit them really, really hard.","chaosValue":5.22,"exaltedValue":0.30,"divineValue":0.02,"count":42,"detailsId":"the-brawny-battle-mage","tradeInfo":[],"listingCount":1316},{"id":188,"name":"Bowyer's Dream","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"BowyersDream","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Six-Link Harbinger Bow}\n{Item Level:} {91}","optional":false}],"flavourText":"If this is my dream, I don't wish to wake.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":51,"detailsId":"bowyers-dream","tradeInfo":[],"listingCount":1363},{"id":649,"name":"Hunter's Reward","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"HuntersReward","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{The Taming}","optional":false}],"flavourText":"To tame a beast, you first must subdue its heart.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":61,"detailsId":"hunters-reward","tradeInfo":[],"listingCount":2254},{"id":771,"name":"Lucky Deck","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"LuckyDeck","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{10x Stacked Deck}","optional":false}],"flavourText":"When the outcome is the same, does it matter if it is fortune or trickery?","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":68,"detailsId":"lucky-deck","tradeInfo":[],"listingCount":2169},{"id":809,"name":"Merciless Armament","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"MercilessArmament","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{{Merciless Two-Hand Weapon}\n{Item Level:} {100}}","optional":false}],"flavourText":"\"Through thick and thin,\nblood and bone,\na peaceful life\nis one I can't condone.\"\n- Tukohama, Father Of War","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":54,"detailsId":"merciless-armament","tradeInfo":[],"listingCount":1473},{"id":1445,"name":"The Brittle Emperor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheBrittleEmperor","itemClass":6,"sparkline":{"data":[0,0,-4,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,-4,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Voll's Devotion}\n{Corrupted}","optional":false}],"flavourText":"{\"When Voll spared Malachai, accepting his aid in pursuit of Purity, the strongest faith was infected by Corruption and made brittle as glass.\"\n- Victario, the People's Poet}","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":55,"detailsId":"the-brittle-emperor","tradeInfo":[],"listingCount":1582},{"id":1460,"name":"The Conduit","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"TheConduit","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Doryani's Fist}","optional":false}],"flavourText":"The path to godhood is guided by the hand of sacrifice.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":49,"detailsId":"the-conduit","tradeInfo":[],"listingCount":1162},{"id":1488,"name":"The Ethereal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheEthereal","itemClass":6,"sparkline":{"data":[0,0,0,28.33,33.33,33.33,66.67],"totalChange":66.67},"lowConfidenceSparkline":{"data":[0,0,0,28.33,33.33,33.33,66.67],"totalChange":66.67},"implicitModifiers":[],"explicitModifiers":[{"text":"{Six-Link Vaal Regalia}","optional":false}],"flavourText":"{\"Long ago, people looked to the stars, believing they influenced us. Soon, it will be us who influence the stars.\"\n- Doryani, Queen's Thaumaturge}","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":72,"detailsId":"the-ethereal","tradeInfo":[],"listingCount":2894},{"id":1539,"name":"The King's Heart","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheKingsHeart","itemClass":6,"sparkline":{"data":[0,0,0,0,0,33.33,66.67],"totalChange":66.67},"lowConfidenceSparkline":{"data":[0,0,0,0,0,33.33,66.67],"totalChange":66.67},"implicitModifiers":[],"explicitModifiers":[{"text":"{Kaom's Heart}","optional":false}],"flavourText":"{500 times Kaom's axe fell, 500 times Kaom's Heart splintered. Finally, all that remained was a terrible, heartless Fury.}","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":81,"detailsId":"the-kings-heart","tradeInfo":[],"listingCount":2677},{"id":1563,"name":"The Pact","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"ThePact","itemClass":6,"sparkline":{"data":[0,26.67,0,0,33.33,66.67,66.67],"totalChange":66.67},"lowConfidenceSparkline":{"data":[0,26.67,0,0,33.33,66.67,66.67],"totalChange":66.67},"implicitModifiers":[],"explicitModifiers":[{"text":"{Pledge of Hands}","optional":false}],"flavourText":"\"On this day I mark the first of many agreements that I will have with this land and its people.\"","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":72,"detailsId":"the-pact","tradeInfo":[],"listingCount":2379},{"id":1626,"name":"The Survivalist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TheSurvivalist","itemClass":6,"sparkline":{"data":[0,0,0,0,33.33,40,66.67],"totalChange":66.67},"lowConfidenceSparkline":{"data":[0,0,0,0,33.33,40,66.67],"totalChange":66.67},"implicitModifiers":[],"explicitModifiers":[{"text":"{7x Orb of Alchemy}","optional":false}],"flavourText":"A lucky number \nFor us all \nTo help us through \nThe perils told.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":99,"detailsId":"the-survivalist","tradeInfo":[],"listingCount":4763},{"id":1635,"name":"The Throne","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":2,"artFilename":"TheThrone","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Kaom's Roots}\n{Corrupted}","optional":false}],"flavourText":"A king's movement is unwavering.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":40,"detailsId":"the-throne","tradeInfo":[],"listingCount":1114},{"id":1668,"name":"The Watcher","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":12,"artFilename":"TheWatcher","itemClass":6,"sparkline":{"data":[0,30,50,50,130,150,150],"totalChange":150},"lowConfidenceSparkline":{"data":[0,30,50,50,130,150,150],"totalChange":150},"implicitModifiers":[],"explicitModifiers":[{"text":"{Crown of Eyes}","optional":false}],"flavourText":"{Strange eyes on top of spines \nGaze beyond the veil of time \nDeep down below the mines \nA dream of crimson and of grime}","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":99,"detailsId":"the-watcher","tradeInfo":[],"listingCount":5345},{"id":2047,"name":"The Porcupine","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"ThePorcupine","itemClass":6,"sparkline":{"data":[0,0,0,3.33,33.33,33.33,66.67],"totalChange":66.67},"lowConfidenceSparkline":{"data":[0,0,0,3.33,33.33,33.33,66.67],"totalChange":66.67},"implicitModifiers":[],"explicitModifiers":[{"text":"{Six-Link Short Bow}\n{Item Level:} {50}","optional":false}],"flavourText":"The first quill separates the quick learners from the dead.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":99,"detailsId":"the-porcupine","tradeInfo":[],"listingCount":5937},{"id":4860,"name":"The Obscured","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheObscured","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Breachstone}","optional":false}],"flavourText":"Our world, dangerous as it is, is far safer than what lies just beyond our sight.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":87,"detailsId":"the-obscured","tradeInfo":[],"listingCount":2874},{"id":4864,"name":"The Deceiver","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheDeceiver","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,66.67],"totalChange":66.67},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,66.67],"totalChange":66.67},"implicitModifiers":[],"explicitModifiers":[{"text":"{Belt of the Deceiver}\n{Corrupted}","optional":false}],"flavourText":"Beware the combatant who shows no confidence, yet still enters the ring, for they are surely hiding something.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":71,"detailsId":"the-deceiver","tradeInfo":[],"listingCount":2080},{"id":4900,"name":"The Breach","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheBreach","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Breach Item}","optional":false}],"flavourText":"Ever get the feeling you're being watched...?","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":62,"detailsId":"the-breach","tradeInfo":[],"listingCount":1589},{"id":4916,"name":"The Dreamer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheDreamer","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Chayula Item}","optional":false}],"flavourText":"{A dark note drips \nfrom the dreamer's lips, \nA honeyed melody. \nWe stand, we fall \non his beck and call, \nfor in his dream we're free.}","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":57,"detailsId":"the-dreamer","tradeInfo":[],"listingCount":1299},{"id":20716,"name":"The Mad King","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheMadKing","itemClass":6,"sparkline":{"data":[0,0,0,9,66.67,66.67,66.67],"totalChange":66.67},"lowConfidenceSparkline":{"data":[0,0,0,9,66.67,66.67,66.67],"totalChange":66.67},"implicitModifiers":[],"explicitModifiers":[{"text":"{Ultimatum Aspect}","optional":false}],"flavourText":"Fear the man who lusts for power, for he will do anything to get it.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":69,"detailsId":"the-mad-king","tradeInfo":[],"listingCount":2896},{"id":21558,"name":"The Deep Ones","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheDeepOnes","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Tidebreaker}","optional":false}],"flavourText":"{\"The Seas Call, the Mad Answer\"}","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":61,"detailsId":"the-deep-ones","tradeInfo":[],"listingCount":1629},{"id":21569,"name":"Demigod's Wager","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"DemigodsWagergives","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Orb of Annulment}","optional":false}],"flavourText":"Sometimes you need to make your own luck.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":83,"detailsId":"demigods-wager","tradeInfo":[],"listingCount":3064},{"id":21570,"name":"Buried Treasure","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"BuriedTreasure","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Sulphite Scarab}","optional":false}],"flavourText":"{You can't seek riches without getting your hands dirty.}","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":95,"detailsId":"buried-treasure","tradeInfo":[],"listingCount":2957},{"id":21577,"name":"Dark Dreams","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"DarkDreams","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Bone Helmet}\n{Elder Item}","optional":false}],"flavourText":"No one ever truly understood what she meant when she said she wanted to raise a family.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":29,"detailsId":"dark-dreams","tradeInfo":[],"listingCount":878},{"id":23238,"name":"Divine Justice","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","artFilename":"DivineJustice","itemClass":6,"sparkline":{"data":[0,0,0,20,0,25,25],"totalChange":25},"lowConfidenceSparkline":{"data":[0,0,0,20,0,25,25],"totalChange":25},"implicitModifiers":[],"explicitModifiers":[{"text":"{Helmet}\n{{Eternal Labyrinth Enchantment}}","optional":false}],"flavourText":"Many sought the Goddess' blessing. Few survived the Labyrinth to receive it.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":60,"detailsId":"divine-justice","tradeInfo":[],"listingCount":1105},{"id":23245,"name":"The Bones","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheBones","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 21 Vaal Summon Skeletons}\n{Corrupted}","optional":false}],"flavourText":"The flesh is a prison, and we are finally free.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":91,"detailsId":"the-bones","tradeInfo":[],"listingCount":2791},{"id":23675,"name":"Baited Expectations","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"BaitedExpectations","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Fishing Item}","optional":false}],"flavourText":"The line between having not enough to do and too much to do is unusually fine.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":92,"detailsId":"baited-expectations","tradeInfo":[],"listingCount":2415},{"id":23831,"name":"The Escape","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheEscape","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Seven-League Step}","optional":false}],"flavourText":"In fleeing reality, you step into the realm of madness.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":99,"detailsId":"the-escape","tradeInfo":[],"listingCount":3123},{"id":42405,"name":"A Note in the Wind","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"ANoteInTheWind","itemClass":6,"sparkline":{"data":[0,22.22,11.11,38.89,38.89,38.89,38.89],"totalChange":38.89},"lowConfidenceSparkline":{"data":[0,22.22,11.11,38.89,38.89,38.89,38.89],"totalChange":38.89},"implicitModifiers":[],"explicitModifiers":[{"text":"{Asenath's Mark}","optional":false}],"flavourText":"{The artist is long dead,\nthe lyrics are long forgotten,\nyet the Song of War longs to be sung again}","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":87,"detailsId":"a-note-in-the-wind","tradeInfo":[],"listingCount":2583},{"id":54410,"name":"Brotherhood in Exile","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"BrotherhoodInExile","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{One With Nothing}\n{Corrupted}","optional":false}],"flavourText":"{Seeking shelter from the night,\nin the warmth of the run-down inn,\nerstwhile foes put aside the fight,\nto bond over whiskey and gin.}","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":62,"detailsId":"brotherhood-in-exile","tradeInfo":[],"listingCount":2110},{"id":60055,"name":"Brush, Paint and Palette","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"BrushPaintAndPalette","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{The Artist}","optional":false}],"flavourText":"\"Man may shape the world, but these? These shape the man.\" -Inquisitor Maligaro","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":99,"detailsId":"brush-paint-and-palette","tradeInfo":[],"listingCount":3379},{"id":60102,"name":"The Card Sharp","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheCardSharp","itemClass":6,"sparkline":{"data":[0,14,31.67,33.33,66.67,66.67,66.67],"totalChange":66.67},"lowConfidenceSparkline":{"data":[0,14,31.67,33.33,66.67,66.67,66.67],"totalChange":66.67},"implicitModifiers":[],"explicitModifiers":[{"text":"{Divination Scarab}","optional":false}],"flavourText":"\"The house always wins... except when I do.\"","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":99,"detailsId":"the-card-sharp","tradeInfo":[],"listingCount":3491},{"id":67881,"name":"Lachrymal Necrosis","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"LachrymalNecrosis","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Jewel}\n{Implicit Modifier:} \n{Corrupted Blood cannot be inflicted on you}\n{Corrupted}","optional":false}],"flavourText":"Without the ability to weep, the heart hardens against both the pure and the corrupt.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":99,"detailsId":"lachrymal-necrosis","tradeInfo":[],"listingCount":2639},{"id":67900,"name":"The Mind's Eyes","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheMindsEyes","itemClass":6,"sparkline":{"data":[0,0,0,33.33,33.33,66.67,66.67],"totalChange":66.67},"lowConfidenceSparkline":{"data":[0,0,0,33.33,33.33,66.67,66.67],"totalChange":66.67},"implicitModifiers":[],"explicitModifiers":[{"text":"{Astral Projector}","optional":false}],"flavourText":"{Through the eyes of a person, \nyou can see their soul\nThrough the eyes of a jewel, \nyou can see the universe}","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":77,"detailsId":"the-minds-eyes","tradeInfo":[],"listingCount":2272},{"id":67922,"name":"The Price of Prescience","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"ThePriceOfPrescience","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Vaal Temple Map}\n{Map Tier:} {16}\n{Delirium:} {100%}\n{Corrupted}","optional":false}],"flavourText":"{The strange voice showed Aul a future where his legacy was forgotten, where new cultures broke themselves upon Aul's ruined world.}","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":57,"detailsId":"the-price-of-prescience","tradeInfo":[],"listingCount":1825},{"id":67923,"name":"Terrible Secret of Space","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TerribleSecretOfSpace","itemClass":6,"sparkline":{"data":[0,0,0,25,0,25,25],"totalChange":25},"lowConfidenceSparkline":{"data":[0,0,0,25,0,25,25],"totalChange":25},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 21 Golem Gem}\n{Any Quality Type:} {+23%}\n{Corrupted}","optional":false}],"flavourText":"They said they were here to protect us.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":93,"detailsId":"terrible-secret-of-space","tradeInfo":[],"listingCount":3288},{"id":71074,"name":"Desperate Crusade","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"DesperateCrusade","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Prism Guardian}","optional":false}],"flavourText":"Through despondent hardships, those strong of spirit shall claim the prize.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":76,"detailsId":"desperate-crusade","tradeInfo":[],"listingCount":2087},{"id":93185,"name":"Parasitic Passengers","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"ParasiticPassengers","itemClass":6,"sparkline":{"data":[0,0,0,8.5,14.25,11.5,25],"totalChange":25},"lowConfidenceSparkline":{"data":[0,0,0,8.5,14.25,11.5,25],"totalChange":25},"implicitModifiers":[],"explicitModifiers":[{"text":"{10x Incubator}\n{Item Level:} {84}","optional":false}],"flavourText":"Feeding on death, they grew stronger and stronger, until they were ready to hatch...","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":96,"detailsId":"parasitic-passengers","tradeInfo":[],"listingCount":2730},{"id":93199,"name":"The Magma Crab","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheMagmaCrab","itemClass":6,"sparkline":{"data":[0,0,0,0,0,25,25],"totalChange":25},"lowConfidenceSparkline":{"data":[0,0,0,0,0,25,25],"totalChange":25},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 21 Vaal Molten Shell}\n{Corrupted}","optional":false}],"flavourText":"Drink deeply of living rock and be as stone, with blood afire.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":96,"detailsId":"the-magma-crab","tradeInfo":[],"listingCount":3140},{"id":93216,"name":"Judging Voices","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"JudgingVoices","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Forbidden Shako}","optional":false}],"flavourText":"He was seeking sanity, but the demons were inside his head.","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":70,"detailsId":"judging-voices","tradeInfo":[],"listingCount":1558},{"id":98298,"name":"The Shepherd's Sandals","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TheShepherdsSandals","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Boots}\n{Item Level:} {100}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"{He who watches the flock is himself watched by those with loyalty beyond measure.}","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":65,"detailsId":"the-shepherds-sandals","tradeInfo":[],"listingCount":1894},{"id":98362,"name":"Lethean Temptation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"LetheanTemptation","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Nebulis}","optional":false}],"flavourText":"My memories tortured me without end. To escape them, I embraced nothingness, but oblivion simply brought a different kind of pain...","chaosValue":5.00,"exaltedValue":0.29,"divineValue":0.02,"count":43,"detailsId":"lethean-temptation","tradeInfo":[],"listingCount":1114},{"id":620,"name":"Heterochromia","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":2,"artFilename":"Heterochromia","itemClass":6,"sparkline":{"data":[0,13.64,13.64,13.64,4.55,-25,4.55],"totalChange":4.55},"lowConfidenceSparkline":{"data":[0,13.64,13.64,13.64,4.55,-25,4.55],"totalChange":4.55},"implicitModifiers":[],"explicitModifiers":[{"text":"{Two-Stone Ring}","optional":false}],"flavourText":"{Black and White, Silver and Gold\nLet us see the world Unfold\nRed and Blue, Yellow and Green\nLet us remake it in colours Unseen}","chaosValue":4.60,"exaltedValue":0.27,"divineValue":0.02,"count":99,"detailsId":"heterochromia","tradeInfo":[],"listingCount":3133},{"id":768,"name":"Lost Worlds","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"LostWorlds","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,53.33],"totalChange":53.33},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,53.33],"totalChange":53.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Map}\n{Map Tier:} {15}","optional":false}],"flavourText":"{\"There are worlds that lie beyond the edge of my page, the edge of my understanding. Worlds of wonder. Worlds of terror.\"\nAramil - Cartographer to Emperor Chitus}","chaosValue":4.60,"exaltedValue":0.27,"divineValue":0.02,"count":99,"detailsId":"lost-worlds","tradeInfo":[],"listingCount":5195},{"id":1420,"name":"The Arena Champion","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":10,"artFilename":"TheArenaChampion","itemClass":6,"sparkline":{"data":[0,0,0,0,0,11.33,53.33],"totalChange":53.33},"lowConfidenceSparkline":{"data":[0,0,0,0,0,11.33,53.33],"totalChange":53.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Map}\n{Map Tier:} {12}","optional":false}],"flavourText":"The fight is the easy part. It's the years of training that'll kill you.","chaosValue":4.60,"exaltedValue":0.27,"divineValue":0.02,"count":99,"detailsId":"the-arena-champion","tradeInfo":[],"listingCount":5681},{"id":1621,"name":"The Summoner","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheSummoner","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,130],"totalChange":130},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,130],"totalChange":130},"implicitModifiers":[],"explicitModifiers":[{"text":"{Minion Gem}\n{Quality:} {+20%}","optional":false}],"flavourText":"To own a piece of the Nightmare, you must first belong to the Nightmare.","chaosValue":4.60,"exaltedValue":0.27,"divineValue":0.02,"count":99,"detailsId":"the-summoner","tradeInfo":[],"listingCount":5634},{"id":6921,"name":"The Sword King's Salute","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheSwordKingsSalute","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,130],"totalChange":130},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,130],"totalChange":130},"implicitModifiers":[],"explicitModifiers":[{"text":"{Daresso's Salute}","optional":false}],"flavourText":"{Many were slain by the sword king \nTheir blood decorating his ring \nThose who retreated were slaughtered \nThose who fought bravely were honoured}","chaosValue":4.60,"exaltedValue":0.27,"divineValue":0.02,"count":99,"detailsId":"the-sword-kings-salute","tradeInfo":[],"listingCount":4214},{"id":2041,"name":"The Wolven King's Bite","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheWolvenKingsBite","itemClass":6,"sparkline":{"data":[0,0,0,0,25,25,10],"totalChange":10},"lowConfidenceSparkline":{"data":[0,0,0,0,25,25,10],"totalChange":10},"implicitModifiers":[],"explicitModifiers":[{"text":"{Rigwald's Quills}","optional":false}],"flavourText":"{A wolf does not bite his mate as he does his prey, yet both begin with bared teeth. Know who you are, and you will know the meaning of the bite.}","chaosValue":4.40,"exaltedValue":0.25,"divineValue":0.02,"count":63,"detailsId":"the-wolven-kings-bite","tradeInfo":[],"listingCount":2562},{"id":22452,"name":"The Wolf's Legacy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheWolfsLegacy","itemClass":6,"sparkline":{"data":[0,8.11,8.11,8.11,8.11,8.11,18.92],"totalChange":18.92},"lowConfidenceSparkline":{"data":[0,8.11,8.11,8.11,8.11,8.11,18.92],"totalChange":18.92},"implicitModifiers":[],"explicitModifiers":[{"text":"{Vaults of Atziri}","optional":false}],"flavourText":"The howls and cackling could not mask the sadness.","chaosValue":4.40,"exaltedValue":0.25,"divineValue":0.02,"count":99,"detailsId":"the-wolfs-legacy","tradeInfo":[],"listingCount":3615},{"id":54380,"name":"Society's Remorse","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","artFilename":"SocietysRemorse","itemClass":6,"sparkline":{"data":[0,0,0,0,0,33.33,46.67],"totalChange":46.67},"lowConfidenceSparkline":{"data":[0,0,0,0,0,33.33,46.67],"totalChange":46.67},"implicitModifiers":[],"explicitModifiers":[{"text":"{10x Orb of Alteration}","optional":false}],"flavourText":"{We live to dream of worlds we aren't in,\na false narrative that we use to fill our souls\nwith doubt;\nThe world is already beautiful,\nthere's no need to dream.}","chaosValue":4.40,"exaltedValue":0.25,"divineValue":0.02,"count":99,"detailsId":"societys-remorse","tradeInfo":[],"listingCount":2930},{"id":320,"name":"Coveted Possession","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"CovetedPossession","itemClass":6,"sparkline":{"data":[0,0,0,0,30,50,110],"totalChange":110},"lowConfidenceSparkline":{"data":[0,0,0,0,30,50,110],"totalChange":110},"implicitModifiers":[],"explicitModifiers":[{"text":"{5x Regal Orb}","optional":false}],"flavourText":"A taste of power brings a hunger for more.","chaosValue":4.20,"exaltedValue":0.24,"divineValue":0.02,"count":99,"detailsId":"coveted-possession","tradeInfo":[],"listingCount":4907},{"id":6997,"name":"Harmony of Souls","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"HarmonyOfSouls","itemClass":6,"sparkline":{"data":[0,0,0,0,0,-20,-16],"totalChange":-16},"lowConfidenceSparkline":{"data":[0,0,0,0,0,-20,-16],"totalChange":-16},"implicitModifiers":[],"explicitModifiers":[{"text":"{9x Shrieking Essence}","optional":false}],"flavourText":"{Shrieking souls locked away \nHate splits frozen cells asunder \nThe knot of corruption\nundone at last}","chaosValue":4.20,"exaltedValue":0.24,"divineValue":0.02,"count":82,"detailsId":"harmony-of-souls","tradeInfo":[],"listingCount":2334},{"id":54417,"name":"Acclimatisation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":2,"artFilename":"Acclimatisation","itemClass":6,"sparkline":{"data":[0,-23.08,-23.08,-23.08,-23.08,15.38,61.54],"totalChange":61.54},"lowConfidenceSparkline":{"data":[0,-23.08,-23.08,-23.08,-23.08,15.38,61.54],"totalChange":61.54},"implicitModifiers":[],"explicitModifiers":[{"text":"{20x Orb of Alteration}","optional":false}],"flavourText":"The world is ever-changing.\nOnce-lush woods now lost beneath shifting sands,\nGreat cities now drown beneath turbulent waters.\nAdapt or perish.","chaosValue":4.20,"exaltedValue":0.24,"divineValue":0.02,"count":99,"detailsId":"acclimatisation","tradeInfo":[],"listingCount":3990},{"id":1489,"name":"The Explorer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheExplorer","itemClass":6,"sparkline":{"data":[0,0,-0.67,0,0,6.67,37.67],"totalChange":37.67},"lowConfidenceSparkline":{"data":[0,0,-0.67,0,0,6.67,37.67],"totalChange":37.67},"implicitModifiers":[],"explicitModifiers":[{"text":"{Map}\n{Corrupted}","optional":false}],"flavourText":"A map is only useful if you know where you stand.","chaosValue":4.13,"exaltedValue":0.24,"divineValue":0.02,"count":99,"detailsId":"the-explorer","tradeInfo":[],"listingCount":5361},{"id":744,"name":"Light and Truth","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":2,"artFilename":"LigthAndTruth","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Crystal Sceptre}","optional":false}],"flavourText":"Time and change\nshall naught avail,\nTo dim the Light\nof Truth's fair grail.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":58,"detailsId":"light-and-truth","tradeInfo":[],"listingCount":1314},{"id":971,"name":"Pride Before the Fall","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"PrideBeforeTheFall","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Kaom's Heart}\n{Corrupted}","optional":false}],"flavourText":"{As Kaom slew the last of his kin,\nsomething deep inside him broke.\nAnd through the cracks, corruption,\npure and black, spread forth.}","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":53,"detailsId":"pride-before-the-fall","tradeInfo":[],"listingCount":1441},{"id":1451,"name":"The Cartographer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","artFilename":"TheMapmaker","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{10x Cartographer's Chisel}","optional":false}],"flavourText":"{My son, you lost your way before you arrived.\nTo never lose you again,\nI make a path in my heart.}","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":99,"detailsId":"the-cartographer","tradeInfo":[],"listingCount":2334},{"id":1471,"name":"The Dapper Prodigy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheDapperProdigy","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,33.33],"totalChange":33.33},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,33.33],"totalChange":33.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Six-Link Body Armour}\n{Item Level:} {100}","optional":false}],"flavourText":"\"Many believe murder is a grisly, grim, and grotesque crime. Then there are those who simply make art of it.\"","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":99,"detailsId":"the-dapper-prodigy","tradeInfo":[],"listingCount":4162},{"id":1472,"name":"The Dark Mage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheDarkMage","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Six-Link Staff}\n{Item Level:} {55}","optional":false}],"flavourText":"With staff in hand\nand wrath in heart,\nyour soul and corpse\nshall surely part.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":98,"detailsId":"the-dark-mage","tradeInfo":[],"listingCount":3272},{"id":1503,"name":"The Formless Sea","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheFormlessSea","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Varunastra}","optional":false}],"flavourText":"Formless might,\nWild beauty tamed,\nThe brine of gods,\nThe seas restrained.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":81,"detailsId":"the-formless-sea","tradeInfo":[],"listingCount":2224},{"id":1506,"name":"The Fox","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheFox","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,33.33],"totalChange":33.33},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,33.33],"totalChange":33.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 20 Gem}","optional":false}],"flavourText":"\"Masters of wit, strength and cunning. To survive the harsh winters, you must be like the fox.\"\n- Ezomyte Proverb","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":99,"detailsId":"the-fox","tradeInfo":[],"listingCount":4509},{"id":1509,"name":"The Gentleman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheGentleman","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,33.33],"totalChange":33.33},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,33.33],"totalChange":33.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Sword}\n{Corrupted}","optional":false}],"flavourText":"\"Axes and mauls are so uncivilised. A good clean cut to the neck with a sharp blade, that's the Sarn way!\"","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":99,"detailsId":"the-gentleman","tradeInfo":[],"listingCount":3751},{"id":1526,"name":"The Hunger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"TheHunger","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Taste of Hate}","optional":false}],"flavourText":"\"How many lives have you consumed?\" \n\"How many times have you blinked?\"","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":99,"detailsId":"the-hunger","tradeInfo":[],"listingCount":3078},{"id":1530,"name":"The Incantation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheIncantation","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{The Whispering Ice}","optional":false}],"flavourText":"When there is no other choice, even the meekest whisper can bring about the greatest storm.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":59,"detailsId":"the-incantation","tradeInfo":[],"listingCount":1620},{"id":1534,"name":"The Jester","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"TheJester","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{{Merciless One-Hand Weapon}\n{Item Level:} {100}}","optional":false}],"flavourText":"{Summoned for the King's desire,\nsoon applause came from the court.\nHowever insanity was his only sire,\nso the King's reign was cut short.}","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":43,"detailsId":"the-jester","tradeInfo":[],"listingCount":1027},{"id":1552,"name":"The Mercenary","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheMercenary","itemClass":6,"sparkline":{"data":[0,0,0,0,0,50,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,0,0,50,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{Shield}\n{Corrupted}","optional":false}],"flavourText":"Loyalty can be bought. Just make sure you know who the buyer is.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":99,"detailsId":"the-mercenary","tradeInfo":[],"listingCount":4225},{"id":1559,"name":"The Offering","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheOffering","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Shavronne's Wrappings}","optional":false}],"flavourText":"Eternal beauty has a cost, one which Shavronne was happy to pay with the lives of others.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":99,"detailsId":"the-offering","tradeInfo":[],"listingCount":3429},{"id":1579,"name":"The Queen","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":16,"artFilename":"TheQueen","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Atziri's Acuity}","optional":false}],"flavourText":"The power of the world, \nlies upon your hands.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":48,"detailsId":"the-queen","tradeInfo":[],"listingCount":1260},{"id":1612,"name":"The Siren","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheSiren","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{The Whispering Ice}\n{Corrupted}","optional":false}],"flavourText":"{At the beck and call\nof The Siren's hand,\nwinter ravages\nthe trembling land,\nand the weight of ice that binds\nwill break the strongest of minds.}","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":56,"detailsId":"the-siren","tradeInfo":[],"listingCount":1313},{"id":1625,"name":"The Surveyor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheSurveyor","itemClass":6,"sparkline":{"data":[0,0,0,0,0,20,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,0,0,20,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{Map}\n{Map Tier:} {14}","optional":false}],"flavourText":"Exploring lands made of flesh and sorrow, we'll reap and plunder like there's no tomorrow.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":99,"detailsId":"the-surveyor","tradeInfo":[],"listingCount":4822},{"id":1633,"name":"The Thaumaturgist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheThaumaturgist","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Shavronne's Revelation}\n{Corrupted}","optional":false}],"flavourText":"{\"Mastery of thaumaturgy is like any other pursuit; it requires dedication and sacrifice. Sometimes several sacrifices.\"\n- Shavronne of Umbra}","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":56,"detailsId":"the-thaumaturgist","tradeInfo":[],"listingCount":1738},{"id":1642,"name":"The Tyrant","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"TheTyrant","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Merciless Weapon}\n{Item Level:} {100}","optional":false}],"flavourText":"\"Fear controls the masses.\"\n- Laszlo, the Scourge","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":66,"detailsId":"the-tyrant","tradeInfo":[],"listingCount":2048},{"id":1663,"name":"The Warlord","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheWarlord","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Six-Link Coronal Maul}\n{Item Level:} {83}","optional":false}],"flavourText":"To cure the Goddess,\nand break the chains of corruption,\nyou must shatter the world.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":79,"detailsId":"the-warlord","tradeInfo":[],"listingCount":2887},{"id":1675,"name":"The Wind","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheWind","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,33.33],"totalChange":33.33},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,33.33],"totalChange":33.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Windripper}","optional":false}],"flavourText":"{Weaving through the cracks, searching for weaknesses, silent, indiscriminate, leaving sorrow in its wake.}","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":83,"detailsId":"the-wind","tradeInfo":[],"listingCount":2937},{"id":1712,"name":"Treasure Hunter","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TreasureHunter","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,33.33],"totalChange":33.33},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,33.33],"totalChange":33.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Vaults of Atziri}\n{Corrupted}","optional":false}],"flavourText":"\"Don't worry, I know what I'm doing.\"\n- Toggo's Last Words","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":99,"detailsId":"treasure-hunter","tradeInfo":[],"listingCount":4441},{"id":1786,"name":"Vinia's Token","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"ViniasToken","itemClass":6,"sparkline":{"data":[0,0,0,100,100,100,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,100,100,100,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{10x Orb of Regret}","optional":false}],"flavourText":"You can change your name, but you cannot change your history.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":99,"detailsId":"vinias-token","tradeInfo":[],"listingCount":5750},{"id":4867,"name":"The Puzzle","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"ThePuzzle","itemClass":6,"sparkline":{"data":[0,0,0,0,0,20,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,0,0,20,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{5x Breachstone Splinter}","optional":false}],"flavourText":"As countless fractures weaken the divide, nightmares seep through from the other side.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":99,"detailsId":"the-puzzle","tradeInfo":[],"listingCount":4616},{"id":7382,"name":"The Innocent","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":10,"artFilename":"TheInnocent","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{40x Orb of Regret}","optional":false}],"flavourText":"His brother would not atone, so he took his brother's life, and with it, his sins.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":99,"detailsId":"the-innocent","tradeInfo":[],"listingCount":4057},{"id":7386,"name":"The Twilight Moon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheTwilightMoon","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{The Twilight Temple}","optional":false}],"flavourText":"The day is dying, the night is born, the air grows cool, the sky is torn.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":84,"detailsId":"the-twilight-moon","tradeInfo":[],"listingCount":2735},{"id":7387,"name":"The Wilted Rose","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheWiltedRose","itemClass":6,"sparkline":{"data":[0,-13.29,-13.29,15.61,15.61,15.61,15.61],"totalChange":15.61},"lowConfidenceSparkline":{"data":[0,-13.29,-13.29,15.61,15.61,15.61,15.61],"totalChange":15.61},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 21 Aura Gem}\n{Corrupted}","optional":false}],"flavourText":"Though the path to divinity is fraught with peril, hope may bloom from within.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":99,"detailsId":"the-wilted-rose","tradeInfo":[],"listingCount":4228},{"id":20628,"name":"Sambodhi's Vow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"SambodhisVow","itemClass":6,"sparkline":{"data":[0,1,0,50,50,80,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,1,0,50,50,80,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{Mortal Fragment}","optional":false}],"flavourText":"{He dispels dark realms\nuntil mortal sufferings\nyield to hopeful light.}","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":99,"detailsId":"sambodhis-vow","tradeInfo":[],"listingCount":4846},{"id":20767,"name":"The Landing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheLanding","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{The Beachhead}\n{Map Tier:} {15}\n{Corrupted}","optional":false}],"flavourText":"Warriors of a distant land, you embark on a journey from which you may not return, but which we will be all the better for.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":99,"detailsId":"the-landing","tradeInfo":[],"listingCount":4011},{"id":20786,"name":"The Messenger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheMessenger","itemClass":6,"sparkline":{"data":[0,0,0,0,33.33,33.33,33.33],"totalChange":33.33},"lowConfidenceSparkline":{"data":[0,0,0,0,33.33,33.33,33.33],"totalChange":33.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Harbinger Piece}","optional":false}],"flavourText":"<><><><><><><><><>\n<><><><><>\n<><><><><>\n<><><><><><><>","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":99,"detailsId":"the-messenger","tradeInfo":[],"listingCount":3612},{"id":20793,"name":"The Golden Era","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheGoldenEra","itemClass":6,"sparkline":{"data":[0,-20,-20,-24,-20,-20,-20],"totalChange":-20},"lowConfidenceSparkline":{"data":[0,-20,-20,-24,-20,-20,-20],"totalChange":-20},"implicitModifiers":[],"explicitModifiers":[{"text":"{Flaring Eclipse Staff}\n{Item Level:} {100}","optional":false}],"flavourText":"Before gemlings, before thaumaturgy, a simple court magician could enthrall the masses.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":76,"detailsId":"the-golden-era","tradeInfo":[],"listingCount":1744},{"id":20845,"name":"The Life Thief","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheLifeThief","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Zerphi's Heart}","optional":false}],"flavourText":"\"The process of eternal youth is a give and take. You give them death and take their youth.\"\n- Zerphi of the Vaal","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":76,"detailsId":"the-life-thief","tradeInfo":[],"listingCount":2156},{"id":22480,"name":"The Side Quest","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheSideQuest","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{20x Scouting Report}","optional":false}],"flavourText":"You'll never know the things you miss if you keep your eyes closed","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":93,"detailsId":"the-side-quest","tradeInfo":[],"listingCount":3236},{"id":23900,"name":"Deathly Designs","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"DeathlyDesigns","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 21 Trap Gem}\n{Quality:} {+23%}\n{Corrupted}","optional":false}],"flavourText":"\"The Karui was correct; there is virtue in honouring my ancestors.\"","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":80,"detailsId":"deathly-designs","tradeInfo":[],"listingCount":2125},{"id":40049,"name":"Council of Cats","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"CounciloOfCats","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Farrul Item}","optional":false}],"flavourText":"{A King Loved By All,\nA Shadow Awaiting Nightfall,\nA Speaker Howling Away,\nA Hunter Seeking Prey}","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":76,"detailsId":"council-of-cats","tradeInfo":[],"listingCount":2693},{"id":54412,"name":"The Bear Woman","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheBearWoman","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,33.33],"totalChange":33.33},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,33.33],"totalChange":33.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Fecund Ursine Pelt}\n{Warlord Item}","optional":false}],"flavourText":"{For the blessed bear in the cave,\nA hundred days pass in silence and darkness,\nuntil moon begins its fourth passage,\nthe bear sheds her beastly fur,\nand is reborn, human and whole.}","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":97,"detailsId":"the-bear-woman","tradeInfo":[],"listingCount":3052},{"id":54424,"name":"Haunting Shadows","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"HauntingShadows","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Metamorph Item}","optional":false}],"flavourText":"In the dead of night you may elude your shadows,\nbut they will always find you by dawn.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":62,"detailsId":"haunting-shadows","tradeInfo":[],"listingCount":1672},{"id":60097,"name":"The Enthusiasts","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TheEnthusiasts","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Victario's Influence}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"{\"Glimmers of benevolence,\nShrouded a lacquered lust for power,\nYet still they followed his influence.\"}","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":92,"detailsId":"the-enthusiasts","tradeInfo":[],"listingCount":2300},{"id":67873,"name":"The Offspring","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"TheOffspring","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Ryslatha's Coil}","optional":false}],"flavourText":"The swarm began with just a couple of children. Now, it is her entire existence.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":76,"detailsId":"the-offspring","tradeInfo":[],"listingCount":2016},{"id":67891,"name":"A Sea of Blue","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"ASeaOfBlue","itemClass":6,"sparkline":{"data":[0,0,27.80,27.80,27.80,27.80,27.80],"totalChange":27.80},"lowConfidenceSparkline":{"data":[0,0,27.80,27.80,27.80,27.80,27.80],"totalChange":27.80},"implicitModifiers":[],"explicitModifiers":[{"text":"{13x Orb of Alteration}","optional":false}],"flavourText":"The harvest ended, the floods began.","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":99,"detailsId":"a-sea-of-blue","tradeInfo":[],"listingCount":5237},{"id":70863,"name":"The Fox in the Brambles","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheFoxInTheBrambles","itemClass":6,"sparkline":{"data":[0,0,0,0,10,33.33,33.33],"totalChange":33.33},"lowConfidenceSparkline":{"data":[0,0,0,0,10,33.33,33.33],"totalChange":33.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Bramblejack}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"{Hemmingsworth 6:10 - \"And the fox gazed out from the brambles, unreachable and smirking.\"}","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":64,"detailsId":"the-fox-in-the-brambles","tradeInfo":[],"listingCount":1945},{"id":93212,"name":"Bijoux","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"Bijoux","itemClass":6,"sparkline":{"data":[0,-16.67,5.56,11.11,11.11,11.11,11.11],"totalChange":11.11},"lowConfidenceSparkline":{"data":[0,-16.67,5.56,11.11,11.11,11.11,11.11],"totalChange":11.11},"implicitModifiers":[],"explicitModifiers":[{"text":"{Cluster Jewel}\n{Item Level:} {84}","optional":false}],"flavourText":"\"Such fine trinkets show their true value in times of crisis.\" - Tangmazu","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":55,"detailsId":"bijoux","tradeInfo":[],"listingCount":1593},{"id":95780,"name":"The Forward Gaze","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheForwardGaze","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Replica Item}","optional":false}],"flavourText":"\"When they realize our true intent, they will decry us, assault us, and try to crush what we have built. We must stand tall, Qotra, and make the future our own.\"","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":96,"detailsId":"the-forward-gaze","tradeInfo":[],"listingCount":3092},{"id":100661,"name":"A Dusty Memory","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"ADustyMemory","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Item}\n{Item Level:} {100}\n{Fractured}","optional":false}],"flavourText":"{In the oldest halls of my mind, at the end of a rarely used passage, lies my greatest treasure: one moment of happiness and innocence, pure and untouchable.}","chaosValue":4.00,"exaltedValue":0.23,"divineValue":0.02,"count":80,"detailsId":"a-dusty-memory","tradeInfo":[],"listingCount":1865},{"id":20798,"name":"Boon of Justice","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"BoonofJustice","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,90],"totalChange":90},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,90],"totalChange":90},"implicitModifiers":[],"explicitModifiers":[{"text":"{Offering to the Goddess}","optional":false}],"flavourText":"Some gifts are obligations while others are simply opportunities.","chaosValue":3.80,"exaltedValue":0.22,"divineValue":0.02,"count":99,"detailsId":"boon-of-justice","tradeInfo":[],"listingCount":5501},{"id":1546,"name":"The Lord in Black","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheLordInBlack","itemClass":6,"sparkline":{"data":[0,0,26.67,33.33,6.67,33.33,20],"totalChange":20},"lowConfidenceSparkline":{"data":[0,0,26.67,33.33,6.67,33.33,20],"totalChange":20},"implicitModifiers":[],"explicitModifiers":[{"text":"{Ring of Bameth}\n{Item Level:} {83}","optional":false}],"flavourText":"{Thy knee shall bend\nin shifting dark,\nthy blade shall serve his vigil.\nThy oath shall bind thee\nto his mark,\nthy flesh shall bear his sigil.}","chaosValue":3.60,"exaltedValue":0.21,"divineValue":0.02,"count":64,"detailsId":"the-lord-in-black","tradeInfo":[],"listingCount":1787},{"id":1639,"name":"The Trial","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheTrial","itemClass":6,"sparkline":{"data":[0,1.52,-1.02,1.52,1.52,1.52,82.74],"totalChange":82.74},"lowConfidenceSparkline":{"data":[0,1.52,-1.02,1.52,1.52,1.52,82.74],"totalChange":82.74},"implicitModifiers":[],"explicitModifiers":[{"text":"{Map}\n{Map Tier:} {15}\n{Corrupted}","optional":false}],"flavourText":"You cannot journey to new lands until you have the courage to leave the safety of home.","chaosValue":3.60,"exaltedValue":0.21,"divineValue":0.02,"count":99,"detailsId":"the-trial","tradeInfo":[],"listingCount":6367},{"id":1660,"name":"The Warden","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheWarden","itemClass":6,"sparkline":{"data":[0,0,0,0,10,50,80],"totalChange":80},"lowConfidenceSparkline":{"data":[0,0,0,0,10,50,80],"totalChange":80},"implicitModifiers":[],"explicitModifiers":[{"text":"{Amulet}\n{Corrupted}","optional":false}],"flavourText":"{Brutus' first innovation as Lord Incarcerator was a weighted chain around every neck so that his prisoners would forever bow to him.}","chaosValue":3.60,"exaltedValue":0.21,"divineValue":0.02,"count":99,"detailsId":"the-warden","tradeInfo":[],"listingCount":3713},{"id":2292,"name":"No Traces","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"NoTraces","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,20],"totalChange":20},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,20],"totalChange":20},"implicitModifiers":[],"explicitModifiers":[{"text":"{30x Orb of Scouring}","optional":false}],"flavourText":"{There is no mistake so great that it cannot be undone.}","chaosValue":3.60,"exaltedValue":0.21,"divineValue":0.02,"count":99,"detailsId":"no-traces","tradeInfo":[],"listingCount":4683},{"id":7402,"name":"The Price of Protection","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"ThePriceofProtection","itemClass":6,"sparkline":{"data":[0,0,0,0,0,50,80],"totalChange":80},"lowConfidenceSparkline":{"data":[0,0,0,0,0,50,80],"totalChange":80},"implicitModifiers":[],"explicitModifiers":[{"text":"{{Elder Guardian Occupied Map}\n{Map Tier:} {14 to 16}\n{Modifiers:} {8}\n{Corrupted}}","optional":false}],"flavourText":"To protect her mansion, she would cut a deal with anyone. Anything. \n\nSomething answered.","chaosValue":3.60,"exaltedValue":0.21,"divineValue":0.02,"count":99,"detailsId":"the-price-of-protection","tradeInfo":[],"listingCount":4738},{"id":40045,"name":"The Easy Stroll","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":2,"artFilename":"TheEasyStroll","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,-10],"totalChange":-10},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,-10],"totalChange":-10},"implicitModifiers":[],"explicitModifiers":[{"text":"{Map}\n{Map Tier:} {15}\n{Modifiers:} {8}\n{Corrupted}","optional":false}],"flavourText":"\"I'm going for a walk. I'll be back soon.\"\n\n - Blonca's last words","chaosValue":3.60,"exaltedValue":0.21,"divineValue":0.02,"count":99,"detailsId":"the-easy-stroll","tradeInfo":[],"listingCount":3272},{"id":1658,"name":"The Void","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","artFilename":"TheVoid","itemClass":6,"sparkline":{"data":[0,0,0,0,53.33,0,18],"totalChange":18},"lowConfidenceSparkline":{"data":[0,0,0,0,53.33,0,18],"totalChange":18},"implicitModifiers":[],"explicitModifiers":[{"text":"","optional":false}],"flavourText":"Reach into the Void and claim your prize.","chaosValue":3.54,"exaltedValue":0.20,"divineValue":0.02,"count":99,"detailsId":"the-void","tradeInfo":[],"listingCount":3124},{"id":1677,"name":"The Wolf's Shadow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TheWolfsShadow","itemClass":6,"sparkline":{"data":[0,0,0,0,0,50,76.5],"totalChange":76.5},"lowConfidenceSparkline":{"data":[0,0,0,0,0,50,76.5],"totalChange":76.5},"implicitModifiers":[],"explicitModifiers":[{"text":"{Hyaon's Fury}","optional":false}],"flavourText":"\"If I fall, we will fall together with my fangs in your throat.\"","chaosValue":3.53,"exaltedValue":0.20,"divineValue":0.02,"count":74,"detailsId":"the-wolfs-shadow","tradeInfo":[],"listingCount":2598},{"id":6913,"name":"The Army of Blood","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheArmyOfBlood","itemClass":6,"sparkline":{"data":[0,-28.57,-28.57,-28.57,-28.57,-25,150],"totalChange":150},"lowConfidenceSparkline":{"data":[0,-28.57,-28.57,-28.57,-28.57,-25,150],"totalChange":150},"implicitModifiers":[],"explicitModifiers":[{"text":"{Bloodbond}","optional":false}],"flavourText":"{I gave my mind without a fight, \nThe twelfth hour I lost control. \nThe day is gone but there is light, \neyes that glow like red-hot coal.}","chaosValue":3.50,"exaltedValue":0.20,"divineValue":0.02,"count":99,"detailsId":"the-army-of-blood","tradeInfo":[],"listingCount":3725},{"id":1510,"name":"The Gladiator","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheGladiator","itemClass":6,"sparkline":{"data":[0,0,0,0,50,100,70],"totalChange":70},"lowConfidenceSparkline":{"data":[0,0,0,0,50,100,70],"totalChange":70},"implicitModifiers":[],"explicitModifiers":[{"text":"{Nightmare Bascinet}","optional":false}],"flavourText":"The thumb turns down\nand the crowd roars, \nthey want death \nand the blood is yours.","chaosValue":3.40,"exaltedValue":0.20,"divineValue":0.02,"count":99,"detailsId":"the-gladiator","tradeInfo":[],"listingCount":5538},{"id":1558,"name":"The Oath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheOath","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,13.33],"totalChange":13.33},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,13.33],"totalChange":13.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Death's Oath}","optional":false}],"flavourText":"An oath once made is an oath never broken. Do not delay in keeping it, for I take no pleasure in fools.","chaosValue":3.40,"exaltedValue":0.20,"divineValue":0.02,"count":99,"detailsId":"the-oath","tradeInfo":[],"listingCount":3648},{"id":21645,"name":"The Archmage's Right Hand","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheArchmagesRightHand","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,13.33],"totalChange":13.33},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,13.33],"totalChange":13.33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Glyphic Prophecy Wand}\n{Item Level:} {100}","optional":false}],"flavourText":"\"When grasped in his hand, even an ordinary piece of wood can make the heavens tremble with fear.\"","chaosValue":3.40,"exaltedValue":0.20,"divineValue":0.02,"count":99,"detailsId":"the-archmages-right-hand","tradeInfo":[],"listingCount":3669},{"id":1423,"name":"The Avenger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":12,"artFilename":"TheAvenger","itemClass":6,"sparkline":{"data":[0,0,0,0,-25,-25,-20],"totalChange":-20},"lowConfidenceSparkline":{"data":[0,0,0,0,-25,-25,-20],"totalChange":-20},"implicitModifiers":[],"explicitModifiers":[{"text":"{Mjölner}\n{Corrupted}","optional":false}],"flavourText":"Justice comes swift \nEqual to the crime \nRevenge is a gift \nLife for a life \nEye for an eye","chaosValue":3.20,"exaltedValue":0.18,"divineValue":0.02,"count":73,"detailsId":"the-avenger","tradeInfo":[],"listingCount":1728},{"id":229,"name":"Cartographer's Delight","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"CartographersDelight","itemClass":6,"sparkline":{"data":[0,33.33,33.33,33.33,33.33,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,33.33,33.33,33.33,33.33,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Map}\n{Map Tier:} {5}","optional":false}],"flavourText":"{A map is similar\nto a pair of eyes,\nwithout one you stumble\naround, unable to find your way.}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":92,"detailsId":"cartographers-delight","tradeInfo":[],"listingCount":2723},{"id":389,"name":"Death","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"Death","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Mon'tregul's Grasp}","optional":false}],"flavourText":"{The end of the old,\nthe beginning of the new.\nA unique opportunity for transformation,\nfor those with the power\nto grasp it.}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":98,"detailsId":"death","tradeInfo":[],"listingCount":3340},{"id":462,"name":"Dying Anguish","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"DyingAnguish","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 19 Gem}\n{Alternate Quality:} {+19%}","optional":false}],"flavourText":"{Moribund, he gazed upon the journey taken as blood trickled down his chin. His eye closed on the city ahead that he would never call home.}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"dying-anguish","tradeInfo":[],"listingCount":4538},{"id":480,"name":"Emperor of Purity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"EmperorOfPurity","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Six-Link Holy Chainmail}\n{Item Level:} {60}","optional":false}],"flavourText":"True to his title,\nVoll, newly crowned,\nhad many of the\nEternal Empire's signature\nextravagances destroyed.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"emperor-of-purity","tradeInfo":[],"listingCount":4634},{"id":736,"name":"Last Hope","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"LastHope","itemClass":6,"sparkline":{"data":[0,26.58,-15.61,26.58,26.58,26.58,26.58],"totalChange":26.58},"lowConfidenceSparkline":{"data":[0,26.58,-15.61,26.58,26.58,26.58,26.58],"totalChange":26.58},"implicitModifiers":[],"explicitModifiers":[{"text":"{Mortal Hope}","optional":false}],"flavourText":"{As their civilisation crumbled, the Vaal looked to their queen. In her, they saw a way out. In them, she saw a burden she was happy to free herself from.}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"last-hope","tradeInfo":[],"listingCount":4755},{"id":772,"name":"Lysah's Respite","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"LysahsRespite","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Agate Amulet}\n{Corrupted}","optional":false}],"flavourText":"So many memories,\nso much pain in\nsuch a small token.\nDrown it in blood\nso you can forget.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"lysahs-respite","tradeInfo":[],"listingCount":4846},{"id":1008,"name":"Rain Tempter","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"RainTempter","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Map}\n{Map Tier:} {6}","optional":false}],"flavourText":"Be like water, friend.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"rain-tempter","tradeInfo":[],"listingCount":3670},{"id":1083,"name":"Scholar of the Seas","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"ScholarOfTheSeas","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Mao Kun}","optional":false}],"flavourText":"I've never come upon a ship I could not command. I have however met sailors that were not willing to be led.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"scholar-of-the-seas","tradeInfo":[],"listingCount":4584},{"id":1261,"name":"Shard of Fate","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"ShardofFate","itemClass":6,"sparkline":{"data":[0,0,-20,-20,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,-20,-20,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Vivid Jewel}","optional":false}],"flavourText":"Their whims left unknown,\nTheir life left for others.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"shard-of-fate","tradeInfo":[],"listingCount":4855},{"id":1431,"name":"The Betrayal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"TheBetrayal","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Maligaro's Virtuosity}","optional":false}],"flavourText":"It's sad times we live in when a friendship has a price people are willing to pay.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":79,"detailsId":"the-betrayal","tradeInfo":[],"listingCount":2484},{"id":1452,"name":"The Cataclysm","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":13,"artFilename":"TheCataclysm","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 21 Spell Gem}\n{Corrupted}","optional":false}],"flavourText":"{The mighty warriors traded in blows, the nimble archers in arrows, yet it was the brazen thaumaturgists who would bring catastrophe to all.}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-cataclysm","tradeInfo":[],"listingCount":4098},{"id":1457,"name":"The Celestial Justicar","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheCelestialJusticar","itemClass":6,"sparkline":{"data":[0,0,11,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,11,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Six-Link Astral Plate}","optional":false}],"flavourText":"Wrapped in the glory of the heavens, she comes to mete out justice for the fallen.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-celestial-justicar","tradeInfo":[],"listingCount":3880},{"id":1482,"name":"The Drunken Aristocrat","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheDrunkenAristocrat","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Divination Distillate}","optional":false}],"flavourText":"The finer the brew, the harder it is to remember drinking it.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":88,"detailsId":"the-drunken-aristocrat","tradeInfo":[],"listingCount":2782},{"id":1490,"name":"The Feast","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheFeast","itemClass":6,"sparkline":{"data":[0,15.38,15.38,7.69,15.38,15.38,15.38],"totalChange":15.38},"lowConfidenceSparkline":{"data":[0,15.38,15.38,7.69,15.38,15.38,15.38],"totalChange":15.38},"implicitModifiers":[],"explicitModifiers":[{"text":"{Romira's Banquet}\n{Corrupted}","optional":false}],"flavourText":"Shame what happened to my husband. He had such good taste.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":81,"detailsId":"the-feast","tradeInfo":[],"listingCount":2340},{"id":1533,"name":"The Inventor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheInventor","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{10x Vaal Orb}","optional":false}],"flavourText":"Jump right in, \nBut beware \nOf things broken \nOr beyond compare.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-inventor","tradeInfo":[],"listingCount":5607},{"id":1545,"name":"The Lion","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheLion","itemClass":6,"sparkline":{"data":[0,0,0,50,50,50,50],"totalChange":50},"lowConfidenceSparkline":{"data":[0,0,0,50,50,50,50],"totalChange":50},"implicitModifiers":[],"explicitModifiers":[{"text":"{Lioneye Item}","optional":false}],"flavourText":"{The Eternals lauded his valour. The Karui relished his defeat. Yet the final thoughts of Marceus Lioneye were naught but lament for his pride.}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-lion","tradeInfo":[],"listingCount":4025},{"id":1562,"name":"The Pack Leader","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"ThePackLeader","itemClass":6,"sparkline":{"data":[0,2.39,0.68,-8.87,2.39,2.39,2.39],"totalChange":2.39},"lowConfidenceSparkline":{"data":[0,2.39,0.68,-8.87,2.39,2.39,2.39],"totalChange":2.39},"implicitModifiers":[],"explicitModifiers":[{"text":"{Alpha's Howl}","optional":false}],"flavourText":"Become the leader you were born to be.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":86,"detailsId":"the-pack-leader","tradeInfo":[],"listingCount":3958},{"id":1574,"name":"The Poet","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"ThePoet","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Blood of Corruption}\n{Corrupted}","optional":false}],"flavourText":"{God had forsaken the land \nAnd Victario wept.\nCorruption consumed the land \nAnd Victario's tears turned to blood.}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":67,"detailsId":"the-poet","tradeInfo":[],"listingCount":2391},{"id":1581,"name":"The Rabid Rhoa","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheRabidRhoa","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Malicious Gemini Claw}\n{Item Level:} {83}","optional":false}],"flavourText":"\"Experiment 22A: Rhoas, when deprived of water, secrete a most delightfully potent toxin.\"\n- Maligaro","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":94,"detailsId":"the-rabid-rhoa","tradeInfo":[],"listingCount":3019},{"id":1589,"name":"The Risk","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TheRisk","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Ventor's Gamble}","optional":false}],"flavourText":"\"There is no right or wrong choice, no best or worst. There are only choices and their consequences.\"","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-risk","tradeInfo":[],"listingCount":4393},{"id":1592,"name":"The Scavenger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheScavenger","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Carcass Jack}","optional":false}],"flavourText":"Take small pieces of things and then assemble them together","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":85,"detailsId":"the-scavenger","tradeInfo":[],"listingCount":3895},{"id":1617,"name":"The Spoiled Prince","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheSpoiledPrince","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Dictator's Prophecy Wand}\n{Item Level:} {100}","optional":false}],"flavourText":"A boy who grows up with everything learns to appreciate nothing.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":67,"detailsId":"the-spoiled-prince","tradeInfo":[],"listingCount":1669},{"id":1637,"name":"The Traitor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheTraitor","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Wand}\n{Corrupted}","optional":false}],"flavourText":"{Sometimes an apprentice becomes a master through countless hours of hard work and practice.\nSometimes it happens by force.}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-traitor","tradeInfo":[],"listingCount":3994},{"id":1640,"name":"The Twins","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheTwins","itemClass":6,"sparkline":{"data":[0,36.36,36.36,12.27,36.36,36.36,36.36],"totalChange":36.36},"lowConfidenceSparkline":{"data":[0,36.36,36.36,12.27,36.36,36.36,36.36],"totalChange":36.36},"implicitModifiers":[],"explicitModifiers":[{"text":"{Gemini Claw of Celebration}\n{Item Level:} {83}","optional":false}],"flavourText":"Two sides of a coin;\nHeads for a friend,\ntails a foe;\nGemini toss up","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":91,"detailsId":"the-twins","tradeInfo":[],"listingCount":2693},{"id":1650,"name":"The Union","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheUnion","itemClass":6,"sparkline":{"data":[0,0,0,0.67,8,1.67,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0.67,8,1.67,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{10x Gemcutter's Prism}","optional":false}],"flavourText":"On the 21st of Eterni, \ntwo become one, \ntheir light outshines \nthe setting sun.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-union","tradeInfo":[],"listingCount":5608},{"id":1651,"name":"The Valkyrie","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheValkyrie","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Nemesis Item}","optional":false}],"flavourText":"{The villain strikes,\nthe world is torn.\nA war begins, a hero is born,\nThe nemesis sets the sky alight.\nA hero's sacrifice\nsets everything right.\n- Drake's Epitaph}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-valkyrie","tradeInfo":[],"listingCount":4836},{"id":1678,"name":"The Wrath","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheWrath","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,50],"totalChange":50},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,50],"totalChange":50},"implicitModifiers":[],"explicitModifiers":[{"text":"{10x Chaos Orb}","optional":false}],"flavourText":"{\"Daughter of catastrophe, mother of pain. Amongst the filth of Wraeclast, she wanders, and her wrath follows.\" - Quintoon the Returned}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-wrath","tradeInfo":[],"listingCount":5365},{"id":1694,"name":"Thunderous Skies","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"ThunderousSkies","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,50],"totalChange":50},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,50],"totalChange":50},"implicitModifiers":[],"explicitModifiers":[{"text":"{Storm Cloud}","optional":false}],"flavourText":"{Many that have wielded the power of lightning have said that death by electrocution looks like the victim is more alive than ever before.}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"thunderous-skies","tradeInfo":[],"listingCount":3667},{"id":2037,"name":"Call to the First Ones","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"CallToTheFirstOnes","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Tier 1 Talisman}\n{Corrupted}","optional":false}],"flavourText":"The Ezomyte, desperate for aid, cried out to the gods.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":69,"detailsId":"call-to-the-first-ones","tradeInfo":[],"listingCount":2202},{"id":2040,"name":"The Coming Storm","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheComingStorm","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Lightning Coil}","optional":false}],"flavourText":"No man may hope to turn back the storm. You can only hope you do not attract its ire.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-coming-storm","tradeInfo":[],"listingCount":4898},{"id":2042,"name":"The Saint's Treasure","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":10,"artFilename":"TheSaintsTreasure","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{2x Exalted Orb}","optional":false}],"flavourText":"{Publicly, he lived a pious and chaste life of poverty. Privately, tithes and tributes made him and his lascivious company very comfortable indeed.}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-saints-treasure","tradeInfo":[],"listingCount":4491},{"id":2043,"name":"The Wolverine","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheWolverine","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Claw}\n{Corrupted}","optional":false}],"flavourText":"Claw them from the bottom, you'll be glad that you have got 'em, claw them from the top, you'll never want to stop.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-wolverine","tradeInfo":[],"listingCount":3818},{"id":2045,"name":"The Spark and the Flame","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":2,"artFilename":"TheSparkAndTheFlame","itemClass":6,"sparkline":{"data":[0,10,50,50,40,50,50],"totalChange":50},"lowConfidenceSparkline":{"data":[0,10,50,50,40,50,50],"totalChange":50},"implicitModifiers":[],"explicitModifiers":[{"text":"{Berek's Respite}","optional":false}],"flavourText":"When sky meets ground the flames can be found, but who has the will to tame them.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-spark-and-the-flame","tradeInfo":[],"listingCount":3395},{"id":2048,"name":"The Forsaken","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheForsaken","itemClass":6,"sparkline":{"data":[0,0,0,50,50,50,50],"totalChange":50},"lowConfidenceSparkline":{"data":[0,0,0,50,50,50,50],"totalChange":50},"implicitModifiers":[],"explicitModifiers":[{"text":"{Umbilicus Immortalis}","optional":false}],"flavourText":"You gave us life and love, more than you could spare. Now you're gone, and we are stranded, alone, cold and without purpose.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":79,"detailsId":"the-forsaken","tradeInfo":[],"listingCount":2414},{"id":2083,"name":"Might is Right","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"MightIsRight","itemClass":6,"sparkline":{"data":[0,0,5,40,0,10,50],"totalChange":50},"lowConfidenceSparkline":{"data":[0,0,5,40,0,10,50],"totalChange":50},"implicitModifiers":[],"explicitModifiers":[{"text":"{Trypanon}","optional":false}],"flavourText":"The mind had much to endure before the advent of thaumaturgy.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":85,"detailsId":"might-is-right","tradeInfo":[],"listingCount":3674},{"id":2475,"name":"Left to Fate","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"LeftToFate","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Map}\n{Map Tier:} {16}\n{Unidentified Corrupted}","optional":false}],"flavourText":"{Many strive for greatness,\nbut it is challenge, unforeseen,\nthat forges heroes.}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"left-to-fate","tradeInfo":[],"listingCount":4344},{"id":4874,"name":"The Insatiable","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TheInsatiable","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{The Harvest}\n{Corrupted}","optional":false}],"flavourText":"A lust for souls. The urge to kill just to satisfy its thirst. An unbearable burden that would make even the purest heart blacken over time.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":61,"detailsId":"the-insatiable","tradeInfo":[],"listingCount":1736},{"id":6926,"name":"The Master","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheMaster","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Bisco's Collar}","optional":false}],"flavourText":"In a world filled with chaos, he could always seek comfort in the hands of his master.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":97,"detailsId":"the-master","tradeInfo":[],"listingCount":3275},{"id":6929,"name":"The Fathomless Depths","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheFathomlessDepths","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Lightpoacher}","optional":false}],"flavourText":"Fall into endless night; a voyage into an ocean of oblivion.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-fathomless-depths","tradeInfo":[],"listingCount":2377},{"id":6939,"name":"The Dreamland","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheDreamland","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Poorjoy's Asylum}","optional":false}],"flavourText":"All dreams vanish when the dreamers wake.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":91,"detailsId":"the-dreamland","tradeInfo":[],"listingCount":3750},{"id":6951,"name":"The Undaunted","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheUndaunted","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Nemesis Item}\n{Corrupted}","optional":false}],"flavourText":"{\"Fate was always my nemesis... \nBut it didn't stop me then, and it won't stop me now.\"\n- Kjetilbrann, The Undaunted}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-undaunted","tradeInfo":[],"listingCount":4021},{"id":6956,"name":"The Darkest Dream","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheDarkestDream","itemClass":6,"sparkline":{"data":[0,6.67,0,33.33,6.67,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,6.67,0,33.33,6.67,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Severed in Sleep}\n{Corrupted}","optional":false}],"flavourText":"A dream from which you cannot awake is nothing other than a nightmare.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":73,"detailsId":"the-darkest-dream","tradeInfo":[],"listingCount":2435},{"id":7383,"name":"Boon of the First Ones","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"BoonoftheFirstOnes","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Bestiary Item}","optional":false}],"flavourText":"{Wreathed in the skin and bones\nof the beasts she slew, \nher gift came from what she lost: \nher humanity.}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":93,"detailsId":"boon-of-the-first-ones","tradeInfo":[],"listingCount":3237},{"id":7403,"name":"The Cacophony","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheCacophony","itemClass":6,"sparkline":{"data":[0,20,33.33,33.33,33.33,33.33,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,20,33.33,33.33,33.33,33.33,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{3x Deafening Essence}","optional":false}],"flavourText":"Nothing can be heard above the din or seen amongst the turmoil. The senses are shattered. All is left to fate.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-cacophony","tradeInfo":[],"listingCount":3504},{"id":18957,"name":"A Dab of Ink","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"ADabOfInk","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{The Poet's Pen}","optional":false}],"flavourText":"The Poet's blood is the Empire's ink.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":89,"detailsId":"a-dab-of-ink","tradeInfo":[],"listingCount":3129},{"id":20668,"name":"Arrogance of the Vaal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"ArroganceoftheVaal","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Item}\n {Two-Implicit}\n {Corrupted}","optional":false}],"flavourText":"Discovery can lead to beauty, or it can lead to ruin.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"arrogance-of-the-vaal","tradeInfo":[],"listingCount":3859},{"id":20777,"name":"The Journey","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TheJourney","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Harbinger's Orb}","optional":false}],"flavourText":"Oh the places you will go, the sights you will see, the things you will meet.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-journey","tradeInfo":[],"listingCount":3903},{"id":22350,"name":"Vile Power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"VilePower","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Doomfletch}","optional":false}],"flavourText":"{Dread and danger \nmakes the air feel thin. \nAbove, power slumbers, tempting fate. \nGreed and ambition \ndraws countless in, \nFor those who seek power \ncan never wait.}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":90,"detailsId":"vile-power","tradeInfo":[],"listingCount":3436},{"id":22510,"name":"More is Never Enough","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"MoreIsNeverEnough","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Gilded Scarab}","optional":false}],"flavourText":"Greed is a hunger that only grows as you feed it","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"more-is-never-enough","tradeInfo":[],"listingCount":4308},{"id":40034,"name":"The Tinkerer's Table","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheTinkerersTable","itemClass":6,"sparkline":{"data":[0,0,0,0,50,50,50],"totalChange":50},"lowConfidenceSparkline":{"data":[0,0,0,0,50,50,50],"totalChange":50},"implicitModifiers":[],"explicitModifiers":[{"text":"{5x Fossil}","optional":false}],"flavourText":"Trying to bring your vision to life is enough to drive you mad.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-tinkerers-table","tradeInfo":[],"listingCount":5445},{"id":44109,"name":"Triskaidekaphobia","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":13,"artFilename":"Triskaidekaphobia","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{{Map}}\n{{Map Tier:} {13}\n{Quality:} {+13%}\n{Delirium:} {100%}\n{Modifiers:} {8}\n{Corrupted}}","optional":false}],"flavourText":"The Mists of Madness prey on those who harbour the deepest of fears.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"triskaidekaphobia","tradeInfo":[],"listingCount":3724},{"id":44118,"name":"Unchained","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"Unchained","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Facebreaker}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"Mold the world with your bare hands. Be careful, for what is your doing might become your undoing.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":85,"detailsId":"unchained","tradeInfo":[],"listingCount":2959},{"id":54389,"name":"The Whiteout","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheWhiteout","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Cospri's Malice}","optional":false}],"flavourText":"{They thought winter had come early,\nthat snow blanketed the land,\nbut in truth, all their chickens\nhad come home to roost.}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":80,"detailsId":"the-whiteout","tradeInfo":[],"listingCount":2855},{"id":54445,"name":"Reckless Ambition","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"RecklessAmbition","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Omeyocan}","optional":false}],"flavourText":"Why settle when more is never enough.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":62,"detailsId":"reckless-ambition","tradeInfo":[],"listingCount":2440},{"id":60137,"name":"Sambodhi's Wisdom","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"SambodhisWisdom","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Armour}\n{Quality:} {+30%}","optional":false}],"flavourText":"{No blade conquers sin;\nguide a sinner to virtue,\nunveil their lost sight—\nyour eyes, too, see in\neveryone the inner child,\nno matter their might.}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"sambodhis-wisdom","tradeInfo":[],"listingCount":2953},{"id":67907,"name":"The Blessing of Moosh","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheBlessingOfMoosh","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Item}\n{Labyrinth Enchantment}","optional":false}],"flavourText":"While the Labyrinth traps have claimed countless adventurers, they were not designed with felines in mind.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-blessing-of-moosh","tradeInfo":[],"listingCount":3863},{"id":67916,"name":"Ambitious Obsession","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"AmbitiousObsession","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Skittering Delirium Orb}","optional":false}],"flavourText":"The most pathetic person in the world is someone who has sight, but no vision.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"ambitious-obsession","tradeInfo":[],"listingCount":3372},{"id":70938,"name":"Guardian's Challenge","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"GuardiansChallenge","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Shaper Guardian Map}","optional":false}],"flavourText":"To accept a challenge from the void is merely suicide for the unprepared.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"guardians-challenge","tradeInfo":[],"listingCount":4405},{"id":71061,"name":"Disdain","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"Disdain","itemClass":6,"sparkline":{"data":[0,0,0,0,0,50,50],"totalChange":50},"lowConfidenceSparkline":{"data":[0,0,0,0,0,50,50],"totalChange":50},"implicitModifiers":[],"explicitModifiers":[{"text":"{Delirium Orb}","optional":false}],"flavourText":"{No man sees all, but you'll see more than some see in a lifetime.}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"disdain","tradeInfo":[],"listingCount":5429},{"id":92939,"name":"The Tireless Extractor","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheTirelessExtractor","itemClass":6,"sparkline":{"data":[0,0,-10,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,-10,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{10x Oil}","optional":false}],"flavourText":"{\"I am not alone in this. I have God by my side! And... you help sometimes, I suppose.\"\n- Sister Cassia}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"the-tireless-extractor","tradeInfo":[],"listingCount":5707},{"id":93077,"name":"The Transformation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheTransformation","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Tainted Mythic Orb}","optional":false}],"flavourText":"Even the most beautiful of transformations can still have a dark side.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":96,"detailsId":"the-transformation","tradeInfo":[],"listingCount":3120},{"id":95721,"name":"From Bone to Ashes","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"FromBonesToAshes","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Ngamahu's Flame}\n{Two-Implicit}\n{Corrupted}","optional":false}],"flavourText":"For centuries, they stood vigil in secret over their sleeping goddess, even as contamination oozed out of the decadent Vaal empire.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":70,"detailsId":"from-bone-to-ashes","tradeInfo":[],"listingCount":2319},{"id":98281,"name":"Azure Rage","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"AzureRage","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Punishing Map}\n{Map Tier:} {16}","optional":false}],"flavourText":"{The mask hides his identity\nbut also makes it hard to read...}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"azure-rage","tradeInfo":[],"listingCount":3970},{"id":98289,"name":"Checkmate","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"Checkmate","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{76x Simulacrum Splinter}","optional":false}],"flavourText":"When victory is impossible, each of us plays only to delay the end.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":79,"detailsId":"checkmate","tradeInfo":[],"listingCount":2315},{"id":98314,"name":"Endless Night","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"EndlessNight","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Maloney's Mechanism}","optional":false}],"flavourText":"The sun shines not for me. I walk in darkness, never free. Time stopped when you both died in my arms.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":59,"detailsId":"endless-night","tradeInfo":[],"listingCount":2154},{"id":100491,"name":"The Return of the Rat","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TheReturnOfTheRat","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Tavukai}","optional":false}],"flavourText":"And he shall be heralded by the screams of the damned.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":66,"detailsId":"the-return-of-the-rat","tradeInfo":[],"listingCount":1664},{"id":100585,"name":"Ever-Changing","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"EverChanging","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,50],"totalChange":50},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,50],"totalChange":50},"implicitModifiers":[],"explicitModifiers":[{"text":"{10x Orb of Unmaking}","optional":false}],"flavourText":"The Atlas is our prison, and our only defence. She is our only hope, and our certain doom.","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"ever-changing","tradeInfo":[],"listingCount":5053},{"id":103518,"name":"Soul Quenched","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"SoulQuenched","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":" {Experimented Two-Handed Weapon}\n{Item Level:} {86}\n{Quality:} {+30%}","optional":false}],"flavourText":"{Weapons such as these require a darker kind of forge...}","chaosValue":3.00,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"soul-quenched","tradeInfo":[],"listingCount":3545},{"id":770,"name":"Lucky Connections","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"LuckyConnections","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,-4],"totalChange":-4},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,-4],"totalChange":-4},"implicitModifiers":[],"explicitModifiers":[{"text":"{20x Orb of Fusing}","optional":false}],"flavourText":"Luck is a fool's game, and I know plenty of rich fools.","chaosValue":2.88,"exaltedValue":0.17,"divineValue":0.01,"count":99,"detailsId":"lucky-connections","tradeInfo":[],"listingCount":5958},{"id":1560,"name":"The One With All","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheOneWithAll","itemClass":6,"sparkline":{"data":[0,0,0,0,50,40,40],"totalChange":40},"lowConfidenceSparkline":{"data":[0,0,0,0,50,40,40],"totalChange":40},"implicitModifiers":[],"explicitModifiers":[{"text":"{Le Heup of All}\n{Corrupted}","optional":false}],"flavourText":"{Embrace death to honour the lost,\nno fear in life no matter the cost. \nWith one of all we are, \nand all of one we trust, \nthroughout past, present and future... be just.}","chaosValue":2.80,"exaltedValue":0.16,"divineValue":0.01,"count":99,"detailsId":"the-one-with-all","tradeInfo":[],"listingCount":5261},{"id":468,"name":"Earth Drinker","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"EarthDrinker","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,30],"totalChange":30},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,30],"totalChange":30},"implicitModifiers":[],"explicitModifiers":[{"text":"{Granite Flask}","optional":false}],"flavourText":"Taste and grow strong. Drink too much and be buried.","chaosValue":2.60,"exaltedValue":0.15,"divineValue":0.01,"count":99,"detailsId":"earth-drinker","tradeInfo":[],"listingCount":4395},{"id":98288,"name":"Broken Truce","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"BrokenTruce","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,30],"totalChange":30},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,30],"totalChange":30},"implicitModifiers":[],"explicitModifiers":[{"text":"{Cold Iron Point}","optional":false}],"flavourText":"With a single act, years of peace have been shattered. An unknown assassin brings war upon us all.","chaosValue":2.60,"exaltedValue":0.15,"divineValue":0.01,"count":99,"detailsId":"broken-truce","tradeInfo":[],"listingCount":4420},{"id":1449,"name":"The Calling","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheCalling","itemClass":6,"sparkline":{"data":[0,0,0,0,0,1.5,28],"totalChange":28},"lowConfidenceSparkline":{"data":[0,0,0,0,0,1.5,28],"totalChange":28},"implicitModifiers":[],"explicitModifiers":[{"text":"{Beyond Item}","optional":false}],"flavourText":"{Blood flows not just through veins, but through worlds.}","chaosValue":2.56,"exaltedValue":0.15,"divineValue":0.01,"count":99,"detailsId":"the-calling","tradeInfo":[],"listingCount":5492},{"id":6953,"name":"The Witch","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheWitch","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,20],"totalChange":20},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,20],"totalChange":20},"implicitModifiers":[],"explicitModifiers":[{"text":"{Kiara's Determination}","optional":false}],"flavourText":"{A wanderer in the wild strives \nAgainst countless foes he survives \nA fool pursues a quest contrived \nBy the gift of the witch, alive.}","chaosValue":2.40,"exaltedValue":0.14,"divineValue":0.01,"count":99,"detailsId":"the-witch","tradeInfo":[],"listingCount":4251},{"id":1485,"name":"The Encroaching Darkness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheEncroachingDarkness","itemClass":6,"sparkline":{"data":[0,0,25,50,20.5,0,10],"totalChange":10},"lowConfidenceSparkline":{"data":[0,0,25,50,20.5,0,10],"totalChange":10},"implicitModifiers":[],"explicitModifiers":[{"text":"{Map}\n{Corrupted}","optional":false}],"flavourText":"No matter where your dreams take you, Nightmare follows close behind.","chaosValue":2.20,"exaltedValue":0.13,"divineValue":0.01,"count":99,"detailsId":"the-encroaching-darkness","tradeInfo":[],"listingCount":5775},{"id":2038,"name":"The Wretched","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheWretched","itemClass":6,"sparkline":{"data":[0,1.35,1.35,1.35,1.35,-15.54,-27.03],"totalChange":-27.03},"lowConfidenceSparkline":{"data":[0,1.35,1.35,1.35,1.35,-15.54,-27.03],"totalChange":-27.03},"implicitModifiers":[],"explicitModifiers":[{"text":"{Belt}","optional":false}],"flavourText":"Necromancers, believe me, are more terrifying than their thralls.","chaosValue":2.16,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-wretched","tradeInfo":[],"listingCount":5689},{"id":6901,"name":"Three Voices","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"ThreeVoices","itemClass":6,"sparkline":{"data":[0,66.67,11.67,66.67,119.17,109.17,67.5],"totalChange":67.5},"lowConfidenceSparkline":{"data":[0,66.67,11.67,66.67,119.17,109.17,67.5],"totalChange":67.5},"implicitModifiers":[],"explicitModifiers":[{"text":"{3x Essence}","optional":false}],"flavourText":"The village elders had a curious rule: If you hear three voices scream for aid, flee as fast as you can.","chaosValue":2.01,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"three-voices","tradeInfo":[],"listingCount":5948},{"id":170,"name":"Blind Venture","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"BlindVenture","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Ring}\n{Corrupted}","optional":false}],"flavourText":"\"It's risky not knowing where your wares come from. That's why I source my own.\"\n- Klayver, the Antiquarian","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"blind-venture","tradeInfo":[],"listingCount":5091},{"id":186,"name":"Boundless Realms","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"BoundlessRealms","itemClass":6,"sparkline":{"data":[0,-30.07,-30.07,-30.07,-30.07,-30.07,-30.07],"totalChange":-30.07},"lowConfidenceSparkline":{"data":[0,-30.07,-30.07,-30.07,-30.07,-30.07,-30.07],"totalChange":-30.07},"implicitModifiers":[],"explicitModifiers":[{"text":"{Map}","optional":false}],"flavourText":"Boundless is the distance between where we start and where we start again.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"boundless-realms","tradeInfo":[],"listingCount":5117},{"id":420,"name":"Destined to Crumble","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"DestinedtoCrumble","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{Body Armour}\n{Item Level:} {100}","optional":false}],"flavourText":"{\"Let us not forget the most important lesson the Vaal taught us:\nNothing is eternal.\"\n- Siosa Foaga, Imperial Scholar}","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"destined-to-crumble","tradeInfo":[],"listingCount":4756},{"id":422,"name":"Dialla's Subjugation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"DiallasSubjugation","itemClass":6,"sparkline":{"data":[0,0,-2.91,-2.91,-2.91,-2.91,-2.91],"totalChange":-2.91},"lowConfidenceSparkline":{"data":[0,0,-2.91,-2.91,-2.91,-2.91,-2.91],"totalChange":-2.91},"implicitModifiers":[],"explicitModifiers":[{"text":"{{Support Gem}\n{Quality:} {+23%}\n{Corrupted}}","optional":false}],"flavourText":"{A symbol of beauty and innocence\nThe gems corrupted her mind\nMalachai corrupted her gems\nAll but a glimmer of\ngreatness lost in madness}","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"diallas-subjugation","tradeInfo":[],"listingCount":4622},{"id":556,"name":"Gemcutter's Promise","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"GemcuttersPromise","itemClass":6,"sparkline":{"data":[0,-1.50,-17.00,-1.50,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,-1.50,-17.00,-1.50,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Gem}\n{Quality:} {+20%}","optional":false}],"flavourText":"{\"I swore to use my position to help the people. What good is power when it just accumulates on the already-powerful?\" - Erasmus, Imperial Gemcutter}","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"gemcutters-promise","tradeInfo":[],"listingCount":5209},{"id":568,"name":"Gift of the Gemling Queen","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"GiftOfTheGemlingQueen","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 20 Support Gem}","optional":false}],"flavourText":"Our Lady Dialla,\nas a symbol of our progress,\nshines greater than all the gems.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"gift-of-the-gemling-queen","tradeInfo":[],"listingCount":5209},{"id":588,"name":"Grave Knowledge","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"GraveKnowledge","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Summon Raging Spirit}\n{Quality:} {+20%}","optional":false}],"flavourText":"The dead tell me great insights. They've had nothing but time to sit and think.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"grave-knowledge","tradeInfo":[],"listingCount":5278},{"id":634,"name":"Hope","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"Hope","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Prismatic Ring}\n{Corrupted}","optional":false}],"flavourText":"{The others succumbed to madness and depravity, but Lori fought on. Alone in the darkness, she could still see the dull light of hope's distant dawn.}","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"hope","tradeInfo":[],"listingCount":4873},{"id":644,"name":"Hubris","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"Hubris","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Ring}","optional":false}],"flavourText":"\"This one? It is NOT for sale. You would sooner pry it from my lifeless hand.\"\n- Jonfé Darontos, Ringmaker","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"hubris","tradeInfo":[],"listingCount":5457},{"id":645,"name":"Humility","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"Humility","itemClass":6,"sparkline":{"data":[0,0,0,0,0,50,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,50,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Tabula Rasa}","optional":false}],"flavourText":"","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"humility","tradeInfo":[],"listingCount":7076},{"id":769,"name":"Loyalty","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"Loyalty","itemClass":6,"sparkline":{"data":[0,-1.96,-1.96,-1.96,-1.96,-1.96,96.08],"totalChange":96.08},"lowConfidenceSparkline":{"data":[0,-1.96,-1.96,-1.96,-1.96,-1.96,96.08],"totalChange":96.08},"implicitModifiers":[],"explicitModifiers":[{"text":"{3x Orb of Fusing}","optional":false}],"flavourText":"Bound by fate,\ninseparable by choice.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"loyalty","tradeInfo":[],"listingCount":5734},{"id":1015,"name":"Rats","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"Rats","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Rat's Nest}","optional":false}],"flavourText":"Whoever said 'more is always better' has obviously never met a rat.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"rats","tradeInfo":[],"listingCount":4144},{"id":1412,"name":"The Aesthete","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheAesthete","itemClass":6,"sparkline":{"data":[0,0,0,55,40,0,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,55,40,0,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{Shavronne Item}","optional":false}],"flavourText":"\"Some see our mortal flesh as a limitation. I see it as an opportunity for vast, miraculous improvements.\"\n- Shavronne of Umbra","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-aesthete","tradeInfo":[],"listingCount":6677},{"id":1425,"name":"The Battle Born","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheBattleBorn","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Axe}","optional":false}],"flavourText":"\"No man can best me, no demon can fell me. For I vanquish all with my axe!\"","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-battle-born","tradeInfo":[],"listingCount":5369},{"id":1439,"name":"The Body","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheBody","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Body Armour}","optional":false}],"flavourText":"They say it is the head that leads, but all must flow through the body at some point.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-body","tradeInfo":[],"listingCount":4751},{"id":1453,"name":"The Catalyst","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TheCatalyst","itemClass":6,"sparkline":{"data":[0,23.89,10.62,32.74,25.66,76.99,76.99],"totalChange":76.99},"lowConfidenceSparkline":{"data":[0,23.89,10.62,32.74,25.66,76.99,76.99],"totalChange":76.99},"implicitModifiers":[],"explicitModifiers":[{"text":"{Vaal Orb}","optional":false}],"flavourText":"Simple actions can lead the world to an early grave.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-catalyst","tradeInfo":[],"listingCount":5149},{"id":1458,"name":"The Chains that Bind","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":11,"artFilename":"TheChainsThatBind","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Six-Link Body Armour}","optional":false}],"flavourText":"Scarier than any criminal is an innocent man in chains, for when he breaks free, his revenge will be justified.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-chains-that-bind","tradeInfo":[],"listingCount":7173},{"id":1475,"name":"The Demoness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheDemoness","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Death's Hand}","optional":false}],"flavourText":"Wherever she went, death was sure to follow.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-demoness","tradeInfo":[],"listingCount":3626},{"id":1477,"name":"The Doppelganger","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":2,"artFilename":"TheDoppelganger","itemClass":6,"sparkline":{"data":[0,0,0,0,0,60,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,0,0,60,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{Mirror Arrow}\n{Quality:} {+20%}","optional":false}],"flavourText":"Upon seeing her face, I am terrified—the moon shows me my own form!","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-doppelganger","tradeInfo":[],"listingCount":5354},{"id":1478,"name":"The Dragon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheDragon","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Coruscating Elixir}","optional":false}],"flavourText":"{Scaly beast of the skies,\nwatching with his golden eyes.\nShadow that blocks out the sun,\nit's too late for you to run.}","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-dragon","tradeInfo":[],"listingCount":5313},{"id":1486,"name":"The Endurance","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheEndurance","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Vivid Crimson Jewel}","optional":false}],"flavourText":"{Crimson rubies, drops of vigour,\nflowing through my veins,\nflesh like coal, try to crush me,\ndiamond is what remains.}","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-endurance","tradeInfo":[],"listingCount":5462},{"id":1498,"name":"The Fletcher","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheFletcher","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Drillneck}\n{Corrupted}","optional":false}],"flavourText":"Let these fine arrows pack a punch.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-fletcher","tradeInfo":[],"listingCount":4980},{"id":1508,"name":"The Gemcutter","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TheGemcutter","itemClass":6,"sparkline":{"data":[0,5,2.5,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,5,2.5,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Gemcutter's Prism}","optional":false}],"flavourText":"In the hands of a master craftsman, a worthless pebble can adorn the crown of a king.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-gemcutter","tradeInfo":[],"listingCount":5899},{"id":1524,"name":"The Hoarder","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":12,"artFilename":"TheHoarder","itemClass":6,"sparkline":{"data":[0,-25.37,-25.37,-25.37,-25.37,-25.37,-25.37],"totalChange":-25.37},"lowConfidenceSparkline":{"data":[0,-25.37,-25.37,-25.37,-25.37,-25.37,-25.37],"totalChange":-25.37},"implicitModifiers":[],"explicitModifiers":[{"text":"{Exalted Orb}","optional":false}],"flavourText":"\"More! I want more!\" - Faendris, the Insatiable","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-hoarder","tradeInfo":[],"listingCount":5432},{"id":1531,"name":"The Inoculated","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheInoculated","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Seraphim's Armour}","optional":false}],"flavourText":"Chaos spread, wreaking havoc and death. They said none would be spared, and yet here I stand.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-inoculated","tradeInfo":[],"listingCount":3273},{"id":1538,"name":"The King's Blade","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheKingsBlade","itemClass":6,"sparkline":{"data":[0,0,0,0,5,55,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,0,5,55,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{{Bloodthirsty Eternal Sword}\n{Item Level:} {66}}","optional":false}],"flavourText":"{\"To know for what you fight. To get up again when you've been struck down. To outmanoeuvre someone faster, trick someone smarter, crush someone stronger. That's what it takes to claim the crown.\"\n- Daresso, the King of Swords}","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-kings-blade","tradeInfo":[],"listingCount":5054},{"id":1544,"name":"The Lich","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":12,"artFilename":"TheLich","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Midnight Bargain}\n{Corrupted}","optional":false}],"flavourText":"When the dead raise and master their own, the land is truly lost.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":83,"detailsId":"the-lich","tradeInfo":[],"listingCount":3100},{"id":1550,"name":"The Lunaris Priestess","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheLunarisPriestess","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Sire of Shards}","optional":false}],"flavourText":"Embrace the Light,\nAwait the Morrow,\nNo more Spite,\nAnd no more Sorrow.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-lunaris-priestess","tradeInfo":[],"listingCount":3386},{"id":1553,"name":"The Metalsmith's Gift","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheMetalsmithsGift","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{Prismatic Ring}","optional":false}],"flavourText":"{A month's work, a year's wages, a foolish shortcut through a Rhoa's nest, and a grieving bride-to-be, who never received her betrothed's great gift.}","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-metalsmiths-gift","tradeInfo":[],"listingCount":4792},{"id":1565,"name":"The Penitent","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"ThePenitent","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Unset Ring}","optional":false}],"flavourText":"{First, I gave my wealth, and we went hungry. Next, I gave my land, and we were homeless. Then, I gave my family, and I was alone. Last, I gave my eyes, and all I could dream was mine.}","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-penitent","tradeInfo":[],"listingCount":5325},{"id":1591,"name":"The Scarred Meadow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"TheScarredMeadow","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Wake of Destruction}","optional":false}],"flavourText":"The earth offers nourishment, growth and healing. Unless, of course, the sky has other plans.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-scarred-meadow","tradeInfo":[],"listingCount":4446},{"id":1593,"name":"The Scholar","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TheScholar","itemClass":6,"sparkline":{"data":[0,0,0,0,89,100,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,0,89,100,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{40x Scroll of Wisdom}","optional":false}],"flavourText":"It is with the smallest of words that we find the largest of truths.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-scholar","tradeInfo":[],"listingCount":5479},{"id":1606,"name":"The Sigil","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TheSigil","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Unassailable Amulet}","optional":false}],"flavourText":"{Three men travel\nthrough the gate;\nthey carry a protective ward.\nA faction conspires\nagainst their fate,\nbut magic unravels the sword.}","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-sigil","tradeInfo":[],"listingCount":3051},{"id":1619,"name":"The Stormcaller","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheStormcaller","itemClass":6,"sparkline":{"data":[0,0,0,100,100,100,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,100,100,100,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{Agnerod Staff}","optional":false}],"flavourText":"If you beckon the\nLord of Lightning,\ndo not be surprised\nwhen you are struck.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-stormcaller","tradeInfo":[],"listingCount":5573},{"id":1622,"name":"The Sun","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheSun","itemClass":6,"sparkline":{"data":[0,0,0,0,0,70,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,0,0,70,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{Rise of the Phoenix}","optional":false}],"flavourText":"{Each night, the light dies, and each morning she is born anew, embracing the land in her golden wings.}","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":93,"detailsId":"the-sun","tradeInfo":[],"listingCount":3846},{"id":1624,"name":"The Surgeon","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheSurgeon","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Surgeon's Flask}","optional":false}],"flavourText":"\"He might be lacking in vision, but his virtuosity is undeniable.\"\n- Malachai, on Maligaro","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":97,"detailsId":"the-surgeon","tradeInfo":[],"listingCount":2907},{"id":1636,"name":"The Tower","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheTower","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Staff}","optional":false}],"flavourText":"A tower built of the strongest stone is not eternal; a towering intellect is not enlightened.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-tower","tradeInfo":[],"listingCount":5678},{"id":1657,"name":"The Visionary","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheVisionary","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Lioneye's Vision}","optional":false}],"flavourText":"Lioneye looked to the heights of glorious victory. And thus he missed the defeat right under his nose.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-visionary","tradeInfo":[],"listingCount":3549},{"id":1671,"name":"The Web","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"TheWeb","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Weapon of Crafting}","optional":false}],"flavourText":"{A weapon, a shelter, a prison.\nThe web's purpose changes\nwith the spider's needs.\nA lesson we should\ntake to heart.}","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-web","tradeInfo":[],"listingCount":3272},{"id":1676,"name":"The Wolf","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheWolf","itemClass":6,"sparkline":{"data":[0,0,-47.50,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,-47.50,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Rigwald Item}","optional":false}],"flavourText":"{The largest beasts cannot be overpowered. The Greatwolf teaches us to use guile, not strength, to probe for the soft flesh and strike deep.}","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-wolf","tradeInfo":[],"listingCount":5798},{"id":1691,"name":"Three Faces in the Dark","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"ThreeFacesInTheDark","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{3x Chaos Orb}","optional":false}],"flavourText":"For every threat you spy in the shadows, there are two others you don't.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"three-faces-in-the-dark","tradeInfo":[],"listingCount":6183},{"id":1696,"name":"Time-Lost Relic","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":10,"artFilename":"TimeLostRelic","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{League-Specific Item}","optional":false}],"flavourText":"Time cannot wash away that which cannot be forgotten.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"time-lost-relic","tradeInfo":[],"listingCount":6503},{"id":1803,"name":"Volatile Power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"VolatilePower","itemClass":6,"sparkline":{"data":[0,0,0,0,0,63,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,0,0,63,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{Vaal Gem}\n{Quality:} {+20%}\n{Corrupted}","optional":false}],"flavourText":"Unlimited power is apt to corrupt the minds of those who possess it.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"volatile-power","tradeInfo":[],"listingCount":6530},{"id":2034,"name":"Mitts","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"Mitts","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Gloves}","optional":false}],"flavourText":"Those whose hands are their livelihood know the importance of keeping them safe and warm.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"mitts","tradeInfo":[],"listingCount":5582},{"id":2046,"name":"The Standoff","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"TheStandOff","itemClass":6,"sparkline":{"data":[0,0,0,0,0,100,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,0,0,100,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{Rustic Sash}","optional":false}],"flavourText":"Sometimes your greatest enemy is the only one keeping you breathing.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-standoff","tradeInfo":[],"listingCount":5366},{"id":2087,"name":"Atziri's Arsenal","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"AtzirisArmory","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Weapon}\n{Corrupted}","optional":false}],"flavourText":"In the prison of all sins, will you grasp godhood or sorrow? Only hope lies under the shadows.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"atziris-arsenal","tradeInfo":[],"listingCount":3975},{"id":2091,"name":"Struck by Lightning","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":3,"artFilename":"StruckbyLightning","itemClass":6,"sparkline":{"data":[0,-7.22,-7.22,-7.22,11.11,11.11,11.11],"totalChange":11.11},"lowConfidenceSparkline":{"data":[0,-7.22,-7.22,-7.22,11.11,11.11,11.11],"totalChange":11.11},"implicitModifiers":[],"explicitModifiers":[{"text":"{Electrocuting Jewellery}\n{Item Level:} {76}","optional":false}],"flavourText":"'Lightning never strikes the same place twice'\nis really just wishful thinking.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":92,"detailsId":"struck-by-lightning","tradeInfo":[],"listingCount":3113},{"id":2288,"name":"The Blazing Fire","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheBlazingFire","itemClass":6,"sparkline":{"data":[0,0,0,0,0,5,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,0,0,5,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{Chin Sol}","optional":false}],"flavourText":"Lethal, untouchable, keen, aflame. Just what I was looking for.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-blazing-fire","tradeInfo":[],"listingCount":4371},{"id":2291,"name":"The Ruthless Ceinture","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"TheRuthlessCeinture","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Meginord's Girdle}\n{Corrupted}","optional":false}],"flavourText":"In combat, a warrior must first be resourceful,\nand second, decisive.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":85,"detailsId":"the-ruthless-ceinture","tradeInfo":[],"listingCount":2680},{"id":4887,"name":"Forbidden Power","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"ForbiddenPower","itemClass":6,"sparkline":{"data":[0,10,25,30,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,10,25,30,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Balefire}\n{Corrupted}","optional":false}],"flavourText":"Some things should not be used. Some power is too great a risk.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":82,"detailsId":"forbidden-power","tradeInfo":[],"listingCount":2404},{"id":6948,"name":"The Admirer","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"TheAdmirer","itemClass":6,"sparkline":{"data":[0,0,0,0,0,30,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,30,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Atziri Item}","optional":false}],"flavourText":"Lucian lost himself in ancient scrolls and found in those scrolls a love whose power bridged a millennium.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-admirer","tradeInfo":[],"listingCount":3956},{"id":18952,"name":"The Master Artisan","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheMasterArtisan","itemClass":6,"sparkline":{"data":[0,-9.09,-9.09,-9.09,-9.09,-9.09,-9.09],"totalChange":-9.09},"lowConfidenceSparkline":{"data":[0,-9.09,-9.09,-9.09,-9.09,-9.09,-9.09],"totalChange":-9.09},"implicitModifiers":[],"explicitModifiers":[{"text":"{20x Quality Currency}","optional":false}],"flavourText":"Perfection is the standard, excellence will be handled on a case by case basis.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-master-artisan","tradeInfo":[],"listingCount":6073},{"id":20734,"name":"Alone in the Darkness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"AloneintheDarkness","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Delve Item}","optional":false}],"flavourText":"\"Sometimes, the most beautiful treasures...are the ones you cannot have.\" \n- Beryl, Survivor from the Azurite Mines","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"alone-in-the-darkness","tradeInfo":[],"listingCount":5307},{"id":21498,"name":"Vanity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"Vanity","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Tabula Rasa}\n{Corrupted}","optional":false}],"flavourText":"","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"vanity","tradeInfo":[],"listingCount":5808},{"id":21538,"name":"Thirst for Knowledge","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"ThirstForKnowledge","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Gluttony}","optional":false}],"flavourText":"{A ravenous mind can readily take in ideas from any source. \nFortunately for the scholars, he has already learned about sustainability.}","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"thirst-for-knowledge","tradeInfo":[],"listingCount":3589},{"id":22436,"name":"The Mountain","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheMountain","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Jewel of Potency}","optional":false}],"flavourText":"{Charmed by beautiful stones \nConsumed with the \npursuit of perfection \nEver deeper into the waiting dark}","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-mountain","tradeInfo":[],"listingCount":5129},{"id":22439,"name":"The Skeleton","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheSkeleton","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Level 1 Summon Skeletons}\n{Quality:} {+23%}\n{Corrupted}","optional":false}],"flavourText":"They stand among us, and within us.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-skeleton","tradeInfo":[],"listingCount":5389},{"id":44110,"name":"The Journalist","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":10,"artFilename":"TheJournalist","itemClass":6,"sparkline":{"data":[0,0,0,0,0,67,100],"totalChange":100},"lowConfidenceSparkline":{"data":[0,0,0,0,0,67,100],"totalChange":100},"implicitModifiers":[],"explicitModifiers":[{"text":"{Helmet}\n{Double-Veiled Item}","optional":false}],"flavourText":"A good spy doesn't forget she's gone undercover.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-journalist","tradeInfo":[],"listingCount":4367},{"id":44126,"name":"The Cache","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheCache","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Jewellery}","optional":false}],"flavourText":"{Vintage or crafted, Glittering and shiny\nDusty or glittering, huge or tiny\nSecured within a chest \nor unearthed from your mining\nFind jewellery everywhere, \nno need for divining!\nSo why is it so hard \nto figure out which one to wear?\nThis one makes me stronger, \nbut does it match my hair?}","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-cache","tradeInfo":[],"listingCount":5624},{"id":46251,"name":"Cursed Words","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":13,"artFilename":"CursedWords","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Maw of Mischief}","optional":false}],"flavourText":"If you look hard enough for hidden meaning, you will find it.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"cursed-words","tradeInfo":[],"listingCount":4632},{"id":60060,"name":"The Adventuring Spirit","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"TheAdventuringSpirit","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Victario's Influence}","optional":false}],"flavourText":"Dost thou lead my men to victory, my child?","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-adventuring-spirit","tradeInfo":[],"listingCount":4761},{"id":100480,"name":"Alivia's Grace","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":6,"artFilename":"AliviasGrace","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Queen of the Forest}","optional":false}],"flavourText":"Her innocence and grace were enough to tame even the wildest of beasts.","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":95,"detailsId":"alivias-grace","tradeInfo":[],"listingCount":2744},{"id":100534,"name":"The Finishing Touch","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":2,"artFilename":"TheFinishingTouch","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{1x Fertile Catalyst}","optional":false}],"flavourText":"{A little extra flair never hurts.}","chaosValue":2.00,"exaltedValue":0.12,"divineValue":0.01,"count":99,"detailsId":"the-finishing-touch","tradeInfo":[],"listingCount":3838},{"id":2317,"name":"The Realm","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheRealm","itemClass":6,"sparkline":{"data":[0,0,0,15,54,95,92],"totalChange":92},"lowConfidenceSparkline":{"data":[0,0,0,15,54,95,92],"totalChange":92},"implicitModifiers":[],"explicitModifiers":[{"text":"{Portal}\n{Quality:} {+1-20%}","optional":false}],"flavourText":"If you wish to rush into strange places, be prepared to face strange things.","chaosValue":1.92,"exaltedValue":0.11,"divineValue":0.01,"count":99,"detailsId":"the-realm","tradeInfo":[],"listingCount":5336},{"id":482,"name":"Emperor's Luck","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"EmperorsLuck","itemClass":6,"sparkline":{"data":[0,-13.04,-13.04,-13.04,-13.04,-13.04,35.65],"totalChange":35.65},"lowConfidenceSparkline":{"data":[0,-13.04,-13.04,-13.04,-13.04,-13.04,35.65],"totalChange":35.65},"implicitModifiers":[],"explicitModifiers":[{"text":"{5x Currency}","optional":false}],"flavourText":"The house always wins.","chaosValue":1.56,"exaltedValue":0.09,"divineValue":0.01,"count":99,"detailsId":"emperors-luck","tradeInfo":[],"listingCount":6949},{"id":21539,"name":"Imperial Legacy","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":22,"artFilename":"ImperialLegacy","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,33],"totalChange":33},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,33],"totalChange":33},"implicitModifiers":[],"explicitModifiers":[{"text":"{Six-Link Imperial Bow}\n{Item Level:} {100}","optional":false}],"flavourText":"A life lost, A legacy born.","chaosValue":1.33,"exaltedValue":0.08,"divineValue":0.01,"count":99,"detailsId":"imperial-legacy","tradeInfo":[],"listingCount":6507},{"id":111,"name":"Assassin's Favour","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"AssassinsFavor","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Dagger}","optional":false}],"flavourText":"By the time their eyes meet, \nthe dark deal has long since been made, \nand his fate long since sealed.","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"assassins-favour","tradeInfo":[],"listingCount":6632},{"id":428,"name":"Doedre's Madness","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"DoedresMadness","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Doedre Item}","optional":false}],"flavourText":"\"Hold your tongue before I claim it.\" - Doedre Darktongue","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"doedres-madness","tradeInfo":[],"listingCount":6844},{"id":572,"name":"Glimmer of Hope","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"GlimmerOfHope","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Gold Ring}","optional":false}],"flavourText":"When you dwell in total darkness, even the faintest light may guide you out.","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"glimmer-of-hope","tradeInfo":[],"listingCount":6248},{"id":618,"name":"Her Mask","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"HerMask","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Sacrifice Fragment}","optional":false}],"flavourText":"To her beauty you submit,\nlest your neck the great Queen slit.","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"her-mask","tradeInfo":[],"listingCount":5790},{"id":648,"name":"Hunter's Resolve","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"HuntersResolve","itemClass":6,"sparkline":{"data":[0,-38.27,-38.27,11.11,-38.27,-38.27,-38.27],"totalChange":-38.27},"lowConfidenceSparkline":{"data":[0,-38.27,-38.27,11.11,-38.27,-38.27,-38.27],"totalChange":-38.27},"implicitModifiers":[],"explicitModifiers":[{"text":"{Bow}","optional":false}],"flavourText":"Primed, curved and sleek.\nDecisive and final.\nFor malice and righteousness.\nThere's but one solution.","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"hunters-resolve","tradeInfo":[],"listingCount":6132},{"id":686,"name":"Jack in the Box","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"JackInTheBox","itemClass":6,"sparkline":{"data":[0,0,0,20,20,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,20,20,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Item}","optional":false}],"flavourText":"Turn the crank, \nclose your eyes, \nand pray to the gods \nfor a pleasant surprise.","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"jack-in-the-box","tradeInfo":[],"listingCount":5484},{"id":735,"name":"Lantador's Lost Love","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":7,"artFilename":"LantadorsLostLove","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Two-Stone Ring}","optional":false}],"flavourText":"{They fought the storm together as one, \nUntil the longest of days was done. \nTheir love grew stronger\nwith every breath, \nUntil it was broken apart in death.}","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"lantadors-lost-love","tradeInfo":[],"listingCount":4695},{"id":982,"name":"Prosperity","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":10,"artFilename":"Prosperity","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Perandus' Gold Ring}","optional":false}],"flavourText":"Accumulating wealth has its own costs.","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"prosperity","tradeInfo":[],"listingCount":4210},{"id":1006,"name":"Rain of Chaos","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":8,"artFilename":"RainOfChaos","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Chaos Orb}","optional":false}],"flavourText":"{Fire filled the sky that night \nChaos reigned \nWhere the shards fell \nAll was destroyed \n-Jozen Kasigi, retelling an urban legend of the Cataclysm}","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"rain-of-chaos","tradeInfo":[],"listingCount":6693},{"id":1450,"name":"The Carrion Crow","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":4,"artFilename":"TheCarrionCrow","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Life Armour}","optional":false}],"flavourText":"From death, life. \nFrom life, death. \nThe wheel turns, \nand the corbies wheel overhead.","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"the-carrion-crow","tradeInfo":[],"listingCount":4450},{"id":1499,"name":"The Flora's Gift","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheFlorasGift","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Five-Link Staff}\n{Item Level:} {66}","optional":false}],"flavourText":"Sturdy and strong,\ngrown from the stream.\nThe Flora that live here,\nA combatant's dream.","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"the-floras-gift","tradeInfo":[],"listingCount":5911},{"id":1507,"name":"The Gambler","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheGambler","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Divination Card}","optional":false}],"flavourText":"\"I don't believe in karma. If it were real, I would never win.\"","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"the-gambler","tradeInfo":[],"listingCount":6484},{"id":1522,"name":"The Harvester","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":11,"artFilename":"TheHarvester","itemClass":6,"sparkline":{"data":[0,-13.04,0,-7.83,-13.04,-13.04,-13.04],"totalChange":-13.04},"lowConfidenceSparkline":{"data":[0,-13.04,0,-7.83,-13.04,-13.04,-13.04],"totalChange":-13.04},"implicitModifiers":[],"explicitModifiers":[{"text":"{The Harvest}","optional":false}],"flavourText":"{Taste not of their\nforbidden fruit.\nTheirs is a harvest of\nthe darkest kind,\ntwisted, rotten and\ndamned for eternity.}","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"the-harvester","tradeInfo":[],"listingCount":4502},{"id":1523,"name":"The Hermit","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":9,"artFilename":"TheHermit","itemClass":6,"sparkline":{"data":[0,4,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,4,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Lifesprig}","optional":false}],"flavourText":"The hermit's only friend is the greenery he can find.","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"the-hermit","tradeInfo":[],"listingCount":4322},{"id":1549,"name":"The Lover","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":2,"artFilename":"TheLover","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Jewellery}\n{Item Level:} {79}","optional":false}],"flavourText":"{\"I wanted to give you three things. I've given you my eternal love. I've sung to you my most beautiful song. I'd have given you the moon last, but it couldn't be found. I hope you'll accept this instead.\"}","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"the-lover","tradeInfo":[],"listingCount":5954},{"id":2039,"name":"Lingering Remnants","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":16,"artFilename":"LingeringRemnants","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Vaal Temple Map}\n{Item Level:} {83}\n{Corrupted}","optional":false}],"flavourText":"Never dying, yet not living,\nEndlessly they wander\nbeneath the harvest moon.","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"lingering-remnants","tradeInfo":[],"listingCount":7047},{"id":2088,"name":"The Opulent","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"TheOpulecent","itemClass":6,"sparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"lowConfidenceSparkline":{"data":[0,0,0,0,0,0,0],"totalChange":0},"implicitModifiers":[],"explicitModifiers":[{"text":"{Ring}\n{Item Level:} {100}","optional":false}],"flavourText":"Wealth can, in fact, buy happiness.","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"the-opulent","tradeInfo":[],"listingCount":4162},{"id":20762,"name":"Dark Temptation","icon":"https://web.poecdn.com/gen/image/WzI1LDE0LHsiZiI6IjJESXRlbXMvRGl2aW5hdGlvbi9JbnZlbnRvcnlJY29uIiwidyI6MSwiaCI6MSwic2NhbGUiOjF9XQ/f34bf8cbb5/InventoryIcon.png","stackSize":5,"artFilename":"DarkTemptation","itemClass":6,"sparkline":{"data":[0,-30.00,-50.00,-50.00,-50.00,-50.00,-50],"totalChange":-50},"lowConfidenceSparkline":{"data":[0,-30.00,-50.00,-50.00,-50.00,-50.00,-50],"totalChange":-50},"implicitModifiers":[],"explicitModifiers":[{"text":"{Obliteration}","optional":false}],"flavourText":"\"Only a fool looks to the occult for power and expects to be spared from its wrath.\" \n- Voll, Emperor of Purity","chaosValue":1.00,"exaltedValue":0.06,"divineValue":0.00,"count":99,"detailsId":"dark-temptation","tradeInfo":[],"listingCount":5919}]} \ No newline at end of file diff --git a/packages/app/src/command.ts b/packages/app/src/command.ts index 894ed094..d85b57a5 100644 --- a/packages/app/src/command.ts +++ b/packages/app/src/command.ts @@ -15,14 +15,16 @@ export interface Commands { } const { format } = new Intl.NumberFormat(); + +const debug = false; export const command = async ( name: CommandName, ...args: Parameters ): Promise> => { - if (import.meta.env.DEV) { + if (debug) { const t0 = performance.now(); const res = (await invoke(name, ...args)) as ReturnType; - // console.log(`${name}: ${format(performance.now() - t0)}ms`); + console.log(`${name}: ${format(performance.now() - t0)}ms`); return res; } else return invoke(name, ...args) as Promise>; }; diff --git a/packages/app/src/event.ts b/packages/app/src/event.ts new file mode 100644 index 00000000..333d7798 --- /dev/null +++ b/packages/app/src/event.ts @@ -0,0 +1,21 @@ +import { EventCallback, listen } from '@tauri-apps/api/event'; +import { ToastVariant } from './toast'; + +export interface RustEvents { + 'auth-url': { + type: 'auth-url'; + url: string; + }; + toast: { + type: 'toast'; + variant: ToastVariant; + message: string; + }; +} + +export const addRustListener = ( + name: EventName, + handler: EventCallback +) => { + return listen(name, handler); +}; diff --git a/packages/app/src/main.ts b/packages/app/src/main.ts index 278d1aef..171a4d6d 100644 --- a/packages/app/src/main.ts +++ b/packages/app/src/main.ts @@ -3,8 +3,32 @@ import './style.css'; import App from './App.vue'; import { createPinia } from 'pinia'; +import '@shoelace-style/shoelace/dist/themes/dark.css'; +import SlAlrt from '@shoelace-style/shoelace/dist/components/alert/alert.component.js'; +import SlButton from '@shoelace-style/shoelace/dist/components/button/button.component.js'; +import SlIcon from '@shoelace-style/shoelace/dist/components/icon/icon.component.js'; +import { addRustListener } from './event'; +import { toast } from './toast'; + +SlAlrt.define('sl-alert'); +SlButton.define('sl-button'); +SlIcon.define('sl-icon'); + const pinia = createPinia(); const app = createApp(App); app.use(pinia); app.mount('#app'); + +app.config.errorHandler = err => { + console.log('from Vue error handler', err); + if (typeof err === 'string') { + toast('danger', err); + } else if (err instanceof Error) { + toast('danger', err.message); + } +}; + +addRustListener('toast', e => { + toast(e.payload.variant, e.payload.message); +}); diff --git a/packages/app/src/stores/auth.ts b/packages/app/src/stores/auth.ts index 148d0c4e..b7dc239e 100644 --- a/packages/app/src/stores/auth.ts +++ b/packages/app/src/stores/auth.ts @@ -1,7 +1,7 @@ import { defineStore } from 'pinia'; import { command } from '../command'; import { ref, watch, Ref, computed } from 'vue'; -import { listen } from '@tauri-apps/api/event'; +import { addRustListener } from '../event'; const TEN_HOURS_AS_MILLIS = 10 * 3600 * 1000; const EXPIRES_IN_MILLIS = TEN_HOURS_AS_MILLIS; @@ -129,10 +129,9 @@ export const useAuthStore = defineStore('auth', { } this.loggingIn = true; - const unlisten = await listen('auth-url', e => { - if (typeof e.payload === 'string') { - this.auth_url = e.payload; - } + + const unlisten = await addRustListener('auth-url', e => { + this.auth_url = e.payload.url; }); try { diff --git a/packages/app/src/toast.ts b/packages/app/src/toast.ts new file mode 100644 index 00000000..cd67990d --- /dev/null +++ b/packages/app/src/toast.ts @@ -0,0 +1,28 @@ +export type ToastVariant = 'info' | 'success' | 'neutral' | 'warning' | 'danger'; + +export const toast = (variant: ToastVariant, message: string) => { + const iconVariantRecord: Record = { + info: 'info-circle', + success: 'check2-circle', + neutral: 'gear', + warning: 'exclamation-triangle', + danger: 'exclamation-octagon', + }; + const iconName = iconVariantRecord[variant]; + const duration = variant === 'warning' || variant === 'danger' ? undefined : 5_000; + + const variantProp = variant === 'info' ? 'primary' : variant; + const alert = Object.assign(document.createElement('sl-alert'), { + closable: true, + duration, + variant: variantProp, + }); + + const icon = Object.assign(document.createElement('sl-icon'), { + name: iconName, + slot: 'icon', + }); + + alert.append(icon, message); + alert.toast(); +}; diff --git a/packages/app/vite.config.ts b/packages/app/vite.config.ts index 1340b359..fc0f0ab1 100644 --- a/packages/app/vite.config.ts +++ b/packages/app/vite.config.ts @@ -1,6 +1,7 @@ import { defineConfig } from 'vite'; import vue from '@vitejs/plugin-vue'; import VueDevTools from 'vite-plugin-vue-devtools'; +import { viteStaticCopy } from 'vite-plugin-static-copy'; // https://vitejs.dev/config/ export default defineConfig({ @@ -12,11 +13,35 @@ export default defineConfig({ template: { compilerOptions: { isCustomElement(tag: string) { - return tag.startsWith('wc'); + return tag.startsWith('wc') || tag.startsWith('sl'); }, }, }, }), VueDevTools(), + viteStaticCopy({ + targets: [ + { + src: 'node_modules/@shoelace-style/shoelace/dist/assets/icons/info-circle.svg', + dest: 'assets/icons', + }, + { + src: 'node_modules/@shoelace-style/shoelace/dist/assets/icons/check2-circle.svg', + dest: 'assets/icons', + }, + { + src: 'node_modules/@shoelace-style/shoelace/dist/assets/icons/gear.svg', + dest: 'assets/icons', + }, + { + src: 'node_modules/@shoelace-style/shoelace/dist/assets/icons/exclamation-triangle.svg', + dest: 'assets/icons', + }, + { + src: 'node_modules/@shoelace-style/shoelace/dist/assets/icons/exclamation-octagon.svg', + dest: 'assets/icons', + }, + ], + }), ], }); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 508b1c56..3a3daf7e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -23,6 +23,9 @@ importers: '@formkit/auto-animate': specifier: 1.0.0-beta.6 version: 1.0.0-beta.6 + '@shoelace-style/shoelace': + specifier: ^2.6.0 + version: 2.6.0 '@tauri-apps/api': specifier: ^1.3.0 version: 1.3.0 @@ -36,9 +39,6 @@ importers: specifier: ^3.3.4 version: 3.3.4 devDependencies: - '@histoire/plugin-vue': - specifier: ^0.16.1 - version: 0.16.1(histoire@0.16.1)(vite@4.3.9)(vue@3.3.4) '@tauri-apps/cli': specifier: ^1.3.1 version: 1.3.1 @@ -51,6 +51,9 @@ importers: vite: specifier: ^4.3.9 version: 4.3.9 + vite-plugin-static-copy: + specifier: ^0.17.0 + version: 0.17.0(vite@4.3.9) vite-plugin-vue-devtools: specifier: ^0.0.22 version: 0.0.22(vite@4.3.9)(vue@3.3.4) @@ -140,11 +143,6 @@ packages: typical: 7.1.1 dev: true - /@akryum/tinypool@0.3.1: - resolution: {integrity: sha512-nznEC1ZA/m3hQDEnrGQ4c5gkaa9pcaVnw4LFJyzBAaR7E3nfiAPEHS3otnSafpZouVnoKeITl5D+2LsnwlnK8g==} - engines: {node: '>=14.0.0'} - dev: true - /@algolia/cache-browser-local-storage@4.18.0: resolution: {integrity: sha512-rUAs49NLlO8LVLgGzM4cLkw8NJLKguQLgvFmBEe3DyzlinoqxzQMHfKZs6TSq4LZfw/z8qHvRo8NcTAAUJQLcw==} dependencies: @@ -2528,62 +2526,6 @@ packages: '@babel/helper-validator-identifier': 7.22.5 to-fast-properties: 2.0.0 - /@codemirror/commands@6.2.4: - resolution: {integrity: sha512-42lmDqVH0ttfilLShReLXsDfASKLXzfyC36bzwcqzox9PlHulMcsUOfHXNo2X2aFMVNUoQ7j+d4q5bnfseYoOA==} - dependencies: - '@codemirror/language': 6.8.0 - '@codemirror/state': 6.2.1 - '@codemirror/view': 6.14.1 - '@lezer/common': 1.0.3 - dev: true - - /@codemirror/lang-json@6.0.1: - resolution: {integrity: sha512-+T1flHdgpqDDlJZ2Lkil/rLiRy684WMLc74xUnjJH48GQdfJo/pudlTRreZmKwzP8/tGdKf83wlbAdOCzlJOGQ==} - dependencies: - '@codemirror/language': 6.8.0 - '@lezer/json': 1.0.1 - dev: true - - /@codemirror/language@6.8.0: - resolution: {integrity: sha512-r1paAyWOZkfY0RaYEZj3Kul+MiQTEbDvYqf8gPGaRvNneHXCmfSaAVFjwRUPlgxS8yflMxw2CTu6uCMp8R8A2g==} - dependencies: - '@codemirror/state': 6.2.1 - '@codemirror/view': 6.14.1 - '@lezer/common': 1.0.3 - '@lezer/highlight': 1.1.6 - '@lezer/lr': 1.3.9 - style-mod: 4.0.3 - dev: true - - /@codemirror/lint@6.4.0: - resolution: {integrity: sha512-6VZ44Ysh/Zn07xrGkdtNfmHCbGSHZzFBdzWi0pbd7chAQ/iUcpLGX99NYRZTa7Ugqg4kEHCqiHhcZnH0gLIgSg==} - dependencies: - '@codemirror/state': 6.2.1 - '@codemirror/view': 6.14.1 - crelt: 1.0.6 - dev: true - - /@codemirror/state@6.2.1: - resolution: {integrity: sha512-RupHSZ8+OjNT38zU9fKH2sv+Dnlr8Eb8sl4NOnnqz95mCFTZUaiRP8Xv5MeeaG0px2b8Bnfe7YGwCV3nsBhbuw==} - dev: true - - /@codemirror/theme-one-dark@6.1.2: - resolution: {integrity: sha512-F+sH0X16j/qFLMAfbciKTxVOwkdAS336b7AXTKOZhy8BR3eH/RelsnLgLFINrpST63mmN2OuwUt0W2ndUgYwUA==} - dependencies: - '@codemirror/language': 6.8.0 - '@codemirror/state': 6.2.1 - '@codemirror/view': 6.14.1 - '@lezer/highlight': 1.1.6 - dev: true - - /@codemirror/view@6.14.1: - resolution: {integrity: sha512-ofcsI7lRFo4N0rfnd+V3Gh2boQU3DmaaSKhDOvXUWjeOeuupMXer2e/3i9TUFN7aEIntv300EFBWPEiYVm2svg==} - dependencies: - '@codemirror/state': 6.2.1 - style-mod: 4.0.3 - w3c-keyname: 2.2.8 - dev: true - /@colors/colors@1.5.0: resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} engines: {node: '>=0.1.90'} @@ -2591,6 +2533,11 @@ packages: dev: true optional: true + /@ctrl/tinycolor@3.6.0: + resolution: {integrity: sha512-/Z3l6pXthq0JvMYdUFyX9j0MaCltlIn6mfh9jLyQwg5aPKxkyNa0PTHtU1AlFXLNk55ZuAeJRcpvq+tmLfKmaQ==} + engines: {node: '>=10'} + dev: false + /@discoveryjs/json-ext@0.5.7: resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} engines: {node: '>=10.0.0'} @@ -3015,75 +2962,26 @@ packages: resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} dev: true - /@formkit/auto-animate@1.0.0-beta.6: - resolution: {integrity: sha512-PVDhLAlr+B4Xb7e+1wozBUWmXa6BFU8xUPR/W/E+TsQhPS1qkAdAsJ25keEnFrcePSnXHrOsh3tiFbEToOzV9w==} - dev: false - - /@histoire/app@0.16.1(vite@4.3.9): - resolution: {integrity: sha512-13komnhVk1Pk0wMmkJKDPWT8RKpA5HfAbeeXSHAq29pvFP9Faq+dAa62g1wqOpoyJD5C7SkI0OPI3eJwJHgTiQ==} - dependencies: - '@histoire/controls': 0.16.1(vite@4.3.9) - '@histoire/shared': 0.16.1(vite@4.3.9) - '@histoire/vendors': 0.16.0 - '@types/flexsearch': 0.7.3 - flexsearch: 0.7.21 - shiki-es: 0.2.0 - transitivePeerDependencies: - - vite - dev: true - - /@histoire/controls@0.16.1(vite@4.3.9): - resolution: {integrity: sha512-Ot/J/LPzUexn+fLrJrWu3jUakx9aVSJWKnriiJSmEodAxJq+4mrprX3xS0bnzieud19pJc3mzC/MSD94urTbHA==} + /@floating-ui/core@1.4.1: + resolution: {integrity: sha512-jk3WqquEJRlcyu7997NtR5PibI+y5bi+LS3hPmguVClypenMsCY3CBa3LAQnozRCtCrYWSEtAdiskpamuJRFOQ==} dependencies: - '@codemirror/commands': 6.2.4 - '@codemirror/lang-json': 6.0.1 - '@codemirror/language': 6.8.0 - '@codemirror/lint': 6.4.0 - '@codemirror/state': 6.2.1 - '@codemirror/theme-one-dark': 6.1.2 - '@codemirror/view': 6.14.1 - '@histoire/shared': 0.16.1(vite@4.3.9) - '@histoire/vendors': 0.16.0 - transitivePeerDependencies: - - vite - dev: true + '@floating-ui/utils': 0.1.1 + dev: false - /@histoire/plugin-vue@0.16.1(histoire@0.16.1)(vite@4.3.9)(vue@3.3.4): - resolution: {integrity: sha512-K7ZZl5tA8PWHjQsWFmFX3xa4HlRs+S8+nxym1Smh4dudQ6XSVwdF+gsPQ+RE4zwf6YQ8HDPsvOobI31dz6F4Tg==} - peerDependencies: - histoire: ^0.16.1 - vue: ^3.2.47 + /@floating-ui/dom@1.5.1: + resolution: {integrity: sha512-KwvVcPSXg6mQygvA1TjbN/gh///36kKtllIF8SUm0qpFj8+rvYrpvlYdL1JoA71SHpDqgSSdGOSoQ0Mp3uY5aw==} dependencies: - '@histoire/controls': 0.16.1(vite@4.3.9) - '@histoire/shared': 0.16.1(vite@4.3.9) - '@histoire/vendors': 0.16.0 - change-case: 4.1.2 - globby: 13.2.2 - histoire: 0.16.1(vite@4.3.9) - launch-editor: 2.6.0 - pathe: 0.2.0 - vue: 3.3.4 - transitivePeerDependencies: - - vite - dev: true + '@floating-ui/core': 1.4.1 + '@floating-ui/utils': 0.1.1 + dev: false - /@histoire/shared@0.16.1(vite@4.3.9): - resolution: {integrity: sha512-bcySHGC6kcZ1U9OZUcBQCROTBygTZ9T9MlqfeGtBtJWXGdmHPZ/64elZOY36O8gUAMF89Q08EIVe5cIQ0SJ3Uw==} - peerDependencies: - vite: ^2.9.0 || ^3.0.0 || ^4.0.0 - dependencies: - '@histoire/vendors': 0.16.0 - '@types/fs-extra': 9.0.13 - '@types/markdown-it': 12.2.3 - chokidar: 3.5.3 - pathe: 0.2.0 - picocolors: 1.0.0 - vite: 4.3.9 - dev: true + /@floating-ui/utils@0.1.1: + resolution: {integrity: sha512-m0G6wlnhm/AX0H12IOWtK8gASEMffnX08RtKkCgTdHb9JpHKGloI7icFfLg9ZmQeavcvR0PKmzxClyuFPSjKWw==} + dev: false - /@histoire/vendors@0.16.0: - resolution: {integrity: sha512-MVr3P2q5Q9UiLJJT99b+j2ABCSerQG4VnUeCr5+eOxyEmoIFz1a0KGJimzqQM0EoVnMQmiaNN3WhuUYG+DWh/w==} - dev: true + /@formkit/auto-animate@1.0.0-beta.6: + resolution: {integrity: sha512-PVDhLAlr+B4Xb7e+1wozBUWmXa6BFU8xUPR/W/E+TsQhPS1qkAdAsJ25keEnFrcePSnXHrOsh3tiFbEToOzV9w==} + dev: false /@istanbuljs/load-nyc-config@1.1.0: resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} @@ -3177,28 +3075,9 @@ packages: resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==} dev: true - /@lezer/common@1.0.3: - resolution: {integrity: sha512-JH4wAXCgUOcCGNekQPLhVeUtIqjH0yPBs7vvUdSjyQama9618IOKFJwkv2kcqdhF0my8hQEgCTEJU0GIgnahvA==} - dev: true - - /@lezer/highlight@1.1.6: - resolution: {integrity: sha512-cmSJYa2us+r3SePpRCjN5ymCqCPv+zyXmDl0ciWtVaNiORT/MxM7ZgOMQZADD0o51qOaOg24qc/zBViOIwAjJg==} - dependencies: - '@lezer/common': 1.0.3 - dev: true - - /@lezer/json@1.0.1: - resolution: {integrity: sha512-nkVC27qiEZEjySbi6gQRuMwa2sDu2PtfjSgz0A4QF81QyRGm3kb2YRzLcOPcTEtmcwvrX/cej7mlhbwViA4WJw==} - dependencies: - '@lezer/highlight': 1.1.6 - '@lezer/lr': 1.3.9 - dev: true - - /@lezer/lr@1.3.9: - resolution: {integrity: sha512-XPz6dzuTHlnsbA5M2DZgjflNQ+9Hi5Swhic0RULdp3oOs3rh6bqGZolosVqN/fQIT8uNiepzINJDnS39oweTHQ==} - dependencies: - '@lezer/common': 1.0.3 - dev: true + /@lit-labs/react@1.2.1: + resolution: {integrity: sha512-DiZdJYFU0tBbdQkfwwRSwYyI/mcWkg3sWesKRsHUd4G+NekTmmeq9fzsurvcKTNVa0comNljwtg4Hvi1ds3V+A==} + dev: false /@lit-labs/ssr-dom-shim@1.1.1: resolution: {integrity: sha512-kXOeFbfCm4fFf2A3WwVEeQj55tMZa8c8/f9AKHMobQMkzNUfUj+antR3fRPaZJawsa1aZiP/Da3ndpZrwEe4rQ==} @@ -3373,6 +3252,28 @@ packages: rollup: 3.26.2 dev: true + /@shoelace-style/animations@1.1.0: + resolution: {integrity: sha512-Be+cahtZyI2dPKRm8EZSx3YJQ+jLvEcn3xzRP7tM4tqBnvd/eW/64Xh0iOf0t2w5P8iJKfdBbpVNE9naCaOf2g==} + dev: false + + /@shoelace-style/localize@3.1.1: + resolution: {integrity: sha512-NkM/hj3Js6yXCU9WxhsyxRUdyqUUUl/BSvIluUMptQteUWGOJaoyP1iMbOMqO544DYMzBfnoCw66ZHkGuTdKgA==} + dev: false + + /@shoelace-style/shoelace@2.6.0: + resolution: {integrity: sha512-Pa5Ll8GkFHtttES1FuFpkJ5pbUdlCAn86LVlU94pRHzqYNI81wQQzckkXPT+8aHCMSlfcr+t9RhaFY62T4iU+w==} + engines: {node: '>=14.17.0'} + dependencies: + '@ctrl/tinycolor': 3.6.0 + '@floating-ui/dom': 1.5.1 + '@lit-labs/react': 1.2.1 + '@shoelace-style/animations': 1.1.0 + '@shoelace-style/localize': 3.1.1 + composed-offset-position: 0.0.4 + lit: 2.7.6 + qr-creator: 1.0.0 + dev: false + /@sinclair/typebox@0.27.8: resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} dev: true @@ -4380,11 +4281,6 @@ packages: resolution: {integrity: sha512-NJV/pdgJObDlDWi5+MTHZ2qyNvdL0dlHqQ72nzQYXWbW1LHMPXgCJYl0pLqL1XxxLtxtInYbtVCGVAcwhGxdkw==} dev: true - /@tootallnate/once@2.0.0: - resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} - engines: {node: '>= 10'} - dev: true - /@types/accepts@1.3.5: resolution: {integrity: sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==} dependencies: @@ -4515,16 +4411,6 @@ packages: resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==} dev: true - /@types/flexsearch@0.7.3: - resolution: {integrity: sha512-HXwADeHEP4exXkCIwy2n1+i0f1ilP1ETQOH5KDOugjkTFZPntWo0Gr8stZOaebkxsdx+k0X/K6obU/+it07ocg==} - dev: true - - /@types/fs-extra@9.0.13: - resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} - dependencies: - '@types/node': 20.4.2 - dev: true - /@types/glob@7.2.0: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: @@ -4594,25 +4480,10 @@ packages: '@types/koa-compose': 3.2.5 '@types/node': 20.4.2 - /@types/linkify-it@3.0.2: - resolution: {integrity: sha512-HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA==} - dev: true - /@types/lodash@4.14.195: resolution: {integrity: sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==} dev: true - /@types/markdown-it@12.2.3: - resolution: {integrity: sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ==} - dependencies: - '@types/linkify-it': 3.0.2 - '@types/mdurl': 1.0.2 - dev: true - - /@types/mdurl@1.0.2: - resolution: {integrity: sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==} - dev: true - /@types/mdx@2.0.5: resolution: {integrity: sha512-76CqzuD6Q7LC+AtbPqrvD9AqsN0k8bsYo2bM2J8pmNldP1aIPAbzUQ7QbobyXL4eLr1wK5x8FZFe8eF/ubRuBg==} dev: true @@ -5302,23 +5173,11 @@ packages: acorn-walk: 7.2.0 dev: true - /acorn-globals@7.0.1: - resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} - dependencies: - acorn: 8.10.0 - acorn-walk: 8.2.0 - dev: true - /acorn-walk@7.2.0: resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} engines: {node: '>=0.4.0'} dev: true - /acorn-walk@8.2.0: - resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} - engines: {node: '>=0.4.0'} - dev: true - /acorn@7.4.1: resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} engines: {node: '>=0.4.0'} @@ -5480,10 +5339,6 @@ packages: sprintf-js: 1.0.3 dev: true - /argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - dev: true - /array-back@3.1.0: resolution: {integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==} engines: {node: '>=6'} @@ -5810,10 +5665,6 @@ packages: resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} engines: {node: '>=8'} - /birpc@0.1.1: - resolution: {integrity: sha512-B64AGL4ug2IS2jvV/zjTYDD1L+2gOJTT7Rv+VaK7KVQtQOo/xZbCDsh7g727ipckmU+QJYRqo5RcifVr0Kgcmg==} - dev: true - /birpc@0.2.12: resolution: {integrity: sha512-6Wz9FXuJ/FE4gDH+IGQhrYdalAvAQU1Yrtcu1UlMk3+9mMXxIRXiL+MxUcGokso42s+Fy+YoUXGLOdOs0siV3A==} dev: true @@ -5979,11 +5830,6 @@ packages: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} - /cac@6.7.14: - resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} - engines: {node: '>=8'} - dev: true - /cache-content-type@1.0.1: resolution: {integrity: sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==} engines: {node: '>= 6.0.0'} @@ -6040,13 +5886,6 @@ packages: function-bind: 1.1.1 get-intrinsic: 1.2.1 - /camel-case@4.1.2: - resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} - dependencies: - pascal-case: 3.1.2 - tslib: 2.6.0 - dev: true - /camelcase-keys@2.1.0: resolution: {integrity: sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==} engines: {node: '>=0.10.0'} @@ -6074,14 +5913,6 @@ packages: resolution: {integrity: sha512-Wmec9pCBY8CWbmI4HsjBeQLqDTqV91nFVR83DnZpYyRnPI1wePDsTg0bGLPC5VU/3OIZV1fmxEea1b+tFKe86g==} dev: true - /capital-case@1.0.4: - resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} - dependencies: - no-case: 3.0.4 - tslib: 2.6.0 - upper-case-first: 2.0.2 - dev: true - /caseless@0.12.0: resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} dev: true @@ -6152,23 +5983,6 @@ packages: supports-color: 7.2.0 dev: true - /change-case@4.1.2: - resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} - dependencies: - camel-case: 4.1.2 - capital-case: 1.0.4 - constant-case: 3.0.4 - dot-case: 3.0.4 - header-case: 2.0.4 - no-case: 3.0.4 - param-case: 3.0.4 - pascal-case: 3.1.2 - path-case: 3.0.4 - sentence-case: 3.0.4 - snake-case: 3.0.4 - tslib: 2.6.0 - dev: true - /chardet@0.7.0: resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} dev: true @@ -6449,6 +6263,10 @@ packages: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} dev: true + /composed-offset-position@0.0.4: + resolution: {integrity: sha512-vMlvu1RuNegVE0YsCDSV/X4X10j56mq7PCIyOKK74FxkXzGLwhOUmdkJLSdOBOMwWycobGUMgft2lp+YgTe8hw==} + dev: false + /compressible@2.0.18: resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} engines: {node: '>= 0.6'} @@ -6504,18 +6322,6 @@ packages: xdg-basedir: 4.0.0 dev: true - /connect@3.7.0: - resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} - engines: {node: '>= 0.10.0'} - dependencies: - debug: 2.6.9 - finalhandler: 1.1.2 - parseurl: 1.3.3 - utils-merge: 1.0.1 - transitivePeerDependencies: - - supports-color - dev: true - /console-control-strings@1.1.0: resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} dev: true @@ -6524,14 +6330,6 @@ packages: resolution: {integrity: sha512-QC/8l9e6ofi6nqZ5PawlDgzmMw3OxIXtvolBzap/F4UDBJlDaZRSNbL/lb41C29FcbSJncBFlJFj2WJoNyZRfQ==} dev: true - /constant-case@3.0.4: - resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} - dependencies: - no-case: 3.0.4 - tslib: 2.6.0 - upper-case: 2.0.2 - dev: true - /content-disposition@0.5.4: resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} engines: {node: '>= 0.6'} @@ -6578,10 +6376,6 @@ packages: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} dev: true - /crelt@1.0.6: - resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==} - dev: true - /cross-fetch@4.0.0: resolution: {integrity: sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==} dependencies: @@ -6685,10 +6479,6 @@ packages: resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} dev: true - /cssom@0.5.0: - resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} - dev: true - /cssstyle@2.3.0: resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} engines: {node: '>=8'} @@ -6722,15 +6512,6 @@ packages: whatwg-url: 8.7.0 dev: true - /data-urls@3.0.2: - resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} - engines: {node: '>=12'} - dependencies: - abab: 2.0.6 - whatwg-mimetype: 3.0.0 - whatwg-url: 11.0.0 - dev: true - /de-indent@1.0.2: resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} dev: true @@ -7004,10 +6785,6 @@ packages: resolution: {integrity: sha512-jEcNGrh6lOXNRJvZb9RjeevtZGrgugPKSMJZxfyxWQnhlKawMPhMtk/dfC+Z/6xNXExlzTKlY5LzIAK/fRpQIw==} dev: true - /diacritics@1.3.0: - resolution: {integrity: sha512-wlwEkqcsaxvPJML+rDh/2iS824jbREk6DUMUKkEaSlxdYHeS43cClJtsWglvw2RfeXGm6ohKDqsXteJ5sP5enA==} - dev: true - /diff@5.1.0: resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==} engines: {node: '>=0.3.1'} @@ -7044,13 +6821,6 @@ packages: webidl-conversions: 5.0.0 dev: true - /domexception@4.0.0: - resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} - engines: {node: '>=12'} - dependencies: - webidl-conversions: 7.0.0 - dev: true - /domhandler@2.4.2: resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==} dependencies: @@ -7071,13 +6841,6 @@ packages: domelementtype: 1.3.1 dev: true - /dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} - dependencies: - no-case: 3.0.4 - tslib: 2.6.0 - dev: true - /dot-prop@5.3.0: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} engines: {node: '>=8'} @@ -7182,15 +6945,6 @@ packages: resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==} dev: true - /entities@2.1.0: - resolution: {integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==} - dev: true - - /entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} - dev: true - /envinfo@7.10.0: resolution: {integrity: sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==} engines: {node: '>=4'} @@ -7397,18 +7151,6 @@ packages: source-map: 0.6.1 dev: true - /escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} - hasBin: true - dependencies: - esprima: 4.0.1 - estraverse: 5.3.0 - esutils: 2.0.3 - optionalDependencies: - source-map: 0.6.1 - dev: true - /esno@0.16.3: resolution: {integrity: sha512-6slSBEV1lMKcX13DBifvnDFpNno5WXhw4j/ff7RI0y51BZiDqEe5dNhhjhIQ3iCOQuzsm2MbVzmwqbN78BBhPg==} hasBin: true @@ -7427,11 +7169,6 @@ packages: engines: {node: '>=4.0'} dev: true - /estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} - dev: true - /estree-walker@2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} @@ -7596,13 +7333,6 @@ packages: sort-keys-length: 1.0.1 dev: true - /extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} - engines: {node: '>=0.10.0'} - dependencies: - is-extendable: 0.1.1 - dev: true - /extend@3.0.2: resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} dev: true @@ -7784,21 +7514,6 @@ packages: dependencies: to-regex-range: 5.0.1 - /finalhandler@1.1.2: - resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} - engines: {node: '>= 0.8'} - dependencies: - debug: 2.6.9 - encodeurl: 1.0.2 - escape-html: 1.0.3 - on-finished: 2.3.0 - parseurl: 1.3.3 - statuses: 1.5.0 - unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color - dev: true - /finalhandler@1.2.0: resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} engines: {node: '>= 0.8'} @@ -7877,10 +7592,6 @@ packages: semver-regex: 2.0.0 dev: true - /flexsearch@0.7.21: - resolution: {integrity: sha512-W7cHV7Hrwjid6lWmy0IhsWDFQboWSng25U3VVywpHOTJnnAZNPScog67G+cVpeX9f7yDD21ih0WDrMMT+JoaYg==} - dev: true - /flow-parser@0.212.0: resolution: {integrity: sha512-45eNySEs7n692jLN+eHQ6zvC9e1cqu9Dq1PpDHTcWRri2HFEs8is8Anmp1RcIhYxA5TZYD6RuESG2jdj6nkDJQ==} engines: {node: '>=0.4.0'} @@ -7924,15 +7635,6 @@ packages: mime-types: 2.1.35 dev: true - /form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: '>= 6'} - dependencies: - asynckit: 0.4.0 - combined-stream: 1.0.8 - mime-types: 2.1.35 - dev: true - /forwarded@0.2.0: resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} engines: {node: '>= 0.6'} @@ -7953,15 +7655,6 @@ packages: resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} dev: true - /fs-extra@10.1.0: - resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} - engines: {node: '>=12'} - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.1.0 - universalify: 2.0.0 - dev: true - /fs-extra@11.1.1: resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} engines: {node: '>=14.14'} @@ -8353,16 +8046,6 @@ packages: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} dev: true - /gray-matter@4.0.3: - resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} - engines: {node: '>=6.0'} - dependencies: - js-yaml: 3.14.1 - kind-of: 6.0.3 - section-matter: 1.0.0 - strip-bom-string: 1.0.0 - dev: true - /gunzip-maybe@1.4.2: resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==} hasBin: true @@ -8471,64 +8154,6 @@ packages: hasBin: true dev: true - /header-case@2.0.4: - resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} - dependencies: - capital-case: 1.0.4 - tslib: 2.6.0 - dev: true - - /histoire@0.16.1(vite@4.3.9): - resolution: {integrity: sha512-TIzJ0Wqe8epfTYMd7yuS0Zcuy86ysJ5t4p6qt0zjHAinoNgEH2M9biHtuKQzd96/QuUy3oc2dcXiFLFSZGdSyw==} - hasBin: true - peerDependencies: - vite: ^2.9.0 || ^3.0.0 || ^4.0.0 - dependencies: - '@akryum/tinypool': 0.3.1 - '@histoire/app': 0.16.1(vite@4.3.9) - '@histoire/controls': 0.16.1(vite@4.3.9) - '@histoire/shared': 0.16.1(vite@4.3.9) - '@histoire/vendors': 0.16.0 - '@types/flexsearch': 0.7.3 - '@types/markdown-it': 12.2.3 - birpc: 0.1.1 - change-case: 4.1.2 - chokidar: 3.5.3 - connect: 3.7.0 - defu: 6.1.2 - diacritics: 1.3.0 - flexsearch: 0.7.21 - fs-extra: 10.1.0 - globby: 13.2.2 - gray-matter: 4.0.3 - jiti: 1.19.1 - jsdom: 20.0.3 - markdown-it: 12.3.2 - markdown-it-anchor: 8.6.7(@types/markdown-it@12.2.3)(markdown-it@12.3.2) - markdown-it-attrs: 4.1.6(markdown-it@12.3.2) - markdown-it-emoji: 2.0.2 - micromatch: 4.0.5 - mrmime: 1.0.1 - pathe: 0.2.0 - picocolors: 1.0.0 - sade: 1.8.1 - shiki-es: 0.2.0 - sirv: 2.0.3 - vite: 4.3.9 - vite-node: 0.28.4 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - canvas - - less - - sass - - stylus - - sugarss - - supports-color - - terser - - utf-8-validate - dev: true - /hosted-git-info@2.8.9: resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} dev: true @@ -8540,13 +8165,6 @@ packages: whatwg-encoding: 1.0.5 dev: true - /html-encoding-sniffer@3.0.0: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} - engines: {node: '>=12'} - dependencies: - whatwg-encoding: 2.0.0 - dev: true - /html-escaper@2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} @@ -8610,17 +8228,6 @@ packages: statuses: 2.0.1 toidentifier: 1.0.1 - /http-proxy-agent@5.0.0: - resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} - engines: {node: '>= 6'} - dependencies: - '@tootallnate/once': 2.0.0 - agent-base: 6.0.2 - debug: 4.3.4 - transitivePeerDependencies: - - supports-color - dev: true - /http-proxy-agent@7.0.0: resolution: {integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==} engines: {node: '>= 14'} @@ -8717,13 +8324,6 @@ packages: safer-buffer: 2.1.2 dev: true - /iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} - dependencies: - safer-buffer: 2.1.2 - dev: true - /ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} dev: true @@ -8980,11 +8580,6 @@ packages: hasBin: true dev: true - /is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} - engines: {node: '>=0.10.0'} - dev: true - /is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} @@ -9366,11 +8961,6 @@ packages: supports-color: 8.1.1 dev: true - /jiti@1.19.1: - resolution: {integrity: sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==} - hasBin: true - dev: true - /js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} @@ -9491,47 +9081,6 @@ packages: - utf-8-validate dev: true - /jsdom@20.0.3: - resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} - engines: {node: '>=14'} - peerDependencies: - canvas: ^2.5.0 - peerDependenciesMeta: - canvas: - optional: true - dependencies: - abab: 2.0.6 - acorn: 8.10.0 - acorn-globals: 7.0.1 - cssom: 0.5.0 - cssstyle: 2.3.0 - data-urls: 3.0.2 - decimal.js: 10.4.3 - domexception: 4.0.0 - escodegen: 2.1.0 - form-data: 4.0.0 - html-encoding-sniffer: 3.0.0 - http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1 - is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.7 - parse5: 7.1.2 - saxes: 6.0.0 - symbol-tree: 3.2.4 - tough-cookie: 4.1.3 - w3c-xmlserializer: 4.0.0 - webidl-conversions: 7.0.0 - whatwg-encoding: 2.0.0 - whatwg-mimetype: 3.0.0 - whatwg-url: 11.0.0 - ws: 8.13.0 - xml-name-validator: 4.0.0 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - dev: true - /jsesc@0.5.0: resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true @@ -9573,10 +9122,6 @@ packages: hasBin: true dev: true - /jsonc-parser@3.2.0: - resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} - dev: true - /jsonfile@6.1.0: resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} dependencies: @@ -9713,13 +9258,6 @@ packages: package-json: 6.5.0 dev: true - /launch-editor@2.6.0: - resolution: {integrity: sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==} - dependencies: - picocolors: 1.0.0 - shell-quote: 1.8.1 - dev: true - /lazy-universal-dotenv@4.0.0: resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==} engines: {node: '>=14.0.0'} @@ -9755,12 +9293,6 @@ packages: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} dev: true - /linkify-it@3.0.3: - resolution: {integrity: sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==} - dependencies: - uc.micro: 1.0.6 - dev: true - /lit-element@3.3.2: resolution: {integrity: sha512-xXAeVWKGr4/njq0rGC9dethMnYCq5hpKYrgQZYTzawt9YQhMiXfD+T1RgrdY3NamOxwq2aXlb0vOI6e29CKgVQ==} dependencies: @@ -9930,12 +9462,6 @@ packages: signal-exit: 3.0.7 dev: true - /lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} - dependencies: - tslib: 2.6.0 - dev: true - /lowercase-keys@1.0.0: resolution: {integrity: sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==} engines: {node: '>=0.10.0'} @@ -10035,40 +9561,6 @@ packages: resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} dev: true - /markdown-it-anchor@8.6.7(@types/markdown-it@12.2.3)(markdown-it@12.3.2): - resolution: {integrity: sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==} - peerDependencies: - '@types/markdown-it': '*' - markdown-it: '*' - dependencies: - '@types/markdown-it': 12.2.3 - markdown-it: 12.3.2 - dev: true - - /markdown-it-attrs@4.1.6(markdown-it@12.3.2): - resolution: {integrity: sha512-O7PDKZlN8RFMyDX13JnctQompwrrILuz2y43pW2GagcwpIIElkAdfeek+erHfxUOlXWPsjFeWmZ8ch1xtRLWpA==} - engines: {node: '>=6'} - peerDependencies: - markdown-it: '>= 9.0.0' - dependencies: - markdown-it: 12.3.2 - dev: true - - /markdown-it-emoji@2.0.2: - resolution: {integrity: sha512-zLftSaNrKuYl0kR5zm4gxXjHaOI3FAOEaloKmRA5hijmJZvSjmxcokOLlzycb/HXlUFWzXqpIEoyEMCE4i9MvQ==} - dev: true - - /markdown-it@12.3.2: - resolution: {integrity: sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==} - hasBin: true - dependencies: - argparse: 2.0.1 - entities: 2.1.0 - linkify-it: 3.0.3 - mdurl: 1.0.1 - uc.micro: 1.0.6 - dev: true - /markdown-to-jsx@7.2.1(react@18.2.0): resolution: {integrity: sha512-9HrdzBAo0+sFz9ZYAGT5fB8ilzTW+q6lPocRxrIesMO+aB40V9MgFfbfMXxlGjf22OpRy+IXlvVaQenicdpgbg==} engines: {node: '>= 10'} @@ -10100,10 +9592,6 @@ packages: resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} dev: true - /mdurl@1.0.1: - resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} - dev: true - /media-typer@0.3.0: resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} engines: {node: '>= 0.6'} @@ -10269,15 +9757,6 @@ packages: hasBin: true dev: true - /mlly@1.4.0: - resolution: {integrity: sha512-ua8PAThnTwpprIaU47EPeZ/bPUVp2QYBbWMphUQpVdBI3Lgqzm5KZQ45Agm3YJedHXaIHl6pBGabaLSUPPSptg==} - dependencies: - acorn: 8.10.0 - pathe: 1.1.1 - pkg-types: 1.0.3 - ufo: 1.1.2 - dev: true - /mri@1.2.0: resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} engines: {node: '>=4'} @@ -10350,13 +9829,6 @@ packages: path-to-regexp: 1.8.0 dev: true - /no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} - dependencies: - lower-case: 2.0.2 - tslib: 2.6.0 - dev: true - /node-abi@2.30.1: resolution: {integrity: sha512-/2D0wOQPgaUWzVSVgRMx+trKJRC2UG4SUc4oCJoXx9Uxjtp0Vy3/kt7zcbxHF8+Z/pK3UloLWzBISg72brfy1w==} dependencies: @@ -10547,13 +10019,6 @@ packages: es-abstract: 1.22.1 dev: true - /on-finished@2.3.0: - resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} - engines: {node: '>= 0.8'} - dependencies: - ee-first: 1.1.1 - dev: true - /on-finished@2.4.1: resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} engines: {node: '>= 0.8'} @@ -10828,13 +10293,6 @@ packages: resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} dev: true - /param-case@3.0.4: - resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} - dependencies: - dot-case: 3.0.4 - tslib: 2.6.0 - dev: true - /parse-json@2.2.0: resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==} engines: {node: '>=0.10.0'} @@ -10859,30 +10317,10 @@ packages: /parse5@6.0.1: resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} - /parse5@7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} - dependencies: - entities: 4.5.0 - dev: true - /parseurl@1.3.3: resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} engines: {node: '>= 0.8'} - /pascal-case@3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} - dependencies: - no-case: 3.0.4 - tslib: 2.6.0 - dev: true - - /path-case@3.0.4: - resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==} - dependencies: - dot-case: 3.0.4 - tslib: 2.6.0 - dev: true - /path-exists@2.1.0: resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==} engines: {node: '>=0.10.0'} @@ -10946,10 +10384,6 @@ packages: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} - /pathe@0.2.0: - resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==} - dev: true - /pathe@1.1.1: resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==} dev: true @@ -11048,14 +10482,6 @@ packages: find-up: 5.0.0 dev: true - /pkg-types@1.0.3: - resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==} - dependencies: - jsonc-parser: 3.2.0 - mlly: 1.4.0 - pathe: 1.1.1 - dev: true - /playwright-core@1.36.1: resolution: {integrity: sha512-7+tmPuMcEW4xeCL9cp9KxmYpQYHKkyjwoXRnoeTowaeNat8PoBMk/HwCYhqkH2fRkshfKEOiVus/IhID2Pg8kg==} engines: {node: '>=16'} @@ -11306,6 +10732,10 @@ packages: engines: {node: '>=0.6.0', teleport: '>=0.2.0'} dev: true + /qr-creator@1.0.0: + resolution: {integrity: sha512-C0cqfbS1P5hfqN4NhsYsUXePlk9BO+a45bAQ3xLYjBL3bOIFzoVEjs79Fado9u9BPBD3buHi3+vY+C8tHh4qMQ==} + dev: false + /qs@6.11.0: resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} engines: {node: '>=0.6'} @@ -11792,13 +11222,6 @@ packages: tslib: 1.14.1 dev: true - /sade@1.8.1: - resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} - engines: {node: '>=6'} - dependencies: - mri: 1.2.0 - dev: true - /safe-array-concat@1.0.0: resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==} engines: {node: '>=0.4'} @@ -11842,27 +11265,12 @@ packages: xmlchars: 2.2.0 dev: true - /saxes@6.0.0: - resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} - engines: {node: '>=v12.22.7'} - dependencies: - xmlchars: 2.2.0 - dev: true - /scheduler@0.23.0: resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} dependencies: loose-envify: 1.4.0 dev: true - /section-matter@1.0.0: - resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} - engines: {node: '>=4'} - dependencies: - extend-shallow: 2.0.1 - kind-of: 6.0.3 - dev: true - /seek-bzip@1.0.6: resolution: {integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==} hasBin: true @@ -11940,14 +11348,6 @@ packages: - supports-color dev: true - /sentence-case@3.0.4: - resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} - dependencies: - no-case: 3.0.4 - tslib: 2.6.0 - upper-case-first: 2.0.2 - dev: true - /serve-favicon@2.5.0: resolution: {integrity: sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==} engines: {node: '>= 0.8.0'} @@ -12043,10 +11443,6 @@ packages: rechoir: 0.6.2 dev: true - /shiki-es@0.2.0: - resolution: {integrity: sha512-RbRMD+IuJJseSZljDdne9ThrUYrwBwJR04FvN4VXpfsU3MNID5VJGHLAD5je/HGThCyEKNgH+nEkSFEWKD7C3Q==} - dev: true - /side-channel@1.0.4: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: @@ -12136,13 +11532,6 @@ packages: engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} dev: true - /snake-case@3.0.4: - resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} - dependencies: - dot-case: 3.0.4 - tslib: 2.6.0 - dev: true - /socks-proxy-agent@8.0.1: resolution: {integrity: sha512-59EjPbbgg8U3x62hhKOFVAmySQUcfRQ4C7Q/D5sEHnZTQRrQlNKINks44DMR1gwXp0p4LaVIeccX2KHTTcHVqQ==} engines: {node: '>= 14'} @@ -12384,11 +11773,6 @@ packages: dependencies: ansi-regex: 5.0.1 - /strip-bom-string@1.0.0: - resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} - engines: {node: '>=0.10.0'} - dev: true - /strip-bom@2.0.0: resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} engines: {node: '>=0.10.0'} @@ -12442,10 +11826,6 @@ packages: escape-string-regexp: 1.0.5 dev: true - /style-mod@4.0.3: - resolution: {integrity: sha512-78Jv8kYJdjbvRwwijtCevYADfsI0lGzYJe4mMFdceO8l75DFFDoqBhR1jVDicDRRaX4//g1u9wKeo+ztc2h1Rw==} - dev: true - /supports-color@2.0.0: resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} engines: {node: '>=0.8.0'} @@ -12761,16 +12141,6 @@ packages: punycode: 2.3.0 dev: true - /tough-cookie@4.1.3: - resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} - engines: {node: '>=6'} - dependencies: - psl: 1.9.0 - punycode: 2.3.0 - universalify: 0.2.0 - url-parse: 1.5.10 - dev: true - /tr46@0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} dev: true @@ -12960,14 +12330,6 @@ packages: resolution: {integrity: sha512-fKnGuqmTBnIE+/KXSzCn4db8RTigUzw1AN0DmdU6hJovUTbYJKyqj+8Mt1c4VfRDnOVJnENmfYkIPZ946UrSAA==} dev: false - /uc.micro@1.0.6: - resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} - dev: true - - /ufo@1.1.2: - resolution: {integrity: sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ==} - dev: true - /uglify-js@3.17.4: resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} engines: {node: '>=0.8.0'} @@ -13043,11 +12405,6 @@ packages: unist-util-visit-parents: 3.1.1 dev: true - /universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} - dev: true - /universalify@1.0.0: resolution: {integrity: sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==} engines: {node: '>= 10.0.0'} @@ -13110,18 +12467,6 @@ packages: xdg-basedir: 4.0.0 dev: true - /upper-case-first@2.0.2: - resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} - dependencies: - tslib: 2.6.0 - dev: true - - /upper-case@2.0.2: - resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} - dependencies: - tslib: 2.6.0 - dev: true - /uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: @@ -13240,29 +12585,6 @@ packages: vite: 4.3.9 dev: true - /vite-node@0.28.4: - resolution: {integrity: sha512-KM0Q0uSG/xHHKOJvVHc5xDBabgt0l70y7/lWTR7Q0pR5/MrYxadT+y32cJOE65FfjGmJgxpVEEY+69btJgcXOQ==} - engines: {node: '>=v14.16.0'} - hasBin: true - dependencies: - cac: 6.7.14 - debug: 4.3.4 - mlly: 1.4.0 - pathe: 1.1.1 - picocolors: 1.0.0 - source-map: 0.6.1 - source-map-support: 0.5.21 - vite: 4.3.9 - transitivePeerDependencies: - - '@types/node' - - less - - sass - - stylus - - sugarss - - supports-color - - terser - dev: true - /vite-plugin-inspect@0.7.33(vite@4.3.9): resolution: {integrity: sha512-cQRLQKa/+Ua++5hN0IZfqNn1JYXBg2eCQOSUatPTwhXMO7nwfSvhhSc45E1nXfBBEhzLLOxgr1OdbDu55PiDDA==} engines: {node: '>=14'} @@ -13282,6 +12604,19 @@ packages: - supports-color dev: true + /vite-plugin-static-copy@0.17.0(vite@4.3.9): + resolution: {integrity: sha512-2HpNbHfDt8SDy393AGXh9llHkc8FJMQkI8s3T5WsH3SWLMO+f5cFIyPErl4yGKU9Uh3Vaqsd4lHZYTf042fQ2A==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^3.0.0 || ^4.0.0 + dependencies: + chokidar: 3.5.3 + fast-glob: 3.3.0 + fs-extra: 11.1.1 + picocolors: 1.0.0 + vite: 4.3.9 + dev: true + /vite-plugin-vue-devtools@0.0.22(vite@4.3.9)(vue@3.3.4): resolution: {integrity: sha512-f1/X5gt5rekJa74juP3EotxhSfvzI6k+1Oe0l1Bq1SC0OKekYvDZ5Q4F9Z020K6hjUyC9i8d+CjOvdRlesh4Gw==} engines: {node: '>=14'} @@ -13453,10 +12788,6 @@ packages: browser-process-hrtime: 1.0.0 dev: true - /w3c-keyname@2.2.8: - resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==} - dev: true - /w3c-xmlserializer@2.0.0: resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} engines: {node: '>=10'} @@ -13464,13 +12795,6 @@ packages: xml-name-validator: 3.0.0 dev: true - /w3c-xmlserializer@4.0.0: - resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} - engines: {node: '>=14'} - dependencies: - xml-name-validator: 4.0.0 - dev: true - /walker@1.0.8: resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} dependencies: @@ -13537,22 +12861,10 @@ packages: iconv-lite: 0.4.24 dev: true - /whatwg-encoding@2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: '>=12'} - dependencies: - iconv-lite: 0.6.3 - dev: true - /whatwg-mimetype@2.3.0: resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} dev: true - /whatwg-mimetype@3.0.0: - resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} - engines: {node: '>=12'} - dev: true - /whatwg-url@11.0.0: resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} engines: {node: '>=12'} @@ -13748,11 +13060,6 @@ packages: resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} dev: true - /xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} - dev: true - /xmlchars@2.2.0: resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} dev: true