// ==UserScript== // @name POE国际服市集翻译——持续更新 // @namespace https://wiki.wandhi.com // @description POE国际服市集翻译脚本 // @license MIT // @version 0.0.8 // @author MaxZhang666 // @source https://github.com/maxzhang666/POE-Trade-Translation // @include *://* // @require https://lib.baomitu.com/react/18.2.0/umd/react.production.min.js // @require https://lib.baomitu.com/react-dom/18.2.0/umd/react-dom.production.min.js // @require https://registry.npmmirror.com/@douyinfe/semi-ui/2.51.0/files/dist/umd/semi-ui.min.js // @supportURL https://github.com/maxzhang666/POE-Trade-Translation // @grant GM_xmlhttpRequest // @grant GM_registerMenuCommand // @grant GM_openInTab // @grant GM_info // @grant GM_getValue // @grant GM_setValue // @grant GM_getResourceText // @grant GM_addStyle // @connect poe.game.qq.com // @connect www.pathofexile.com // @connect github.com // @connect jsdelivr.net // @run-at document-end // ==/UserScript== !function(root, factory) { if ("object" == typeof exports && "object" == typeof module) module.exports = factory(require("SemiUI"), require("React"), require("ReactDOM")); else if ("function" == typeof define && define.amd) define([ "SemiUI", "React", "ReactDOM" ], factory); else { var a = "object" == typeof exports ? factory(require("SemiUI"), require("React"), require("ReactDOM")) : factory(root.SemiUI, root.React, root.ReactDOM); for (var i in a) ("object" == typeof exports ? exports : root)[i] = a[i]; } }(window, (function(__WEBPACK_EXTERNAL_MODULE__7__, __WEBPACK_EXTERNAL_MODULE__8__, __WEBPACK_EXTERNAL_MODULE__19__) { return function(modules) { var installedModules = {}; function __webpack_require__(moduleId) { if (installedModules[moduleId]) return installedModules[moduleId].exports; var module = installedModules[moduleId] = { i: moduleId, l: !1, exports: {} }; return modules[moduleId].call(module.exports, module, module.exports, __webpack_require__), module.l = !0, module.exports; } return __webpack_require__.m = modules, __webpack_require__.c = installedModules, __webpack_require__.d = function(exports, name, getter) { __webpack_require__.o(exports, name) || Object.defineProperty(exports, name, { enumerable: !0, get: getter }); }, __webpack_require__.r = function(exports) { "undefined" != typeof Symbol && Symbol.toStringTag && Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" }), Object.defineProperty(exports, "__esModule", { value: !0 }); }, __webpack_require__.t = function(value, mode) { if (1 & mode && (value = __webpack_require__(value)), 8 & mode) return value; if (4 & mode && "object" == typeof value && value && value.__esModule) return value; var ns = Object.create(null); if (__webpack_require__.r(ns), Object.defineProperty(ns, "default", { enumerable: !0, value: value }), 2 & mode && "string" != typeof value) for (var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); return ns; }, __webpack_require__.n = function(module) { var getter = module && module.__esModule ? function() { return module.default; } : function() { return module; }; return __webpack_require__.d(getter, "a", getter), getter; }, __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }, __webpack_require__.p = "", __webpack_require__(__webpack_require__.s = 9); }([ function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: !0 }), exports.Logger = void 0; __webpack_require__(14); var LogLevel_1 = __webpack_require__(15), Logger = function() { function Logger() {} return Logger.log = function(msg, level) {}, Logger.debug = function(msg) { this.log(msg, LogLevel_1.LogLevel.debug); }, Logger.info = function(msg) { this.log(msg, LogLevel_1.LogLevel.info); }, Logger.warn = function(msg) { this.log(msg, LogLevel_1.LogLevel.warn); }, Logger.error = function(msg) { this.log(msg, LogLevel_1.LogLevel.error); }, Logger; }(); exports.Logger = Logger; }, function(module, exports, __webpack_require__) { "use strict"; var __importDefault = this && this.__importDefault || function(mod) { return mod && mod.__esModule ? mod : { default: mod }; }; Object.defineProperty(exports, "__esModule", { value: !0 }), exports.Core = void 0; var BrowerType_1 = __webpack_require__(17), diff_match_patch_1 = __importDefault(__webpack_require__(18)), react_dom_1 = __importDefault(__webpack_require__(19)), Core = function() { function Core() {} return Core.dateFormat = function(date, format) { void 0 === format && (format = "yyyy-MM-dd HH:mm:ss"); var year = date.getFullYear(), month = date.getMonth() + 1, day = date.getDate(), hour = date.getHours(), minute = date.getMinutes(), second = date.getSeconds(), formatMap = { yyyy: year.toString(), MM: month.toString().padStart(2, "0"), dd: day.toString().padStart(2, "0"), HH: hour.toString().padStart(2, "0"), mm: minute.toString().padStart(2, "0"), ss: second.toString().padStart(2, "0") }; return format.replace(/yyyy|MM|dd|HH|mm|ss/g, (function(match) { return formatMap[match]; })); }, Core.currentUrl = function() { return window.location.href; }, Object.defineProperty(Core, "url", { get: function() { return window.location.href; }, enumerable: !1, configurable: !0 }), Object.defineProperty(Core, "clearUrl", { get: function() { return this.url.replace(window.location.hash, ""); }, enumerable: !1, configurable: !0 }), Object.defineProperty(Core, "hash", { get: function() { return window.location.hash.slice(1); }, enumerable: !1, configurable: !0 }), Core.open = function(url, front) { void 0 === front && (front = !1), GM_openInTab(url, { active: !front }); }, Core.autoLazyload = function(isOk, callback, time) { void 0 === time && (time = 5), isOk() ? callback() : setTimeout((function() { Core.autoLazyload(isOk, callback, time); }), 1e3 * time); }, Core.background = function(callback, time) { void 0 === time && (time = 5), setInterval((function() { callback(); }), 1e3 * time); }, Core.lazyload = function(callback, time) { void 0 === time && (time = 5), setTimeout((function() { callback(); }), 1e3 * time); }, Core.addStyle = function(content) { if (GM_addStyle) GM_addStyle(content); else { var style = unsafeWindow.window.document.createElement("style"); style.innerHTML = content, unsafeWindow.window.document.head.append(style); } }, Core.addStyleUrl = function(url) { var style = unsafeWindow.window.document.createElement("link"); style.href = url, style.rel = "stylesheet", unsafeWindow.window.document.head.append(style); }, Core.addScriptUrl = function(url) { var script = unsafeWindow.window.document.createElement("script"); script.type = "text/javascript", script.src = url, unsafeWindow.window.document.head.append(script); }, Core.addScript = function(content) { var script = unsafeWindow.window.document.createElement("script"); script.type = "text/javascript", script.innerHTML = content, unsafeWindow.window.document.head.append(script); }, Core.Click = function(selector, handle) { $(selector).on("click", handle); }, Core.inIframe = function() { return !(!self.frameElement || "IFRAME" != self.frameElement.tagName) || (window.frames.length != parent.frames.length || self != top); }, Core.getBrowser = function() { var browser = !1, userAgent = window.navigator.userAgent.toLowerCase(); return null != userAgent.match(/firefox/) ? browser = BrowerType_1.BrowerType.Firefox : null != userAgent.match(/edge/) ? browser = BrowerType_1.BrowerType.Edge : null != userAgent.match(/edg/) ? browser = BrowerType_1.BrowerType.Edg : null != userAgent.match(/bidubrowser/) ? browser = BrowerType_1.BrowerType.Baidu : null != userAgent.match(/lbbrowser/) ? browser = BrowerType_1.BrowerType.Liebao : null != userAgent.match(/ubrowser/) ? browser = BrowerType_1.BrowerType.UC : null != userAgent.match(/qqbrowse/) ? browser = BrowerType_1.BrowerType.QQ : null != userAgent.match(/metasr/) ? browser = BrowerType_1.BrowerType.Sogou : null != userAgent.match(/opr/) ? browser = BrowerType_1.BrowerType.Opera : null != userAgent.match(/maxthon/) ? browser = BrowerType_1.BrowerType.Maxthon : null != userAgent.match(/2345explorer/) ? browser = BrowerType_1.BrowerType.Ie2345 : null != userAgent.match(/chrome/) ? browser = navigator.mimeTypes.length > 10 ? BrowerType_1.BrowerType.Se360 : BrowerType_1.BrowerType.Chrome : null != userAgent.match(/safari/) && (browser = BrowerType_1.BrowerType.Safiri), browser; }, Core.humanSize = function(source) { if (null == source || 0 == source) return "0 Bytes"; "string" == typeof source && (source = parseFloat(source)); var index; return index = Math.floor(Math.log(source) / Math.log(1024)), (source / Math.pow(1024, index)).toFixed(2) + " " + [ "Bytes", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB" ][index]; }, Core.strDiff = function(str1, str2, remove, joinStr) { return void 0 === joinStr && (joinStr = ""), (new diff_match_patch_1.default).diff_main(str1, str2).filter((function(_a) { return _a[0] === diff_match_patch_1.default.DIFF_INSERT; })).map((function(_a) { return _a[1]; })).filter((function(part) { return part !== remove; })).join(joinStr); }, Core.Render = function(element, id) { var container = document.getElementById(id); if (!container) { var script = unsafeWindow.window.document.createElement("div"); script.id = id, unsafeWindow.window.document.head.append(script), container = document.getElementById(id); } react_dom_1.default.render(element, container); }, Core; }(); exports.Core = Core; }, function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: !0 }), exports.SiteEnum = void 0, function(SiteEnum) { SiteEnum.All = "All", SiteEnum.POETrade = "POETrade"; }(exports.SiteEnum || (exports.SiteEnum = {})); }, function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: !0 }), exports.Config = void 0; var Logger_1 = __webpack_require__(0), Config = function() { function Config() {} return Object.defineProperty(Config, "env", { get: function() { return GM_info; }, enumerable: !1, configurable: !0 }), Config.set = function(key, v, exp) { void 0 === exp && (exp = -1); var obj = { key: key, value: v, exp: -1 == exp ? exp : (new Date).getTime() + 1e3 * exp }; GM_setValue("POE-Trade-Translation_" + this.encode(key), JSON.stringify(obj)); }, Config.get = function(key, defaultValue) { void 0 === defaultValue && (defaultValue = !1); var objStr = GM_getValue("POE-Trade-Translation_" + this.encode(key)); if (objStr) { var obj = JSON.parse(objStr); if (-1 == obj.exp || obj.exp > (new Date).getTime()) return Logger_1.Logger.info(key + " cache true"), obj.value; } return Logger_1.Logger.info(key + " cache false"), defaultValue; }, Config.getLocalStorage = function(key, defaultValue) { void 0 === defaultValue && (defaultValue = !1); var objStr = localStorage.getItem("" + this.encode(key)); if (objStr) { var obj = JSON.parse(objStr); if (-1 == obj.exp || obj.exp > (new Date).getTime()) return Logger_1.Logger.info(key + " storage cache true"), obj.value; } return Logger_1.Logger.info(key + " storage cache false"), defaultValue; }, Config.setLocalStorage = function(key, v, exp) { void 0 === exp && (exp = -1); var obj = { key: key, value: v, exp: -1 == exp ? exp : (new Date).getTime() + 1e3 * exp }; localStorage.setItem("" + this.encode(key), JSON.stringify(obj)); }, Config.decode = function(str) { return atob(str); }, Config.encode = function(str) { return btoa(str); }, Config; }(); exports.Config = Config; }, function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: !0 }), exports.IocAuto = exports.Container = void 0, __webpack_require__(10); var container = new Map, Container = function() { function Container() {} return Container.Registe = function(type, args) { var className = this.processName(type.name); return container.set(className, window.Reflect.construct(type, this.buildParams(args))), container.get(className); }, Container.buildParams = function(args) { var para = []; return null == args || args.map((function(item) { para.push(item); })), para; }, Container.processName = function(name) { return name.toLowerCase(); }, Container.Require = function(type) { var _this = this; if (null == type) return null; var name = this.processName(type.name); if (container.has(name)) return container.get(name); var args, classParams = Reflect.getMetadata(METADATA_PARAMS, type); return (null == classParams ? void 0 : classParams.length) && (args = classParams.map((function(item) { return _this.Require(item); }))), this.Registe(type, args); }, Container.define = function(target, key) { var _a, classType = Reflect.getMetadata(METADATA_TYPE, target, key), desc = null !== (_a = Object.getOwnPropertyDescriptor(target, key)) && void 0 !== _a ? _a : { writable: !0, configurable: !0 }; desc.value = this.Require(classType), Object.defineProperty(target, key, desc); }, Container; }(); exports.Container = Container; var METADATA_TYPE = "design:type", METADATA_PARAMS = "design:paramtypes"; exports.IocAuto = function(target, key) { Container.define(target, key); }; }, function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: !0 }), exports.AppBase = void 0; var Logger_1 = __webpack_require__(0), SiteEnum_1 = __webpack_require__(2), Core_1 = __webpack_require__(1), AppBase = function() { function AppBase() { var _this = this; this._unique = !0, this.Process = function() { _this.loader(), _this.run(); }; } return AppBase.prototype.unique = function() { return this._unique; }, AppBase.prototype.linkTest = function(url) { var _this = this; url || (url = Core_1.Core.currentUrl()); var flag = !1; return this.rules.forEach((function(v, k) { return v.test(url) ? (Logger_1.Logger.debug("app:" + _this.appName + "_" + SiteEnum_1.SiteEnum[k] + " test pass"), flag = !0, _this.site = k, !1) : (Logger_1.Logger.warn("app:" + _this.appName + " test fail"), !0); })), flag; }, AppBase; }(); exports.AppBase = AppBase; }, function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: !0 }), exports.SettingItem = void 0, function(SettingItem) { SettingItem.DataSource = "DataSource", SettingItem.ZhStats = "ZhStats", SettingItem.ZhStatic = "ZhStatic", SettingItem.ZhItem = "ZhItem", SettingItem.UsStats = "UsStats", SettingItem.UsStatic = "UsStatic", SettingItem.UsItem = "UsItem"; }(exports.SettingItem || (exports.SettingItem = {})); }, function(module, exports) { module.exports = __WEBPACK_EXTERNAL_MODULE__7__; }, function(module, exports) { module.exports = __WEBPACK_EXTERNAL_MODULE__8__; }, function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: !0 }); var Container_1 = __webpack_require__(4), home_1 = __webpack_require__(13); __webpack_require__(1).Core.addStyleUrl("https://unpkg.com/@douyinfe/semi-ui@2.49.2/dist/css/semi.css"), Container_1.Container.Require(home_1.POE_Trade_Translation).Init(); }, function(module, exports, __webpack_require__) { (function(process, global) { var Reflect; !function(Reflect) { !function(factory) { var root = "object" == typeof global ? global : "object" == typeof self ? self : "object" == typeof this ? this : Function("return this;")(), exporter = makeExporter(Reflect); function makeExporter(target, previous) { return function(key, value) { "function" != typeof target[key] && Object.defineProperty(target, key, { configurable: !0, writable: !0, value: value }), previous && previous(key, value); }; } void 0 === root.Reflect ? root.Reflect = Reflect : exporter = makeExporter(root.Reflect, exporter), function(exporter) { var hasOwn = Object.prototype.hasOwnProperty, supportsSymbol = "function" == typeof Symbol, toPrimitiveSymbol = supportsSymbol && void 0 !== Symbol.toPrimitive ? Symbol.toPrimitive : "@@toPrimitive", iteratorSymbol = supportsSymbol && void 0 !== Symbol.iterator ? Symbol.iterator : "@@iterator", supportsCreate = "function" == typeof Object.create, supportsProto = { __proto__: [] } instanceof Array, downLevel = !supportsCreate && !supportsProto, HashMap = { create: supportsCreate ? function() { return MakeDictionary(Object.create(null)); } : supportsProto ? function() { return MakeDictionary({ __proto__: null }); } : function() { return MakeDictionary({}); }, has: downLevel ? function(map, key) { return hasOwn.call(map, key); } : function(map, key) { return key in map; }, get: downLevel ? function(map, key) { return hasOwn.call(map, key) ? map[key] : void 0; } : function(map, key) { return map[key]; } }, functionPrototype = Object.getPrototypeOf(Function), usePolyfill = "object" == typeof process && process.env && "true" === process.env.REFLECT_METADATA_USE_MAP_POLYFILL, _Map = usePolyfill || "function" != typeof Map || "function" != typeof Map.prototype.entries ? CreateMapPolyfill() : Map, _Set = usePolyfill || "function" != typeof Set || "function" != typeof Set.prototype.entries ? CreateSetPolyfill() : Set, Metadata = new (usePolyfill || "function" != typeof WeakMap ? CreateWeakMapPolyfill() : WeakMap); function decorate(decorators, target, propertyKey, attributes) { if (IsUndefined(propertyKey)) { if (!IsArray(decorators)) throw new TypeError; if (!IsConstructor(target)) throw new TypeError; return DecorateConstructor(decorators, target); } if (!IsArray(decorators)) throw new TypeError; if (!IsObject(target)) throw new TypeError; if (!IsObject(attributes) && !IsUndefined(attributes) && !IsNull(attributes)) throw new TypeError; return IsNull(attributes) && (attributes = void 0), DecorateProperty(decorators, target, propertyKey = ToPropertyKey(propertyKey), attributes); } function metadata(metadataKey, metadataValue) { function decorator(target, propertyKey) { if (!IsObject(target)) throw new TypeError; if (!IsUndefined(propertyKey) && !IsPropertyKey(propertyKey)) throw new TypeError; OrdinaryDefineOwnMetadata(metadataKey, metadataValue, target, propertyKey); } return decorator; } function defineMetadata(metadataKey, metadataValue, target, propertyKey) { if (!IsObject(target)) throw new TypeError; return IsUndefined(propertyKey) || (propertyKey = ToPropertyKey(propertyKey)), OrdinaryDefineOwnMetadata(metadataKey, metadataValue, target, propertyKey); } function hasMetadata(metadataKey, target, propertyKey) { if (!IsObject(target)) throw new TypeError; return IsUndefined(propertyKey) || (propertyKey = ToPropertyKey(propertyKey)), OrdinaryHasMetadata(metadataKey, target, propertyKey); } function hasOwnMetadata(metadataKey, target, propertyKey) { if (!IsObject(target)) throw new TypeError; return IsUndefined(propertyKey) || (propertyKey = ToPropertyKey(propertyKey)), OrdinaryHasOwnMetadata(metadataKey, target, propertyKey); } function getMetadata(metadataKey, target, propertyKey) { if (!IsObject(target)) throw new TypeError; return IsUndefined(propertyKey) || (propertyKey = ToPropertyKey(propertyKey)), OrdinaryGetMetadata(metadataKey, target, propertyKey); } function getOwnMetadata(metadataKey, target, propertyKey) { if (!IsObject(target)) throw new TypeError; return IsUndefined(propertyKey) || (propertyKey = ToPropertyKey(propertyKey)), OrdinaryGetOwnMetadata(metadataKey, target, propertyKey); } function getMetadataKeys(target, propertyKey) { if (!IsObject(target)) throw new TypeError; return IsUndefined(propertyKey) || (propertyKey = ToPropertyKey(propertyKey)), OrdinaryMetadataKeys(target, propertyKey); } function getOwnMetadataKeys(target, propertyKey) { if (!IsObject(target)) throw new TypeError; return IsUndefined(propertyKey) || (propertyKey = ToPropertyKey(propertyKey)), OrdinaryOwnMetadataKeys(target, propertyKey); } function deleteMetadata(metadataKey, target, propertyKey) { if (!IsObject(target)) throw new TypeError; IsUndefined(propertyKey) || (propertyKey = ToPropertyKey(propertyKey)); var metadataMap = GetOrCreateMetadataMap(target, propertyKey, !1); if (IsUndefined(metadataMap)) return !1; if (!metadataMap.delete(metadataKey)) return !1; if (metadataMap.size > 0) return !0; var targetMetadata = Metadata.get(target); return targetMetadata.delete(propertyKey), targetMetadata.size > 0 || Metadata.delete(target), !0; } function DecorateConstructor(decorators, target) { for (var i = decorators.length - 1; i >= 0; --i) { var decorated = (0, decorators[i])(target); if (!IsUndefined(decorated) && !IsNull(decorated)) { if (!IsConstructor(decorated)) throw new TypeError; target = decorated; } } return target; } function DecorateProperty(decorators, target, propertyKey, descriptor) { for (var i = decorators.length - 1; i >= 0; --i) { var decorated = (0, decorators[i])(target, propertyKey, descriptor); if (!IsUndefined(decorated) && !IsNull(decorated)) { if (!IsObject(decorated)) throw new TypeError; descriptor = decorated; } } return descriptor; } function GetOrCreateMetadataMap(O, P, Create) { var targetMetadata = Metadata.get(O); if (IsUndefined(targetMetadata)) { if (!Create) return; targetMetadata = new _Map, Metadata.set(O, targetMetadata); } var metadataMap = targetMetadata.get(P); if (IsUndefined(metadataMap)) { if (!Create) return; metadataMap = new _Map, targetMetadata.set(P, metadataMap); } return metadataMap; } function OrdinaryHasMetadata(MetadataKey, O, P) { if (OrdinaryHasOwnMetadata(MetadataKey, O, P)) return !0; var parent = OrdinaryGetPrototypeOf(O); return !IsNull(parent) && OrdinaryHasMetadata(MetadataKey, parent, P); } function OrdinaryHasOwnMetadata(MetadataKey, O, P) { var metadataMap = GetOrCreateMetadataMap(O, P, !1); return !IsUndefined(metadataMap) && ToBoolean(metadataMap.has(MetadataKey)); } function OrdinaryGetMetadata(MetadataKey, O, P) { if (OrdinaryHasOwnMetadata(MetadataKey, O, P)) return OrdinaryGetOwnMetadata(MetadataKey, O, P); var parent = OrdinaryGetPrototypeOf(O); return IsNull(parent) ? void 0 : OrdinaryGetMetadata(MetadataKey, parent, P); } function OrdinaryGetOwnMetadata(MetadataKey, O, P) { var metadataMap = GetOrCreateMetadataMap(O, P, !1); if (!IsUndefined(metadataMap)) return metadataMap.get(MetadataKey); } function OrdinaryDefineOwnMetadata(MetadataKey, MetadataValue, O, P) { GetOrCreateMetadataMap(O, P, !0).set(MetadataKey, MetadataValue); } function OrdinaryMetadataKeys(O, P) { var ownKeys = OrdinaryOwnMetadataKeys(O, P), parent = OrdinaryGetPrototypeOf(O); if (null === parent) return ownKeys; var parentKeys = OrdinaryMetadataKeys(parent, P); if (parentKeys.length <= 0) return ownKeys; if (ownKeys.length <= 0) return parentKeys; for (var set = new _Set, keys = [], _i = 0, ownKeys_1 = ownKeys; _i < ownKeys_1.length; _i++) { var key = ownKeys_1[_i]; set.has(key) || (set.add(key), keys.push(key)); } for (var _a = 0, parentKeys_1 = parentKeys; _a < parentKeys_1.length; _a++) { key = parentKeys_1[_a]; set.has(key) || (set.add(key), keys.push(key)); } return keys; } function OrdinaryOwnMetadataKeys(O, P) { var keys = [], metadataMap = GetOrCreateMetadataMap(O, P, !1); if (IsUndefined(metadataMap)) return keys; for (var iterator = GetIterator(metadataMap.keys()), k = 0; ;) { var next = IteratorStep(iterator); if (!next) return keys.length = k, keys; var nextValue = IteratorValue(next); try { keys[k] = nextValue; } catch (e) { try { IteratorClose(iterator); } finally { throw e; } } k++; } } function Type(x) { if (null === x) return 1; switch (typeof x) { case "undefined": return 0; case "boolean": return 2; case "string": return 3; case "symbol": return 4; case "number": return 5; case "object": return null === x ? 1 : 6; default: return 6; } } function IsUndefined(x) { return void 0 === x; } function IsNull(x) { return null === x; } function IsSymbol(x) { return "symbol" == typeof x; } function IsObject(x) { return "object" == typeof x ? null !== x : "function" == typeof x; } function ToPrimitive(input, PreferredType) { switch (Type(input)) { case 0: case 1: case 2: case 3: case 4: case 5: return input; } var hint = 3 === PreferredType ? "string" : 5 === PreferredType ? "number" : "default", exoticToPrim = GetMethod(input, toPrimitiveSymbol); if (void 0 !== exoticToPrim) { var result = exoticToPrim.call(input, hint); if (IsObject(result)) throw new TypeError; return result; } return OrdinaryToPrimitive(input, "default" === hint ? "number" : hint); } function OrdinaryToPrimitive(O, hint) { if ("string" === hint) { var toString_1 = O.toString; if (IsCallable(toString_1)) if (!IsObject(result = toString_1.call(O))) return result; if (IsCallable(valueOf = O.valueOf)) if (!IsObject(result = valueOf.call(O))) return result; } else { var valueOf; if (IsCallable(valueOf = O.valueOf)) if (!IsObject(result = valueOf.call(O))) return result; var result, toString_2 = O.toString; if (IsCallable(toString_2)) if (!IsObject(result = toString_2.call(O))) return result; } throw new TypeError; } function ToBoolean(argument) { return !!argument; } function ToString(argument) { return "" + argument; } function ToPropertyKey(argument) { var key = ToPrimitive(argument, 3); return IsSymbol(key) ? key : ToString(key); } function IsArray(argument) { return Array.isArray ? Array.isArray(argument) : argument instanceof Object ? argument instanceof Array : "[object Array]" === Object.prototype.toString.call(argument); } function IsCallable(argument) { return "function" == typeof argument; } function IsConstructor(argument) { return "function" == typeof argument; } function IsPropertyKey(argument) { switch (Type(argument)) { case 3: case 4: return !0; default: return !1; } } function GetMethod(V, P) { var func = V[P]; if (null != func) { if (!IsCallable(func)) throw new TypeError; return func; } } function GetIterator(obj) { var method = GetMethod(obj, iteratorSymbol); if (!IsCallable(method)) throw new TypeError; var iterator = method.call(obj); if (!IsObject(iterator)) throw new TypeError; return iterator; } function IteratorValue(iterResult) { return iterResult.value; } function IteratorStep(iterator) { var result = iterator.next(); return !result.done && result; } function IteratorClose(iterator) { var f = iterator.return; f && f.call(iterator); } function OrdinaryGetPrototypeOf(O) { var proto = Object.getPrototypeOf(O); if ("function" != typeof O || O === functionPrototype) return proto; if (proto !== functionPrototype) return proto; var prototype = O.prototype, prototypeProto = prototype && Object.getPrototypeOf(prototype); if (null == prototypeProto || prototypeProto === Object.prototype) return proto; var constructor = prototypeProto.constructor; return "function" != typeof constructor || constructor === O ? proto : constructor; } function CreateMapPolyfill() { var cacheSentinel = {}, arraySentinel = [], MapIterator = function() { function MapIterator(keys, values, selector) { this._index = 0, this._keys = keys, this._values = values, this._selector = selector; } return MapIterator.prototype["@@iterator"] = function() { return this; }, MapIterator.prototype[iteratorSymbol] = function() { return this; }, MapIterator.prototype.next = function() { var index = this._index; if (index >= 0 && index < this._keys.length) { var result = this._selector(this._keys[index], this._values[index]); return index + 1 >= this._keys.length ? (this._index = -1, this._keys = arraySentinel, this._values = arraySentinel) : this._index++, { value: result, done: !1 }; } return { value: void 0, done: !0 }; }, MapIterator.prototype.throw = function(error) { throw this._index >= 0 && (this._index = -1, this._keys = arraySentinel, this._values = arraySentinel), error; }, MapIterator.prototype.return = function(value) { return this._index >= 0 && (this._index = -1, this._keys = arraySentinel, this._values = arraySentinel), { value: value, done: !0 }; }, MapIterator; }(); return function() { function Map() { this._keys = [], this._values = [], this._cacheKey = cacheSentinel, this._cacheIndex = -2; } return Object.defineProperty(Map.prototype, "size", { get: function() { return this._keys.length; }, enumerable: !0, configurable: !0 }), Map.prototype.has = function(key) { return this._find(key, !1) >= 0; }, Map.prototype.get = function(key) { var index = this._find(key, !1); return index >= 0 ? this._values[index] : void 0; }, Map.prototype.set = function(key, value) { var index = this._find(key, !0); return this._values[index] = value, this; }, Map.prototype.delete = function(key) { var index = this._find(key, !1); if (index >= 0) { for (var size = this._keys.length, i = index + 1; i < size; i++) this._keys[i - 1] = this._keys[i], this._values[i - 1] = this._values[i]; return this._keys.length--, this._values.length--, key === this._cacheKey && (this._cacheKey = cacheSentinel, this._cacheIndex = -2), !0; } return !1; }, Map.prototype.clear = function() { this._keys.length = 0, this._values.length = 0, this._cacheKey = cacheSentinel, this._cacheIndex = -2; }, Map.prototype.keys = function() { return new MapIterator(this._keys, this._values, getKey); }, Map.prototype.values = function() { return new MapIterator(this._keys, this._values, getValue); }, Map.prototype.entries = function() { return new MapIterator(this._keys, this._values, getEntry); }, Map.prototype["@@iterator"] = function() { return this.entries(); }, Map.prototype[iteratorSymbol] = function() { return this.entries(); }, Map.prototype._find = function(key, insert) { return this._cacheKey !== key && (this._cacheIndex = this._keys.indexOf(this._cacheKey = key)), this._cacheIndex < 0 && insert && (this._cacheIndex = this._keys.length, this._keys.push(key), this._values.push(void 0)), this._cacheIndex; }, Map; }(); function getKey(key, _) { return key; } function getValue(_, value) { return value; } function getEntry(key, value) { return [ key, value ]; } } function CreateSetPolyfill() { return function() { function Set() { this._map = new _Map; } return Object.defineProperty(Set.prototype, "size", { get: function() { return this._map.size; }, enumerable: !0, configurable: !0 }), Set.prototype.has = function(value) { return this._map.has(value); }, Set.prototype.add = function(value) { return this._map.set(value, value), this; }, Set.prototype.delete = function(value) { return this._map.delete(value); }, Set.prototype.clear = function() { this._map.clear(); }, Set.prototype.keys = function() { return this._map.keys(); }, Set.prototype.values = function() { return this._map.values(); }, Set.prototype.entries = function() { return this._map.entries(); }, Set.prototype["@@iterator"] = function() { return this.keys(); }, Set.prototype[iteratorSymbol] = function() { return this.keys(); }, Set; }(); } function CreateWeakMapPolyfill() { var UUID_SIZE = 16, keys = HashMap.create(), rootKey = CreateUniqueKey(); return function() { function WeakMap() { this._key = CreateUniqueKey(); } return WeakMap.prototype.has = function(target) { var table = GetOrCreateWeakMapTable(target, !1); return void 0 !== table && HashMap.has(table, this._key); }, WeakMap.prototype.get = function(target) { var table = GetOrCreateWeakMapTable(target, !1); return void 0 !== table ? HashMap.get(table, this._key) : void 0; }, WeakMap.prototype.set = function(target, value) { return GetOrCreateWeakMapTable(target, !0)[this._key] = value, this; }, WeakMap.prototype.delete = function(target) { var table = GetOrCreateWeakMapTable(target, !1); return void 0 !== table && delete table[this._key]; }, WeakMap.prototype.clear = function() { this._key = CreateUniqueKey(); }, WeakMap; }(); function CreateUniqueKey() { var key; do { key = "@@WeakMap@@" + CreateUUID(); } while (HashMap.has(keys, key)); return keys[key] = !0, key; } function GetOrCreateWeakMapTable(target, create) { if (!hasOwn.call(target, rootKey)) { if (!create) return; Object.defineProperty(target, rootKey, { value: HashMap.create() }); } return target[rootKey]; } function FillRandomBytes(buffer, size) { for (var i = 0; i < size; ++i) buffer[i] = 255 * Math.random() | 0; return buffer; } function GenRandomBytes(size) { return "function" == typeof Uint8Array ? "undefined" != typeof crypto ? crypto.getRandomValues(new Uint8Array(size)) : "undefined" != typeof msCrypto ? msCrypto.getRandomValues(new Uint8Array(size)) : FillRandomBytes(new Uint8Array(size), size) : FillRandomBytes(new Array(size), size); } function CreateUUID() { var data = GenRandomBytes(UUID_SIZE); data[6] = 79 & data[6] | 64, data[8] = 191 & data[8] | 128; for (var result = "", offset = 0; offset < UUID_SIZE; ++offset) { var byte = data[offset]; 4 !== offset && 6 !== offset && 8 !== offset || (result += "-"), byte < 16 && (result += "0"), result += byte.toString(16).toLowerCase(); } return result; } } function MakeDictionary(obj) { return obj.__ = void 0, delete obj.__, obj; } exporter("decorate", decorate), exporter("metadata", metadata), exporter("defineMetadata", defineMetadata), exporter("hasMetadata", hasMetadata), exporter("hasOwnMetadata", hasOwnMetadata), exporter("getMetadata", getMetadata), exporter("getOwnMetadata", getOwnMetadata), exporter("getMetadataKeys", getMetadataKeys), exporter("getOwnMetadataKeys", getOwnMetadataKeys), exporter("deleteMetadata", deleteMetadata); }(exporter); }(); }(Reflect || (Reflect = {})); }).call(this, __webpack_require__(11), __webpack_require__(12)); }, function(module, exports) { var cachedSetTimeout, cachedClearTimeout, process = module.exports = {}; function defaultSetTimout() { throw new Error("setTimeout has not been defined"); } function defaultClearTimeout() { throw new Error("clearTimeout has not been defined"); } function runTimeout(fun) { if (cachedSetTimeout === setTimeout) return setTimeout(fun, 0); if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) return cachedSetTimeout = setTimeout, setTimeout(fun, 0); try { return cachedSetTimeout(fun, 0); } catch (e) { try { return cachedSetTimeout.call(null, fun, 0); } catch (e) { return cachedSetTimeout.call(this, fun, 0); } } } !function() { try { cachedSetTimeout = "function" == typeof setTimeout ? setTimeout : defaultSetTimout; } catch (e) { cachedSetTimeout = defaultSetTimout; } try { cachedClearTimeout = "function" == typeof clearTimeout ? clearTimeout : defaultClearTimeout; } catch (e) { cachedClearTimeout = defaultClearTimeout; } }(); var currentQueue, queue = [], draining = !1, queueIndex = -1; function cleanUpNextTick() { draining && currentQueue && (draining = !1, currentQueue.length ? queue = currentQueue.concat(queue) : queueIndex = -1, queue.length && drainQueue()); } function drainQueue() { if (!draining) { var timeout = runTimeout(cleanUpNextTick); draining = !0; for (var len = queue.length; len; ) { for (currentQueue = queue, queue = []; ++queueIndex < len; ) currentQueue && currentQueue[queueIndex].run(); queueIndex = -1, len = queue.length; } currentQueue = null, draining = !1, function(marker) { if (cachedClearTimeout === clearTimeout) return clearTimeout(marker); if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) return cachedClearTimeout = clearTimeout, clearTimeout(marker); try { return cachedClearTimeout(marker); } catch (e) { try { return cachedClearTimeout.call(null, marker); } catch (e) { return cachedClearTimeout.call(this, marker); } } }(timeout); } } function Item(fun, array) { this.fun = fun, this.array = array; } function noop() {} process.nextTick = function(fun) { var args = new Array(arguments.length - 1); if (arguments.length > 1) for (var i = 1; i < arguments.length; i++) args[i - 1] = arguments[i]; queue.push(new Item(fun, args)), 1 !== queue.length || draining || runTimeout(drainQueue); }, Item.prototype.run = function() { this.fun.apply(null, this.array); }, process.title = "browser", process.browser = !0, process.env = {}, process.argv = [], process.version = "", process.versions = {}, process.on = noop, process.addListener = noop, process.once = noop, process.off = noop, process.removeListener = noop, process.removeAllListeners = noop, process.emit = noop, process.prependListener = noop, process.prependOnceListener = noop, process.listeners = function(name) { return []; }, process.binding = function(name) { throw new Error("process.binding is not supported"); }, process.cwd = function() { return "/"; }, process.chdir = function(dir) { throw new Error("process.chdir is not supported"); }, process.umask = function() { return 0; }; }, function(module, exports) { var g; g = function() { return this; }(); try { g = g || new Function("return this")(); } catch (e) { "object" == typeof window && (g = window); } module.exports = g; }, function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: !0 }), exports.POE_Trade_Translation = void 0; var Container_1 = __webpack_require__(4), Logger_1 = __webpack_require__(0), Translation_1 = __webpack_require__(16), SettingApp_1 = __webpack_require__(26), POE_Trade_Translation = function() { function POE_Trade_Translation() { this.plugins = new Array, this.plugins = [ Container_1.Container.Require(Translation_1.Translation), Container_1.Container.Require(SettingApp_1.SettingApp) ], Logger_1.Logger.info("container loaded"); } return POE_Trade_Translation.prototype.Init = function() { this.plugins.every((function(element) { return !element.linkTest() || (new Promise((function(resolve) { resolve(1); })).then(element.Process), Logger_1.Logger.debug("element unique:" + element.unique()), !element.unique()); })); }, POE_Trade_Translation; }(); exports.POE_Trade_Translation = POE_Trade_Translation; }, function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: !0 }), exports.ScriptOption = exports.ScriptInfo = exports.Env = void 0; var Env = function() { function Env() {} return Env.Sign = "poe_trade_translation", Env; }(); exports.Env = Env; var ScriptInfo = function() {}; exports.ScriptInfo = ScriptInfo; var ScriptOption = function() {}; exports.ScriptOption = ScriptOption; }, function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: !0 }), exports.LogLevel = void 0, function(LogLevel) { LogLevel[LogLevel.debug = 0] = "debug", LogLevel[LogLevel.info = 1] = "info", LogLevel[LogLevel.warn = 2] = "warn", LogLevel[LogLevel.error = 3] = "error"; }(exports.LogLevel || (exports.LogLevel = {})); }, function(module, exports, __webpack_require__) { "use strict"; var extendStatics, __extends = this && this.__extends || (extendStatics = function(d, b) { return extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d, b) { d.__proto__ = b; } || function(d, b) { for (var p in b) b.hasOwnProperty(p) && (d[p] = b[p]); }, extendStatics(d, b); }, function(d, b) { function __() { this.constructor = d; } extendStatics(d, b), d.prototype = null === b ? Object.create(b) : (__.prototype = b.prototype, new __); }), __createBinding = this && this.__createBinding || (Object.create ? function(o, m, k, k2) { void 0 === k2 && (k2 = k), Object.defineProperty(o, k2, { enumerable: !0, get: function() { return m[k]; } }); } : function(o, m, k, k2) { void 0 === k2 && (k2 = k), o[k2] = m[k]; }), __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function(o, v) { Object.defineProperty(o, "default", { enumerable: !0, value: v }); } : function(o, v) { o.default = v; }), __importStar = this && this.__importStar || function(mod) { if (mod && mod.__esModule) return mod; var result = {}; if (null != mod) for (var k in mod) "default" !== k && Object.hasOwnProperty.call(mod, k) && __createBinding(result, mod, k); return __setModuleDefault(result, mod), result; }; Object.defineProperty(exports, "__esModule", { value: !0 }), exports.Translation = void 0; var AppBase_1 = __webpack_require__(5), SiteEnum_1 = __webpack_require__(2), Core_1 = __webpack_require__(1), localItem = __importStar(__webpack_require__(20)), property = __importStar(__webpack_require__(21)), uiInterface = __importStar(__webpack_require__(22)), Logger_1 = __webpack_require__(0), Http_1 = __webpack_require__(23), Config_1 = __webpack_require__(3), SettingItem_1 = __webpack_require__(6), Toast_1 = __webpack_require__(25), semi_ui_1 = __webpack_require__(7), Translation = function(_super) { function Translation() { var _this = null !== _super && _super.apply(this, arguments) || this; return _this.appName = "Translation", _this._unique = !1, _this.rules = new Map([ [ SiteEnum_1.SiteEnum.POETrade, /pathofexile\.com\/trade\/search/i ] ]), _this.root = Config_1.Config.get(SettingItem_1.SettingItem.DataSource, "https://cdn.jsdelivr.net/gh/"), _this.dataItems = new Map([ [ SettingItem_1.SettingItem.ZhStats, "/maxzhang666/POE-Trade-Translation/data/zh/stats.json" ], [ SettingItem_1.SettingItem.UsStats, "/maxzhang666/POE-Trade-Translation/data/us/stats.json" ], [ SettingItem_1.SettingItem.ZhItem, "/maxzhang666/POE-Trade-Translation/data/zh/items.json" ], [ SettingItem_1.SettingItem.UsItem, "/maxzhang666/POE-Trade-Translation/data/us/items.json" ], [ SettingItem_1.SettingItem.ZhStatic, "/maxzhang666/POE-Trade-Translation/data/zh/static.json" ], [ SettingItem_1.SettingItem.UsStatic, "/maxzhang666/POE-Trade-Translation/data/us/static.json" ] ]), _this; } return __extends(Translation, _super), Translation.prototype.loader = function() { this.dataInit(); }, Translation.prototype.run = function() { this.domListening(); }, Translation.prototype.dataCheck = function() { var waitToDownload = []; return this.dataItems.forEach((function(item, index) { Config_1.Config.get(index) || waitToDownload.push(index); })), waitToDownload; }, Translation.prototype.jsonDownload = function(url, settingItem) { return new Promise((function(resolve) { switch (settingItem) { case SettingItem_1.SettingItem.ZhStats: case SettingItem_1.SettingItem.UsStats: case SettingItem_1.SettingItem.ZhItem: case SettingItem_1.SettingItem.UsItem: case SettingItem_1.SettingItem.ZhStatic: case SettingItem_1.SettingItem.UsStatic: Http_1.Http.get(url).then((function(res) { Config_1.Config.set(settingItem, { time: new Date, date: new Date, data: res }), resolve({ settingItem: settingItem, success: !0 }); })).catch((function() { SemiUI.Toast.warning({ content: "\u6570\u636e" + settingItem + "\u4e0b\u8f7d\u5931\u8d25" }), resolve({ settingItem: settingItem, success: !1 }); })); break; default: resolve({ settingItem: settingItem, success: !0 }); } })); }, Translation.prototype.dataInit = function() { var waitToDownload = this.dataCheck(); if (waitToDownload.length > 0) { var promises = []; for (var item in Toast_1.Toast.warning("\u8bcd\u5e93\u6587\u4ef6\u7f3a\u5931,\u51c6\u5907\u4e0b\u8f7d\u8bcd\u5e93", 3), waitToDownload) promises.push(this.jsonDownload(this.root + this.dataItems.get(waitToDownload[item]), waitToDownload[item])); Promise.all(promises).then((function(res) { for (var sn = 0, failItem = [], _i = 0, res_1 = res; _i < res_1.length; _i++) { var re = res_1[_i]; re.success ? sn++ : failItem.push(re.settingItem); } sn === res.length ? semi_ui_1.Modal.confirm({ title: "\u4e0b\u8f7d\u6210\u529f", content: "\u8bcd\u5e93\u4e0b\u8f7d\u6210\u529f,\u662f\u5426\u5237\u65b0\u9875\u9762\u5e94\u7528\u6c49\u5316?", onOk: function() { window.location.reload(); } }) : Toast_1.Toast.error("\u6570\u636e[" + failItem.join(",") + "]\u4e0b\u8f7d\u5931\u8d25,\u8bf7\u5237\u65b0\u91cd\u8bd5", 5); })); } else Toast_1.Toast.success("\u6570\u636e\u52a0\u8f7d\u5b8c\u6210,\u5f00\u59cb\u7ec4\u88c5\u8bcd\u5e93", 3), this.init(); }, Translation.prototype.init = function() { var zhStats = Config_1.Config.get(SettingItem_1.SettingItem.ZhStats).data, usStats = Config_1.Config.get(SettingItem_1.SettingItem.UsStats).data, zhItem = Config_1.Config.get(SettingItem_1.SettingItem.ZhItem).data, usItem = Config_1.Config.get(SettingItem_1.SettingItem.UsItem).data, zhStatic = Config_1.Config.get(SettingItem_1.SettingItem.ZhStatic).data; Config_1.Config.get(SettingItem_1.SettingItem.UsStatic).data; zhStats.result.forEach((function(item) { item.entries.forEach((function(word) { Translation.words.zhStats.set(word.id, word.text); })); })), usStats.result.forEach((function(item) { item.entries.forEach((function(word) { Translation.words.usStats.set(word.id, word.text); })); })), Translation.words.localItem = new Map(Object.entries(localItem)), Core_1.Core.addScript("var __ = " + JSON.stringify(uiInterface)), localStorage["lscache-tradeitems"] = JSON.stringify(this.itemsTranslate(zhItem.result, usItem.result)), localStorage["lscache-tradestats"] = JSON.stringify(zhStats.result), localStorage["lscache-tradedata"] = JSON.stringify(zhStatic.result), localStorage.removeItem("lscache-tradeitems-cacheexpiration"), localStorage.removeItem("lscache-tradestats-cacheexpiration"), localStorage.removeItem("lscache-tradedata-cacheexpiration"), localStorage["local-updated"] = +new Date; }, Translation.prototype.domListening = function() { var that = this, targetNode = document.querySelector("#app"); new MutationObserver((function(mutations, observer) { mutations.forEach((function(mutation) { mutation.addedNodes.forEach((function(node) { "resultset" === node.className && (observer.disconnect(), that.resultsChange()); })); })); })).observe(targetNode, { attributes: !0, childList: !0, subtree: !0, characterData: !1 }); }, Translation.prototype.resultsChange = function() { var that = this, targetNode = document.querySelector(".results"); new MutationObserver((function(mutations, observer) { mutations.forEach((function(mutation) { mutation.addedNodes.forEach((function(node) { "row" === node.className && that.translate(); })); })); })).observe(targetNode, { childList: !0, subtree: !0 }); }, Translation.prototype.translate = function() { var _this = this; Core_1.Core.lazyload((function() { document.querySelectorAll("[data-field]:not(.translated)").forEach((function(elm) { _this.affixTranslate(elm); })), document.querySelectorAll(".itemHeader,.vaalHeader,.hybridHeader:not(.translated)").forEach((function(elm) { var name_ub; if (elm.querySelectorAll(".itemName").forEach((function(name) { var regstr = /class="lc">(.+?)<\/span>/gim.exec(name.innerHTML); regstr && regstr.length >= 1 && (~name.className.indexOf("typeLine") ? name_ub = regstr[1] : regstr[1]); })), name_ub) { var name_zb_1 = Translation.words.localItem.get(name_ub) ? Translation.words.localItem.get(name_ub) + "(" + name_ub + ")" : null; if (!name_zb_1) ; name_zb_1 && (elm.innerHTML = elm.innerHTML.replace(">" + name_ub + "<", ">" + name_zb_1 + "<"), elm.classList.add("translated")); } })), document.querySelectorAll(".requirements:not(translated)").forEach((function(elm) { elm.innerHTML = elm.innerHTML.replace("Requires", "\u9700\u6c42").replace("Level", "\u7b49\u7ea7").replace(/Str(ength)?/, "\u529b\u91cf").replace(/Dex(terity)?/, "\u654f\u6377").replace(/Int(elligence)?/, "\u667a\u6167").replace("in", "\u7684").replace("Any Job", "\u4efb\u610f\u4efb\u52a1").replace("Class", "\u804c\u4e1a").replace("Witch", "\u5973\u5deb").replace("Scion", "\u8d35\u65cf").replace("Marauder", "\u91ce\u86ee\u4eba").replace("Ranger", "\u6e38\u4fa0").replace("Duelist", "\u51b3\u6597\u8005").replace("Templar", "\u5723\u5802\u6b66\u50e7").replace("Shadow", "\u6697\u5f71\u523a\u5ba2"), elm.classList.add("translated"); })), document.querySelectorAll(".property:not(translated)").forEach((function(elm) { var propertyMap = new Map(Object.entries(property)), zhString = elm.innerHTML; propertyMap.forEach((function(v, k) { zhString = zhString.replace(String(k), v); })), zhString != elm.innerHTML && (elm.innerHTML = zhString, elm.classList.add("translated")); })); }), .1); }, Translation.prototype.affixTranslate = function(elm) { var _a, _b, _c, parentNode = elm.parentNode, ele = elm; if (parentNode) { var datel = parentNode.querySelector(".l"); datel && (datel.innerHTML = datel.innerHTML.replace(/P/g, "\u524d").replace(/S/g, "\u540e")); var field = null === (_a = ele.dataset.field) || void 0 === _a ? void 0 : _a.replace("stat.", ""); if (field) { var originalString = ele.innerHTML, usString = null !== (_b = Translation.words.usStats.get(field)) && void 0 !== _b ? _b : originalString, zhString = null !== (_c = Translation.words.zhStats.get(field)) && void 0 !== _c ? _c : originalString; if (usString.indexOf("#") > -1) { var diff = Core_1.Core.strDiff(usString, originalString, "#"); isNaN(parseInt(diff)) || (zhString = zhString.replace("#", diff)); } if ((~field.indexOf("delirium") || ~field.indexOf("monster")) && (zhString = zhString.replace(/\(.+?\)/, "")), ~field.search("veiled\\.")) { var rd = parentNode.querySelector(".r .d"); if (rd) { var str = rd.innerHTML; str && (rd.innerHTML = str.replace(/.*?(\(.*?\))/, zhString + "$1")); } } else ele.setAttribute("title", ele.innerText), ele.innerHTML = zhString; ~field.indexOf(".") || parentNode.classList.add("translated"), ele.classList.add("translated"); } } }, Translation.prototype.itemsTranslate = function(zhItems, usItems) { var zhArr = null == zhItems ? void 0 : zhItems.reduce((function(items, current) { return items[current.id] = current, items; }), {}); return usItems.forEach((function(item) { var zhItem = zhArr[item.id]; if (zhItem) { item.label = zhItem.label; for (var i = 0; i < item.entries.length; i++) { var usEntry = item.entries[i], zhEntry = zhItem.entries[i - 0]; usEntry && zhEntry && (usEntry.text && (Translation.words.localItem.get(usEntry.text) ? (usEntry.text = Translation.words.localItem.get(usEntry.text), Logger_1.Logger.info("text:" + usEntry.text + ",0")) : zhEntry.text && (usEntry.text = zhEntry.text)), usEntry.name && (Translation.words.localItem.get(usEntry.name) ? usEntry.name = Translation.words.localItem.get(usEntry.name) : zhEntry.name && (usEntry.name = zhEntry.name))); } } })), Logger_1.Logger.info(usItems), usItems; }, Translation.prototype.commonTranslate = function(source) { if (Translation.words.commonWord.get(source)) return Translation.words.commonWord.get(source); for (var _i = 0, _a = Translation.words.commonWord.keys(); _i < _a.length; _i++) { var key = _a[_i]; source.indexOf(key) > -1 && (source = source.replace(key, Translation.words.commonWord.get(key))); } return source; }, Translation.prototype.addCommonTranslate = function(source, target) { Translation.words.commonWord.set(source, target); }, Translation.words = { zhStats: new Map, usStats: new Map, zhItem: new Map, usItem: new Map, localItem: new Map, affix: [], delve: [], commonWord: new Map }, Translation; }(AppBase_1.AppBase); exports.Translation = Translation; }, function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: !0 }), exports.BrowerType = void 0, function(BrowerType) { BrowerType[BrowerType.Edge = 0] = "Edge", BrowerType[BrowerType.Edg = 1] = "Edg", BrowerType[BrowerType.Chrome = 2] = "Chrome", BrowerType[BrowerType.Firefox = 3] = "Firefox", BrowerType[BrowerType.Safiri = 4] = "Safiri", BrowerType[BrowerType.Se360 = 5] = "Se360", BrowerType[BrowerType.Ie2345 = 6] = "Ie2345", BrowerType[BrowerType.Baidu = 7] = "Baidu", BrowerType[BrowerType.Liebao = 8] = "Liebao", BrowerType[BrowerType.UC = 9] = "UC", BrowerType[BrowerType.QQ = 10] = "QQ", BrowerType[BrowerType.Sogou = 11] = "Sogou", BrowerType[BrowerType.Opera = 12] = "Opera", BrowerType[BrowerType.Maxthon = 13] = "Maxthon"; }(exports.BrowerType || (exports.BrowerType = {})); }, function(module, exports) { var diff_match_patch = function() { this.Diff_Timeout = 1, this.Diff_EditCost = 4, this.Match_Threshold = .5, this.Match_Distance = 1e3, this.Patch_DeleteThreshold = .5, this.Patch_Margin = 4, this.Match_MaxBits = 32; }; diff_match_patch.Diff = function(op, text) { return [ op, text ]; }, diff_match_patch.prototype.diff_main = function(text1, text2, opt_checklines, opt_deadline) { void 0 === opt_deadline && (opt_deadline = this.Diff_Timeout <= 0 ? Number.MAX_VALUE : (new Date).getTime() + 1e3 * this.Diff_Timeout); var deadline = opt_deadline; if (null == text1 || null == text2) throw new Error("Null input. (diff_main)"); if (text1 == text2) return text1 ? [ new diff_match_patch.Diff(0, text1) ] : []; void 0 === opt_checklines && (opt_checklines = !0); var checklines = opt_checklines, commonlength = this.diff_commonPrefix(text1, text2), commonprefix = text1.substring(0, commonlength); text1 = text1.substring(commonlength), text2 = text2.substring(commonlength), commonlength = this.diff_commonSuffix(text1, text2); var commonsuffix = text1.substring(text1.length - commonlength); text1 = text1.substring(0, text1.length - commonlength), text2 = text2.substring(0, text2.length - commonlength); var diffs = this.diff_compute_(text1, text2, checklines, deadline); return commonprefix && diffs.unshift(new diff_match_patch.Diff(0, commonprefix)), commonsuffix && diffs.push(new diff_match_patch.Diff(0, commonsuffix)), this.diff_cleanupMerge(diffs), diffs; }, diff_match_patch.prototype.diff_compute_ = function(text1, text2, checklines, deadline) { var diffs; if (!text1) return [ new diff_match_patch.Diff(1, text2) ]; if (!text2) return [ new diff_match_patch.Diff(-1, text1) ]; var longtext = text1.length > text2.length ? text1 : text2, shorttext = text1.length > text2.length ? text2 : text1, i = longtext.indexOf(shorttext); if (-1 != i) return diffs = [ new diff_match_patch.Diff(1, longtext.substring(0, i)), new diff_match_patch.Diff(0, shorttext), new diff_match_patch.Diff(1, longtext.substring(i + shorttext.length)) ], text1.length > text2.length && (diffs[0][0] = diffs[2][0] = -1), diffs; if (1 == shorttext.length) return [ new diff_match_patch.Diff(-1, text1), new diff_match_patch.Diff(1, text2) ]; var hm = this.diff_halfMatch_(text1, text2); if (hm) { var text1_a = hm[0], text1_b = hm[1], text2_a = hm[2], text2_b = hm[3], mid_common = hm[4], diffs_a = this.diff_main(text1_a, text2_a, checklines, deadline), diffs_b = this.diff_main(text1_b, text2_b, checklines, deadline); return diffs_a.concat([ new diff_match_patch.Diff(0, mid_common) ], diffs_b); } return checklines && text1.length > 100 && text2.length > 100 ? this.diff_lineMode_(text1, text2, deadline) : this.diff_bisect_(text1, text2, deadline); }, diff_match_patch.prototype.diff_lineMode_ = function(text1, text2, deadline) { var a = this.diff_linesToChars_(text1, text2); text1 = a.chars1, text2 = a.chars2; var linearray = a.lineArray, diffs = this.diff_main(text1, text2, !1, deadline); this.diff_charsToLines_(diffs, linearray), this.diff_cleanupSemantic(diffs), diffs.push(new diff_match_patch.Diff(0, "")); for (var pointer = 0, count_delete = 0, count_insert = 0, text_delete = "", text_insert = ""; pointer < diffs.length; ) { switch (diffs[pointer][0]) { case 1: count_insert++, text_insert += diffs[pointer][1]; break; case -1: count_delete++, text_delete += diffs[pointer][1]; break; case 0: if (count_delete >= 1 && count_insert >= 1) { diffs.splice(pointer - count_delete - count_insert, count_delete + count_insert), pointer = pointer - count_delete - count_insert; for (var subDiff = this.diff_main(text_delete, text_insert, !1, deadline), j = subDiff.length - 1; j >= 0; j--) diffs.splice(pointer, 0, subDiff[j]); pointer += subDiff.length; } count_insert = 0, count_delete = 0, text_delete = "", text_insert = ""; } pointer++; } return diffs.pop(), diffs; }, diff_match_patch.prototype.diff_bisect_ = function(text1, text2, deadline) { for (var text1_length = text1.length, text2_length = text2.length, max_d = Math.ceil((text1_length + text2_length) / 2), v_offset = max_d, v_length = 2 * max_d, v1 = new Array(v_length), v2 = new Array(v_length), x = 0; x < v_length; x++) v1[x] = -1, v2[x] = -1; v1[v_offset + 1] = 0, v2[v_offset + 1] = 0; for (var delta = text1_length - text2_length, front = delta % 2 != 0, k1start = 0, k1end = 0, k2start = 0, k2end = 0, d = 0; d < max_d && !((new Date).getTime() > deadline); d++) { for (var k1 = -d + k1start; k1 <= d - k1end; k1 += 2) { for (var k1_offset = v_offset + k1, y1 = (x1 = k1 == -d || k1 != d && v1[k1_offset - 1] < v1[k1_offset + 1] ? v1[k1_offset + 1] : v1[k1_offset - 1] + 1) - k1; x1 < text1_length && y1 < text2_length && text1.charAt(x1) == text2.charAt(y1); ) x1++, y1++; if (v1[k1_offset] = x1, x1 > text1_length) k1end += 2; else if (y1 > text2_length) k1start += 2; else if (front) { if ((k2_offset = v_offset + delta - k1) >= 0 && k2_offset < v_length && -1 != v2[k2_offset]) if (x1 >= (x2 = text1_length - v2[k2_offset])) return this.diff_bisectSplit_(text1, text2, x1, y1, deadline); } } for (var k2 = -d + k2start; k2 <= d - k2end; k2 += 2) { for (var x2, k2_offset = v_offset + k2, y2 = (x2 = k2 == -d || k2 != d && v2[k2_offset - 1] < v2[k2_offset + 1] ? v2[k2_offset + 1] : v2[k2_offset - 1] + 1) - k2; x2 < text1_length && y2 < text2_length && text1.charAt(text1_length - x2 - 1) == text2.charAt(text2_length - y2 - 1); ) x2++, y2++; if (v2[k2_offset] = x2, x2 > text1_length) k2end += 2; else if (y2 > text2_length) k2start += 2; else if (!front) { if ((k1_offset = v_offset + delta - k2) >= 0 && k1_offset < v_length && -1 != v1[k1_offset]) { var x1; y1 = v_offset + (x1 = v1[k1_offset]) - k1_offset; if (x1 >= (x2 = text1_length - x2)) return this.diff_bisectSplit_(text1, text2, x1, y1, deadline); } } } } return [ new diff_match_patch.Diff(-1, text1), new diff_match_patch.Diff(1, text2) ]; }, diff_match_patch.prototype.diff_bisectSplit_ = function(text1, text2, x, y, deadline) { var text1a = text1.substring(0, x), text2a = text2.substring(0, y), text1b = text1.substring(x), text2b = text2.substring(y), diffs = this.diff_main(text1a, text2a, !1, deadline), diffsb = this.diff_main(text1b, text2b, !1, deadline); return diffs.concat(diffsb); }, diff_match_patch.prototype.diff_linesToChars_ = function(text1, text2) { var lineArray = [], lineHash = {}; function diff_linesToCharsMunge_(text) { for (var chars = "", lineStart = 0, lineEnd = -1, lineArrayLength = lineArray.length; lineEnd < text.length - 1; ) { -1 == (lineEnd = text.indexOf("\n", lineStart)) && (lineEnd = text.length - 1); var line = text.substring(lineStart, lineEnd + 1); (lineHash.hasOwnProperty ? lineHash.hasOwnProperty(line) : void 0 !== lineHash[line]) ? chars += String.fromCharCode(lineHash[line]) : (lineArrayLength == maxLines && (line = text.substring(lineStart), lineEnd = text.length), chars += String.fromCharCode(lineArrayLength), lineHash[line] = lineArrayLength, lineArray[lineArrayLength++] = line), lineStart = lineEnd + 1; } return chars; } lineArray[0] = ""; var maxLines = 4e4, chars1 = diff_linesToCharsMunge_(text1); return maxLines = 65535, { chars1: chars1, chars2: diff_linesToCharsMunge_(text2), lineArray: lineArray }; }, diff_match_patch.prototype.diff_charsToLines_ = function(diffs, lineArray) { for (var i = 0; i < diffs.length; i++) { for (var chars = diffs[i][1], text = [], j = 0; j < chars.length; j++) text[j] = lineArray[chars.charCodeAt(j)]; diffs[i][1] = text.join(""); } }, diff_match_patch.prototype.diff_commonPrefix = function(text1, text2) { if (!text1 || !text2 || text1.charAt(0) != text2.charAt(0)) return 0; for (var pointermin = 0, pointermax = Math.min(text1.length, text2.length), pointermid = pointermax, pointerstart = 0; pointermin < pointermid; ) text1.substring(pointerstart, pointermid) == text2.substring(pointerstart, pointermid) ? pointerstart = pointermin = pointermid : pointermax = pointermid, pointermid = Math.floor((pointermax - pointermin) / 2 + pointermin); return pointermid; }, diff_match_patch.prototype.diff_commonSuffix = function(text1, text2) { if (!text1 || !text2 || text1.charAt(text1.length - 1) != text2.charAt(text2.length - 1)) return 0; for (var pointermin = 0, pointermax = Math.min(text1.length, text2.length), pointermid = pointermax, pointerend = 0; pointermin < pointermid; ) text1.substring(text1.length - pointermid, text1.length - pointerend) == text2.substring(text2.length - pointermid, text2.length - pointerend) ? pointerend = pointermin = pointermid : pointermax = pointermid, pointermid = Math.floor((pointermax - pointermin) / 2 + pointermin); return pointermid; }, diff_match_patch.prototype.diff_commonOverlap_ = function(text1, text2) { var text1_length = text1.length, text2_length = text2.length; if (0 == text1_length || 0 == text2_length) return 0; text1_length > text2_length ? text1 = text1.substring(text1_length - text2_length) : text1_length < text2_length && (text2 = text2.substring(0, text1_length)); var text_length = Math.min(text1_length, text2_length); if (text1 == text2) return text_length; for (var best = 0, length = 1; ;) { var pattern = text1.substring(text_length - length), found = text2.indexOf(pattern); if (-1 == found) return best; length += found, 0 != found && text1.substring(text_length - length) != text2.substring(0, length) || (best = length, length++); } }, diff_match_patch.prototype.diff_halfMatch_ = function(text1, text2) { if (this.Diff_Timeout <= 0) return null; var longtext = text1.length > text2.length ? text1 : text2, shorttext = text1.length > text2.length ? text2 : text1; if (longtext.length < 4 || 2 * shorttext.length < longtext.length) return null; var dmp = this; function diff_halfMatchI_(longtext, shorttext, i) { for (var best_longtext_a, best_longtext_b, best_shorttext_a, best_shorttext_b, seed = longtext.substring(i, i + Math.floor(longtext.length / 4)), j = -1, best_common = ""; -1 != (j = shorttext.indexOf(seed, j + 1)); ) { var prefixLength = dmp.diff_commonPrefix(longtext.substring(i), shorttext.substring(j)), suffixLength = dmp.diff_commonSuffix(longtext.substring(0, i), shorttext.substring(0, j)); best_common.length < suffixLength + prefixLength && (best_common = shorttext.substring(j - suffixLength, j) + shorttext.substring(j, j + prefixLength), best_longtext_a = longtext.substring(0, i - suffixLength), best_longtext_b = longtext.substring(i + prefixLength), best_shorttext_a = shorttext.substring(0, j - suffixLength), best_shorttext_b = shorttext.substring(j + prefixLength)); } return 2 * best_common.length >= longtext.length ? [ best_longtext_a, best_longtext_b, best_shorttext_a, best_shorttext_b, best_common ] : null; } var hm, text1_a, text1_b, text2_a, text2_b, hm1 = diff_halfMatchI_(longtext, shorttext, Math.ceil(longtext.length / 4)), hm2 = diff_halfMatchI_(longtext, shorttext, Math.ceil(longtext.length / 2)); return hm1 || hm2 ? (hm = hm2 ? hm1 && hm1[4].length > hm2[4].length ? hm1 : hm2 : hm1, text1.length > text2.length ? (text1_a = hm[0], text1_b = hm[1], text2_a = hm[2], text2_b = hm[3]) : (text2_a = hm[0], text2_b = hm[1], text1_a = hm[2], text1_b = hm[3]), [ text1_a, text1_b, text2_a, text2_b, hm[4] ]) : null; }, diff_match_patch.prototype.diff_cleanupSemantic = function(diffs) { for (var changes = !1, equalities = [], equalitiesLength = 0, lastEquality = null, pointer = 0, length_insertions1 = 0, length_deletions1 = 0, length_insertions2 = 0, length_deletions2 = 0; pointer < diffs.length; ) 0 == diffs[pointer][0] ? (equalities[equalitiesLength++] = pointer, length_insertions1 = length_insertions2, length_deletions1 = length_deletions2, length_insertions2 = 0, length_deletions2 = 0, lastEquality = diffs[pointer][1]) : (1 == diffs[pointer][0] ? length_insertions2 += diffs[pointer][1].length : length_deletions2 += diffs[pointer][1].length, lastEquality && lastEquality.length <= Math.max(length_insertions1, length_deletions1) && lastEquality.length <= Math.max(length_insertions2, length_deletions2) && (diffs.splice(equalities[equalitiesLength - 1], 0, new diff_match_patch.Diff(-1, lastEquality)), diffs[equalities[equalitiesLength - 1] + 1][0] = 1, equalitiesLength--, pointer = --equalitiesLength > 0 ? equalities[equalitiesLength - 1] : -1, length_insertions1 = 0, length_deletions1 = 0, length_insertions2 = 0, length_deletions2 = 0, lastEquality = null, changes = !0)), pointer++; for (changes && this.diff_cleanupMerge(diffs), this.diff_cleanupSemanticLossless(diffs), pointer = 1; pointer < diffs.length; ) { if (-1 == diffs[pointer - 1][0] && 1 == diffs[pointer][0]) { var deletion = diffs[pointer - 1][1], insertion = diffs[pointer][1], overlap_length1 = this.diff_commonOverlap_(deletion, insertion), overlap_length2 = this.diff_commonOverlap_(insertion, deletion); overlap_length1 >= overlap_length2 ? (overlap_length1 >= deletion.length / 2 || overlap_length1 >= insertion.length / 2) && (diffs.splice(pointer, 0, new diff_match_patch.Diff(0, insertion.substring(0, overlap_length1))), diffs[pointer - 1][1] = deletion.substring(0, deletion.length - overlap_length1), diffs[pointer + 1][1] = insertion.substring(overlap_length1), pointer++) : (overlap_length2 >= deletion.length / 2 || overlap_length2 >= insertion.length / 2) && (diffs.splice(pointer, 0, new diff_match_patch.Diff(0, deletion.substring(0, overlap_length2))), diffs[pointer - 1][0] = 1, diffs[pointer - 1][1] = insertion.substring(0, insertion.length - overlap_length2), diffs[pointer + 1][0] = -1, diffs[pointer + 1][1] = deletion.substring(overlap_length2), pointer++), pointer++; } pointer++; } }, diff_match_patch.prototype.diff_cleanupSemanticLossless = function(diffs) { function diff_cleanupSemanticScore_(one, two) { if (!one || !two) return 6; var char1 = one.charAt(one.length - 1), char2 = two.charAt(0), nonAlphaNumeric1 = char1.match(diff_match_patch.nonAlphaNumericRegex_), nonAlphaNumeric2 = char2.match(diff_match_patch.nonAlphaNumericRegex_), whitespace1 = nonAlphaNumeric1 && char1.match(diff_match_patch.whitespaceRegex_), whitespace2 = nonAlphaNumeric2 && char2.match(diff_match_patch.whitespaceRegex_), lineBreak1 = whitespace1 && char1.match(diff_match_patch.linebreakRegex_), lineBreak2 = whitespace2 && char2.match(diff_match_patch.linebreakRegex_), blankLine1 = lineBreak1 && one.match(diff_match_patch.blanklineEndRegex_), blankLine2 = lineBreak2 && two.match(diff_match_patch.blanklineStartRegex_); return blankLine1 || blankLine2 ? 5 : lineBreak1 || lineBreak2 ? 4 : nonAlphaNumeric1 && !whitespace1 && whitespace2 ? 3 : whitespace1 || whitespace2 ? 2 : nonAlphaNumeric1 || nonAlphaNumeric2 ? 1 : 0; } for (var pointer = 1; pointer < diffs.length - 1; ) { if (0 == diffs[pointer - 1][0] && 0 == diffs[pointer + 1][0]) { var equality1 = diffs[pointer - 1][1], edit = diffs[pointer][1], equality2 = diffs[pointer + 1][1], commonOffset = this.diff_commonSuffix(equality1, edit); if (commonOffset) { var commonString = edit.substring(edit.length - commonOffset); equality1 = equality1.substring(0, equality1.length - commonOffset), edit = commonString + edit.substring(0, edit.length - commonOffset), equality2 = commonString + equality2; } for (var bestEquality1 = equality1, bestEdit = edit, bestEquality2 = equality2, bestScore = diff_cleanupSemanticScore_(equality1, edit) + diff_cleanupSemanticScore_(edit, equality2); edit.charAt(0) === equality2.charAt(0); ) { equality1 += edit.charAt(0), edit = edit.substring(1) + equality2.charAt(0), equality2 = equality2.substring(1); var score = diff_cleanupSemanticScore_(equality1, edit) + diff_cleanupSemanticScore_(edit, equality2); score >= bestScore && (bestScore = score, bestEquality1 = equality1, bestEdit = edit, bestEquality2 = equality2); } diffs[pointer - 1][1] != bestEquality1 && (bestEquality1 ? diffs[pointer - 1][1] = bestEquality1 : (diffs.splice(pointer - 1, 1), pointer--), diffs[pointer][1] = bestEdit, bestEquality2 ? diffs[pointer + 1][1] = bestEquality2 : (diffs.splice(pointer + 1, 1), pointer--)); } pointer++; } }, diff_match_patch.nonAlphaNumericRegex_ = /[^a-zA-Z0-9]/, diff_match_patch.whitespaceRegex_ = /\s/, diff_match_patch.linebreakRegex_ = /[\r\n]/, diff_match_patch.blanklineEndRegex_ = /\n\r?\n$/, diff_match_patch.blanklineStartRegex_ = /^\r?\n\r?\n/, diff_match_patch.prototype.diff_cleanupEfficiency = function(diffs) { for (var changes = !1, equalities = [], equalitiesLength = 0, lastEquality = null, pointer = 0, pre_ins = !1, pre_del = !1, post_ins = !1, post_del = !1; pointer < diffs.length; ) 0 == diffs[pointer][0] ? (diffs[pointer][1].length < this.Diff_EditCost && (post_ins || post_del) ? (equalities[equalitiesLength++] = pointer, pre_ins = post_ins, pre_del = post_del, lastEquality = diffs[pointer][1]) : (equalitiesLength = 0, lastEquality = null), post_ins = post_del = !1) : (-1 == diffs[pointer][0] ? post_del = !0 : post_ins = !0, lastEquality && (pre_ins && pre_del && post_ins && post_del || lastEquality.length < this.Diff_EditCost / 2 && pre_ins + pre_del + post_ins + post_del == 3) && (diffs.splice(equalities[equalitiesLength - 1], 0, new diff_match_patch.Diff(-1, lastEquality)), diffs[equalities[equalitiesLength - 1] + 1][0] = 1, equalitiesLength--, lastEquality = null, pre_ins && pre_del ? (post_ins = post_del = !0, equalitiesLength = 0) : (pointer = --equalitiesLength > 0 ? equalities[equalitiesLength - 1] : -1, post_ins = post_del = !1), changes = !0)), pointer++; changes && this.diff_cleanupMerge(diffs); }, diff_match_patch.prototype.diff_cleanupMerge = function(diffs) { diffs.push(new diff_match_patch.Diff(0, "")); for (var commonlength, pointer = 0, count_delete = 0, count_insert = 0, text_delete = "", text_insert = ""; pointer < diffs.length; ) switch (diffs[pointer][0]) { case 1: count_insert++, text_insert += diffs[pointer][1], pointer++; break; case -1: count_delete++, text_delete += diffs[pointer][1], pointer++; break; case 0: count_delete + count_insert > 1 ? (0 !== count_delete && 0 !== count_insert && (0 !== (commonlength = this.diff_commonPrefix(text_insert, text_delete)) && (pointer - count_delete - count_insert > 0 && 0 == diffs[pointer - count_delete - count_insert - 1][0] ? diffs[pointer - count_delete - count_insert - 1][1] += text_insert.substring(0, commonlength) : (diffs.splice(0, 0, new diff_match_patch.Diff(0, text_insert.substring(0, commonlength))), pointer++), text_insert = text_insert.substring(commonlength), text_delete = text_delete.substring(commonlength)), 0 !== (commonlength = this.diff_commonSuffix(text_insert, text_delete)) && (diffs[pointer][1] = text_insert.substring(text_insert.length - commonlength) + diffs[pointer][1], text_insert = text_insert.substring(0, text_insert.length - commonlength), text_delete = text_delete.substring(0, text_delete.length - commonlength))), pointer -= count_delete + count_insert, diffs.splice(pointer, count_delete + count_insert), text_delete.length && (diffs.splice(pointer, 0, new diff_match_patch.Diff(-1, text_delete)), pointer++), text_insert.length && (diffs.splice(pointer, 0, new diff_match_patch.Diff(1, text_insert)), pointer++), pointer++) : 0 !== pointer && 0 == diffs[pointer - 1][0] ? (diffs[pointer - 1][1] += diffs[pointer][1], diffs.splice(pointer, 1)) : pointer++, count_insert = 0, count_delete = 0, text_delete = "", text_insert = ""; } "" === diffs[diffs.length - 1][1] && diffs.pop(); var changes = !1; for (pointer = 1; pointer < diffs.length - 1; ) 0 == diffs[pointer - 1][0] && 0 == diffs[pointer + 1][0] && (diffs[pointer][1].substring(diffs[pointer][1].length - diffs[pointer - 1][1].length) == diffs[pointer - 1][1] ? (diffs[pointer][1] = diffs[pointer - 1][1] + diffs[pointer][1].substring(0, diffs[pointer][1].length - diffs[pointer - 1][1].length), diffs[pointer + 1][1] = diffs[pointer - 1][1] + diffs[pointer + 1][1], diffs.splice(pointer - 1, 1), changes = !0) : diffs[pointer][1].substring(0, diffs[pointer + 1][1].length) == diffs[pointer + 1][1] && (diffs[pointer - 1][1] += diffs[pointer + 1][1], diffs[pointer][1] = diffs[pointer][1].substring(diffs[pointer + 1][1].length) + diffs[pointer + 1][1], diffs.splice(pointer + 1, 1), changes = !0)), pointer++; changes && this.diff_cleanupMerge(diffs); }, diff_match_patch.prototype.diff_xIndex = function(diffs, loc) { var x, chars1 = 0, chars2 = 0, last_chars1 = 0, last_chars2 = 0; for (x = 0; x < diffs.length && (1 !== diffs[x][0] && (chars1 += diffs[x][1].length), -1 !== diffs[x][0] && (chars2 += diffs[x][1].length), !(chars1 > loc)); x++) last_chars1 = chars1, last_chars2 = chars2; return diffs.length != x && -1 === diffs[x][0] ? last_chars2 : last_chars2 + (loc - last_chars1); }, diff_match_patch.prototype.diff_prettyHtml = function(diffs) { for (var html = [], pattern_amp = /&/g, pattern_lt = //g, pattern_para = /\n/g, x = 0; x < diffs.length; x++) { var op = diffs[x][0], text = diffs[x][1].replace(pattern_amp, "&").replace(pattern_lt, "<").replace(pattern_gt, ">").replace(pattern_para, "¶
"); switch (op) { case 1: html[x] = '' + text + ""; break; case -1: html[x] = '' + text + ""; break; case 0: html[x] = "" + text + ""; } } return html.join(""); }, diff_match_patch.prototype.diff_text1 = function(diffs) { for (var text = [], x = 0; x < diffs.length; x++) 1 !== diffs[x][0] && (text[x] = diffs[x][1]); return text.join(""); }, diff_match_patch.prototype.diff_text2 = function(diffs) { for (var text = [], x = 0; x < diffs.length; x++) -1 !== diffs[x][0] && (text[x] = diffs[x][1]); return text.join(""); }, diff_match_patch.prototype.diff_levenshtein = function(diffs) { for (var levenshtein = 0, insertions = 0, deletions = 0, x = 0; x < diffs.length; x++) { var op = diffs[x][0], data = diffs[x][1]; switch (op) { case 1: insertions += data.length; break; case -1: deletions += data.length; break; case 0: levenshtein += Math.max(insertions, deletions), insertions = 0, deletions = 0; } } return levenshtein += Math.max(insertions, deletions); }, diff_match_patch.prototype.diff_toDelta = function(diffs) { for (var text = [], x = 0; x < diffs.length; x++) switch (diffs[x][0]) { case 1: text[x] = "+" + encodeURI(diffs[x][1]); break; case -1: text[x] = "-" + diffs[x][1].length; break; case 0: text[x] = "=" + diffs[x][1].length; } return text.join("\t").replace(/%20/g, " "); }, diff_match_patch.prototype.diff_fromDelta = function(text1, delta) { for (var diffs = [], diffsLength = 0, pointer = 0, tokens = delta.split(/\t/g), x = 0; x < tokens.length; x++) { var param = tokens[x].substring(1); switch (tokens[x].charAt(0)) { case "+": try { diffs[diffsLength++] = new diff_match_patch.Diff(1, decodeURI(param)); } catch (ex) { throw new Error("Illegal escape in diff_fromDelta: " + param); } break; case "-": case "=": var n = parseInt(param, 10); if (isNaN(n) || n < 0) throw new Error("Invalid number in diff_fromDelta: " + param); var text = text1.substring(pointer, pointer += n); "=" == tokens[x].charAt(0) ? diffs[diffsLength++] = new diff_match_patch.Diff(0, text) : diffs[diffsLength++] = new diff_match_patch.Diff(-1, text); break; default: if (tokens[x]) throw new Error("Invalid diff operation in diff_fromDelta: " + tokens[x]); } } if (pointer != text1.length) throw new Error("Delta length (" + pointer + ") does not equal source text length (" + text1.length + ")."); return diffs; }, diff_match_patch.prototype.match_main = function(text, pattern, loc) { if (null == text || null == pattern || null == loc) throw new Error("Null input. (match_main)"); return loc = Math.max(0, Math.min(loc, text.length)), text == pattern ? 0 : text.length ? text.substring(loc, loc + pattern.length) == pattern ? loc : this.match_bitap_(text, pattern, loc) : -1; }, diff_match_patch.prototype.match_bitap_ = function(text, pattern, loc) { if (pattern.length > this.Match_MaxBits) throw new Error("Pattern too long for this browser."); var s = this.match_alphabet_(pattern), dmp = this; function match_bitapScore_(e, x) { var accuracy = e / pattern.length, proximity = Math.abs(loc - x); return dmp.Match_Distance ? accuracy + proximity / dmp.Match_Distance : proximity ? 1 : accuracy; } var score_threshold = this.Match_Threshold, best_loc = text.indexOf(pattern, loc); -1 != best_loc && (score_threshold = Math.min(match_bitapScore_(0, best_loc), score_threshold), -1 != (best_loc = text.lastIndexOf(pattern, loc + pattern.length)) && (score_threshold = Math.min(match_bitapScore_(0, best_loc), score_threshold))); var bin_min, bin_mid, matchmask = 1 << pattern.length - 1; best_loc = -1; for (var last_rd, bin_max = pattern.length + text.length, d = 0; d < pattern.length; d++) { for (bin_min = 0, bin_mid = bin_max; bin_min < bin_mid; ) match_bitapScore_(d, loc + bin_mid) <= score_threshold ? bin_min = bin_mid : bin_max = bin_mid, bin_mid = Math.floor((bin_max - bin_min) / 2 + bin_min); bin_max = bin_mid; var start = Math.max(1, loc - bin_mid + 1), finish = Math.min(loc + bin_mid, text.length) + pattern.length, rd = Array(finish + 2); rd[finish + 1] = (1 << d) - 1; for (var j = finish; j >= start; j--) { var charMatch = s[text.charAt(j - 1)]; if (rd[j] = 0 === d ? (rd[j + 1] << 1 | 1) & charMatch : (rd[j + 1] << 1 | 1) & charMatch | (last_rd[j + 1] | last_rd[j]) << 1 | 1 | last_rd[j + 1], rd[j] & matchmask) { var score = match_bitapScore_(d, j - 1); if (score <= score_threshold) { if (score_threshold = score, !((best_loc = j - 1) > loc)) break; start = Math.max(1, 2 * loc - best_loc); } } } if (match_bitapScore_(d + 1, loc) > score_threshold) break; last_rd = rd; } return best_loc; }, diff_match_patch.prototype.match_alphabet_ = function(pattern) { for (var s = {}, i = 0; i < pattern.length; i++) s[pattern.charAt(i)] = 0; for (i = 0; i < pattern.length; i++) s[pattern.charAt(i)] |= 1 << pattern.length - i - 1; return s; }, diff_match_patch.prototype.patch_addContext_ = function(patch, text) { if (0 != text.length) { if (null === patch.start2) throw Error("patch not initialized"); for (var pattern = text.substring(patch.start2, patch.start2 + patch.length1), padding = 0; text.indexOf(pattern) != text.lastIndexOf(pattern) && pattern.length < this.Match_MaxBits - this.Patch_Margin - this.Patch_Margin; ) padding += this.Patch_Margin, pattern = text.substring(patch.start2 - padding, patch.start2 + patch.length1 + padding); padding += this.Patch_Margin; var prefix = text.substring(patch.start2 - padding, patch.start2); prefix && patch.diffs.unshift(new diff_match_patch.Diff(0, prefix)); var suffix = text.substring(patch.start2 + patch.length1, patch.start2 + patch.length1 + padding); suffix && patch.diffs.push(new diff_match_patch.Diff(0, suffix)), patch.start1 -= prefix.length, patch.start2 -= prefix.length, patch.length1 += prefix.length + suffix.length, patch.length2 += prefix.length + suffix.length; } }, diff_match_patch.prototype.patch_make = function(a, opt_b, opt_c) { var text1, diffs; if ("string" == typeof a && "string" == typeof opt_b && void 0 === opt_c) text1 = a, (diffs = this.diff_main(text1, opt_b, !0)).length > 2 && (this.diff_cleanupSemantic(diffs), this.diff_cleanupEfficiency(diffs)); else if (a && "object" == typeof a && void 0 === opt_b && void 0 === opt_c) diffs = a, text1 = this.diff_text1(diffs); else if ("string" == typeof a && opt_b && "object" == typeof opt_b && void 0 === opt_c) text1 = a, diffs = opt_b; else { if ("string" != typeof a || "string" != typeof opt_b || !opt_c || "object" != typeof opt_c) throw new Error("Unknown call format to patch_make."); text1 = a, diffs = opt_c; } if (0 === diffs.length) return []; for (var patches = [], patch = new diff_match_patch.patch_obj, patchDiffLength = 0, char_count1 = 0, char_count2 = 0, prepatch_text = text1, postpatch_text = text1, x = 0; x < diffs.length; x++) { var diff_type = diffs[x][0], diff_text = diffs[x][1]; switch (patchDiffLength || 0 === diff_type || (patch.start1 = char_count1, patch.start2 = char_count2), diff_type) { case 1: patch.diffs[patchDiffLength++] = diffs[x], patch.length2 += diff_text.length, postpatch_text = postpatch_text.substring(0, char_count2) + diff_text + postpatch_text.substring(char_count2); break; case -1: patch.length1 += diff_text.length, patch.diffs[patchDiffLength++] = diffs[x], postpatch_text = postpatch_text.substring(0, char_count2) + postpatch_text.substring(char_count2 + diff_text.length); break; case 0: diff_text.length <= 2 * this.Patch_Margin && patchDiffLength && diffs.length != x + 1 ? (patch.diffs[patchDiffLength++] = diffs[x], patch.length1 += diff_text.length, patch.length2 += diff_text.length) : diff_text.length >= 2 * this.Patch_Margin && patchDiffLength && (this.patch_addContext_(patch, prepatch_text), patches.push(patch), patch = new diff_match_patch.patch_obj, patchDiffLength = 0, prepatch_text = postpatch_text, char_count1 = char_count2); } 1 !== diff_type && (char_count1 += diff_text.length), -1 !== diff_type && (char_count2 += diff_text.length); } return patchDiffLength && (this.patch_addContext_(patch, prepatch_text), patches.push(patch)), patches; }, diff_match_patch.prototype.patch_deepCopy = function(patches) { for (var patchesCopy = [], x = 0; x < patches.length; x++) { var patch = patches[x], patchCopy = new diff_match_patch.patch_obj; patchCopy.diffs = []; for (var y = 0; y < patch.diffs.length; y++) patchCopy.diffs[y] = new diff_match_patch.Diff(patch.diffs[y][0], patch.diffs[y][1]); patchCopy.start1 = patch.start1, patchCopy.start2 = patch.start2, patchCopy.length1 = patch.length1, patchCopy.length2 = patch.length2, patchesCopy[x] = patchCopy; } return patchesCopy; }, diff_match_patch.prototype.patch_apply = function(patches, text) { if (0 == patches.length) return [ text, [] ]; patches = this.patch_deepCopy(patches); var nullPadding = this.patch_addPadding(patches); text = nullPadding + text + nullPadding, this.patch_splitMax(patches); for (var delta = 0, results = [], x = 0; x < patches.length; x++) { var start_loc, text2, expected_loc = patches[x].start2 + delta, text1 = this.diff_text1(patches[x].diffs), end_loc = -1; if (text1.length > this.Match_MaxBits ? -1 != (start_loc = this.match_main(text, text1.substring(0, this.Match_MaxBits), expected_loc)) && (-1 == (end_loc = this.match_main(text, text1.substring(text1.length - this.Match_MaxBits), expected_loc + text1.length - this.Match_MaxBits)) || start_loc >= end_loc) && (start_loc = -1) : start_loc = this.match_main(text, text1, expected_loc), -1 == start_loc) results[x] = !1, delta -= patches[x].length2 - patches[x].length1; else if (results[x] = !0, delta = start_loc - expected_loc, text1 == (text2 = -1 == end_loc ? text.substring(start_loc, start_loc + text1.length) : text.substring(start_loc, end_loc + this.Match_MaxBits))) text = text.substring(0, start_loc) + this.diff_text2(patches[x].diffs) + text.substring(start_loc + text1.length); else { var diffs = this.diff_main(text1, text2, !1); if (text1.length > this.Match_MaxBits && this.diff_levenshtein(diffs) / text1.length > this.Patch_DeleteThreshold) results[x] = !1; else { this.diff_cleanupSemanticLossless(diffs); for (var index2, index1 = 0, y = 0; y < patches[x].diffs.length; y++) { var mod = patches[x].diffs[y]; 0 !== mod[0] && (index2 = this.diff_xIndex(diffs, index1)), 1 === mod[0] ? text = text.substring(0, start_loc + index2) + mod[1] + text.substring(start_loc + index2) : -1 === mod[0] && (text = text.substring(0, start_loc + index2) + text.substring(start_loc + this.diff_xIndex(diffs, index1 + mod[1].length))), -1 !== mod[0] && (index1 += mod[1].length); } } } } return [ text = text.substring(nullPadding.length, text.length - nullPadding.length), results ]; }, diff_match_patch.prototype.patch_addPadding = function(patches) { for (var paddingLength = this.Patch_Margin, nullPadding = "", x = 1; x <= paddingLength; x++) nullPadding += String.fromCharCode(x); for (x = 0; x < patches.length; x++) patches[x].start1 += paddingLength, patches[x].start2 += paddingLength; var patch = patches[0], diffs = patch.diffs; if (0 == diffs.length || 0 != diffs[0][0]) diffs.unshift(new diff_match_patch.Diff(0, nullPadding)), patch.start1 -= paddingLength, patch.start2 -= paddingLength, patch.length1 += paddingLength, patch.length2 += paddingLength; else if (paddingLength > diffs[0][1].length) { var extraLength = paddingLength - diffs[0][1].length; diffs[0][1] = nullPadding.substring(diffs[0][1].length) + diffs[0][1], patch.start1 -= extraLength, patch.start2 -= extraLength, patch.length1 += extraLength, patch.length2 += extraLength; } if (0 == (diffs = (patch = patches[patches.length - 1]).diffs).length || 0 != diffs[diffs.length - 1][0]) diffs.push(new diff_match_patch.Diff(0, nullPadding)), patch.length1 += paddingLength, patch.length2 += paddingLength; else if (paddingLength > diffs[diffs.length - 1][1].length) { extraLength = paddingLength - diffs[diffs.length - 1][1].length; diffs[diffs.length - 1][1] += nullPadding.substring(0, extraLength), patch.length1 += extraLength, patch.length2 += extraLength; } return nullPadding; }, diff_match_patch.prototype.patch_splitMax = function(patches) { for (var patch_size = this.Match_MaxBits, x = 0; x < patches.length; x++) if (!(patches[x].length1 <= patch_size)) { var bigpatch = patches[x]; patches.splice(x--, 1); for (var start1 = bigpatch.start1, start2 = bigpatch.start2, precontext = ""; 0 !== bigpatch.diffs.length; ) { var patch = new diff_match_patch.patch_obj, empty = !0; for (patch.start1 = start1 - precontext.length, patch.start2 = start2 - precontext.length, "" !== precontext && (patch.length1 = patch.length2 = precontext.length, patch.diffs.push(new diff_match_patch.Diff(0, precontext))); 0 !== bigpatch.diffs.length && patch.length1 < patch_size - this.Patch_Margin; ) { var diff_type = bigpatch.diffs[0][0], diff_text = bigpatch.diffs[0][1]; 1 === diff_type ? (patch.length2 += diff_text.length, start2 += diff_text.length, patch.diffs.push(bigpatch.diffs.shift()), empty = !1) : -1 === diff_type && 1 == patch.diffs.length && 0 == patch.diffs[0][0] && diff_text.length > 2 * patch_size ? (patch.length1 += diff_text.length, start1 += diff_text.length, empty = !1, patch.diffs.push(new diff_match_patch.Diff(diff_type, diff_text)), bigpatch.diffs.shift()) : (diff_text = diff_text.substring(0, patch_size - patch.length1 - this.Patch_Margin), patch.length1 += diff_text.length, start1 += diff_text.length, 0 === diff_type ? (patch.length2 += diff_text.length, start2 += diff_text.length) : empty = !1, patch.diffs.push(new diff_match_patch.Diff(diff_type, diff_text)), diff_text == bigpatch.diffs[0][1] ? bigpatch.diffs.shift() : bigpatch.diffs[0][1] = bigpatch.diffs[0][1].substring(diff_text.length)); } precontext = (precontext = this.diff_text2(patch.diffs)).substring(precontext.length - this.Patch_Margin); var postcontext = this.diff_text1(bigpatch.diffs).substring(0, this.Patch_Margin); "" !== postcontext && (patch.length1 += postcontext.length, patch.length2 += postcontext.length, 0 !== patch.diffs.length && 0 === patch.diffs[patch.diffs.length - 1][0] ? patch.diffs[patch.diffs.length - 1][1] += postcontext : patch.diffs.push(new diff_match_patch.Diff(0, postcontext))), empty || patches.splice(++x, 0, patch); } } }, diff_match_patch.prototype.patch_toText = function(patches) { for (var text = [], x = 0; x < patches.length; x++) text[x] = patches[x]; return text.join(""); }, diff_match_patch.prototype.patch_fromText = function(textline) { var patches = []; if (!textline) return patches; for (var text = textline.split("\n"), textPointer = 0, patchHeader = /^@@ -(\d+),?(\d*) \+(\d+),?(\d*) @@$/; textPointer < text.length; ) { var m = text[textPointer].match(patchHeader); if (!m) throw new Error("Invalid patch string: " + text[textPointer]); var patch = new diff_match_patch.patch_obj; for (patches.push(patch), patch.start1 = parseInt(m[1], 10), "" === m[2] ? (patch.start1--, patch.length1 = 1) : "0" == m[2] ? patch.length1 = 0 : (patch.start1--, patch.length1 = parseInt(m[2], 10)), patch.start2 = parseInt(m[3], 10), "" === m[4] ? (patch.start2--, patch.length2 = 1) : "0" == m[4] ? patch.length2 = 0 : (patch.start2--, patch.length2 = parseInt(m[4], 10)), textPointer++; textPointer < text.length; ) { var sign = text[textPointer].charAt(0); try { var line = decodeURI(text[textPointer].substring(1)); } catch (ex) { throw new Error("Illegal escape in patch_fromText: " + line); } if ("-" == sign) patch.diffs.push(new diff_match_patch.Diff(-1, line)); else if ("+" == sign) patch.diffs.push(new diff_match_patch.Diff(1, line)); else if (" " == sign) patch.diffs.push(new diff_match_patch.Diff(0, line)); else { if ("@" == sign) break; if ("" !== sign) throw new Error('Invalid patch mode "' + sign + '" in: ' + line); } textPointer++; } } return patches; }, (diff_match_patch.patch_obj = function() { this.diffs = [], this.start1 = null, this.start2 = null, this.length1 = 0, this.length2 = 0; }).prototype.toString = function() { for (var op, text = [ "@@ -" + (0 === this.length1 ? this.start1 + ",0" : 1 == this.length1 ? this.start1 + 1 : this.start1 + 1 + "," + this.length1) + " +" + (0 === this.length2 ? this.start2 + ",0" : 1 == this.length2 ? this.start2 + 1 : this.start2 + 1 + "," + this.length2) + " @@\n" ], x = 0; x < this.diffs.length; x++) { switch (this.diffs[x][0]) { case 1: op = "+"; break; case -1: op = "-"; break; case 0: op = " "; } text[x + 1] = op + encodeURI(this.diffs[x][1]) + "\n"; } return text.join("").replace(/%20/g, " "); }, module.exports = diff_match_patch, module.exports.diff_match_patch = diff_match_patch, module.exports.DIFF_DELETE = -1, module.exports.DIFF_INSERT = 1, module.exports.DIFF_EQUAL = 0; }, function(module, exports) { module.exports = __WEBPACK_EXTERNAL_MODULE__19__; }, function(module) { module.exports = JSON.parse('{"5":"6","Limbsplit Woodsplitter":"\u65ad\u7f6a \u67f4\u65a7","Litanius, the Black Prayer":"\u6f06\u9ed1\u7948\u8005\u4e3d\u5854\u7ebd\u65af","Brine Vassal":"\u7ae0\u9c7c\u54e5","Awakened Minion Damage Support":"\u53ec\u5524\u751f\u7269\u4f24\u5bb3\uff08\u5f3a\u8f85\uff09","Doomfletch\'s Prism Royal Bow":"\u706d\u4e16\u4e4b\u72f1 \u7687\u5bb6\u730e\u5f13","Woods Ursa":"\u4e1b\u6797\u4e4b\u722a","Grand Sun Artifact":"\u81f3\u9ad8\u70c8\u65e5\u795e\u5668","Precursor\'s Emblem Topaz Ring":"\u5148\u9a71\u7684\u7eb9\u7ae0 \u7ea2\u7389\u6212\u6307","Feral Fowl":"\u6218\u6597\u516c\u9e21","Whisper-woven Cloak":"\u9690\u533f\u62ab\u98ce","Supreme Spiked Shield":"\u9738\u8005\u523a\u76fe","Glacier Map":"\u51b0\u5ddd","Cyclone":"\u65cb\u98ce\u65a9","Shaped Grotto Map (Atlas of Worlds)":"\u5e7d\u6697\u5730\u7a74(\u5851)(\u5f02\u754c\u56fe\u9274)","Atziri\'s Reign Crimson Jewel":"\u963f\u5179\u91cc\u4e4b\u6743 \u8d64\u7ea2\u73e0\u5b9d","Arn\'s Anguish Cloth Belt":"\u963f\u6069\u7684\u75db\u82e6 \u9970\u5e03\u8170\u5e26","Soul Ripper Quartz Flask":"\u88c2\u9b42\u8005 \u77f3\u82f1\u836f\u5242","Great Crown":"\u5f3a\u5316\u5de8\u76d4","Royal Staff":"\u7687\u5bb6\u957f\u6756","Brutality Support":"\u6b8b\u66b4","Maltreatment Axe":"\u51cc\u8650\u65a7","Vaal Temple Map (The Awakening)":"\u74e6\u5c14\u5bc6\u6bbf(\u89c9\u9192)","Iron Commander Death Bow":"\u94a2\u94c1\u6307\u6325 \u6b7b\u4ea1\u4e4b\u5f13","Bearded Devil":"\u957f\u987b\u7f8a\u4eba","City Square Map":"\u57ce\u4e2d\u5e7f\u573a","Electroshock Scroll":"\u7535\u51fb\u5377\u8f74","Stibnite Flask":"\u8ff7\u96fe\u836f\u5242","Divine Mana Flask":"\u4e0d\u673d\u9b54\u529b\u836f\u5242","Timeless Maraketh Splinter":"\u6c38\u6052\u9a6c\u62c9\u514b\u65af\u88c2\u7247","Molten Strike":"\u7194\u5ca9\u4e4b\u51fb","Pallias":"\u5e15\u91cc\u4e9a\u65af","The Primordial":"\u8d77\u6e90","The Doctor":"\u75af\u533b","Dedication to the Goddess":"\u5973\u795e\u796d\u732e","Replica Cortex Synthesised Map":"\u8111\u5c42\u3010\u4eff\u54c1\u3011 \u5bfb\u68a6\u8ffd\u5fc6","Weeping Essence of Rage":"\u8086\u8650\u4e4b\u557c\u6ce3\u7cbe\u534e","Honourhome Soldier Helmet":"\u79c1\u6b32\u7684\u5149\u8f89 \u58eb\u5175\u4e4b\u76d4","Mokou\'s Embrace Ruby Ring":"\u83ab\u8003\u4e4b\u62e5 \u7ea2\u7389\u6212\u6307","Maligaro the Mutilator":"\u5207\u65ad\u8005\u9a6c\u96f7\u683c\u7f57","Saqawine Blood Viper":"\u82cd\u7a7a\u6bd2\u8840\u86c7","Emperor of Purity":"\u7eaf\u51c0\u5e1d\u738b","Infused Engineer\'s Orb":"\u704c\u6ce8\u7684\u5236\u7bb1\u5ca9","Overgrown Ruin Map":"\u957f\u8349\u9057\u8ff9","Xoph\'s Heart Amber Amulet":"\u7d22\u4f0f\u4e4b\u5fc3 \u7425\u73c0\u62a4\u8eab\u7b26","Cast when Stunned Support":"\u6655\u7729\u65f6\u65bd\u653e","Shaped Colonnade Map (Atlas of Worlds)":"\u6fc0\u6218\u67f1\u5eca(\u5851)(\u5f02\u754c\u56fe\u9274)","Increased Area of Effect Support":"\u589e\u5927\u8303\u56f4","Flamesight Solaris Circlet":"\u5353\u8bc6 \u65e5\u8000\u4e4b\u51a0","Bringer of Blood":"\u996e\u8840\u8005","Whakawairua Tuahu Strand Map (Atlas of Worlds)":"\u7981\u95ed\u796d\u575b \u81f4\u547d\u5ca9\u6ee9(\u5f02\u754c\u56fe\u9274)","Ancient Spirit Shield":"\u8fdc\u53e4\u9b54\u76fe","General\'s Cry":"\u5c06\u519b\u4e4b\u543c","Etched Greatsword":"\u672f\u96d5\u5de8\u5251","Remnant of Corruption":"\u9057\u5fd8\u7684\u8150\u5316\u5668\u76bf","Sporeguard Saint\'s Hauberk":"\u5b62\u56ca\u5b88\u536b \u5723\u8005\u94fe\u7532","Eclipse Staff":"\u6708\u8680\u957f\u6756","Healthy Mind Cobalt Jewel":"\u7075\u4f53\u8f6c\u6362 \u94b4\u84dd\u73e0\u5b9d","Tarnished Spirit Shield":"\u73af\u5f62\u9b54\u76fe","Basilica Map":"\u795e\u5723\u5927\u6559\u5802","Urn of the Original Ashes":"\u521b\u4e16\u7070\u70ec\u4e4b\u74ee","Coward\'s Legacy Chain Belt":"\u61e6\u592b\u4e4b\u9057 \u6263\u94fe\u8170\u5e26","Daresso\'s Courage Baroque Round Shield":"\u5fb7\u745e\u7d22\u7684\u52c7\u8005\u4e4b\u76fe \u53e4\u4ee3\u5706\u76fe","Light of Lunaris Jingling Spirit Shield":"\u6708\u5f71\u4e4b\u8000 \u7075\u76f8\u9b54\u76fe","Overgrown Shrine Map (Legacy)":"\u5bc6\u8349\u795e\u6bbf(\u9057\u4ea7)","Chayula\'s Breachstone":"\u590f\u4e4c\u62c9\u88c2\u9699\u77f3","Kinetic Bolt":"\u5ff5\u52a8\u98de\u7bad","Trisula":"\u4e09\u53c9\u77ed\u5315","Replica Winterheart Gold Amulet":"\u51ac\u4e4b\u5fc3\u3010\u4eff\u54c1\u3011 \u5e1d\u91d1\u62a4\u8eab\u7b26","Pledge of Hands Judgement Staff":"\u8a93\u7ea6 \u5ba1\u5224\u957f\u6756","Nebulis Void Sceptre":"\u5185\u5e03\u5229\u65af \u865a\u5f71\u77ed\u6756","Soulrend":"\u88c2\u9b42\u672f","Corroded Fossil":"\u8150\u8680\u5316\u77f3","Channel Map":"\u79d8\u5bc6\u901a\u9053","Doryani\'s Fist Vaal Gauntlets":"\u591a\u91cc\u4e9a\u5c3c\u4e4b\u62f3 \u74e6\u5c14\u62a4\u624b","Demon Stitcher":"\u6076\u9b54\u7f1d\u8865\u8005","Pyroclast Mine":"\u706b\u5c51\u5730\u96f7","Shaped Tropical Island Map (Atlas of Worlds)":"\u6674\u7a7a\u5e7d\u5c9b(\u5851)(\u5f02\u754c\u56fe\u9274)","Bog Map (Legacy)":"\u7634\u6c14\u6ce5\u6cbc(\u9057\u4ea7)","Terrace Map (Atlas of Worlds)":"\u6d77\u6ee8\u53f0\u5730(\u5f02\u754c\u56fe\u9274)","Soldier\'s Brigandine":"\u6218\u58eb\u9501\u7532","Blessing of Xoph":"\u7d22\u4f0f\u7684\u795d\u798f","Warlord\'s Mark":"\u7763\u519b\u5370\u8bb0","Cursed Crypt Map (Atlas of Worlds)":"\u5492\u6028\u9675\u5893(\u5f02\u754c\u56fe\u9274)","The Surging Thoughts Legion Sword":"\u601d\u60f3\u5954\u6d41 \u519b\u56e2\u957f\u5251","Elixir of the Unbroken Circle Iron Flask":"\u4e0d\u574f\u5723\u73af\u7075\u836f \u575a\u94c1\u836f\u5242","Soul Tether Cloth Belt":"\u7075\u9b42\u7f81\u7eca \u9970\u5e03\u8170\u5e26","Vaal Detonate Dead":"\u74e6\u5c14\uff1a\u7206\u7075\u672f","Lucent Fossil":"\u900f\u5149\u5316\u77f3","Witchfire Brew Stibnite Flask":"\u5deb\u917f\u4e4b\u6c34 \u8ff7\u96fe\u836f\u5242","Fortress Covenant Cobalt Jewel":"\u8981\u585e\u8a93\u7ea6 \u94b4\u84dd\u73e0\u5b9d","Unbound Ailments Support":"\u5f02\u5e38\u7206\u53d1","Calamitous Visions Small Cluster Jewel":"\u707e\u7978\u5f02\u8c61 \u5c0f\u578b\u661f\u56e2\u73e0\u5b9d","Fenumus\' Toxins Necromancer Circlet":"\u6697\u591c\u6bd2\u7259 \u64cd\u7075\u8005\u4e4b\u51a0","Farric Frost Hellion Alpha":"\u5927\u5730\u51b0\u971c\u5730\u72f1\u5de8\u72ac","Ancient Sculptor":"\u53e4\u4ee3\u96d5\u5851\u5bb6","The Tower":"\u5854\u5cf0","Additional Accuracy Support":"\u989d\u5916\u547d\u4e2d","Muttering Essence of Contempt":"\u8f7b\u89c6\u4e4b\u5462\u5583\u7cbe\u534e","Awakened Swift Affliction Support":"\u6781\u901f\u8150\u5316\uff08\u5f3a\u8f85\uff09","Simple Steel Net":"\u666e\u901a\u7684\u70bc\u94a2\u730e\u9b54\u5939","Skinning Knife":"\u5265\u76ae\u5200","Gavel":"\u575a\u9524","Blood Sceptre":"\u8840\u8272\u77ed\u6756","Awakened Blasphemy Support":"\u6e0e\u795e\uff08\u5f3a\u8f85\uff09","Caer Blaidd, Wolfpack\'s Den Underground River Map (Atlas of Worlds)":"\u585e\u5c14.\u5e03\u96f7\u5fb7\u72fc\u7a74 \u5730\u5e95\u4e4b\u6cb3(\u5f02\u754c\u56fe\u9274)","Damage on Full Life Support":"\u6ee1\u8840\u4f24\u5bb3\uff08\u8f85\uff09","Quilted Jacket":"\u83f1\u7eb9\u5916\u8863","Xoph\'s Pure Breachstone":"\u7d22\u4f0f\u7684\u7eaf\u51c0\u88c2\u9699\u4e4b\u77f3","Olmec\'s Sanctum Bone Crypt Map (The Awakening)":"\u8fdc\u53e4\u4e4b\u5370 \u53e4\u77f3\u9675\u5893(\u89c9\u9192)","Caer Blaidd, Wolfpack\'s Den Underground River Map (The Awakening)":"\u585e\u5c14.\u5e03\u96f7\u5fb7\u72fc\u7a74 \u5730\u5e95\u4e4b\u6cb3(\u89c9\u9192)","The Army of Blood":"\u9c9c\u8840\u5927\u519b","Cold River Map":"\u5bd2\u971c\u4e4b\u6cb3","Bloodthirst Support":"\u8840\u6c14\uff08\u8f85\uff09","Crackling Lance":"\u7535\u6b9b\u957f\u67aa","Spellslinger":"\u6cd5\u672f\u8282\u9b54","Fury Valve Turquoise Amulet":"\u6124\u6012\u4e4b\u9600 \u7fe0\u7389\u62a4\u8eab\u7b26","Akil\'s Prophecy":"\u963f\u51ef\u7684\u9884\u8a00","Ghastly Eye Jewel":"\u82cd\u767d\u4e4b\u51dd\u73e0\u5b9d","Olmec\'s Sanctum Bone Crypt Map":"\u8fdc\u53e4\u4e4b\u5370 \u53e4\u77f3\u9675\u5893","Winged Bestiary Scarab":"\u6709\u7ffc\u7684\u730e\u9b54\u5723\u7532\u866b","Talisman of the Victor Jet Amulet":"\u80dc\u8005\u62a4\u7b26 \u6770\u7279\u62a4\u8eab\u7b26","Doryani\'s Machinarium Maze Map":"\u591a\u5229\u4e9a\u5c3c\u7684\u8ff7\u57ce \u51a5\u795e\u4e4b\u57df","Harbinger Map (Atlas of Worlds)":"\u5148\u9a71\u8005\u5730\u56fe(\u5f02\u754c\u56fe\u9274)","The Goddess of Water":"\u6c34\u4e4b\u5973\u795e","The Jester":"\u5c0f\u4e11","Plateau Map":"\u6d77\u98ce\u9ad8\u539f","Chainmail Tunic":"\u94fe\u7532\u5916\u8863","Spiked Bundle":"\u5c16\u6728\u523a\u76fe","Crested Golden Idol":"\u91d1\u8272\u6234\u51a0\u795e\u50cf","Polished Spiked Shield":"\u5149\u8f89\u523a\u76fe","Hatred":"\u618e\u6068","Sewage Crawler":"\u6c61\u79fd\u98df\u8150\u866b","Wailing Essence of Torment":"\u6298\u78e8\u4e4b\u54c0\u568e\u7cbe\u534e","The Wasp Nest Throat Stabber":"\u8702\u5de2\u6d8c\u52a8 \u523a\u5589\u5203","Asphyxia\'s Wrath Two-Point Arrow Quiver":"\u51b0\u7075\u4e4b\u543c \u53cc\u950b\u7bad\u888b","Imperial Delirium Orb":"\u5e1d\u56fd\u7684\u96fe\u9b47\u5b9d\u73e0","Eldritch Chaos Orb":"\u53e4\u7075\u6df7\u6c8c\u77f3","Otesha, the Giantslayer":"\u5de8\u4eba\u514b\u661f\u6b27\u63d0\u838e","Phantasmagoria Map":"\u9b54\u7075\u5e7b\u72f1","Society\'s Remorse":"\u793e\u56e2\u4e4b\u6094","Scorched Fossil":"\u70bd\u708e\u5316\u77f3","Demon Dagger":"\u9b54\u7075\u77ed\u5315","The Torrent\'s Reclamation Cloth Belt":"\u6ca7\u6d77\u6851\u7530 \u9970\u5e03\u8170\u5e26","Residence Map (Atlas of Worlds)":"\u795e\u4e3b\u5c45\u6240(\u5f02\u754c\u56fe\u9274)","Replica Harvest Jasper Chopper":"\u6536\u5272\u8005\u3010\u4eff\u54c1\u3011 \u7075\u7389\u5de8\u65a7","Fossilised Delirium Orb":"\u77f3\u5316\u7684\u96fe\u9b47\u5b9d\u73e0","Contract: Smuggler\'s Den":"\u5951\u7ea6\uff1a\u73cd\u5b9d\u4e4b\u5730","Wraith Sword":"\u51f6\u7075\u5de8\u5251","The Writhing Jar Hallowed Hybrid Flask":"\u626d\u66f2\u4e4b\u7f50 \u795d\u798f\u590d\u5408\u836f\u5242","Rusted Harbinger Scarab":"\u9508\u8680\u7684\u5148\u9a71\u5723\u7532\u866b","The Prince of Darkness":"\u9ed1\u6697\u541b\u738b","Intensify Support":"\u6cd5\u672f\u51dd\u805a\uff08\u8f85\uff09","Melding of the Flesh Cobalt Jewel":"\u8840\u8089\u878d\u5408 \u94b4\u84dd\u73e0\u5b9d","Fragment of Knowledge":"\u77e5\u8bc6\u788e\u7247","The Blacksmith":"\u6076\u7075\u94c1\u5320","Ewar\'s Mirage Antique Rapier":"\u4f0a\u6c83\u5e7b\u50cf \u53e4\u4ee3\u7ec6\u5251","Grazing Taurus":"\u77f3\u808c\u516c\u725b","Living Ice":"\u6d3b\u5316\u51b0","logbook":"\u65e5\u5fd7","Shockwave Totem":"\u9707\u6ce2\u56fe\u817e","The Goddess Unleashed Eternal Sword":"\u5973\u795e\u7684\u675f\u7f1a \u6c38\u6052\u4e4b\u5251","Plague Mask":"\u75ab\u707e\u4e4b\u9762","Potentiality Rod":"\u6f5c\u529b\u4e4b\u6756","The Academic":"\u5b66\u9662\u6d3e","Grand Order Artifact":"\u81f3\u9ad8\u6559\u56e2\u795e\u5668","Vault Map (Atlas of Worlds)":"\u673a\u5173\u5b9d\u5e93(\u5f02\u754c\u56fe\u9274)","Battery Staff":"\u84c4\u80fd\u957f\u6756","Blink Arrow":"\u95ea\u73b0\u5c04\u51fb","Muttering Essence of Greed":"\u8d2a\u5a6a\u4e4b\u5462\u5583\u7cbe\u534e","Enslaved Hellion":"\u88ab\u5974\u5f79\u7684\u5730\u72f1\u72ac","Gardens Map (Legacy)":"\u82b1\u56ed\u8ff7\u5bab(\u9057\u4ea7)","Incinerate":"\u70e7\u6bc1","Infernal Blow":"\u70bc\u72f1\u4e4b\u51fb","Royal Skean":"\u7687\u5bb6\u77ed\u5315","Timeless Vaal Emblem":"\u6c38\u6052\u74e6\u5c14\u5370\u8bb0","Lord of Steel Viridian Jewel":"\u94a2\u94c1\u4e4b\u4e3b \u7fe0\u7eff\u73e0\u5b9d","Tipua Kaikohuru Whalebone Rapier":"| \u9cb8\u9aa8\u7ec6\u5203","The Beachhead Harbinger Map":"\u964d\u4e34\u4e4b\u5730 \u5148\u9a71\u8005\u5730\u56fe","Pagan Wand":"\u5f02\u6559\u6cd5\u6756","Replica Bitterdream Shadow Sceptre":"\u82e6\u68a6\u3010\u4eff\u54c1\u3011 \u5f71\u8bed\u77ed\u6756","Soul\'s Wick Cobalt Jewel":"\u7075\u9b42\u4e4b\u82af \u94b4\u84dd\u73e0\u5b9d","Mahogany Tower Shield":"\u6843\u6728\u5854\u76fe","The Road to Power":"\u529b\u91cf\u4e4b\u9053","Mirror Shard":"\u5361\u5170\u5fb7\u7684\u9b54\u955c\u788e\u7247","Crest of Ezomyr":"\u827e\u5179\u9ea6\u4e4b\u51a0","Screaming Essence of Sorrow":"\u54c0\u60dc\u4e4b\u5486\u54ee\u7cbe\u534e","Hotheaded Viridian Jewel":"\u9c81\u83bd \u7fe0\u7eff\u73e0\u5b9d","Morning Star":"\u6668\u661f","The Fishmonger":"\u9c7c\u8d29","Shrieking Essence of Loathing":"\u538c\u6076\u4e4b\u5c16\u5578\u7cbe\u534e","Coral Amulet":"\u73ca\u745a\u62a4\u8eab\u7b26","Block Chance Reduction Support":"\u51cf\u5c11\u683c\u6321\u51e0\u7387","Granite Flask":"\u575a\u5ca9\u836f\u5242","Craicic Squid":"\u6df1\u6d77\u58a8\u9c7c","Inspired Learning Crimson Jewel":"\u6c42\u77e5\u7684\u70ed\u60c5 \u8d64\u7ea2\u73e0\u5b9d","Farrul, First of the Plains":"\u5927\u5730\u521d\u5b50 \u6cd5\u745e\u5c14","Medium Hybrid Flask":"\u4e2d\u578b\u590d\u5408\u836f\u5242","Imperial Staff":"\u5e1d\u56fd\u957f\u6756","Tamipin":"\u6c99\u5361\u4e3d\u4e4b\u722a","Shroud of the Lightless Carnal Armour":"\u6cef\u5149\u5bff\u8863 \u7981\u793c\u4e4b\u7532","Strangledrift":"\u627c\u7075\u4e4b\u773c","Avatar of the Huntress":"\u5973\u730e\u624b\u5316\u8eab","Gemstone Sword":"\u5b9d\u77f3\u4e4b\u5251","Second Wind Support":"\u52a9\u529b\u4e4b\u98ce\uff08\u8f85\uff09","Avalanche Rider":"\u96ea\u5d29\u9a91\u58eb","Accelerating Catalyst":"\u52a0\u901f\u50ac\u5316\u5242","Kalguuran Delirium Orb":"\u5361\u53e4\u5170\u96fe\u9b47\u5b9d\u73e0","Shrine Map (Legacy)":"\u5947\u672f\u79d8\u6bbf(\u9057\u4ea7)","Fateful Meeting":"\u547d\u4e2d\u6ce8\u5b9a","Orchard Map (The Awakening)":"\u5bc6\u6797\u679c\u56ed(\u89c9\u9192)","High-Impact Mine Support":"\u9ad8\u7206\u5730\u96f7\uff08\u8f85\uff09","Infernal Cry":"\u70bc\u72f1\u547c\u568e","Chrome-touched Goliath":"\u89e6\u94ec\u5de8\u4eba","Desert Map (Atlas of Worlds)":"\u8d2b\u7620\u4e4b\u5730(\u5f02\u754c\u56fe\u9274)","Timeless Eternal Emblem":"\u6c38\u6052\u5e1d\u56fd\u5370\u8bb0","Life Leech Support":"\u751f\u547d\u5077\u53d6","Vaal Spark":"\u74e6\u5c14\uff1a\u7535\u7403","Captured Soul of Puruna, the Challenger":"\u5df2\u6355\u83b7\u7684\u6311\u6218\u8005\u666e\u9c81\u7eb3 \u4e4b\u9b42","Sharkskin Tunic":"\u9ca8\u76ae\u4e4b\u8863","Arwyn, the Houndmaster":"\u517d\u730e\u5927\u5e08\u963f\u5c14\u6587","Hollow Fossil":"\u9542\u7a7a\u5316\u77f3","Carcass Jack Varnished Coat":"\u81f4\u547d\u4e4b\u4f53 \u6620\u5f69\u5916\u5957","Chiming Spirit Shield":"\u9b42\u76f8\u9b54\u76fe","Wharf Map":"\u6bd2\u7259\u6d77\u6e2f","Shrieking Essence of Anger":"\u6124\u6012\u4e4b\u5c16\u5578\u7cbe\u534e","Rusted Cartography Scarab":"\u9508\u8680\u7684\u5236\u56fe\u8005\u5723\u7532\u866b","The Hermit":"\u9690\u58eb","Ritual Splinter":"\u9a71\u7075\u88c2\u7247","Reverberation Rod Spiraled Wand":"\u6df7\u54cd \u87ba\u7eb9\u6cd5\u6756","Dungeon Map (Atlas of Worlds)":"\u7981\u9b42\u708e\u72f1(\u5f02\u754c\u56fe\u9274)","Scholar\'s Robe":"\u5b66\u8005\u4e4b\u888d","Iron Greaves":"\u94c1\u953b\u80eb\u7532","Champion Kite Shield":"\u6597\u58eb\u9e22\u76fe","Fractal Thoughts Vaal Mask":"\u5206\u5f62\u601d\u7ef4 \u74e6\u5c14\u4e4b\u9762","Broken Promises":"\u7834\u706d\u4e4b\u8bfa","Mutant Arach":"\u5f02\u53d8\u9b54\u86db","Vaal Greatsword":"\u74e6\u5c14\u5de8\u5251","Diamond Ring":"\u5b9d\u94bb\u6212\u6307","Blighted Scouting Report":"\u83cc\u6f6e\u4fa6\u5bdf\u62a5\u544a","Weeping Essence of Wrath":"\u96f7\u9706\u4e4b\u557c\u6ce3\u7cbe\u534e","Shaped Factory Map (Atlas of Worlds)":"\u5de5\u5382\u9057\u8ff9(\u5851)(\u5f02\u754c\u56fe\u9274)","Iron Flask":"\u575a\u94c1\u836f\u5242","Ancient Shard":"\u8fdc\u53e4\u77f3\u788e\u7247","Leif, the Swift-Handed":"\u5feb\u624b\u5b97\u5e08\u529b\u5f17","Blessing of Uul-Netol":"\u4e4c\u5c14\u5c3c\u591a\u7684\u795d\u798f","Sword of the Inverse Relic":"\u9006\u4e16\u4e4b\u5251","Heavy Strike":"\u91cd\u51fb","Holy Chainmail":"\u5723\u8bed\u9501\u7532","Natural Affinity Small Cluster Jewel":"\u81ea\u7136\u4e4b\u559c \u5c0f\u578b\u661f\u56e2\u73e0\u5b9d","Runic Crest":"\u7b26\u6587\u4e4b\u51a0","Unrelenting Timeless Karui Emblem":"\u4e0d\u5c48\u5361\u9c81\u5370\u8bb0","Replica Dreamfeather Eternal Sword":"\u5e7b\u68a6\u98de\u7fbd\u3010\u4eff\u54c1\u3011 \u6c38\u6052\u4e4b\u5251","Tunneltrap":"\u70bd\u9b42","Great Old One\'s Tentacles Eelskin Gloves":"\u4f1f\u5927\u65e7\u795e\u4e4b\u89e6\u624b \u9cd7\u76ae\u624b\u5957","Grinning Fetish":"\u8fdc\u53e4\u4e4b\u796d","Estuary Map (Atlas of Worlds)":"\u8d64\u5bd2\u6cb3\u5cb8(\u5f02\u754c\u56fe\u9274)","Fused Crawler":"\u878d\u5408\u98df\u8150\u866b","The Explorer":"\u63a2\u9669\u5bb6","Maven\'s Invitation: The Twisted":"\u8d24\u4e3b\u4e4b\u9080\uff1a\u88c2\u754c\u5b88\u536b","Medium Cluster Jewel":"\u4e2d\u578b\u661f\u56e2\u73e0\u5b9d","Fragment of Emptiness":"\u7a7a\u865a\u788e\u7247","Unyielding Flame Archon Kite Shield":"\u4e0d\u5c48\u70c8\u7130 \u5a01\u80fd\u9e22\u76fe","Runed Bracers":"\u7b26\u6587\u62a4\u8155","Replica Unstable Payload Cobalt Jewel":"\u4e0d\u7a33\u5b9a\u627f\u8f7d\u3010\u4eff\u54c1\u3011 \u94b4\u84dd\u73e0\u5b9d","Hallowed Mana Flask":"\u795d\u798f\u9b54\u529b\u836f\u5242","Frost Bomb":"\u5bd2\u971c\u7206","Shackles of the Wretched Chain Gloves":"\u60b2\u8fd0\u4e4b\u7f1a \u94fe\u7532\u624b\u5957","Bleached Crawler":"\u6c61\u6ce5\u98df\u8150\u866b","Darkray Vectors Dragonscale Boots":"\u6697\u96f7 \u9f99\u9cde\u957f\u9774","Impresence Onyx Amulet":"\u9690\u901d \u9ed1\u66dc\u62a4\u8eab\u7b26","Primordial Might Crimson Jewel":"\u8d77\u6e90\u529b\u91cf \u8d64\u7ea2\u73e0\u5b9d","The Doppelganger":"\u5080\u5121","Sinvicta\'s Mettle Ezomyte Axe":"\u52c7\u6c14\u4e4b\u9b44 \u827e\u5179\u9ea6\u5de8\u65a7","Ironwood Buckler":"\u94a2\u6728\u8f7b\u76fe","Close Combat Support":"\u8fd1\u6218\uff08\u8f85\uff09","Blind Venture":"\u76f2\u9014","Magistrate Crown":"\u884c\u653f\u8005\u6218\u51a0","Exceptional Order Artifact":"\u5353\u8d8a\u6559\u56e2\u795e\u5668","Dungeon Map (The Awakening)":"\u7981\u9b42\u708e\u72f1(\u89c9\u9192)","Cavern Drifter":"\u6d1e\u7a74\u4e4b\u6d41","Reef Map":"\u5371\u673a\u6d77\u7901","Lancing Steel":"\u65ad\u91d1\u4e4b\u5203","Deshret\'s Vise Steel Gauntlets":"\u8fea\u865a\u745e\u7279\u7684 \u51b7\u94a2\u62a4\u624b","Sambar Sceptre":"\u6076\u9b54\u77ed\u6756","Dragon Mace":"\u9f99\u4e4b\u9524","Shaped Ghetto Map (Atlas of Worlds)":"\u8d64\u8d2b\u5c45\u6240(\u5851)(\u5f02\u754c\u56fe\u9274)","The Vertex Vaal Mask":"\u8c1c\u5bb9 \u74e6\u5c14\u4e4b\u9762","Spike-Point Arrow Quiver":"\u523a\u950b\u7bad\u888b","Precise Arrowhead":"\u7cbe\u51c6\u7bad\u5934","Bone Rhoa":"\u67af\u9aa8\u6050\u5599\u9e1f","Hand of Wisdom and Action Imperial Claw":"\u667a\u884c\u4e4b\u624b \u5e1d\u56fd\u6218\u722a","The Battle Born":"\u6218\u706b\u953b\u9020","Vaal Arc":"\u74e6\u5c14\uff1a\u7535\u5f27","Whispering Delirium Orb":"\u4f4e\u8bed\u7684\u96fe\u9b47\u5b9d\u73e0","The Saviour Legion Sword":"\u6551\u4e16\u8005 \u519b\u56e2\u957f\u5251","Vis Mortis Necromancer Silks":"\u5140\u9e23 \u64cd\u7075\u8005\u80cc\u5fc3","Clear Oil":"\u6e05\u6f88\u5723\u6cb9","Monkey Paw Talisman":"\u7334\u638c\u9b54\u7b26","Timetwist Moonstone Ring":"\u65f6\u7a7a\u626d\u66f2 \u6708\u5149\u77f3\u6212\u6307","Spider Lair Map (Atlas of Worlds)":"\u5de8\u86db\u5de2\u7a74(\u5f02\u754c\u56fe\u9274)","The Metalsmith\'s Gift":"\u94c1\u5320\u7684\u8d60\u793c","Rusted Abyss Scarab":"\u9508\u8680\u7684\u6df1\u6e0a\u5723\u7532\u866b","Blood of Corruption Amber Amulet":"\u5815\u843d\u4e4b\u8840 \u7425\u73c0\u62a4\u8eab\u7b26","Penance Brand":"\u5fcf\u6094\u70d9\u5370","Winged Sulphite Scarab":"\u6709\u7ffc\u7684\u4e9a\u786b\u9178\u5723\u7532\u866b","Freezing Wolf":"\u51b0\u96ea\u5de8\u72fc","Stag Sceptre":"\u7075\u9e7f\u77ed\u6756","Elegant Sword":"\u8d35\u65cf\u4e4b\u5251","Storm Rain":"\u66b4\u96e8\u7bad","Magna Eclipsis Pinnacle Tower Shield":"\u575a\u6bc5\u4e4b\u98df \u575a\u6bc5\u5854\u76fe","Otherworldly Incubator":"\u5f02\u754c\u884c\u8005\u5b55\u80b2\u77f3","Abyssus Ezomyte Burgonet":"\u6df1\u6e0a\u4e4b\u5524 \u827e\u5179\u9ea6\u575a\u76d4","Taxing Gauntlets":"\u6c89\u91cd\u624b\u7532","Perfect Fossil":"\u5b8c\u7f8e\u5316\u77f3","Vaal Summon Skeletons":"\u74e6\u5c14\uff1a\u53ec\u5524\u9b54\u4f8d","Wolf Pelt":"\u72fc\u9996\u76ae\u76d4","Hrimnor\'s Hymn Sledgehammer":"\u96f7\u59c6\u8bfa\u7684\u593a\u547d\u51f6\u5668 \u51b7\u94c1\u91cd\u9524","Carnage Chieftain":"\u51b7\u8840\u914b\u957f","Courthouse Map":"\u5931\u5e8f\u6559\u9662","Detonate Mines":"\u5f15\u7206\u5730\u96f7","Titucius\' Span Reinforced Tower Shield":"\u63d0\u56fe\u5e93\u65af\u7684\u575a\u76fe \u5f3a\u5316\u5854\u76fe","Kalria, The Fallen":"\u5815\u843d\u8005\u5361\u5229\u4e9a","Skirmish Two-Point Arrow Quiver":"\u5c0f\u4f1a\u6218 \u53cc\u950b\u7bad\u888b","Xoph\'s Nurture Citadel Bow":"\u7d22\u4f0f\u7684\u7231\u629a \u57ce\u585e\u6218\u5f13","Wailing Essence of Zeal":"\u70ed\u60c5\u4e4b\u54c0\u568e\u7cbe\u534e","Shrine Map (Atlas of Worlds)":"\u5947\u672f\u79d8\u6bbf(\u5f02\u754c\u56fe\u9274)","Awakened Hextouch Support":"\u86ca\u5492\u3010\u5f3a\u8f85\u3011","Commander\'s Brigandine":"\u6307\u6325\u8005\u9501\u7532","Royal Axe":"\u7687\u5bb6\u4e4b\u65a7","Hyperboreus Leather Belt":"\u6781\u5317 \u76ae\u9769\u8170\u5e26","Oba\'s Cursed Trove Primordial Blocks Map (Legacy)":"\u6b27\u9738\u7684\u5492\u6028\u5b9d\u5e93 \u8fdc\u53e4\u8857\u533a(\u9057\u4ea7)","Weeping Essence of Greed":"\u8d2a\u5a6a\u4e4b\u557c\u6ce3\u7cbe\u534e","The Wind":"\u98ce","Awakened Elemental Damage with Attacks Support":"\u6b66\u5668\u5143\u7d20\u4f24\u5bb3\uff08\u5f3a\u8f85\uff09","Witch of the Cauldron":"\u51a5\u7f36\u4e4b\u5973","Infested Valley Map":"\u75ab\u6e90\u6797\u8c37","Prismweave Rustic Sash":"\u5e7b\u5f69\u83f1\u7ec7 \u7d20\u5e03\u8170\u5e26","Orchard Map":"\u5bc6\u6797\u679c\u56ed","Harbinger Bow":"\u5148\u9a71\u8005\u4e4b\u5f13","Bone Crypt Map (Atlas of Worlds)":"\u53e4\u77f3\u9675\u5893(\u5f02\u754c\u56fe\u9274)","Mask of the Tribunal Magistrate Crown":"\u88c1\u51b3\u9762\u7f69 \u884c\u653f\u8005\u6218\u51a0","Winged Blight Scarab":"\u6709\u7ffc\u7684\u83cc\u6f6e\u5723\u7532\u866b","Vaal Impurity of Lightning":"\u74e6\u5c14\uff1a\u4e0d\u51c0\u4e4b\u96f7","Seal of Lunaris":"\u6708\u5f71\u4e4b\u5370","Wool Gloves":"\u7f8a\u6bdb\u624b\u5957","Bone Armour":"\u9aa8\u5236\u6218\u7532","Unearth":"\u4eb5\u6e0e\u4e4b\u77db","Vaal Pyramid Map":"\u74e6\u5c14\u91d1\u5b57\u5854","Replica Red Trail Titan Greaves":"\u8d64\u7ea2\u8e2a\u8ff9\u3010\u4eff\u54c1\u3011 \u5de8\u4eba\u80eb\u7532","Foxshade Wild Leather":"\u72d0\u6bdb\u94e0 \u72c2\u91ce\u90e8\u65cf\u76ae\u7532","The Rabbit\'s Foot":"\u5e78\u8fd0\u5154\u811a","The Fathomless Depths":"\u65e0\u5c3d\u6df1\u6e0a","Exceptional Sun Artifact":"\u5353\u8d8a\u70c8\u65e5\u795e\u5668","Reinforced Tower Shield":"\u5f3a\u5316\u5854\u76fe","Grip of the Council Arcanist Gloves":"\u8bae\u4f1a\u4e4b\u63e1 \u79d8\u672f\u624b\u5957","Fungal Hollow Map (Legacy)":"\u5b62\u5b50\u7a7a\u8c37(\u9057\u4ea7)","Vermillion Ring":"\u6731\u7802\u4e4b\u6212","Phase Run":"\u6697\u5f71\u8ff7\u8e2a","Deafening Essence of Doubt":"\u7591\u60d1\u4e4b\u7834\u7a7a\u7cbe\u534e","Succor of the Sinless":"\u65e0\u7f6a\u4e4b\u63f4","Rot Head Talisman":"\u8150\u9996\u9b54\u7b26","Noxious Tarantula":"\u5267\u6bd2\u6bdb\u86db","Sand Skitterer":"\u55b7\u7802\u86db","Weeping Essence of Anger":"\u6124\u6012\u4e4b\u557c\u6ce3\u7cbe\u534e","Common Frog":"\u4e00\u822c\u7684\u86d9","Infractem Decimation Bow":"\u7a7f\u4e91 \u730e\u9b42\u4e4b\u5f13","The Eldritch Decay":"\u88c2\u754c\u4e4b\u6b87","Ancient City Map (Atlas of Worlds)":"\u8fdc\u53e4\u4e4b\u57ce(\u5f02\u754c\u56fe\u9274)","Fluid Motion Viridian Jewel":"\u6d41\u7545\u884c\u52a8 \u7fe0\u7eff\u73e0\u5b9d","Acton\'s Nightmare Overgrown Shrine Map (Atlas of Worlds)":"\u8f6e\u56de\u7684\u68a6\u9b47 \u5bc6\u8349\u795e\u6bbf(\u5f02\u754c\u56fe\u9274)","Black Maw Talisman":"\u9ed1\u7259\u9b54\u7b26","Craicic Maw":"\u6df1\u6d77\u88c2\u9f7f\u517d","Iolite Ring":"\u9752\u77f3\u6212\u6307","Obsidian Eater":"\u9ed1\u66dc\u6c99\u87f9","Waterways Map (Atlas of Worlds)":"\u5371\u673a\u6c34\u9053(\u5f02\u754c\u56fe\u9274)","The Price of Prescience":"\u9884\u89c1\u7684\u4ee3\u4ef7","Orb of Storms":"\u98ce\u66b4\u6f29\u6da1","Petrified Blood":"\u8d64\u8840\u51dd\u7ed3","Gorgon\'s Gaze Regicide Mask":"\u845b\u5c14\u8d21\u7684\u51dd\u89c6 \u5f11\u541b\u4e4b\u9762","Replica Twyzel Sage Wand":"\u5ce1\u6e7e\u4e4b\u661f\u3010\u4eff\u54c1\u3011 \u8d24\u8005\u6cd5\u6756","Retaliation Charm Citrine Amulet":"\u590d\u4ec7\u7684\u9b45\u529b \u9ec4\u6676\u62a4\u8eab\u7b26","Focused Ballista Support":"\u5f29\u70ae\u96c6\u706b\uff08\u8f85\uff09","Doedre\'s Skin Widowsilk Robe":"\u5fb7\u745e\u4e4b\u80a4 \u6bd2\u86db\u4e1d\u4e4b\u888d","Binding Shard":"\u9ad8\u9636\u70b9\u91d1\u77f3\u788e\u7247","Frostbolt":"\u5bd2\u51b0\u5f39","Volley Support":"\u9f50\u5c04","Void Battery Prophecy Wand":"\u6f5c\u80fd\u9b54\u68d2 \u7bb4\u8a00\u6cd5\u6756","Advancing Fortress Gut Ripper":"\u8d85\u8d8a\u58c1\u5792 \u88c2\u810f\u94a9","Perfidy Glorious Plate":"\u80cc\u4fe1\u5f03\u4e49 \u8363\u8000\u6218\u94e0","Academy Map (Legacy)":"\u6076\u7075\u5b66\u9662(\u9057\u4ea7)","Polaric Devastation Opal Ring":"\u6bc1\u706d\u6fc0\u6ce2 \u86cb\u767d\u77f3\u6212\u6307","Ceremonial Mace":"\u796d\u793c\u4e4b\u9524","Meginord\'s Girdle Heavy Belt":"\u6885\u5409\u8bfa\u5fb7\u7684\u529b\u91cf\u6cc9\u6e90 \u91cd\u9769\u8170\u5e26","Cutlass":"\u519b\u7528\u957f\u5203","Screaming Essence of Fear":"\u6050\u60e7\u4e4b\u5486\u54ee\u7cbe\u534e","Omen Wand":"\u7075\u5146\u6cd5\u6756","Woodsplitter":"\u67f4\u65a7","Driftwood Maul":"\u673d\u6728\u5de8\u9524","Highborn Bow":"\u8d35\u65cf\u4e4b\u5f13","Agnerod West Imperial Staff":"\u897f\u65b9\u96f7\u9706\u5723\u6756 \u5e1d\u56fd\u957f\u6756","Vaal Pyramid Map (Legacy)":"\u74e6\u5c14\u91d1\u5b57\u5854(\u9057\u4ea7)","Verdant Oil":"\u7fe0\u7eff\u5723\u6cb9","Fragment of the Chimera":"\u8bb0\u5fc6\u788e\u7247","Zealotry":"\u594b\u9510\u5149\u73af","Wildslash Awl":"\u91ce\u6027\u72c2\u722a \u51ff\u9489","Whispering Incubator":"\u4f4e\u8bed\u7684\u5b55\u80b2\u77f3","Mawr Blaidd":"\u72fc\u4e4b\u4fe1\u7269","The Cataclysm":"\u5de8\u53d8","Steel Greaves":"\u51b7\u94a2\u80eb\u7532","Awakened Spell Cascade Support":"\u591a\u91cd\u8303\u56f4\u65bd\u6cd5\uff08\u5f3a\u8f85\uff09","Gilded Sallet":"\u91d1\u9762\u62a4\u76d4","Exalted Shard":"\u5d07\u9ad8\u77f3\u788e\u7247","Primordial Blocks Map (Legacy)":"\u8fdc\u53e4\u8857\u533a(\u9057\u4ea7)","Arrow Nova Support":"\u7bad\u4e4b\u65b0\u661f\uff08\u8f85\uff09","Giant Life Flask":"\u5de8\u578b\u751f\u547d\u836f\u5242","Aventail Helmet":"\u6218\u610f\u4e4b\u76d4","Reave":"\u51b2\u51fb\u6ce2","Gilded Breach Scarab":"\u9540\u91d1\u7684\u88c2\u9699\u5723\u7532\u866b","Pyroshock Clasp Leather Belt":"\u706b\u7206\u4e4b\u62e5 \u76ae\u9769\u8170\u5e26","Jewelled Foil":"\u5b9d\u9970\u7ec6\u5251","Tribal Club":"\u796d\u4eea\u4e4b\u6775","Silk Slippers":"\u4e1d\u7ef8\u4fbf\u978b","Bonespire Talisman":"\u810a\u9aa8\u9b54\u7b26","Impending Doom Support":"\u672b\u65e5\u5c06\u81f3\uff08\u8f85\uff09","Added Chaos Damage Support":"\u9644\u52a0\u6df7\u6c8c\u4f24\u5bb3","Chestplate":"\u80f8\u7532","Shrieking Essence of Zeal":"\u70ed\u60c5\u4e4b\u5c16\u5578\u7cbe\u534e","Obscured Incubator":"\u6726\u80e7\u5b55\u80b2\u77f3","Laboratory Map":"\u5b9e\u9a8c\u5bc6\u5ba4","Thaumaturgical Net":"\u5947\u672f\u730e\u9b54\u5939","The Basilisk":"\u86c7\u602a","The Lich":"\u5deb\u5996","Hiltless Reaver Sword":"\u65e0\u51fb \u6b8b\u66b4\u5de8\u5251","Scarlet Round Shield":"\u70bd\u7ea2\u5706\u76fe","Leather Belt":"\u76ae\u9769\u8170\u5e26","Rama, The Kinslayer":"\u706d\u4eb2\u8005\u62c9\u739b","Arena Map":"\u7ade\u6280\u573a","Axiom Perpetuum Bronze Sceptre":"\u5386\u53f2\u516c\u7406 \u94dc\u953b\u77ed\u6756","Twilight Blade":"\u66ae\u5149\u957f\u5251","To Dust Cobalt Jewel":"\u5c18\u57c3\u843d\u5b9a \u94b4\u84dd\u73e0\u5b9d","Smite":"\u60e9\u51fb","Tangled Fossil":"\u7ea0\u7f20\u5316\u77f3","Riveted Gloves":"\u4eea\u5f0f\u624b\u5957","Ahkeli\'s Meadow Ruby Ring":"\u963f\u514b\u83b1\u7684\u8349\u539f \u7ea2\u7389\u6212\u6307","Deafening Essence of Woe":"\u60b2\u75db\u4e4b\u7834\u7a7a\u7cbe\u534e","The Offspring":"\u82d7\u88d4","Putembo\'s Mountain Topaz Ring":"\u666e\u85e4\u535a\u7684\u9ad8\u5c71 \u9ec4\u7389\u6212\u6307","Sacred Life Flask":"\u5723\u8bed\u751f\u547d\u836f\u5242","Whispering Essence of Contempt":"\u8f7b\u89c6\u4e4b\u4f4e\u8bed\u7cbe\u534e","Gemcutter\'s Promise":"\u5b9d\u77f3\u5320\u7684\u5141\u8bfa","Ezomyte Blade":"\u827e\u5179\u9ea6\u5de8\u5251","Polished Torment Scarab":"\u95ea\u8000\u7684\u82e6\u75db\u5723\u7532\u866b","Jungle Valley Map (Legacy)":"\u5267\u6bd2\u6797\u8c37(\u9057\u4ea7)","Arachnid Tomb Map":"\u7075\u866b\u5893\u7a74","Maim Support":"\u762b\u75ea","Goatman Shaman":"\u7f8a\u4eba\u8428\u6ee1","Wailing Essence of Hatred":"\u618e\u6068\u4e4b\u54c0\u568e\u7cbe\u534e","The Throne":"\u738b\u5ea7","Maelstr\xf6m of Chaos Atoll Map (The Awakening)":"\u6df7\u6c8c\u4e4b\u6e0a \u6ee8\u6d77\u5c71\u4e18(\u89c9\u9192)","Clear Mind Cobalt Jewel":"\u7406\u667a \u94b4\u84dd\u73e0\u5b9d","Death\'s Door Crusader Boots":"\u6b7b\u4ea1\u5927\u95e8 \u5723\u6218\u957f\u9774","Pacifism Viridian Jewel":"\u548c\u5e73\u4e3b\u4e49 \u7fe0\u7eff\u73e0\u5b9d","Sickly Spinner":"\u75ab\u75c5\u8150\u86db","Blinder":"\u88ad\u773c\u94a9","Saemus\' Gift Spike-Point Arrow Quiver":"\u52c7\u8005\u4e4b\u793c \u523a\u950b\u7bad\u888b","Purifying Flame":"\u51c0\u5316\u70c8\u7130","Lifetap Support":"\u8d64\u70bc\uff08\u8f85\uff09","Dark Forest Map (The Awakening)":"\u591c\u8bed\u5e7d\u6797(\u89c9\u9192)","The Stormcaller":"\u98ce\u66b4\u4f7f\u8005","Voideye Unset Ring":"\u865a\u7a7a\u6167\u773c \u6f5c\u80fd\u4e4b\u6212","Death and Taxes Necropolis Map (Legacy)":"\u4ea1\u8005\u4e4b\u8d22 \u9b54\u5f71\u5893\u573a(\u9057\u4ea7)","Voidfletcher Penetrating Arrow Quiver":"\u865a\u7a7a\u5236\u7bad\u8005 \u7a7f\u5c04\u7bad\u888b","Runic Hatchet":"\u5bc6\u6587\u4e4b\u65a7","Cane of Unravelling Ezomyte Staff":"\u9610\u91ca\u4e4b\u6756 \u827e\u5179\u9ea6\u957f\u6756","Rusted Metamorph Scarab":"\u9508\u8680\u7684\u707e\u53d8\u5723\u7532\u866b","Horned Talisman":"\u5c16\u89d2\u9b54\u7b26","Antique Rapier":"\u53e4\u4ee3\u7ec6\u5251","Pierce Support":"\u7a7f\u900f","Maze Map (The Awakening)":"\u51a5\u795e\u4e4b\u57df(\u89c9\u9192)","Mark of Submission Unset Ring":"\u5c48\u670d\u5370\u8bb0 \u6f5c\u80fd\u4e4b\u6212","Ylfeban\'s Trickery Hubris Circlet":"\u4f0a\u8299\u73ed\u7684\u8be1\u8ba1 \u7075\u4e3b\u4e4b\u73af","Abberathine Horns":"\u827e\u8d1d\u62c9\u65af\u4e4b\u89d2","Xoph\'s Enriched Breachstone":"\u7d22\u4f0f\u7684\u5f3a\u5316\u88c2\u9699\u4e4b\u77f3","Dawnbreaker Colossal Tower Shield":"\u7834\u6653\u8005 \u5de8\u578b\u5854\u76fe","Soulless Watcher":"\u65e0\u7075\u4e4b\u773c","Precinct Map":"\u82e6\u884c\u4e4b\u57df","Polished Breach Scarab":"\u95ea\u8000\u7684\u88c2\u9699\u5723\u7532\u866b","Divinarius Imperial Skean":"\u6212\u5f8b\u4e4b\u5f71 \u5e1d\u56fd\u77ed\u5315","Singular Scouting Report":"\u5355\u72ec\u4fa6\u5bdf\u62a5\u544a","Shaped Channel Map (Atlas of Worlds)":"\u79d8\u5bc6\u901a\u9053(\u5851)(\u5f02\u754c\u56fe\u9274)","Shavronne\'s Wrappings Occultist\'s Vestment":"\u859b\u6717\u7684\u62a4\u8eab\u957f\u888d \u79d8\u672f\u957f\u8863","Stacked Deck":"\u672a\u77e5\u7684\u547d\u8fd0\u5361","Blade Vortex":"\u98de\u5203\u98ce\u66b4","Pressurised Dagger":"\u51b2\u538b\u5315\u9996","Faithguard Runic Helm":"\u4fe1\u4ef0\u5b88\u536b \u7b26\u6587\u5934\u76d4","Wharf Map (Legacy)":"\u6bd2\u7259\u6d77\u6e2f(\u9057\u4ea7)","Unstable Larva":"\u90aa\u53e3\u4e4b\u708e","Holy Flame Totem":"\u5723\u7130\u56fe\u817e","Circle of Regret Topaz Ring":"\u6094\u6068\u4e4b\u73af \u9ec4\u7389\u6212\u6307","Cobalt Jewel":"\u94b4\u84dd\u73e0\u5b9d","Promenade Map (Legacy)":"\u6708\u8272\u56de\u5eca(\u9057\u4ea7)","Dread Banner":"\u6050\u6016\u4e4b\u65d7","Cluster Traps Support":"\u6563\u5f39\u9677\u9631","Gifts from Above Diamond Ring":"\u795e\u8d50 \u5b9d\u94bb\u6212\u6307","Splitnewt Talisman":"\u65ad\u8788\u9b54\u7b26","Exceptional Broken Circle Artifact":"\u5353\u8d8a\u88c2\u73af\u795e\u5668","Whakatutuki o Matua Tarnished Spirit Shield":"\u74e6\u5361\u56fe\u56fe\u91cc \u73af\u5f62\u9b54\u76fe","Auxium Chain Belt":"\u5965\u672f\u4e4b\u7b26 \u6263\u94fe\u8170\u5e26","Protective Link":"\u9632\u5fa1\u7f81\u7eca","Storm Burst":"\u88c2\u98ce\u96f7\u7403","Screaming Essence of Torment":"\u6298\u78e8\u4e4b\u5486\u54ee\u7cbe\u534e","Goatman Stomper":"\u7f8a\u4eba\u8df5\u8e0f\u8005","Onslaught Support":"\u731b\u653b","The Scavenger":"\u62fe\u8352\u8005","The Coming Storm":"\u98ce\u66b4\u6765\u88ad","Cured Quiver":"\u706b\u7130\u7bad\u888b","Hephaeus, The Hammer":"\u8d6b\u83f2\u65af\xb7\u5723\u9524","Glyphic Fossil":"\u96d5\u523b\u5316\u77f3","Indigo Oil":"\u975b\u9752\u5723\u6cb9","Buried Tarantula":"\u846c\u9b42\u4e4b\u6bcd","The Bringer of Rain Nightmare Bascinet":"\u796d\u793c\u4e4b\u96e8 \u68a6\u9b47\u6218\u76d4","Ashscale Talisman":"\u7070\u70ec\u9b54\u7b26","Unset Amulet":"\u6f5c\u80fd\u9879\u94fe","Split Arrow":"\u5206\u88c2\u7bad\u77e2","Turn the Other Cheek":"\u5fcd\u8fb1","Gold Ring":"\u91d1\u5149\u6212\u6307","Bloodstained Fossil":"\u6e85\u8840\u5316\u77f3","Copper Sword":"\u9752\u94dc\u77ed\u5251","Vaal Impurity of Ice":"\u74e6\u5c14\uff1a\u4e0d\u51c0\u4e4b\u51b0","Waterways Map (The Awakening)":"\u5371\u673a\u6c34\u9053(\u89c9\u9192)","Embroidered Gloves":"\u523a\u7ee3\u624b\u5957","Invictus Solaris Archon Kite Shield":"\u8000\u65e5 \u5a01\u80fd\u9e22\u76fe","Warlord\'s Exalted Orb":"\u7763\u519b\u7684\u5d07\u9ad8\u77f3","The Sword King\'s Salute":"\u5251\u5723\u7684\u81f4\u656c","Chateau Map":"\u53e4\u5821","Zealot Gloves":"\u72c2\u70ed\u8005\u624b\u5957","Endless Misery Cobalt Jewel":"\u65e0\u5c3d\u4e4b\u82e6 \u94b4\u84dd\u73e0\u5b9d","The Anvil Amber Amulet":"\u4fe1\u5ff5\u4e4b\u7827 \u7425\u73c0\u62a4\u8eab\u7b26","Inspiration Support":"\u542f\u8fea\uff08\u8f85\uff09","Pride of the First Ones":"\u5148\u7956\u7684\u4ee3\u4ef7","Fragmented Delirium Orb":"\u7834\u788e\u7684\u96fe\u9b47\u5b9d\u73e0","Uul-Netol\'s Flawless Breachstone":"\u4e4c\u5c14\u5c3c\u591a\u7684\u65e0\u6687\u88c2\u9699\u77f3","Heterochromia":"\u9634\u9633\u773c","flasks":"\u836f\u5242","Host Chieftain":"\u5bbf\u4e3b\u914b\u957f","Full Plate":"\u8fde\u8eab\u94e0\u7532","Plagued Arachnid":"\u761f\u75ab\u5de8\u86db","Polished Blight Scarab":"\u95ea\u8000\u7684\u83cc\u6f6e\u5723\u7532\u866b","Quickening Covenant Viridian Jewel":"\u52a0\u901f\u8a93\u7ea6 \u7fe0\u7eff\u73e0\u5b9d","Summon Lightning Golem":"\u53ec\u5524\u95ea\u7535\u9b54\u50cf","Flaying Knife":"\u6b8b\u4f53\u5229\u5203","Taste of Hate Sapphire Flask":"\u6068\u610f \u84dd\u7389\u836f\u5242","Deafening Essence of Zeal":"\u70ed\u60c5\u4e4b\u7834\u7a7a\u7cbe\u534e","Capricious Spiritblade":"\u83ab\u6d4b\u9b42\u5203","Timeworn Reliquary Key":"\u5c18\u5c01\u5723\u7269\u5385\u94a5\u5319","Volkuur\'s Guidance Zealot Gloves":"\u798f\u5e93\u5c14\u7684\u624b \u72c2\u70ed\u8005\u624b\u5957","Atziri\'s Step Slink Boots":"\u963f\u5179\u91cc\u7684\u91d1\u5c65 \u8ff7\u8e2a\u77ed\u9774","Armageddon Brand":"\u672b\u65e5\u70d9\u5370","Elemental Weakness":"\u5143\u7d20\u8981\u5bb3","Viper Strike":"\u6bd2\u86c7\u6253\u51fb","Mother\'s Embrace Heavy Belt":"\u6bcd\u4eb2\u7684\u62e5\u62b1 \u91cd\u9769\u8170\u5e26","Blood of the Karui Sanctified Life Flask":"\u5361\u9c81\u4e4b\u8840 \u5723\u5316\u751f\u547d\u836f\u5242","Vaal Spirit Shield":"\u74e6\u5c14\u9b54\u76fe","Arena Plate":"\u6597\u8005\u4e4b\u94e0","Feeding Frenzy Support":"\u72c2\u566c\uff08\u8f85\uff09","The Drunken Aristocrat":"\u9152\u9189\u8d35\u65cf","Winged Abyss Scarab":"\u6709\u7ffc\u7684\u6df1\u6e0a\u5723\u7532\u866b","Zealot Boots":"\u72c2\u70ed\u8005\u957f\u9774","Multistrike Support":"\u591a\u91cd\u6253\u51fb","Contract: Heart of Glory Familial Contract":"\u5951\u7ea6\uff1a\u8363\u8a89\u4e4b\u5fc3 \u5bb6\u65cf\u5951\u7ea6","Fir Round Shield":"\u6749\u6728\u5706\u76fe","Replica Perfect Form Zodiac Leather":"\u5b8c\u7f8e\u59ff\u6001\u3010\u4eff\u54c1\u3011 \u661f\u8fb0\u76ae\u7532","Unrelenting Timeless Templar Emblem":"\u4e0d\u5c48\u5723\u5802\u5370\u8bb0","Herald of Purity":"\u7eaf\u51c0\u4e4b\u6377","The Oppressor Elegant Round Shield":"\u538b\u8feb\u8005 \u6743\u8d35\u5706\u76fe","Serpentscale Gauntlets":"\u86c7\u9cde\u624b\u5957","Conqueror\'s Potency Cobalt Jewel":"\u5f81\u670d\u8005\u7684\u529b\u91cf \u94b4\u84dd\u73e0\u5b9d","Conqueror\'s Efficiency Crimson Jewel":"\u5f81\u670d\u8005\u7684\u8fc5\u6377 \u8d64\u7ea2\u73e0\u5b9d","Sanguine Gambol Skinning Knife":"\u96c0\u8dc3 \u5265\u76ae\u5200","Sharkskin Gloves":"\u9ca8\u76ae\u624b\u5957","Incense of Keth":"\u514b\u65af\u718f\u9999","Polished Sensing Charm":"\u629b\u5149\u611f\u77e5\u9b54\u7b26","Eyepecker":"\u624e\u773c\u8005","Asphyxia\'s Wrath Feathered Arrow Quiver":"\u51b0\u7075\u4e4b\u543c \u98de\u7fbd\u7bad\u888b","Shaped Desert Spring Map (Atlas of Worlds)":"\u8352\u6f20\u7eff\u6d32(\u5851)(\u5f02\u754c\u56fe\u9274)","Diviner\'s Delirium Orb":"\u9884\u8a00\u5e08\u7684\u96fe\u9b47\u5b9d\u73e0","Cybil\'s Paw Thresher Claw":"\u5e0c\u6bd4\u5c14\u7684\u51b0\u722a \u6495\u88c2\u5c16\u722a","Volley Fire Viridian Jewel":"\u6012\u706b\u9f50\u53d1 \u7fe0\u7eff\u73e0\u5b9d","Goathide Buckler":"\u7f8a\u76ae\u8f7b\u76fe","Flesh-Eater Dream Mace":"\u8840\u8089\u4e4b\u55dc \u68a6\u5883\u4e4b\u9524","Crescent Splinter":"\u65b0\u6708\u88c2\u7247","Cursed Crypt Map (The Awakening)":"\u5492\u6028\u9675\u5893(\u89c9\u9192)","Summon Reaper":"\u53ec\u5524\u8ffd\u547d\u6b7b\u7075","Rallying Cry":"\u6fc0\u52b1\u6218\u543c","Wailing Essence of Contempt":"\u8f7b\u89c6\u4e4b\u54c0\u568e\u7cbe\u534e","Brother\'s Stash":"\u5144\u5f1f\u7684\u79d8\u85cf","Vaal Sceptre":"\u74e6\u5c14\u77ed\u6756","Replica Bloodplay Stiletto":"\u8840\u8c11\u3010\u4eff\u54c1\u3011 \u9510\u5229\u523a\u5315","Estuary Map":"\u8d64\u5bd2\u6cb3\u5cb8","Prejudice":"\u6210\u89c1","Drox\'s Crest":"\u72c4\u6d1b\u514b\u65af\u4e4b\u51a0","Wharf Map (Atlas of Worlds)":"\u6bd2\u7259\u6d77\u6e2f(\u5f02\u754c\u56fe\u9274)","Icefang Orbit Iron Ring":"\u51b0\u7259\u6307\u73af \u953b\u94c1\u6212\u6307","Vengeful Contract":"\u590d\u4ec7\u5951\u7ea6","Vinia\'s Token":"\u8587\u59ae\u96c5\u7684\u4fe1\u7269","Animate Guardian":"\u5e7b\u5316\u5b88\u536b","Colonnade Map":"\u6fc0\u6218\u67f1\u5eca","Alpine Shaman":"\u7f8a\u4eba\u8428\u6ee1","Glass Shank":"\u73bb\u7483\u5229\u7247","Hellion\'s Paw":"\u9b54\u722a\u5203","The Dreamland":"\u68a6\u5883","Mon\'tregul\'s Grasp Void Sceptre":"\u51cb\u7075\u9b54\u722a \u865a\u5f71\u77ed\u6756","Strand Map (Legacy)":"\u81f4\u547d\u5ca9\u6ee9(\u9057\u4ea7)","Eternal Orb":"\u6c38\u6052\u5b9d\u73e0","Reef Map (Atlas of Worlds)":"\u5371\u673a\u6d77\u7901(\u5f02\u754c\u56fe\u9274)","Shaped Pit Map (Atlas of Worlds)":"\u5de8\u5751(\u5851)(\u5f02\u754c\u56fe\u9274)","The Dragon":"\u5de8\u9f99","leaguestones":"\u8054\u76df\u77f3","Replica Blood Thorn Gnarled Branch":"\u8840\u68d8\u3010\u4eff\u54c1\u3011 \u673d\u6728\u4e4b\u5e72","Megalomaniac Medium Cluster Jewel":"\u5984\u60f3\u75c7 \u4e2d\u578b\u661f\u56e2\u73e0\u5b9d","Aurumvorax Basket Rapier":"\u7075\u62a4 \u7ec3\u6b66\u8005\u7ec6\u5251","Blood-filled Vessel":"\u6d78\u8840\u6cd5\u5668","Vicious Hound":"\u72e0\u6bd2\u730e\u72ac","Craicic Shield Crab":"\u6df1\u6d77\u9644\u58f3\u5de8\u87f9","Preethi, Eye-Pecker":"\u707c\u773c\u8005\u666e\u5229\u65af","Vaal Caress Bronzescale Gauntlets":"\u74e6\u5c14\u7684\u7075\u624b \u94dc\u5f71\u624b\u5957","Tukohama\'s Fortress Ebony Tower Shield":"\u56fe\u514b\u54c8\u739b\u5821\u5792 \u4e4c\u6728\u5854\u76fe","The Summoner":"\u53ec\u5524\u5e08","Praetor Crown":"\u9886\u4e3b\u6218\u51a0","Essence of Horror":"\u6781\u6050\u7cbe\u534e","Judging Voices":"\u5ba1\u5224\u4e4b\u97f3","Viper\'s Scales Full Scale Armour":"\u6bd2\u86c7\u4e4b\u5ea6 \u8fde\u8eab\u9cde\u7532","Celestial Blacksmith\'s Incubator":"\u4f17\u661f\u94c1\u5320\u7684\u5b55\u80b2\u77f3","Black Sun Crest Lacquered Helmet":"\u9ed1\u9633\u4e4b\u51a0 \u6f06\u5f69\u4e4b\u76d4","Replica Wings of Entropy Ezomyte Axe":"\u4e71\u4e16\u4e4b\u7ffc\u3010\u4eff\u54c1\u3011 \u827e\u5179\u9ea6\u5de8\u65a7","Sidhebreath Paua Amulet":"\u9b54\u7075\u4e4b\u7b26 \u6d77\u7075\u62a4\u8eab\u7b26","Tempering Catalyst":"\u56de\u706b\u50ac\u5316\u5242","The Faun":"\u519c\u7267\u4e4b\u795e","Stormbind":"\u7f1a\u96f7\u4e4b\u7eb9","Orb of Dominance":"\u7edf\u5fa1\u5b9d\u73e0","Fencer Helm":"\u51fb\u5251\u58eb\u4e4b\u76d4","Carnal Sceptre":"\u7981\u793c\u77ed\u6756","The Golden Rule Viridian Jewel":"\u9ec4\u91d1\u6cd5\u5219 \u7fe0\u7eff\u73e0\u5b9d","Puncture":"\u653e\u8840","Wraith Axe":"\u51f6\u7075\u4e4b\u65a7","Kaom\'s Way Coral Ring":"\u5188\u59c6\u4e4b\u8def \u73ca\u745a\u6212\u6307","Pugilist Viridian Jewel":"\u8fc5\u51fb\u8005 \u7fe0\u7eff\u73e0\u5b9d","Voidforge Infernal Sword":"\u88c2\u7a7a\u8005 \u72f1\u708e\u91cd\u5251","Doppelg\xe4nger Guise Sadist Garb":"\u53d8\u5f62\u8005\u5916\u8863 \u72c2\u8650\u8005\u675f\u8863","Fright Maul":"\u6050\u60e7\u91cd\u9524","Awakened Fork Support":"\u5206\u88c2\uff08\u5f3a\u8f85\uff09","Mind of the Council Harlequin Mask":"\u667a\u8005\u4e4b\u79d8 \u9e70\u5599\u4e4b\u9762","Demigod\'s Dominance Golden Mantle":"\u5347\u534e\u7edf\u5fa1 \u9ec4\u91d1\u6218\u7532","Decay Support":"\u8150\u8680","Battered Foil":"\u949d\u5203\u7ec6\u5251","Torchoak Step Antique Greaves":"\u706b\u67f3\u80eb\u7532 \u53e4\u94a2\u80eb\u7532","Assassin\'s Haste Cobalt Jewel":"\u6697\u5f71\u4e4b\u5f71 \u94b4\u84dd\u73e0\u5b9d","Rusted Bestiary Scarab":"\u9508\u8680\u7684\u730e\u9b54\u5723\u7532\u866b","Moon Temple Map":"\u6708\u5f71\u795e\u6bbf","The Hale Heart":"\u58ee\u5fc3\u4e0d\u5df2","Redeemer\'s Exalted Orb":"\u6551\u8d4e\u8005\u7684\u5d07\u9ad8\u77f3","Veritania\'s Crest":"\u7ef4\u5229\u5854\u59ae\u5a05\u4e4b\u51a0","Jeweller\'s Orb":"\u5de5\u5320\u77f3","Mistwall Lacquered Buckler":"\u8ff7\u96fe\u4e4b\u5899 \u6f06\u5f69\u8f7b\u76fe","Deerstalker Deerskin Boots":"\u730e\u8e2a \u9e7f\u76ae\u77ed\u9774","Demigod\'s Wager":"\u534a\u795e\u7684\u8d4c\u5c40","Shrieking Essence of Suffering":"\u82e6\u96be\u4e4b\u5c16\u5578\u7cbe\u534e","Crusher of Gladiators":"\u72c2\u6218\u8005","Eye of Chayula Onyx Amulet":"\u5bfb\u5b9d\u8005\u7684\u5fc3\u773c \u9ed1\u66dc\u62a4\u8eab\u7b26","Cold Penetration Support":"\u51b0\u971c\u7a7f\u900f","Blight":"\u67af\u840e","Awakened Unbound Ailments Support":"\u5f02\u5e38\u7206\u53d1\uff08\u5f3a\u8f85\uff09","Graven\'s Secret Cloth Belt":"\u845b\u62c9\u6587\u7684\u79d8\u5b9d \u9970\u5e03\u8170\u5e26","Valyrium Moonstone Ring":"\u5973\u6b66\u795e \u6708\u5149\u77f3\u6212\u6307","Mutated Chieftain":"\u7a81\u53d8\u7684\u914b\u957f","Necropolis Map":"\u9b54\u5f71\u5893\u573a","Titan Greaves":"\u5de8\u4eba\u80eb\u7532","Detonate Dead":"\u7206\u7075\u672f","Avatar of the Forge":"\u9020\u7269\u4e4b\u8c61","Metamorph Liver":"\u707e\u53d8\u8f6c\u5316","Arcade Map (Legacy)":"\u5d29\u574f\u957f\u5eca(\u9057\u4ea7)","Polished Reliquary Scarab":"\u95ea\u8000\u7684\u9057\u7269\u5385\u5723\u7532\u866b","Moonsorrow Imbued Wand":"\u6ce3\u6708 \u9b54\u6027\u6cd5\u6756","The Mountain":"\u5c71\u8109","Roth\'s Reach Recurve Bow":"\u841d\u4e1d\u4e4b\u89e6 \u53cd\u66f2\u5f13","Manabond":"\u7f1a\u9b54\u7535\u6b9b","Eyes of the Greatwolf Greatwolf Talisman":"\u5de8\u72fc\u4e4b\u773c \u72fc\u738b\u9b54\u7b26","Contract: Underbelly":"\u5951\u7ea6\uff1a\u8584\u5f31\u4e4b\u5730","Augmented Distant Memory Courthouse Map":"\u589e\u5f3a\u7684\u9065\u8fdc\u56de\u5fc6 \u5931\u5e8f\u6559\u9662","Conductive Quiver":"\u7535\u5149\u7bad\u888b","Wasteland Map (Atlas of Worlds)":"\u8352\u5730(\u5f02\u754c\u56fe\u9274)","Uul-Netol\'s Embrace Vaal Axe":"\u4e4c\u5c14\u5c3c\u591a\u7684\u62e5\u62b1 \u74e6\u5c14\u5de8\u65a7","Weeping Essence of Fear":"\u6050\u60e7\u4e4b\u557c\u6ce3\u7cbe\u534e","Violet Oil":"\u7d2b\u8272\u5723\u6cb9","Maligaro\'s Virtuosity Deerskin Gloves":"\u9a6c\u96f7\u683c\u7f57\u7684\u73ab\u7ea2\u624b\u5957 \u9e7f\u76ae\u624b\u5957","Leash of Oblation Leather Belt":"\u5723\u4f53\u4e4b\u7ef3 \u76ae\u9769\u8170\u5e26","Glacial Hammer":"\u51b0\u971c\u4e4b\u9524","Rooster Fiend":"\u516c\u9e21\u6076\u9b3c","Le Heup of All Iron Ring":"\u82f1\u7075\u5b9d\u73af \u953b\u94c1\u6212\u6307","Academy Map (The Awakening)":"\u6076\u7075\u5b66\u9662(\u89c9\u9192)","The Celestial Justicar":"\u5929\u5802\u6267\u6cd5\u5b98","Fishing Rod":"\u9c7c\u7aff","Terrace Map":"\u6d77\u6ee8\u53f0\u5730","Guardian of the Phoenix":"\u51e4\u51f0\u5b88\u536b","Amarissa, Daughter of Merveil":"\u83ab\u8587\u513f\u4e4b\u5973\u57c3\u739b\u8389\u838e","Rage Support":"\u6012\u706b\uff08\u8f85\uff09","The Demoness":"\u9b45\u9b54","Clayshaper Rock Breaker":"\u5851\u6ce5\u8005 \u7834\u5ca9\u9524","The Stampede Assassin\'s Boots":"\u6e83\u8d25 \u6697\u5f71\u4e4b\u9774","Antique Gauntlets":"\u53e4\u94a2\u62a4\u624b","Elemental Damage with Attacks Support":"\u6b66\u5668\u5143\u7d20\u4f24\u5bb3","Maraketh Bow":"\u9a6c\u62c9\u514b\u65af\u5f13","Vaults of Atziri Vaal Pyramid Map (Legacy)":"\u963f\u5179\u91cc\u7684\u79d8\u5b9d\u5e93 \u74e6\u5c14\u91d1\u5b57\u5854(\u9057\u4ea7)","Shrieking Essence of Hatred":"\u618e\u6068\u4e4b\u5c16\u5578\u7cbe\u534e","Gift to the Goddess":"\u5973\u795e\u4e4b\u793c","Armourer\'s Scrap":"\u62a4\u7532\u7247","Maven\'s Invitation: The Formed":"\u8d24\u4e3b\u4e4b\u9080\uff1a\u5851\u754c\u5b88\u536b","Skittering Incubator":"\u8ff7\u8e2a\u5b55\u80b2\u77f3","Demigod\'s Presence Gold Amulet":"\u5347\u534e\u4e4b\u5370 \u5e1d\u91d1\u62a4\u8eab\u7b26","Chain Gloves":"\u94fe\u7532\u624b\u5957","Splinter of Esh":"\u88c2\u9699\u788e\u7247","March of the Legion Legion Boots":"\u519b\u56e2\u7684\u8fdb\u51fb \u519b\u56e2\u957f\u9774","Chaos Orb":"\u6df7\u6c8c\u77f3","Lacquered Helmet":"\u6f06\u5f69\u4e4b\u76d4","Drek, Apex Hunter":"\u6743\u5229\u730e\u4eba\u5fb7\u91cc\u514b","Small Life Flask":"\u5c0f\u578b\u751f\u547d\u836f\u5242","Malformation Map (Atlas of Worlds)":"\u7578\u5f62\u4ea1\u57df(\u5f02\u754c\u56fe\u9274)","Desperate Crusade":"\u7edd\u671b\u5723\u6218","Offering to the Goddess":"\u5973\u795e\u796d\u54c1","Basemetal Treads":"\u52a3\u91d1\u4e4b\u5c65","Hyrri\'s Bite Sharktooth Arrow Quiver":"\u897f\u91cc\u7684\u55dc\u8840\u4e4b\u77e2 \u9ca8\u9f7f\u7bad\u888b","Gold Amulet":"\u5e1d\u91d1\u62a4\u8eab\u7b26","Hubris Circlet":"\u7075\u4e3b\u4e4b\u73af","Lacquered Garb":"\u6f06\u5f69\u675f\u8863","Snow Wolf":"\u98ce\u96ea\u5de8\u72fc","Portal Scroll":"\u4f20\u9001\u5377\u8f74","Racecourse Map (Atlas of Worlds)":"\u5de8\u578b\u7ade\u6280\u573a(\u5f02\u754c\u56fe\u9274)","Frenzy":"\u72c2\u6012","Aggregator Charm":"\u805a\u5408\u9b54\u7b26","Power Charge On Critical Support":"\u66b4\u51fb\u83b7\u5f97\u66b4\u51fb\u7403","Haunted Mansion Map":"\u5e7d\u9b42\u5b85\u90b8","Blueprint: Records Office":"\u84dd\u56fe\uff1a\u6863\u6848\u5904","Vaal Lightning Warp":"\u74e6\u5c14\uff1a\u95ea\u7535\u4f20\u9001","Caustic Arrow":"\u8150\u8680\u7bad\u77e2","Titanium Spirit Shield":"\u5de8\u4eba\u9b54\u76fe","Gemcutter\'s Incubator":"\u5b9d\u77f3\u5320\u7684\u5b55\u80b2\u77f3","Baited Expectations":"\u524d\u7a0b\u7684\u8bf1\u60d1","Replica Fragile Bloom Crimson Jewel":"\u8106\u5f31\u7684\u7e41\u534e\u3010\u4eff\u54c1\u3011 \u8d64\u7ea2\u73e0\u5b9d","Bismuth Flask":"\u7070\u5ca9\u836f\u5242","Flesh and Spirit Ironscale Gauntlets":"\u8089\u4f53\u4e0e\u9b42\u7075 \u94c1\u5f71\u624b\u5957","Vaal Reave":"\u74e6\u5c14\uff1a\u51b2\u51fb\u6ce2","Quecholli Jagged Maul":"\u91cd\u51fb\u4e4b\u9524 \u72fc\u7259\u91cd\u9524","Anarchy Leaguestone":"\u6df7\u4e71\u8d5b\u5b63\u77f3","Infected Adder":"\u53d7\u611f\u67d3\u7684\u6bd2\u86c7","The Damned":"\u5492\u8bc5\u4e4b\u7075","Maven\'s Invitation: New Vastir":"\u8d24\u4e3b\u4e4b\u9080\uff1a\u65b0\u74e6\u65af\u8482\u5c14","Maven\'s Invitation: The Feared":"\u8d24\u4e3b\u4e4b\u9080\uff1a\u6050\u60e7","Purity of Elements":"\u5143\u7d20\u51c0\u5316","Inertia Crimson Jewel":"\u60ef\u6027 \u8d64\u7ea2\u73e0\u5b9d","Intuitive Leap Viridian Jewel":"\u76f4\u89c9\u4e4b\u8dc3 \u7fe0\u7eff\u73e0\u5b9d","Fire and Fury":"\u70bd\u6012\u4e4b\u7075","Strong Steel Net":"\u5f3a\u529b\u7684\u70bc\u94a2\u730e\u9b54\u5939","Swift Affliction Support":"\u6781\u901f\u8150\u5316","Muttering Essence of Hatred":"\u618e\u6068\u4e4b\u5462\u5583\u7cbe\u534e","Leli Goya, Daughter of Ash":"\u4f59\u70ec\u4e4b\u5973\u52d2\u4e3d\u8389\u679c\u96c5","Sallazzang":"\u9b54\u8725","Stormrider Boots":"\u5fa1\u98ce\u4e4b\u9774","Wild Strike":"\u91ce\u6027\u6253\u51fb","The Tempestuous Steel War Sword":"\u66b4\u98ce\u4e4b\u94a2 \u5f81\u6218\u4e4b\u5251","The Tempest Long Bow":"\u66b4\u98ce\u96e8 \u957f\u5f13","Enigmatic Assembly C5":"\u795e\u79d8\u7ec4\u88c5\u4f53 C5","Putrid Serpent":"\u8150\u70c2\u7684\u5de8\u86c7","Colosseum Plate":"\u51b3\u6597\u4e4b\u94e0","Weeping Essence of Sorrow":"\u54c0\u60dc\u4e4b\u557c\u6ce3\u7cbe\u534e","Rugged Quiver":"\u51b0\u6676\u7bad\u888b","Colonnade Map (The Awakening)":"\u6fc0\u6218\u67f1\u5eca(\u89c9\u9192)","Ancestral Warchief":"\u5148\u7956\u6218\u58eb\u957f","Plate Vest":"\u94c1\u5236\u80cc\u5fc3","Shaped Dunes Map (Atlas of Worlds)":"\u66ae\u8272\u6c99\u4e18(\u5851)(\u5f02\u754c\u56fe\u9274)","Metamorph Brain":"\u707e\u53d8\u4e2d\u67a2","Kurgal\'s Gaze Hypnotic Eye Jewel":"\u5e93\u52a0\u5c14\u7684\u51dd\u89c6 \u5b89\u7761\u4e4b\u51dd\u73e0\u5b9d","Deafening Essence of Scorn":"\u50b2\u89c6\u4e4b\u7834\u7a7a\u7cbe\u534e","The Fiend":"\u52a3\u9b54","The Beast":"\u72c2\u517d","Militant Faith Timeless Jewel":"\u597d\u6218\u7684\u4fe1\u4ef0 \u6c38\u6052\u73e0\u5b9d","Jack, the Axe Vaal Hatchet":"\u523d\u5b50\u624b.\u6770\u514b \u74e6\u5c14\u6218\u65a7","Replica Shroud of the Lightless Carnal Armour":"\u6cef\u5149\u5bff\u8863\u3010\u4eff\u54c1\u3011 \u7981\u793c\u4e4b\u7532","Blueprint: Bunker":"\u84dd\u56fe\uff1a\u5821\u5792","The Tyrant":"\u66b4\u8650\u4e4b\u7075","The Tempest\'s Binding Callous Mask":"\u98ce\u66b4\u62d8\u675f \u65e0\u60c5\u4e4b\u9762","Spark":"\u7535\u7403","Mj\xf6lner Gavel":"\u6c89\u9ed8\u4e4b\u96f7 \u575a\u9524","Infested Maw":"\u611f\u67d3\u7684\u88c2\u9f7f\u517d","Infernal Axe":"\u72f1\u706b\u4e4b\u5203","Brutus\' Lead Sprinkler Ritual Sceptre":"\u5e03\u9c81\u7279\u65af\u7684\u5211\u5177 \u796d\u4eea\u77ed\u6756","Merveil\'s Daughter":"\u6d77\u5996\u4e4b\u5973","Blighted Incubator":"\u67af\u5316\u7684\u5b55\u80b2\u77f3","Lycosidae Rawhide Tower Shield":"\u72fc\u86db \u751f\u76ae\u5854\u76fe","Otherworldly Scouting Report":"\u5f02\u754c\u4fa6\u5bdf\u62a5\u544a","Tidebreaker Imperial Maul":"\u5c40\u52bf\u9006\u8f6c\u8005 \u5e1d\u56fd\u91cd\u9524","Faster Projectiles Support":"\u5feb\u901f\u6295\u5c04","Moonbender\'s Wing Tomahawk":"\u6708\u5c9a \u5f81\u6218\u4e4b\u65a7","The Pact":"\u534f\u7ea6","Awakened Increased Area of Effect Support":"\u589e\u5927\u8303\u56f4\uff08\u5f3a\u8f85\uff09","Vaults of Atziri Vaal Pyramid Map (The Awakening)":"\u963f\u5179\u91cc\u7684\u79d8\u5b9d\u5e93 \u74e6\u5c14\u91d1\u5b57\u5854(\u89c9\u9192)","Shaped Spider Lair Map (Atlas of Worlds)":"\u5de8\u86db\u5de2\u7a74(\u5851)(\u5f02\u754c\u56fe\u9274)","Weeping Essence of Hatred":"\u618e\u6068\u4e4b\u557c\u6ce3\u7cbe\u534e","The Mercenary":"\u4f63\u5175","The Pandemonius Jade Amulet":"\u7fa4\u9b54\u6bbf \u7fe0\u7389\u62a4\u8eab\u7b26","Winter\'s Bounty Cobalt Jewel":"\u51ac\u5b63\u8d4f\u91d1 \u94b4\u84dd\u73e0\u5b9d","The Long Con":"\u957f\u7ebf\u9493\u9c7c","The Progeny of Lunaris":"\u6708\u5f71\u7684\u5b50\u55e3","Spirit Guards Viridian Jewel":"\u7cbe\u795e\u5b88\u62a4 \u7fe0\u7eff\u73e0\u5b9d","Jade Chopper":"\u788e\u7389\u5927\u65a7","Prismatic Fossil":"\u4e94\u5f69\u5316\u77f3","Sire of Shards Serpentine Staff":"\u7834\u788e\u4f20\u627f\u8005 \u86c7\u7eb9\u957f\u6756","Glade Mamba":"\u539f\u91ce\u6bd2\u543b","Tempest Leaguestone":"\u98ce\u66b4\u8d5b\u5b63\u77f3","Primal Arrow Quiver":"\u539f\u77e2\u7bad\u888b","Sentinel Jacket":"\u54e8\u5175\u4e4b\u8863","Timeclasp Moonstone Ring":"\u65f6\u5149\u4e4b\u63e1 \u6708\u5149\u77f3\u6212\u6307","Cast on Melee Kill Support":"\u8fd1\u6218\u51fb\u8d25\u65f6\u65bd\u653e","Unending Hunger Cobalt Jewel":"\u65e0\u5c3d\u6e34\u671b \u94b4\u84dd\u73e0\u5b9d","Dark Pact":"\u6697\u591c\u8840\u5951","Shaped Arachnid Tomb Map (Atlas of Worlds)":"\u7075\u866b\u5893\u7a74(\u5851)(\u5f02\u754c\u56fe\u9274)","Gift of the Gemling Queen":"\u5b9d\u77f3\u7687\u540e\u7684\u8d60\u793c","Ceremonial Axe":"\u8840\u4eea\u4e4b\u65a7","Plummeting Ursa":"\u5815\u843d\u4e4b\u722a","Sulphurspawn":"\u738b\u536b\u7cbe\u82f1","Chain Hauberk":"\u9501\u5b50\u957f\u7532","Bog Map (Atlas of Worlds)":"\u7634\u6c14\u6ce5\u6cbc(\u5f02\u754c\u56fe\u9274)","Divine Vessel":"\u7981\u7075\u4e4b\u74f6","Oil Extractor":"\u5723\u6cb9\u8403\u53d6\u5668","Vicious Parasite":"\u6076\u6bd2\u5bc4\u751f\u866b","Energy From Within Cobalt Jewel":"\u6f5c\u80fd\u9632\u62a4 \u94b4\u84dd\u73e0\u5b9d","The Vigil Crimson Jewel":"\u76d1\u89c6\u5b88\u591c \u8d64\u7ea2\u73e0\u5b9d","Andvarius Gold Ring":"\u8d2a\u6b32\u4e4b\u8bb0 \u91d1\u5149\u6212\u6307","Thorium Spirit Shield":"\u6697\u91d1\u9b54\u76fe","Spirit of Nadia":"\u5a1c\u8fea\u96c5\u4e4b\u7075","Crest of Perandus Pine Buckler":"\u666e\u5170\u5fb7\u65af\u4e4b\u5fbd \u677e\u6728\u8f7b\u76fe","Gemini Claw":"\u53cc\u5b50\u6218\u722a","Arsenal Map (The Awakening)":"\u53e4\u5175\u5de5\u5382(\u89c9\u9192)","The Forgotten Treasure":"\u88ab\u9057\u5fd8\u7684\u5b9d\u85cf","Deafening Essence of Anguish":"\u714e\u71ac\u4e4b\u7834\u7a7a\u7cbe\u534e","Anarchy\'s Price":"\u6df7\u4e71\u4ee3\u4ef7","Caldera Map":"\u5bc2\u7075\u4e4b\u6e0a","Replica Innsbury Edge Elder Sword":"\u82f1\u65af\u8d1d\u7406\u4e4b\u6781\u3010\u4eff\u54c1\u3011 \u667a\u8005\u957f\u5251","Orb of Horizons":"\u5e73\u884c\u77f3","Blind Support":"\u81f4\u76f2","Museum Map (Atlas of Worlds)":"\u53e4\u535a\u7269\u9986(\u5f02\u754c\u56fe\u9274)","Hook Sword":"\u94a9\u722a\u5251","Second Piece of Brutality Imperial Staff Piece":"\u6b8b\u66b4\u5148\u9a71\u8005\u788e\u7247II \u5e1d\u56fd\u957f\u6756","Eber\'s Key":"\u4f9d\u6ce2\u4e4b\u94a5[\u53f3\u4e0a]","The Catalyst":"\u707e\u53d8","Slink Gloves":"\u8ff7\u8e2a\u624b\u5957","Gruthkul\'s Pelt Wyrmscale Doublet":"\u6b3a\u8bc8\u7360\u7259 \u9f99\u9cde\u6218\u7532","Mageblood Heavy Belt":"\u6cd5\u5e08\u4e4b\u8840 \u91cd\u9769\u8170\u5e26","Council of Cats":"\u732b\u54aa\u8bae\u4f1a","Endurance Charge on Melee Stun Support":"\u8fd1\u6218\u51fb\u6655\u83b7\u5f97\u8010\u529b\u7403","Replica Alberon\'s Warpath Soldier Boots":"\u963f\u5c14\u8d1d\u9686\u7684\u5f81\u9014\u3010\u4eff\u54c1\u3011 \u6218\u58eb\u4e4b\u9774","Cardinal Round Shield":"\u796d\u8005\u5706\u76fe","Bearded Shaman":"\u957f\u987b\u672f\u5e08","Shivershell":"\u98a4\u58f3\u517d","Farric Ursa":"\u5927\u5730\u5de8\u718a","Silver Coin":"\u94f6\u5e01","Martyr of Innocence Highborn Staff":"\u7eaf\u51c0\u4e4b\u795e\u7684\u796d\u54c1 \u8d35\u65cf\u957f\u6756","Flooded Mine Map (The Awakening)":"\u79ef\u6c34\u77ff\u5751(\u89c9\u9192)","Shrieking Essence of Envy":"\u5fcc\u5992\u4e4b\u5c16\u5578\u7cbe\u534e","Hrimsorrow Goathide Gloves":"\u51b0\u51b7\u4e4b\u773c \u7f8a\u76ae\u624b\u5957","Cells Map (Legacy)":"\u5e7d\u9b42\u76d1\u7262(\u9057\u4ea7)","Linden Kite Shield":"\u6934\u6728\u9e22\u76fe","Onyx Amulet":"\u9ed1\u66dc\u62a4\u8eab\u7b26","Shackled Boots":"\u7f1a\u8db3\u957f\u9774","Lordly Plate":"\u9886\u4e3b\u62a4\u94e0","The Flow Untethered Cloth Belt":"\u6d41\u901d\u4e4b\u65f6 \u9970\u5e03\u8170\u5e26","Spider Lair Map":"\u5de8\u86db\u5de2\u7a74","Shaped Graveyard Map (Atlas of Worlds)":"\u5815\u5f71\u5893\u573a(\u5851)(\u5f02\u754c\u56fe\u9274)","Breakrib Talisman":"\u788e\u9aa8\u9b54\u7b26","Spectral Shield Throw":"\u7075\u76fe\u6295\u63b7","Awakened Ancestral Call Support":"\u5148\u7956\u53ec\u5524\uff08\u5f3a\u8f85\uff09","Vigilant Strike":"\u6212\u5907\u6253\u51fb","Orb of Fusing":"\u94fe\u7ed3\u77f3","Arborix Assassin Bow":"\u963f\u4f2f\u745e\u65af \u6697\u5f71\u5f13","Gilded Buckler":"\u91d1\u9762\u8f7b\u76fe","Inya\'s Key":"\u5c39\u4e9a\u4e4b\u94a5[\u5de6\u4e0b]","Shrieking Essence of Dread":"\u5fcc\u60ee\u4e4b\u5c16\u5578\u7cbe\u534e","Steel Gauntlets":"\u51b7\u94a2\u62a4\u624b","Crustacean Sniper":"\u72d9\u5f71\u6c99\u87f9","Eater of Souls":"\u98df\u9b42\u8005","Legius Garhall":"\u96f7\u5409\u52a0\u5019","Orb of Transmutation":"\u8715\u53d8\u77f3","Innsbury Edge Elder Sword":"\u82f1\u65af\u8d1d\u7406\u4e4b\u6781 \u667a\u8005\u957f\u5251","Weeping Essence of Torment":"\u6298\u78e8\u4e4b\u557c\u6ce3\u7cbe\u534e","Granite Eater":"\u98df\u5ca9\u722a\u87f9","Archon Kite Shield":"\u5a01\u80fd\u9e22\u76fe","Maligaro\'s Inspiration":"\u9a6c\u96f7\u683c\u7f57\u7684\u7075\u611f","Mutated Rhoa":"\u7a81\u53d8\u7684\u6050\u5599\u9e1f","Wrapped Mitts":"\u88f9\u8dbe\u62a4\u624b","Replica Karui Ward Jade Amulet":"\u5361\u9c81\u7684\u6218\u5fbd\u3010\u4eff\u54c1\u3011 \u7fe0\u7389\u62a4\u8eab\u7b26","The Perfect Form Zodiac Leather":"\u5b8c\u7f8e\u59ff\u6001 \u661f\u8fb0\u76ae\u7532","Port Map":"\u4e2d\u8f6c\u7801\u5934","Orb of Alteration":"\u6539\u9020\u77f3","Dark Forest Map (Legacy)":"\u591c\u8bed\u5e7d\u6797(\u9057\u4ea7)","The Steel Soul":"\u94a2\u94c1\u4e4b\u9b42","Carved Wand":"\u7c97\u7eb9\u6cd5\u6756","Efficient Training Crimson Jewel":"\u5145\u5206\u8bad\u7ec3 \u8d64\u7ea2\u73e0\u5b9d","Rhoa Mare":"\u6050\u5599\u9e1f\u6bcd","Crusader Plate":"\u5f81\u6218\u91cd\u94e0","Sacrificial Harvest Viridian Jewel":"\u539f\u751f\u796d\u4eea \u7fe0\u7eff\u73e0\u5b9d","Demigod\'s Eye Golden Hoop":"\u5347\u534e\u4e4b\u773c \u91d1\u73af","Night\'s Hold Black Maw Talisman":"\u591c\u5b88 \u9ed1\u7259\u9b54\u7b26","Fiend Dagger":"\u517d\u8840\u77ed\u5315","Desert Spring Map (Atlas of Worlds)":"\u8352\u6f20\u7eff\u6d32(\u5f02\u754c\u56fe\u9274)","Paua Ring":"\u6d77\u7075\u6212\u6307","Overgrown Shrine Map":"\u5bc6\u8349\u795e\u6bbf","Replica Tulfall Tornado Wand":"\u6258\u6c83\u5367\u3010\u4eff\u54c1\u3011 \u72c2\u98ce\u6cd5\u6756","Demigod\'s Triumph Golden Wreath":"\u5347\u534e\u4e4b\u51a0 \u91d1\u9ec4\u82b1\u73af","Rusted Torment Scarab":"\u9508\u8680\u7684\u82e6\u75db\u5723\u7532\u866b","Shaped Strand Map (Atlas of Worlds)":"\u81f4\u547d\u5ca9\u6ee9(\u5851)(\u5f02\u754c\u56fe\u9274)","The Craving":"\u6e34\u6c42","Tempest Shield":"\u66b4\u98ce\u4e4b\u76fe","Vaal Haste":"\u74e6\u5c14\uff1a\u8fc5\u6377","Fragment of Shape":"\u5851\u5f62\u788e\u7247","Shrine Map (The Awakening)":"\u5947\u672f\u79d8\u6bbf(\u89c9\u9192)","The Opulent":"\u51c0\u767d","The Brine Crown Prophet Crown":"\u6d77\u738b\u51a0\u5195 \u7bb4\u8a00\u6218\u51a0","Galesight Solaris Circlet":"\u7070\u773c \u65e5\u8000\u4e4b\u51a0","Replica Lioneye\'s Paws Bronzescale Boots":"\u72ee\u773c\u7684\u6597\u5fd7\u3010\u4eff\u54c1\u3011 \u94dc\u5f71\u957f\u9774","Replica Hotheaded Viridian Jewel":"\u9c81\u83bd\u3010\u4eff\u54c1\u3011 \u7fe0\u7eff\u73e0\u5b9d","Trap Support":"\u9677\u9631","Hallowed Ground Cemetery Map":"\u9b54\u8bc5\u4e4b\u57df \u6668\u66e6\u5893\u5730","Gutting Knife":"\u91cd\u4f24\u77ed\u5200","Fireball":"\u706b\u7403","Vaal Cold Snap":"\u74e6\u5c14\uff1a\u971c\u66b4","Enigmatic Assembly D1":"\u795e\u79d8\u7ec4\u88c5\u4f53 D1","Lesser Order Artifact":"\u6b21\u7ea7\u6559\u56e2\u795e\u5668","Hyrri\'s Ire Zodiac Leather":"\u897f\u91cc\u7684\u6218\u8863 \u661f\u8fb0\u76ae\u7532","Voltaxic Flashpowder":"\u9b54\u66b4\u95ea\u5149\u7c89","Shaped Beach Map (Atlas of Worlds)":"\u5371\u5ca9\u6d77\u6ee9(\u5851)(\u5f02\u754c\u56fe\u9274)","Vial of Consequence":"\u7ed3\u8bba\u9b54\u74f6","Dekhara\'s Resolve":"\u5fb7\u5361\u62c9\u7684\u51b3\u5fc3","Memory Vault Praetor Crown":"\u8bb0\u5fc6\u56da\u7b3c \u9886\u4e3b\u6218\u51a0","Awakened Added Fire Damage Support":"\u9644\u52a0\u706b\u7130\u4f24\u5bb3\uff08\u5f3a\u8f85\uff09","The World Eater":"\u566c\u754c\u8005","Two-Toned Boots":"\u5f02\u8272\u978b","Scroll of Wisdom":"\u77e5\u8bc6\u5377\u8f74","Colossal Life Flask":"\u9ad8\u9636\u751f\u547d\u836f\u5242","Infested Ape":"\u611f\u67d3\u72c2\u733f","Acclimatisation":"\u6c14\u5019\u9002\u5e94","Whirling Blades":"\u56de\u65cb\u4e4b\u5203","Doryani\'s Invitation Heavy Belt":"\u591a\u91cc\u4e9a\u5c3c\u4e4b\u7ea6 \u91cd\u9769\u8170\u5e26","Soldier Helmet":"\u58eb\u5175\u4e4b\u76d4","Rain Tempter":"\u8bf1\u60d1\u4e4b\u96e8","Mausoleum Map":"\u738b\u9675","Shuddering Fossil":"\u9707\u98a4\u5316\u77f3","Tainted Blessing":"\u6c61\u79fd\u795d\u798f","Winged Shaper Scarab":"\u6709\u7ffc\u7684\u5851\u754c\u8005\u5723\u7532\u866b","Shore Map (The Awakening)":"\u66ae\u5149\u6d77\u6ee9(\u89c9\u9192)","Military Staff":"\u519b\u7528\u957f\u6756","Lacerate":"\u7834\u7a7a\u65a9","Runic Gloves":"\u7b26\u6587\u624b\u5957","Karui Ward Jade Amulet":"\u5361\u9c81\u7684\u6218\u5fbd \u7fe0\u7389\u62a4\u8eab\u7b26","Boulderback":"\u5de8\u77f3\u725b\u9b54\u50cf","Lair Map":"\u5de2\u7a74","The Warlord":"\u5927\u519b\u9600","Tyrannursus Maximus":"\u5de8\u517d\u9738\u4e3b","Bearded Skycaller":"\u7f8a\u4eba\u5524\u7a7a\u8005","Screaming Essence of Anguish":"\u714e\u71ac\u4e4b\u5486\u54ee\u7cbe\u534e","Xixic, High Necromancer":"\u9996\u5e2d\u64cd\u7075\u8005\u5e0c\u897f\u514b","Magnum Opus":"\u4ee3\u8868\u4f5c","Death and Taxes Necropolis Map (Atlas of Worlds)":"\u4ea1\u8005\u4e4b\u8d22 \u9b54\u5f71\u5893\u573a(\u5f02\u754c\u56fe\u9274)","Runic Greaves":"\u7b26\u6587\u80eb\u7532","Repentance Crusader Gloves":"\u6094\u609f\u4e4b\u638c \u5723\u6218\u624b\u5957","Tombfist Steelscale Gauntlets":"\u9675\u62f3 \u94a2\u5f71\u62a4\u624b","Vision of Justice":"\u6b63\u4e49\u4e4b\u89c6","Replica Primordial Might Crimson Jewel":"\u8d77\u6e90\u529b\u91cf\u3010\u4eff\u54c1\u3011 \u8d64\u7ea2\u73e0\u5b9d","Enraptured Arachnid":"\u6fc0\u8fdb\u5de8\u86db","Crimson Jewel":"\u8d64\u7ea2\u73e0\u5b9d","Pristine Fossil":"\u539f\u59cb\u5316\u77f3","Gilded Blight Scarab":"\u9540\u91d1\u7684\u83cc\u6f6e\u5723\u7532\u866b","Carnage Heart Onyx Amulet":"\u5c60\u622e\u4e4b\u5fc3 \u9ed1\u66dc\u62a4\u8eab\u7b26","Void Axe":"\u865a\u5f71\u5de8\u65a7","Tribute to the Goddess":"\u5973\u795e\u8d21\u54c1","Shaped Dungeon Map (Atlas of Worlds)":"\u7981\u9b42\u708e\u72f1(\u5851)(\u5f02\u754c\u56fe\u9274)","Awakened Burning Damage Support":"\u589e\u52a0\u71c3\u70e7\u4f24\u5bb3\uff08\u5f3a\u8f85\uff09","Gluttony Leather Belt":"\u66b4\u98df \u76ae\u9769\u8170\u5e26","Dread Primate":"\u6050\u60e7\u72c2\u733f","Destined to Crumble":"\u6b92\u843d\u7684\u547d\u8fd0","Replica Restless Ward Carnal Armour":"\u65e0\u5c3d\u4e4b\u536b\u3010\u4eff\u54c1\u3011 \u7981\u793c\u4e4b\u7532","Skittering Delirium Orb":"\u8ff7\u8e2a\u7684\u96fe\u9b47\u5b9d\u73e0","The Red Nightmare Crimson Jewel":"\u8d64\u5f71\u68a6\u9b47 \u8d64\u7ea2\u73e0\u5b9d","Marshes Map":"\u7edd\u671b\u6cbc\u6cfd","Imbued Catalyst":"\u704c\u6ce8\u50ac\u5316\u5242","Starforge Infernal Sword":"\u5851\u661f\u8005 \u72f1\u708e\u91cd\u5251","Vile Staff":"\u6bd2\u7259\u957f\u6756","Redblade Tramplers Ancient Greaves":"\u7ea2\u5203\u8e42\u8e8f\u9774 \u8fdc\u53e4\u80eb\u7532","The Unshattered Will Archon Kite Shield":"\u4e0d\u5c48\u4e4b\u5fd7 \u5a01\u80fd\u9e22\u76fe","Slavedriver\'s Hand Ambush Mitts":"\u5974\u96b6\u8d29\u5b50\u4e4b\u624b \u4f0f\u51fb\u62a4\u624b","Scrabbling Menace":"\u5229\u722a\u6c99\u87f9","Crown of the Inward Eye Prophet Crown":"\u5185\u7701\u4e4b\u51a0 \u7bb4\u8a00\u6218\u51a0","Pier Map (The Awakening)":"\u6012\u6d6a\u4e4b\u6e2f(\u89c9\u9192)","Lava Chamber Map (The Awakening)":"\u7194\u5ca9\u4e4b\u6bbf(\u89c9\u9192)","Alchemical Chalice":"\u70bc\u91d1\u676f","Shrieking Essence of Contempt":"\u8f7b\u89c6\u4e4b\u5c16\u5578\u7cbe\u534e","Summon Flame Golem":"\u53ec\u5524\u70c8\u7130\u9b54\u50cf","Essence Drain":"\u7075\u9b42\u5438\u53d6","Reefbane Fishing Rod":"\u707e\u7978\u4e4b\u7901 \u9c7c\u7aff","Minefield Support":"\u5730\u96f7\u7f51","Uzaza\'s Meadow Sapphire Ring":"\u4e4c\u624e\u8428\u7684\u8349\u539f \u84dd\u7389\u6212\u6307","Savant\'s Robe":"\u667a\u8005\u4e4b\u888d","Stone of the Currents":"\u6ce5\u77f3\u6d41","Blighted Delirium Orb":"\u67af\u840e\u7684\u96fe\u9b47\u5b9d\u73e0","Blood of Innocence":"\u7eaf\u51c0\u4e4b\u8840","Alteration Shard":"\u6539\u9020\u77f3\u788e\u7247","Astral Projector Topaz Ring":"\u661f\u754c\u6295\u5f71 \u9ec4\u7389\u6212\u6307","Saqawal\'s Flock Silken Hood":"\u82cd\u7a7a\u4e4b\u7fce \u7ef8\u7f0e\u4e4b\u515c","Chrome-infused Chimeral":"\u878d\u94ec\u9f99\u8725","Imperial Skean":"\u5e1d\u56fd\u77ed\u5315","armour":"\u62a4\u7532","Tasalio\'s Sign Sapphire Ring":"\u5854\u8428\u91cc\u5965\u4e4b\u5370 \u84dd\u7389\u6212\u6307","Gladiator Plate":"\u89d2\u6597\u91cd\u94e0","Winged Divination Scarab":"\u6709\u7ffc\u7684\u795e\u6069\u5723\u7532\u866b","Dash":"\u51b2\u523a","Pagan Bishop of Agony":"\u82e6\u75db\u4e3b\u6559","Anatomical Knowledge Cobalt Jewel":"\u771f\u77e5\u707c\u89c1 \u94b4\u84dd\u73e0\u5b9d","The King\'s Heart":"\u738b\u8005\u4e4b\u5fc3","Voices Large Cluster Jewel":"\u5929\u795e\u4e4b\u97f3 \u5927\u578b\u661f\u56e2\u73e0\u5b9d","Geofri\'s Sanctuary Elegant Ringmail":"\u5409\u5c14\u83f2\u7684\u5723\u6bbf \u6743\u8d35\u73af\u7532","Cold Iron Point Ezomyte Dagger":"\u5bd2\u94c1\u5203 \u827e\u5179\u9ea6\u4e4b\u5315","Ensnaring Arrow":"\u8bf1\u6355\u4e4b\u7bad","Replica Kalisa\'s Grace Samite Gloves":"\u5361\u8389\u838e\u7684\u4f18\u96c5\u4e4b\u5f71\u3010\u4eff\u54c1\u3011 \u7ee3\u5e03\u624b\u5957","Parasitic Passengers":"\u5bc4\u751f\u5ba2","Coves Map (Legacy)":"\u75be\u98ce\u5ce1\u6e7e(\u9057\u4ea7)","Albino Rhoa":"\u767d\u6bdb\u6050\u5599\u9e1f","Maze Hatchling":"\u8ff7\u5bab\u5b75\u5375\u8005","The Consuming Dark Fiend Dagger":"\u8695\u98df\u4e4b\u6697 \u517d\u8840\u77ed\u5315","Courtyard Map (The Awakening)":"\u5947\u672f\u4e4b\u5ead(\u89c9\u9192)","Reap":"\u7edd\u547d\u4e4b\u9570","Cast when Damage Taken Support":"\u53d7\u4f24\u65f6\u65bd\u653e","Infested Crustacean":"\u53d7\u75ab\u7532\u87f9","Doedre\'s Scorn Lunaris Circlet":"\u5fb7\u745e\u7684\u8511\u89c6 \u6708\u5f71\u4e4b\u51a0","Skin of the Lords Simple Robe":"\u541b\u4e3b\u4e4b\u80a4 \u7b80\u6613\u4e4b\u888d","Noxious Catalyst":"\u6709\u5bb3\u50ac\u5316\u5242","Carrion Minion":"\u98df\u8150\u4ed4\u866b","Lola, the Fierce":"\u66b4\u5f92\u7f57\u62c9","Deadly Ailments Support":"\u81f4\u547d\u5f02\u5e38\u72b6\u6001","Sudden Dawn Steel Circlet":"\u66d9\u5149\u9aa4\u73b0 \u51b7\u94a2\u4e4b\u51a0","Prehistoric Claw":"\u53f2\u524d\u6218\u722a","Splitting Steel":"\u5206\u88c2\u94a2\u5203","Oba\'s Cursed Trove Primordial Blocks Map":"\u6b27\u9738\u7684\u5492\u6028\u5b9d\u5e93 \u8fdc\u53e4\u8857\u533a","Carius, the Unnatural":"\u8d85\u7fa4\u7684\u5361\u745e\u65af","Simplex Amulet":"\u6734\u5b9e\u9879\u94fe","Avatar of the Skies":"\u5929\u7a7a\u4e4b\u8c61","Awakened Fire Penetration Support":"\u706b\u7130\u7a7f\u900f\uff08\u5f3a\u8f85\uff09","Maloney\'s Nightfall Vile Arrow Quiver":"\u9a6c\u6d1b\u5c3c\u7684\u66ae\u5149 \u90aa\u6076\u7bad\u888b","Bronze Plate":"\u9752\u94dc\u94e0\u7532","Chrome-touched Chimeral":"\u89e6\u94ec\u9f99\u8725","Karui Chopper":"\u5361\u9c81\u5de8\u65a7","Lesser Eldritch Ichor":"\u6b21\u7ea7\u53e4\u7075\u6eb6\u6db2","Farric Wolf Alpha":"\u5927\u5730\u5de8\u72fc","Field Lamellar":"\u91ce\u6218\u8584\u7532","Faster Casting Support":"\u5feb\u901f\u65bd\u6cd5","Crustacean Pelter":"\u72d9\u5f71\u63b7\u87f9","Warrior\'s Legacy Ruby Ring":"\u6218\u58eb\u7684\u9057\u4ea7 \u7ea2\u7389\u6212\u6307","More is Never Enough":"\u6c38\u4e0d\u77e5\u8db3","Armour Cruncher":"\u6bc1\u7532\u5de8\u517d","Rat\'s Nest Ursine Pelt":"\u9f20\u5de2 \u718a\u9996\u76ae\u76d4","Lingering Remnants":"\u7a0d\u7eb5\u5373\u901d","Greater Order Artifact":"\u9ad8\u7ea7\u6559\u56e2\u795e\u5668","Weeping Essence of Suffering":"\u82e6\u96be\u4e4b\u557c\u6ce3\u7cbe\u534e","Tul\'s Enriched Breachstone":"\u6258\u6c83\u7684\u5f3a\u5316\u88c2\u9699\u4e4b\u77f3","Ornate Incubator":"\u8c6a\u534e\u5b55\u80b2\u77f3","Unrelenting Timeless Maraketh Emblem":"\u4e0d\u5c48\u9a6c\u62c9\u514b\u65af\u5370\u8bb0","Tahsin, Warmaker":"\u8d77\u4e71\u8005\u5854\u8f9b","Rust of Winter Rusted Hatchet":"\u971c\u5203 \u9508\u65a7","Soldier Boots":"\u6218\u58eb\u4e4b\u9774","Maven\'s Invitation: Lex Proxima":"\u8d24\u4e3b\u4e4b\u9080\uff1a\u672a\u6765\u4e4b\u5f8b","Grand Spectrum Cobalt Jewel":"\u805a\u5149\u4e4b\u77f3 \u94b4\u84dd\u73e0\u5b9d","Gemcutter\'s Prism":"\u5b9d\u77f3\u5320\u7684\u68f1\u955c","Maven\'s Invitation: The Hidden":"\u8d24\u4e3b\u4e4b\u9080\uff1a\u88c2\u9699\u9886\u4e3b","Geofri\'s Legacy Great Crown":"\u5409\u5c14\u83f2\u7684\u9057\u4ea7 \u5f3a\u5316\u5de8\u76d4","Orb of Regret":"\u540e\u6094\u77f3","Golden Mantle":"\u9ec4\u91d1\u6218\u7532","Elegant Hubris Timeless Jewel":"\u4f18\u96c5\u7684\u72c2\u5984 \u6c38\u6052\u73e0\u5b9d","Shaped Mesa Map (Atlas of Worlds)":"\u8d64\u7ea2\u5c71\u5730(\u5851)(\u5f02\u754c\u56fe\u9274)","Plateau Map (Legacy)":"\u6d77\u98ce\u9ad8\u539f(\u9057\u4ea7)","Transfer-attuned Spirit Shield":"\u9002\u5e94\u578b\u9b54\u76fe","Timeless Karui Splinter":"\u6c38\u6052\u5361\u9c81\u88c2\u7247","Chasing Risk":"\u98ce\u9669\u8ffd\u9010","Ritual Sceptre":"\u796d\u4eea\u77ed\u6756","Vaal Immortal Call":"\u74e6\u5c14\uff1a\u4e0d\u673d\u6012\u568e","The Enthusiasts":"\u53e4\u9053\u70ed\u80a0","Oscillating Sceptre":"\u6447\u6446\u77ed\u6756","The Front Line Small Cluster Jewel":"\u524d\u7ebf \u5c0f\u578b\u661f\u56e2\u73e0\u5b9d","The Encephelophage":"\u72e0\u6bd2\u5bc4\u751f\u866b","Alder Spiked Shield":"\u6864\u6728\u523a\u76fe","Judgement Staff":"\u5ba1\u5224\u957f\u6756","Nightmarish Crawler":"\u68a6\u9b47\u98df\u8150\u866b","Perepiteia Ezomyte Spiked Shield":"\u5cf0\u56de\u8def\u8f6c \u827e\u5179\u9ea6\u523a\u76fe","Stormfire Opal Ring":"\u98ce\u66b4\u4e4b\u708e \u86cb\u767d\u77f3\u6212\u6307","Fathom Screamer":"\u7edd\u57df\u5c16\u5578\u8005","Tul\'s Breachstone":"\u6258\u6c83\u88c2\u9699\u77f3","Shaped Burial Chambers Map (Atlas of Worlds)":"\u5e7d\u95ed\u5893\u9886(\u5851)(\u5f02\u754c\u56fe\u9274)","Padded Jacket":"\u957f\u8896\u68c9\u8884","Fire Trap":"\u706b\u7130\u9677\u9631","Sulphur Blowtorch":"\u786b\u78fa\u55b7\u706f","Pillar of the Caged God Long Staff":"\u56da\u795e\u6775 \u957f\u6756","Crusader Chainmail":"\u5723\u6218\u9501\u7532","Vaal Flameblast":"\u74e6\u5c14\uff1a\u70c8\u7130\u7206\u7834","Replica Conqueror\'s Efficiency Crimson Jewel":"\u5f81\u670d\u8005\u7684\u8fc5\u6377\u3010\u4eff\u54c1\u3011 \u8d64\u7ea2\u73e0\u5b9d","Starkonja\'s Head Silken Hood":"\u65af\u5854\u7a7a\u52a0\u4e4b\u9996 \u7ef8\u7f0e\u4e4b\u515c","Blackgleam Fire Arrow Quiver":"\u9ed1\u708e\u4e4b\u8292 \u706b\u7075\u7bad\u888b","The Perandus Manor Chateau Map (The Awakening)":"\u666e\u5170\u5fb7\u65af\u5e84\u56ed \u53e4\u5821(\u89c9\u9192)","Arcade Map (Atlas of Worlds)":"\u5d29\u574f\u957f\u5eca(\u5f02\u754c\u56fe\u9274)","Colosseum Map (Atlas of Worlds)":"\u5927\u51b3\u6597\u573a(\u5f02\u754c\u56fe\u9274)","Lightning Arrow":"\u95ea\u7535\u7bad\u77e2","Shipyard Map (Legacy)":"\u70bd\u708e\u8239\u575e(\u9057\u4ea7)","Nightmarish Carrion":"\u68a6\u9b47\u8150\u98df\u8005","Fourth Piece of Focus Archon Kite Shield Piece":"\u4e0d\u5c48\u5148\u9a71\u8005IV \u5a01\u80fd\u9e22\u76fe","Pernach":"\u950b\u5203\u91cd\u9524","Assassin\'s Favour":"\u6697\u5f71\u6069\u60e0","Naval Contract":"\u6d77\u519b\u5951\u7ea6","Scholar of the Seas":"\u6d77\u6d0b\u5b66\u8005","Ruins Hellion":"\u5e9f\u589f\u5730\u72f1\u72ac","Ice Spear":"\u51b0\u77db","Romira\'s Banquet Diamond Ring":"\u7f57\u7c73\u62c9\u7684\u6f5c\u529b\u4e4b\u73af \u5b9d\u94bb\u6212\u6307","Timber Axe":"\u88c2\u6728\u5de8\u65a7","Geode Map (Atlas of Worlds)":"\u6c34\u6676\u6d1e\u7a74(\u5f02\u754c\u56fe\u9274)","Berrots, The Breaker":"\u7834\u574f\u8005\u8d1d\u7f57\u7279\u65af","Crusader Boots":"\u5723\u6218\u957f\u9774","Lightning Penetration Support":"\u95ea\u7535\u7a7f\u900f","Bowyer\'s Dream":"\u5f13\u5320\u7684\u68a6\u60f3","Basalt Flask":"\u77f3\u5316\u836f\u5242","The Retch Rustic Sash":"\u5455\u5410 \u7d20\u5e03\u8170\u5e26","Shaped Ramparts Map (Atlas of Worlds)":"\u5947\u8ff9\u4e4b\u5899(\u5851)(\u5f02\u754c\u56fe\u9274)","Rawhide Gloves":"\u751f\u76ae\u624b\u5957","Spider Forest Map (Atlas of Worlds)":"\u5de8\u86db\u4e4b\u6797(\u5f02\u754c\u56fe\u9274)","Fenumus\' Shroud Widowsilk Robe":"\u6697\u591c\u5f11\u8863 \u6bd2\u86db\u4e1d\u4e4b\u888d","Bone Offering":"\u9ab8\u9aa8\u5949\u732e","Jungle Valley Map":"\u5267\u6bd2\u6797\u8c37","Spiked Gloves":"\u6263\u9489\u624b\u5957","Baroque Round Shield":"\u53e4\u4ee3\u5706\u76fe","Scorpion\'s Call Broadhead Arrow Quiver":"\u9b54\u874e\u7684\u547c\u5524 \u5bbd\u77e2\u7bad\u888b","Brawn Crimson Jewel":"\u7b4b\u9aa8\u5f3a\u5316 \u8d64\u7ea2\u73e0\u5b9d","Sanctified Life Flask":"\u5723\u5316\u751f\u547d\u836f\u5242","Lethal Pride Timeless Jewel":"\u81f4\u547d\u7684\u9a84\u50b2 \u6c38\u6052\u73e0\u5b9d","Brush, Paint and Palette":"\u7b14\u58a8\u6a2a\u59ff","Shaped Atoll Map (Atlas of Worlds)":"\u6ee8\u6d77\u5c71\u4e18(\u5851)(\u5f02\u754c\u56fe\u9274)","Arrogance of the Vaal":"\u74e6\u5c14\u7684\u50b2\u6162","Specularity Scroll":"\u5149\u68f1\u5377\u8f74","Desert Map":"\u8d2b\u7620\u4e4b\u5730","Hooded Cloak":"\u8fde\u5e3d\u62ab\u98ce","It That Fell":"\u5815\u6c89\u5de8\u722a","The Eye of Terror":"\u6050\u6016\u4e4b\u773c","Fundamental Fossil":"\u6839\u57fa\u5316\u77f3","Mage\'s Vestment":"\u535a\u5b66\u957f\u8863","Farrul\'s Fur Triumphant Lamellar":"\u5927\u5730\u4e4b\u62a4 \u80dc\u5229\u76d4\u7532","Muttering Essence of Anger":"\u6124\u6012\u4e4b\u5462\u5583\u7cbe\u534e","The Deep Ones":"\u6df1\u6e0a\u4e4b\u5b50","Flame Dash":"\u70c8\u7130\u51b2\u523a","Replica Kaom\'s Heart Glorious Plate":"\u5188\u59c6\u7684\u58ee\u5fd7\u3010\u4eff\u54c1\u3011 \u8363\u8000\u6218\u94e0","Jade Flask":"\u7fe0\u7389\u836f\u5242","Goliath Greaves":"\u5de8\u7075\u80eb\u7532","Eternal Mana Flask":"\u6c38\u6052\u9b54\u529b\u836f\u5242","Trapper Boots":"\u730e\u4eba\u4e4b\u9774","Inya\'s Epiphany Arcanist Slippers":"\u8335\u96c5\u7684\u542f\u8499 \u79d8\u672f\u4fbf\u978b","Soul Taker Siege Axe":"\u5f00\u819b\u65a7 \u7834\u57ce\u65a7","Lion Pelt":"\u72ee\u9996\u76ae\u76d4","Replica Kongor\'s Undying Rage Terror Maul":"\u5eb7\u6208\u7684\u6218\u708e\u3010\u4eff\u54c1\u3011 \u60e7\u7075\u91cd\u9524","Dark Forest Map":"\u591c\u8bed\u5e7d\u6797","Jorus, Sky\'s Edge":"\u7a7a\u4e4b\u8fb9\u9645\u4e54\u745e\u65af","Deafening Essence of Anger":"\u6124\u6012\u4e4b\u7834\u7a7a\u7cbe\u534e","The Dark Mage":"\u9ed1\u6697\u672f\u8005","The Wolf":"\u7fa4\u72fc\u4e4b\u738b","Death\'s Hand Karui Sceptre":"\u6b7b\u795e\u4e4b\u624b \u5361\u9c81\u77ed\u6756","Barthol, the Corruptor":"\u5df4\u7d22\u5c14\uff0c\u8150\u5316\u4e4b\u5149","Third Piece of Directions Blunt Arrow Quiver Piece":"\u5c04\u672f\u5148\u9a71\u8005\u788e\u7247III \u949d\u77e2\u7bad\u888b","Replica Abyssus Ezomyte Burgonet":"\u6df1\u6e0a\u4e4b\u5524\u3010\u4eff\u54c1\u3011 \u827e\u5179\u9ea6\u575a\u76d4","Golden Hetzapal Idol":"\u91d1\u8272\u8d6b\u624e\u5e15\u795e\u50cf","Gauche Gloves":"\u7b28\u91cd\u624b\u5957","Versatile Keyring":"\u591a\u7528\u94a5\u5319\u73af","Primitive Ape":"\u7075\u733f\u4e4b\u9996","K\'aj A\'alai":"\u504f\u89c1\u4e4b\u5fc3","The Deep One\'s Hide Studded Round Shield":"\u6df1\u6e0a\u7edd\u58c1 \u94c6\u9489\u5706\u76fe","The Gluttonous Tide Citadel Bow":"\u8d2a\u5a6a\u4e4b\u6f6e \u57ce\u585e\u6218\u5f13","Golden Xoplotli Idol":"\u91d1\u8272\u590f\u535c\u62c9\u5229\u795e\u50cf","Machina Mitts Murder Mitts":"\u9a6c\u5947\u7eb3\u62a4\u624b \u6697\u5f71\u8005\u62a4\u624b","Guardian of the Minotaur":"\u725b\u5934\u4eba\u5b88\u536b","Storm Brand":"\u98ce\u66b4\u70d9\u5370","The Unexpected Prize":"\u610f\u5916\u6536\u83b7","Precursor\'s Emblem Two-Stone Ring":"\u5148\u9a71\u7684\u7eb9\u7ae0 \u53cc\u7389\u6212\u6307","Frostblink":"\u51b0\u971c\u95ea\u73b0","Monkey Twins Talisman":"\u53cc\u7334\u9b54\u7b26","Deafening Essence of Loathing":"\u538c\u6076\u4e4b\u7834\u7a7a\u7cbe\u534e","Runic Helm":"\u7b26\u6587\u5934\u76d4","Omen on the Winds Viridian Jewel":"\u98ce\u4e4b\u542f\u793a \u7fe0\u7eff\u73e0\u5b9d","Vaal Hatchet":"\u74e6\u5c14\u6218\u65a7","Martyr\'s Crown Vine Circlet":"\u70c8\u58eb\u4e4b\u51a0 \u85e4\u8513\u4e4b\u51a0","Hallowed Hybrid Flask":"\u795d\u798f\u590d\u5408\u836f\u5242","The Whispering Ice Vile Staff":"\u51b0\u70b9\u4f4e\u8bed \u6bd2\u7259\u957f\u6756","The Admirer":"\u4ef0\u6155\u8005","Guardian of the Vault":"\u5b9d\u85cf\u5b88\u62a4\u8005","Blood Chieftain":"\u8840\u9762\u914b\u957f","Hall of Grandmasters Promenade Map (Atlas of Worlds)":"\u5143\u5e05\u6bbf\u5802 \u6708\u8272\u56de\u5eca(\u5f02\u754c\u56fe\u9274)","Primal Skull Talisman":"\u7687\u9aa8\u9b54\u7b26","Augmented Distant Memory Haunted Mansion Map":"\u589e\u5f3a\u7684\u9065\u8fdc\u56de\u5fc6 \u5e7d\u9b42\u5b85\u90b8","The Gentleman":"\u7ec5\u58eb\u4e4b\u98ce","Ancient Orb":"\u8fdc\u53e4\u77f3","The Sea Pearl Heirloom":"\u6d77\u73cd\u73e0\u7684\u9057\u4ea7","Stagnation Map":"\u505c\u6ede\u533a","Captured Soul of Herald of Thunder":"\u5df2\u6355\u83b7\u7684\u5929\u96f7\u4e4b\u5146\u4e4b\u9b42","Maelstr\xf6m of Chaos Atoll Map (Atlas of Worlds)":"\u6df7\u6c8c\u4e4b\u6e0a \u6ee8\u6d77\u5c71\u4e18(\u5f02\u754c\u56fe\u9274)","Maven\'s Invitation: Haewark Hamlet":"\u8d24\u4e3b\u4e4b\u9080\uff1a\u6d77\u6c83\u514b\u6751","Garb of the Ephemeral Savant\'s Robe":"\u65e0\u5e38\u6cd5\u888d \u667a\u8005\u4e4b\u888d","Bottled Faith Sulphur Flask":"\u74f6\u4e2d\u4fe1\u4ef0 \u786b\u78fa\u836f\u5242","Chrome-infused Croaker":"\u878d\u94ec\u5b9d\u77f3\u86d9","Bladeback Guardian":"\u950b\u80cc","The Old Man":"\u8001\u4eba","The Dreamer":"\u8ffd\u68a6\u8005","Cowl of the Cryophile Silken Hood":"\u55dc\u5bd2\u4e4b\u51a0 \u7ef8\u7f0e\u4e4b\u515c","The King\'s Blade":"\u738b\u8005\u4e4b\u5203","Emperor\'s Vigilance Steel Kite Shield":"\u7687\u5e1d\u7684\u8b66\u6212 \u51b7\u94a2\u9e22\u76fe","Platinum Sceptre":"\u767d\u91d1\u77ed\u6756","Spine Serpent":"\u810a\u523a\u5de8\u86c7","Dead Reckoning Cobalt Jewel":"\u6b7b\u4ea1\u6e05\u7b97 \u94b4\u84dd\u73e0\u5b9d","The Ascetic Gold Amulet":"\u82e6\u884c \u5e1d\u91d1\u62a4\u8eab\u7b26","Crater Map":"\u9668\u5751","Vicious Projectiles Support":"\u90aa\u6076\u6295\u63b7","Lunaris Circlet":"\u6708\u5f71\u4e4b\u51a0","Wintertide Brand":"\u51ac\u6f6e\u70d9\u5370","Gardens Map (The Awakening)":"\u82b1\u56ed\u8ff7\u5bab(\u89c9\u9192)","Abandoned Wealth":"\u5f03\u8d22\u6c42\u751f","The Spark and the Flame":"\u95ea\u5149\u4e0e\u706b\u7130","Coronal Maul":"\u82b1\u51a0\u91cd\u9524","Channel Map (Atlas of Worlds)":"\u79d8\u5bc6\u901a\u9053(\u5f02\u754c\u56fe\u9274)","The Princess Sabre":"\u5973\u7235 \u65e7\u519b\u5200","Apep\'s Supremacy Vaal Spirit Shield":"\u827e\u666e\u7684\u9738\u6743 \u74e6\u5c14\u9b54\u76fe","Lioneye\'s Remorse Pinnacle Tower Shield":"\u72ee\u773c\u7684\u8363\u8000\u4e4b\u76fe \u575a\u6bc5\u5854\u76fe","Orb of Unmaking":"\u7c89\u788e\u77f3","Twyzel Sage Wand":"\u5ce1\u6e7e\u4e4b\u661f \u8d24\u8005\u6cd5\u6756","Ryslatha\'s Coil Studded Belt":"\u745e\u65af\u62c9\u8428\u7684\u7ebf\u5708 \u6263\u9489\u8170\u5e26","Infected Rhoa":"\u53d7\u611f\u67d3\u7684\u6050\u5599\u9e1f","Shrieking Essence of Wrath":"\u96f7\u9706\u4e4b\u5c16\u5578\u7cbe\u534e","Deafening Essence of Dread":"\u5fcc\u60ee\u4e4b\u7834\u7a7a\u7cbe\u534e","Primordial Blocks Map (Atlas of Worlds)":"\u8fdc\u53e4\u8857\u533a(\u5f02\u754c\u56fe\u9274)","Voidwalker Murder Boots":"\u865a\u7a7a\u884c\u8005 \u6697\u5f71\u8005\u957f\u9774","Story of the Vaal Gemstone Sword":"\u74e6\u5c14\u4f20\u8bf4 \u5b9d\u77f3\u4e4b\u5251","Acid Caverns Map (Atlas of Worlds)":"\u5f3a\u9178\u6d1e\u7a74(\u5f02\u754c\u56fe\u9274)","Saint\'s Hauberk":"\u5723\u8005\u94fe\u7532","Ironscale Gauntlets":"\u94c1\u5f71\u624b\u5957","Loreweave Elegant Ringmail":"\u6ee1\u6ea2\u4e4b\u7532 \u6743\u8d35\u73af\u7532","Arc":"\u7535\u5f27","Ancestral Protector":"\u5148\u7956\u536b\u58eb","Replica Cheap Construction Viridian Jewel":"\u5ec9\u4ef7\u5efa\u8bbe\u3010\u4eff\u54c1\u3011 \u7fe0\u7eff\u73e0\u5b9d","Primal Incubator":"\u539f\u59cb\u5b55\u80b2\u77f3","Chrome-touched Croaker":"\u94ec\u89e6\u9e23\u86d9","Replica Atziri\'s Foible Paua Amulet":"\u963f\u5179\u91cc\u5723\u5fbd\u3010\u4eff\u54c1\u3011 \u6d77\u7075\u62a4\u8eab\u7b26","Essence Leaguestone":"\u7cbe\u534e\u8d5b\u5b63\u77f3","Emperor\'s Mastery Prismatic Jewel":"\u5e1d\u738b\u7684\u7eaf\u719f \u4e09\u76f8\u73e0\u5b9d","The Sorrow of the Divine Sulphur Flask":"\u795e\u5723\u54c0\u60bc \u786b\u78fa\u836f\u5242","Ceremonial Goblet":"\u5e86\u5178\u9152\u676f","Leather Cap":"\u76ae\u5e3d","Gilded Elder Scarab":"\u9540\u91d1\u7684\u88c2\u754c\u8005\u5723\u7532\u866b","Windbreak Boots":"\u7834\u98ce\u4e4b\u9774","Third Piece of Brutality Imperial Staff Piece":"\u6b8b\u66b4\u5148\u9a71\u8005\u788e\u7247III \u5e1d\u56fd\u957f\u6756","Deafening Essence of Suffering":"\u82e6\u96be\u4e4b\u7834\u7a7a\u7cbe\u534e","Zerphi\'s Last Breath Grand Mana Flask":"\u6cfd\u4f5b\u4f0a\u7684\u7ec8\u606f \u4f18\u8d28\u9b54\u529b\u836f\u5242","Shaped Acid Caverns Map (Atlas of Worlds)":"\u5f3a\u9178\u6d1e\u7a74(\u5851)(\u5f02\u754c\u56fe\u9274)","Thaumaturge\'s Delirium Orb":"\u5947\u672f\u5e08\u7684\u96fe\u9b47\u5b9d\u73e0","Leather Bracers":"\u76ae\u9769\u62a4\u8155","Forbidden Taste Quartz Flask":"\u7981\u679c \u77f3\u82f1\u836f\u5242","Cast On Critical Strike Support":"\u66b4\u51fb\u65f6\u65bd\u653e","Wall of Brambles Plate Vest":"\u8346\u68d8\u4e4b\u5899 \u94c1\u5236\u80cc\u5fc3","Apex Mode Cobalt Jewel":"\u5dc5\u5cf0\u72b6\u6001 \u94b4\u84dd\u73e0\u5b9d","Capacity Rod":"\u8f7d\u8377\u4e4b\u6756","Strand Map (The Awakening)":"\u81f4\u547d\u5ca9\u6ee9(\u89c9\u9192)","The Green Dream Viridian Jewel":"\u9752\u5f71\u68a6\u5883 \u7fe0\u7eff\u73e0\u5b9d","Steel Circlet":"\u51b7\u94a2\u4e4b\u51a0","The Surgeon":"\u5916\u79d1\u533b\u5e08","Nuro\'s Harp Harbinger Bow":"\u52aa\u7f57\u7684\u7ad6\u7434 \u5148\u9a71\u8005\u4e4b\u5f13","Ice Nova":"\u51b0\u971c\u65b0\u661f","Firestorm":"\u70c8\u708e\u98ce\u66b4","The Snowblind Grace Coronal Leather":"\u96ea\u76f2\u6069\u60e0 \u5149\u8000\u76ae\u7532","Temporal Chains":"\u65f6\u7a7a\u9501\u94fe","Engraved Wand":"\u7b26\u6587\u6cd5\u6756","Gilded Expedition Scarab":"\u9540\u91d1\u7684\u5148\u7956\u79d8\u85cf\u5723\u7532\u866b","Esh\'s Charged Breachstone":"\u827e\u8bb8\u7684\u5145\u80fd\u88c2\u9699\u4e4b\u77f3","Splintered Tower Shield":"\u673d\u6728\u5854\u76fe","Corrugated Buckler":"\u6ce2\u7eb9\u8f7b\u76fe","Faceted Fossil":"\u68f1\u9762\u5316\u77f3","Mephod, the Earth Scorcher":"\u64bc\u5730\u8005\u7c73\u798f\u5fb7","Steelwood Bow":"\u94a2\u6728\u4e4b\u5f13","Disintegrator Maelstr\xf6m Staff":"\u88c2\u4e16\u8f6e\u56de \u98ce\u66b4\u957f\u6756","Fist of War Support":"\u6218\u4e89\u94c1\u62f3\uff08\u8f85\uff09","The Taming Prismatic Ring":"\u5143\u7d20\u4e4b\u7ae0 \u4e09\u76f8\u6212\u6307","Replica Poorjoy\'s Asylum Temple Map":"\u6c89\u6ca6\u4e4b\u95f4\u3010\u4eff\u54c1\u3011 \u593a\u9b42\u4e4b\u6bbf","Kalguuran Incubator":"\u5361\u53e4\u5170\u5b55\u80b2\u77f3","Samnite Helmet":"\u8428\u59c6\u5c3c\u76d4","Darkscorn Assassin Bow":"\u591c\u541f \u6697\u5f71\u5f13","Ashes of the Stars Onyx Amulet":"\u7fa4\u661f\u4e4b\u7070 \u9ed1\u66dc\u62a4\u8eab\u7b26","Victario\'s Influence Lacquered Garb":"\u7ef4\u591a\u91cc\u5965\u4e4b\u7edd\u54cd \u6f06\u5f69\u675f\u8863","Deafening Essence of Misery":"\u51c4\u60e8\u4e4b\u7834\u7a7a\u7cbe\u534e","Fractured Fossil":"\u5206\u88c2\u5316\u77f3","jewels":"\u73e0\u5b9d","Wraithlord Bone Circlet":"\u5e7d\u51a5\u7075\u738b \u7075\u9aa8\u4e4b\u51a0","Dunes Map (The Awakening)":"\u66ae\u8272\u6c99\u4e18(\u89c9\u9192)","Arcade Map (The Awakening)":"\u5d29\u574f\u957f\u5eca(\u89c9\u9192)","Copper Kris":"\u94dc\u953b\u6ce2\u5203","Awakened Melee Splash Support":"\u8fd1\u6218\u4f24\u5bb3\u6269\u6563\uff08\u5f3a\u8f85\uff09","Diamond Flask":"\u5b9d\u94bb\u836f\u5242","Second Piece of Time Cloth Belt Piece":"\u65f6\u7a7a\u5148\u9a71\u8005\u788e\u7247II \u9970\u5e03\u8170\u5e26","Necropolis Map (Atlas of Worlds)":"\u9b54\u5f71\u5893\u573a(\u5f02\u754c\u56fe\u9274)","The Ghastly Theatre Teak Round Shield":"\u60ca\u60b8\u5267\u9662 \u67da\u6728\u5706\u76fe","Cursed Words":"\u6076\u8a00\u8bc5\u5492","Rusted Coif":"\u9508\u94c1\u94fe\u76d4","Golden Plate":"\u91d1\u8000\u4e4b\u94e0","Sorcerer Boots":"\u672f\u58eb\u957f\u9774","Mutated Croaker":"\u7a81\u53d8\u7684\u5b9d\u77f3\u86d9","Brooding Tarantula":"\u5b75\u5375\u7684\u6bdb\u86db","Rusted Spike":"\u9508\u523a\u5251","Gnarled Branch":"\u673d\u6728\u4e4b\u5e72","Layered Kite Shield":"\u5c42\u677f\u9e22\u76fe","Bone Crypt Map (The Awakening)":"\u53e4\u77f3\u9675\u5893(\u89c9\u9192)","Eye of Winter":"\u51db\u51ac\u4e4b\u773c","Mirror of Teklatipitzi":"\u7279\u5361\u62c9\u72c4\u535c\u8328\u4e4b\u955c","Tricorne":"\u4e09\u89d2\u5e3d","Vixen\'s Entrapment Embroidered Gloves":"\u5201\u5987\u7684\u5708\u5957 \u523a\u7ee3\u624b\u5957","The Conqueror Wurm":"\u70c8\u6218\u4e4b\u7075","Ez Myrae Tome":"\u827e\u5179\u9ea6\u5c14\u5377\u518c","Fragmentation Scroll":"\u7834\u788e\u5377\u8f74","Splinter of Tul":"\u88c2\u9699\u788e\u7247","Greater Multiple Projectiles Support":"\u9ad8\u9636\u591a\u91cd\u6295\u5c04","Atziri\'s Acuity Vaal Gauntlets":"\u963f\u5179\u91cc\u7684\u6377\u601d \u74e6\u5c14\u62a4\u624b","Worldcarver Dragonscale Gauntlets":"\u4e16\u754c\u96d5\u523b\u8005 \u9f99\u9cde\u624b\u5957","Rawhide Boots":"\u751f\u76ae\u77ed\u9774","Exalted Orb":"\u5d07\u9ad8\u77f3","Boon of the First Ones":"\u5148\u7956\u8d50\u798f","Vix Lunaris Cardinal Round Shield":"\u5f71\u6708 \u796d\u8005\u5706\u76fe","Lacewood Spirit Shield":"\u8f6f\u6a61\u9b54\u76fe","Awakener\'s Orb":"\u89c9\u9192\u8005\u4e4b\u77f3","Lioneye\'s Paws Leatherscale Boots":"\u72ee\u773c\u7684\u6597\u5fd7 \u7c97\u9cde\u76ae\u9774","Long Bow":"\u957f\u5f13","Eldritch Orb of Annulment":"\u53e4\u7075\u5265\u79bb\u77f3","Micro-Distillery Belt":"\u4f4e\u917f\u8170\u5e26","Antique Greaves":"\u53e4\u94a2\u80eb\u7532","Grove Bow":"\u4e1b\u6797\u730e\u5f13","Breach Ring":"\u88c2\u9699\u6212\u6307","Circle of Fear Sapphire Ring":"\u6050\u60e7\u4e4b\u73af \u84dd\u7389\u6212\u6307","Malachai\'s Loop Harmonic Spirit Shield":"\u8f6e\u56de \u548c\u8c10\u9b54\u76fe","Iron Mask":"\u94c1\u953b\u4e4b\u9762","Orb of Binding":"\u9ad8\u9636\u70b9\u91d1\u77f3","Minion Speed Support":"\u53ec\u5524\u751f\u7269\u901f\u5ea6","Rearguard Blunt Arrow Quiver":"\u5bd2\u950b\u4e4b\u536b \u949d\u77e2\u7bad\u888b","Soulthirst Cloth Belt":"\u55dc\u9b42 \u9970\u5e03\u8170\u5e26","The Baron Close Helmet":"\u7537\u7235 \u62a4\u9762\u76d4","Poorjoy\'s Asylum Temple Map":"\u6c89\u6ca6\u4e4b\u95f4 \u593a\u9b42\u4e4b\u6bbf","Scroll Fragment":"\u5377\u8f74\u788e\u7247","Full Leather":"\u8fde\u8eab\u76ae\u7532","First Piece of Directions Blunt Arrow Quiver Piece":"\u5c04\u672f\u5148\u9a71\u8005\u788e\u7247I \u949d\u77e2\u7bad\u888b","Despair":"\u7edd\u671b","Goldwyrm Nubuck Boots":"\u9f99\u708e\u8db3\u8ff9 \u7802\u5f71\u77ed\u9774","Bramblejack Plate Vest":"\u523a\u68d8\u5b9d\u7532 \u94c1\u5236\u80cc\u5fc3","Blood of Summer Rusted Sword":"\u708e\u590f\u4e4b\u8840 \u9508\u5251","Murk Runner":"\u9634\u6697\u6050\u5599\u9e1f","Unrelenting Timeless Eternal Emblem":"\u4e0d\u5c48\u5e1d\u56fd\u5370\u8bb0","The Traitor":"\u80cc\u53db\u8005","Blunt Arrow Quiver":"\u949d\u77e2\u7bad\u888b","Shining Ward":"\u95ea\u8000\u7ed3\u754c","Glorious Leather":"\u8363\u8000\u76ae\u7532","Replica Maloney\'s Mechanism Ornate Quiver":"\u9a6c\u6d1b\u5c3c\u7684\u6280\u5de7\u3010\u4eff\u54c1\u3011 \u534e\u7f8e\u7bad\u888b","Dyadus Infernal Axe":"\u9f99\u51e4\u541f \u72f1\u706b\u4e4b\u5203","Atziri\'s Splendour Sacrificial Garb":"\u963f\u5179\u91cc\u7684\u5a01\u6743 \u796d\u793c\u675f\u8863","The Goddess Bound Whalebone Rapier":"\u5973\u795e\u7684\u7075\u7f1a \u9cb8\u9aa8\u7ec6\u5203","Geofri\'s Baptism Brass Maul":"\u5409\u5c14\u83f2\u7684\u51c0\u7f6a\u4e4b\u9524 \u94dc\u5f71\u5de8\u9524","Saqawal\'s Nest Blood Raiment":"\u82cd\u7a7a\u4e4b\u5de2 \u8840\u8272\u4e4b\u8863","The Enlightened":"\u667a\u6167\u542f\u8499","Screaming Essence of Spite":"\u523b\u6bd2\u4e4b\u5de8\u543c\u7cbe\u534e","Iron Heart Crusader Plate":"\u94a2\u94c1\u4e4b\u5fc3 \u5f81\u6218\u91cd\u94e0","Factory Map":"\u5de5\u5382\u9057\u8ff9","Tainted Divine Teardrop":"\u6c61\u67d3\u795e\u6cea","Satin Gloves":"\u7f0e\u5e03\u624b\u5957","Precision":"\u7cbe\u51c6","The Gorgon":"\u845b\u5c14\u8d21","Waste Pool Map (Atlas of Worlds)":"\u6b7b\u5bc2\u6ce5\u6c9f(\u5f02\u754c\u56fe\u9274)","Abrasive Catalyst":"\u7814\u78e8\u50ac\u5316\u5242","Villa Map (Atlas of Worlds)":"\u9b45\u5f71\u522b\u5885(\u5f02\u754c\u56fe\u9274)","Ancient Waystones Crimson Jewel":"\u8fdc\u53e4\u57fa\u77f3 \u8d64\u7ea2\u73e0\u5b9d","Vortex":"\u6f29\u6da1","Cells Map (The Awakening)":"\u5e7d\u9b42\u76d1\u7262(\u89c9\u9192)","Ascent From Flesh Chain Belt":"\u53d8\u8282\u8005 \u6263\u94fe\u8170\u5e26","Shaped Cemetery Map (Atlas of Worlds)":"\u6668\u66e6\u5893\u5730(\u5851)(\u5f02\u754c\u56fe\u9274)","Thorn Rapier":"\u68d8\u523a\u7ec6\u5251","Storm Secret Topaz Ring":"\u98ce\u66b4\u4e4b\u79d8 \u9ec4\u7389\u6212\u6307","The Conduit":"\u96f7\u9488","Chance to Bleed Support":"\u51e0\u7387\u6d41\u8840","Replica Ambu\'s Charge Crusader Chainmail":"\u5b89\u59c6\u5e03\u7684\u6218\u7532\u3010\u4eff\u54c1\u3011 \u5723\u6218\u9501\u7532","Jingling Spirit Shield":"\u7075\u76f8\u9b54\u76fe","Might is Right":"\u6b63\u6c14","Enraptured Crab":"\u72c2\u66b4\u5de8\u87f9","Laminated Kite Shield":"\u5408\u677f\u9e22\u76fe","The Sephirot":"\u751f\u547d\u4e4b\u6811","Arachnid Nest Map":"\u5f02\u86db\u5de2\u7a74","Medium Mana Flask":"\u4e2d\u578b\u9b54\u529b\u836f\u5242","Fishscale Gauntlets":"\u9c7c\u9cde\u624b\u5957","Maven\'s Invitation: Tirn\'s End":"\u8d24\u4e3b\u4e4b\u9080\uff1a\u63d0\u6069\u6b62\u5883","High Lithomancer":"\u9ad8\u9636\u77f3\u535c\u5e08","Maven\'s Invitation: The Elderslayers":"\u8d24\u4e3b\u4e4b\u9080\uff1a\u88c2\u754c\u5c60\u6740\u8005","Vaal Sentencing Cobalt Jewel":"\u74e6\u5c14\u4e4b\u8bc9 \u94b4\u84dd\u73e0\u5b9d","Dungeon Map":"\u7981\u9b42\u708e\u72f1","A Stone Perfected":"\u5b8c\u7f8e\u4e4b\u77f3","Coral Ring":"\u73ca\u745a\u6212\u6307","The Embalmer Carnal Mitts":"\u5165\u6b93\u5e08 \u7981\u793c\u62a4\u624b","The Twilight Temple Moon Temple Map":"\u66ae\u5149\u53e4\u5e99 \u6708\u5f71\u795e\u6bbf","Three Hands Talisman":"\u4e09\u624b\u9b54\u7b26","Beach Map":"\u5371\u5ca9\u6d77\u6ee9","Summon Carrion Golem":"\u53ec\u5524\u8150\u5316\u9b54\u50cf","Blade Blast":"\u4e71\u5251\u7a7f\u5fc3","Lesser Broken Circle Artifact":"\u6b21\u7ea7\u88c2\u73af\u795e\u5668","Molten Shell":"\u7194\u5ca9\u62a4\u76fe","Sinistral Gloves":"\u5de6\u65cb\u624b\u5957","Collateral Damage Viridian Jewel":"\u9644\u5e26\u4f24\u5bb3 \u7fe0\u7eff\u73e0\u5b9d","Conversion Trap":"\u8ff7\u9b45\u9677\u9631","Conjurer Boots":"\u5492\u8005\u957f\u9774","Gladius":"\u6597\u58eb\u957f\u5251","The Price of Loyalty":"\u5fe0\u8bda\u7684\u4ee3\u4ef7","Craicic Spider Crab":"\u6df1\u6d77\u8718\u86db\u87f9","The Gladiator":"\u6597\u58eb","The Price of Protection":"\u4fdd\u62a4\u7684\u4ee3\u4ef7","Cortex Synthesised Map":"\u8111\u5c42 \u5bfb\u68a6\u8ffd\u5fc6","Courtyard Map (Atlas of Worlds)":"\u5947\u672f\u4e4b\u5ead(\u5f02\u754c\u56fe\u9274)","Hopeshredder Ranger Bow":"\u7834\u706d\u4e4b\u5e0c \u6e38\u4fa0\u5f13","Argient":"\u4e9a\u5409\u6069\u7279","Deafening Essence of Spite":"\u523b\u6bd2\u4e4b\u7834\u7a7a\u7cbe\u534e","Esh\'s Flawless Breachstone":"\u827e\u8bb8\u7684\u65e0\u6687\u88c2\u9699\u77f3","Vaal Blight":"\u74e6\u5c14\uff1a\u67af\u840e","Gale Crown":"\u98d3\u98ce\u4e4b\u51a0","Sharkskin Boots":"\u9ca8\u76ae\u77ed\u9774","Ondar\'s Clasp Wrapped Mitts":"\u6069\u5fb7\u7684\u8fc5\u5f71 \u88f9\u8dbe\u62a4\u624b","Lioneye\'s Paws Bronzescale Boots":"\u72ee\u773c\u7684\u6597\u5fd7 \u94dc\u5f71\u957f\u9774","Bronzescale Gauntlets":"\u94dc\u5f71\u624b\u5957","Transformer Staff":"\u53d8\u5f62\u957f\u6756","Replica Emberwake Ruby Ring":"\u4f59\u70ec\u4e4b\u75d5\u3010\u4eff\u54c1\u3011 \u7ea2\u7389\u6212\u6307","Vaal Gauntlets":"\u74e6\u5c14\u62a4\u624b","Wrist Chopper":"\u65ad\u8155\u4e4b\u5203","Peaceful Moments":"\u5b89\u5b81\u4e4b\u65f6","Uul-Netol\'s Pure Breachstone":"\u4e4c\u5c14\u5c3c\u591a\u7684\u7eaf\u51c0\u88c2\u9699\u4e4b\u77f3","Perforate":"\u51ff\u51fb","Silken Vest":"\u7ef8\u7f0e\u80cc\u5fc3","Critical Strike Affliction Support":"\u6bd2\u5316","Three Rat Talisman":"\u4e09\u9f20\u9b54\u7b26","Reinforced Kite Shield":"\u5f3a\u5316\u9e22\u76fe","Reef Map (The Awakening)":"\u5371\u673a\u6d77\u7901(\u89c9\u9192)","Solstice Vigil Onyx Amulet":"\u81f3\u65e5\u4e0d\u7720 \u9ed1\u66dc\u62a4\u8eab\u7b26","Maze Slitherer":"\u8ff7\u5bab\u6ed1\u884c\u8005","Intuitive Link":"\u76f4\u89c9\u7f81\u7eca","Blueprint: Smuggler\'s Den":"\u84dd\u56fe\uff1a\u73cd\u5b9d\u4e4b\u5730","Sunspite Clasped Boots":"\u65e5\u6028 \u73af\u5e26\u957f\u9774","Strapped Mitts":"\u6263\u73af\u62a4\u624b","Hextouch Support":"\u86ca\u5492\uff08\u8f85\uff09","Ethereal Knives":"\u865a\u7a7a\u5315\u9996","Daresso\'s Passion Estoc":"\u5fb7\u745e\u7d22\u7684\u70ed\u60c5 \u7a7f\u7532\u523a\u5251","Celestial Stone":"\u5929\u5802\u4e4b\u77f3","Blackheart Iron Ring":"\u5e7d\u6697\u4e4b\u8bed \u953b\u94c1\u6212\u6307","Blood Ape":"\u8840\u9762\u72c2\u733f","A Mother\'s Parting Gift":"\u6bcd\u4eb2\u7684\u793c\u7269","Doryani\'s Delusion Titan Greaves":"\u591a\u5229\u4e9a\u5c3c\u7684\u5e7b\u60f3 \u5de8\u4eba\u80eb\u7532","Rotted Round Shield":"\u673d\u6728\u5706\u76fe","Ezomyte Peak Iron Hat":"\u827e\u5179\u9ea6\u7684\u8363\u5149 \u7c97\u94c1\u76d4","Gorebreaker Spiked Club":"\u8840\u88c2 \u949d\u9489\u6728\u68d2","Frozen Trail Cobalt Jewel":"\u51b0\u51bb\u75d5\u8ff9 \u94b4\u84dd\u73e0\u5b9d","Explosive Arrow":"\u7206\u70b8\u7bad\u77e2","Riveted Boots":"\u4eea\u5f0f\u77ed\u9774","Rashkaldor\'s Patience Jade Amulet":"\u62c9\u4ec0\u5361\u5fb7\u7684\u8010\u5fc3 \u7fe0\u7389\u62a4\u8eab\u7b26","Thaumaturgical Ward":"\u5947\u672f\u7ed3\u754c","Hexclaw Talisman":"\u5e7b\u722a\u9b54\u7b26","Stalker of the Endless Dunes":"\u65e0\u8fb9\u6c99\u4e18\u6f5c\u884c\u8005","Domination Leaguestone":"\u652f\u914d\u8d5b\u5b63\u77f3","The Signal Fire Cured Quiver":"\u72fc\u70df \u706b\u7130\u7bad\u888b","Winter Burial Crimson Jewel":"\u51ac\u846c \u8d64\u7ea2\u73e0\u5b9d","Tiger Hook":"\u864e\u94a9","Ceaseless Feast Spiked Gloves":"\u65e0\u5c3d\u76db\u5bb4 \u6263\u9489\u624b\u5957","The Wolf\'s Shadow":"\u72fc\u7684\u5f71\u5b50","Brotherhood in Exile":"\u6d41\u653e\u5144\u5f1f\u4f1a","The Devouring Diadem Necromancer Circlet":"\u541e\u566c\u8005\u738b\u51a0 \u64cd\u7075\u8005\u4e4b\u51a0","Beyond Leaguestone":"\u8d85\u8d8a\u8d5b\u5b63\u77f3","The Mad King":"\u72c2\u738b","Noble Tricorne":"\u8d35\u65cf\u4e09\u89d2\u5e3d","Replica Oro\'s Sacrifice Infernal Sword":"\u6b27\u7f57\u7684\u8d21\u54c1\u3010\u4eff\u54c1\u3011 \u72f1\u708e\u91cd\u5251","Multiple Totems Support":"\u591a\u91cd\u56fe\u817e\uff08\u8f85\uff09","Yoke of Suffering Onyx Amulet":"\u82e6\u96be\u7f81\u7eca \u9ed1\u66dc\u62a4\u8eab\u7b26","Atziri\'s Rule Judgement Staff":"\u963f\u5179\u91cc\u7684\u7edf\u6cbb \u5ba1\u5224\u957f\u6756","Wyrmscale Doublet":"\u9f99\u9cde\u6218\u7532","One With Nothing Small Cluster Jewel":"\u5f92\u624b\u7a7a\u62f3 \u5c0f\u578b\u661f\u56e2\u73e0\u5b9d","Conduit Line":"\u5bfc\u7ebf","Spell Cascade Support":"\u591a\u91cd\u8303\u56f4\u65bd\u6cd5","Crown of the Tyrant Magistrate Crown":"\u66b4\u541b\u738b\u51a0 \u884c\u653f\u8005\u6218\u51a0","Discharge":"\u89e3\u653e","The Cursed King":"\u8bc5\u5492\u4e4b\u738b","Awakened Added Chaos Damage Support":"\u9644\u52a0\u6df7\u6c8c\u4f24\u5bb3\uff08\u5f3a\u8f85\uff09","Ornament of the East Gut Ripper":"\u4e1c\u4e4b\u9970 \u88c2\u810f\u94a9","The Twilight Moon":"\u66ae\u5149\u4e4b\u6708","Teal Oil":"\u6c34\u84dd\u5723\u6cb9","Daresso\'s Salute Citrine Amulet":"\u5fb7\u745e\u7d22\u7684\u6218\u793c \u9ec4\u6676\u62a4\u8eab\u7b26","Screaming Essence of Woe":"\u60b2\u75db\u4e4b\u5486\u54ee\u7cbe\u534e","Void Anomaly":"\u865a\u7a7a\u4e4b\u5f02","Chaos Shard":"\u6df7\u6c8c\u77f3\u788e\u7247","Nook\'s Crown":"\u8bfa\u514b\u4e4b\u51a0","Craicic Vassal":"\u6df1\u6d77\u5bc4\u751f\u8005","Stygian Ape":"\u51a5\u6e21\u72c2\u733f","Time-Lost Relic":"\u5931\u843d\u9057\u9aa8","Essence of Insanity":"\u9519\u4e71\u7cbe\u534e","Vaal Burning Arrow":"\u74e6\u5c14\uff1a\u71c3\u70e7\u7bad\u77e2","Forbidden Woods Map":"\u7981\u65ad\u4e4b\u6797","Shrieking Essence of Greed":"\u8d2a\u5a6a\u4e4b\u5c16\u5578\u7cbe\u534e","Prophet Crown":"\u7bb4\u8a00\u6218\u51a0","Primordial Pool Map (Atlas of Worlds)":"\u8d77\u6e90\u4e4b\u6c60(\u5f02\u754c\u56fe\u9274)","Screaming Essence of Scorn":"\u50b2\u89c6\u4e4b\u5486\u54ee\u7cbe\u534e","Scrap Metal":"\u5e9f\u91d1\u5c5e","Putembo\'s Meadow Topaz Ring":"\u666e\u85e4\u535a\u7684\u8349\u539f \u9ec4\u7389\u6212\u6307","Rigwald\'s Quills Two-Point Arrow Quiver":"\u745e\u4f5b\u4e4b\u7fbd \u53cc\u950b\u7bad\u888b","Marylene\'s Fallacy Lapis Amulet":"\u739b\u8389\u7433\u7684\u62a4\u4f53\u4e4b\u7b26 \u6d77\u7389\u62a4\u8eab\u7b26","Awakened Generosity Support":"\u548c\u5584\uff08\u5f3a\u8f85\uff09","Plume of Pursuit Bone Circlet":"\u8ffd\u9010\u4e4b\u7fbd \u7075\u9aa8\u4e4b\u51a0","Arakaali\'s Fang Fiend Dagger":"\u963f\u62c9\u5361\u529b\u4e4b\u7259 \u517d\u8840\u77ed\u5315","Fencoil Gnarled Branch":"\u7eff\u85e4 \u673d\u6728\u4e4b\u5e72","Eternal Bonds":"\u6c38\u6052\u7f81\u7eca","Headhunter Leather Belt":"\u730e\u9996 \u76ae\u9769\u8170\u5e26","Dance of the Offered Carnal Boots":"\u732e\u796d\u821e\u978b \u7981\u793c\u4e4b\u9774","Tiger\'s Paw":"\u864e\u722a\u5203","Generosity Support":"\u548c\u5584","The Squire Elegant Round Shield":"\u4f8d\u4ece \u6743\u8d35\u5706\u76fe","Exhausting Spirit Shield":"\u529b\u7aed\u9b54\u76fe","Malachai\'s Awakening Iron Mask":"\u739b\u62c9\u51ef\u4e4b\u89c9\u9192 \u94c1\u953b\u4e4b\u9762","Deafening Essence of Greed":"\u8d2a\u5a6a\u4e4b\u7834\u7a7a\u7cbe\u534e","Studded Round Shield":"\u94c6\u9489\u5706\u76fe","Decorative Axe":"\u5bcc\u8d35\u4e4b\u65a7","Farrul\'s Chase Slink Boots":"\u5927\u5730\u4e4b\u75d5 \u8ff7\u8e2a\u77ed\u9774","Thief\'s Torment Prismatic Ring":"\u7a83\u7f6a \u4e09\u76f8\u6212\u6307","The Strategist":"\u5175\u6cd5\u5bb6","Ancient Architect":"\u53e4\u4ee3\u5efa\u7b51\u5e08","Screaming Invitation":"\u5486\u54ee\u7684\u9080\u8bf7","Volkuur\'s Key":"\u798f\u5e93\u5c14\u4e4b\u94a5[\u5de6\u4e0a]","A Dab of Ink":"\u58a8\u6c34\u70b9\u6ef4","The Union":"\u8054\u59fb","Metamorph Heart":"\u707e\u53d8\u6838\u5fc3","weapons":"\u6b66\u5668","Penetrating Arrow Quiver":"\u7a7f\u5c04\u7bad\u888b","War Plate":"\u6218\u4e89\u4e4b\u94e0","Inextricable Fate Fugitive Boots":"\u5bbf\u547d \u9003\u4ea1\u4e4b\u9774","Hand of Arimor":"\u963f\u5229\u6469\u4e4b\u624b","Realmshaper Iron Staff":"\u521b\u57df \u94c1\u953b\u957f\u6756","Powerful Chaotic Resonator":"\u5de8\u80fd\u6df7\u4e71\u5171\u632f\u5668","Amethyst Ring":"\u7d2b\u6676\u6212\u6307","The Felbog Fang Citrine Amulet":"\u8d39\u4f2f\u4e4b\u7259 \u9ec4\u6676\u62a4\u8eab\u7b26","Peninsula Map (The Awakening)":"\u5e72\u6f6e\u6797\u5730(\u89c9\u9192)","Girded Tower Shield":"\u5f81\u6218\u5854\u76fe","Residence Map (Legacy)":"\u795e\u4e3b\u5c45\u6240(\u9057\u4ea7)","The Risk":"\u5371\u673a","The Patient":"\u75c5\u60a3","Replica Voideye Unset Ring":"\u865a\u7a7a\u6167\u773c\u3010\u4eff\u54c1\u3011 \u6f5c\u80fd\u4e4b\u6212","The Witch":"\u5deb\u5a46","Blasphemy Support":"\u8bc5\u5492\u5149\u73af","Penitent Mask":"\u5fcf\u6094\u9762\u5177","Fleshripper":"\u88c2\u8089\u8005","Redblade Banner Painted Tower Shield":"\u7ea2\u5203\u65d7\u5e1c \u5f69\u7ed8\u5854\u76fe","Void Sceptre":"\u865a\u5f71\u77ed\u6756","Rabid Minion":"\u75af\u72c2\u7684\u4ec6\u4ece","Less Duration Support":"\u6301\u7eed\u65f6\u95f4\u7f29\u77ed","Dementophobia":"\u6050\u9b54\u75c7","Exothermic Tower Shield":"\u6392\u70ed\u578b\u5854\u76fe","The Wise Oak Bismuth Flask":"\u806a\u660e\u7684\u6b27\u514b \u7070\u5ca9\u836f\u5242","Marshes Map (Atlas of Worlds)":"\u7edd\u671b\u6cbc\u6cfd(\u5f02\u754c\u56fe\u9274)","Shaped Orchard Map (Atlas of Worlds)":"\u5bc6\u6797\u679c\u56ed(\u5851)(\u5f02\u754c\u56fe\u9274)","Steelworm Broadhead Arrow Quiver":"\u94a2\u94c1\u8815\u866b \u5bbd\u77e2\u7bad\u888b","Archmage Support":"\u5927\u6cd5\u5e08\uff08\u8f85\uff09","Bronze Tower Shield":"\u9752\u94dc\u5854\u76fe","Heartbound Loop Moonstone Ring":"\u7ed3\u9b42\u4e4b\u73af \u6708\u5149\u77f3\u6212\u6307","Awakened Vicious Projectiles Support":"\u90aa\u6076\u6295\u63b7\uff08\u5f3a\u8f85\uff09","Ashen Wood Map (Legacy)":"\u65f1\u6728\u6797\u5730(\u9057\u4ea7)","Snakepit Sapphire Ring":"\u86c7\u7a74 \u84dd\u7389\u6212\u6307","Spiny Round Shield":"\u68d8\u523a\u5706\u76fe","Mineral Pools Map":"\u5e9f\u5f03\u77ff\u5c71","Awakened Greater Multiple Projectiles Support":"\u9ad8\u9636\u591a\u91cd\u6295\u5c04\uff08\u5f3a\u8f85\uff09","Boneshatter":"\u4e03\u4f24\u7834","Basket Rapier":"\u7ec3\u6b66\u8005\u7ec6\u5251","Craiceann\'s Tracks Goliath Greaves":"\u6df1\u6d77\u9b54\u8db3 \u5de8\u7075\u80eb\u7532","Mirebough Gnarled Branch":"\u9b54\u85e4 \u673d\u6728\u4e4b\u5e72","Bazaar Map (Legacy)":"\u8fdc\u53e4\u5e02\u96c6(\u9057\u4ea7)","Clasped Mitts":"\u73af\u5e26\u62a4\u624b","Shrieking Essence of Sorrow":"\u54c0\u60dc\u4e4b\u5c16\u5578\u7cbe\u534e","Squandered Prosperity":"\u6325\u970d\u65e0\u5ea6","Xoph\'s Breachstone":"\u7d22\u4f0f\u88c2\u9699\u77f3","Necromancy Net":"\u53ec\u5524\u5e08\u730e\u9b54\u5939","Garukhan\'s Flight Stealth Boots":"\u76d6\u5362\u574e\u7684\u98de\u5347 \u533f\u8e2a\u77ed\u9774","Spell Echo Support":"\u65bd\u6cd5\u56de\u54cd","Rage Vortex":"\u6012\u706b\u6f29\u6da1","Fireborn Crimson Jewel":"\u708e\u57df \u8d64\u7ea2\u73e0\u5b9d","monsters":"\u6574\u7406\u7684\u602a\u7269","Absolution":"\u8d66\u7f6a","Berek\'s Grip Two-Stone Ring":"\u8d1d\u96f7\u514b\u7684\u51b0\u4e0e\u96f7\u4e4b\u66f2 \u53cc\u7389\u6212\u6307","Voll\'s Protector Holy Chainmail":"\u798f\u5c14\u7684\u6218\u94e0 \u5723\u8bed\u9501\u7532","Blue Frog":"\u84dd\u86d9","Pit Map (Atlas of Worlds)":"\u5de8\u5751(\u5f02\u754c\u56fe\u9274)","Shrieking Essence of Doubt":"\u7591\u60d1\u4e4b\u5c16\u5578\u7cbe\u534e","Maven\'s Invitation: The Forgotten":"\u8d24\u4e3b\u4e4b\u9080\uff1a\u865a\u7a7a\u5fc6\u5883","Hyaon\'s Fury Legion Sword":"\u6d77\u6602\u7684\u72c2\u6012 \u519b\u56e2\u957f\u5251","Gang\'s Momentum Legion Boots":"\u521a\u52c7 \u519b\u56e2\u957f\u9774","Putrid Chimeral":"\u8150\u70c2\u7684\u9f99\u8725","Shabby Jerkin":"\u7834\u65e7\u5916\u5957","Precinct Map (Atlas of Worlds)":"\u82e6\u884c\u4e4b\u57df(\u5f02\u754c\u56fe\u9274)","Acton\'s Nightmare Overgrown Shrine Map (The Awakening)":"\u8f6e\u56de\u7684\u68a6\u9b47 \u5bc6\u8349\u795e\u6bbf(\u89c9\u9192)","Deafening Essence of Envy":"\u5fcc\u5992\u4e4b\u7834\u7a7a\u7cbe\u534e","Shaped Castle Ruins Map (Atlas of Worlds)":"\u5e7d\u5f71\u9057\u5740(\u5851)(\u5f02\u754c\u56fe\u9274)","Stasis Prison Carnal Armour":"\u7981\u9522\u76d1\u72f1 \u7981\u793c\u4e4b\u7532","Polished Sulphite Scarab":"\u95ea\u8000\u7684\u4e9a\u786b\u9178\u5723\u7532\u866b","Sage\'s Robe":"\u8d24\u8005\u4e4b\u888d","Champion of Frost":"\u51b0\u971c\u9738\u4e3b","Atziri\'s Foible Paua Amulet":"\u963f\u5179\u91cc\u5723\u5fbd \u6d77\u7075\u62a4\u8eab\u7b26","Shadow Sceptre":"\u5f71\u8bed\u77ed\u6756","Bitterdream Shadow Sceptre":"\u82e6\u68a6 \u5f71\u8bed\u77ed\u6756","Olroth\'s Resolve Iron Flask":"\u6b27\u7f57\u4ec0\u7684\u51b3\u5fc3 \u575a\u94c1\u836f\u5242","Arcanist Brand":"\u5965\u6cd5\u70d9\u5370","Rusted Reliquary Scarab":"\u9508\u8680\u7684\u9057\u7269\u5385\u5723\u7532\u866b","Sanctified Fossil":"\u5723\u6d01\u5316\u77f3","Simulacrum":"\u68a6\u9b47\u62df\u50cf","Azure Oil":"\u5929\u84dd\u5723\u6cb9","The Putrid Cloister Museum Map":"\u5e7d\u79d8\u535a\u7269\u9986 \u53e4\u535a\u7269\u9986","Villa Map":"\u9b45\u5f71\u522b\u5885","Ancient Gauntlets":"\u8fdc\u53e4\u62a4\u624b","The Vast":"\u5e73\u58e4","Zahndethus\' Cassock Sage\'s Robe":"\u672d\u5fb7\u56fe\u65af\u7684\u5723\u8863 \u8d24\u8005\u4e4b\u888d","Replica Three-step Assault Shagreen Boots":"\u5f3a\u88ad\u8005\u3010\u4eff\u54c1\u3011 \u7c97\u9769\u77ed\u9774","Queen of the Great Tangle":"\u4e1b\u6797\u7687\u86db","Ruby Flask":"\u7ea2\u7389\u836f\u5242","Headman\'s Sword":"\u884c\u5211\u5de8\u5251","Reinforced Greaves":"\u5f3a\u5316\u80eb\u7532","Earendel\'s Embrace Grinning Fetish":"\u53f6\u5170\u5fb7\u5c14\u7684\u62e5\u62b1 \u8fdc\u53e4\u4e4b\u796d","Reflex Bow":"\u53cd\u5c04\u5f13","Weeping Essence of Contempt":"\u8f7b\u89c6\u4e4b\u557c\u6ce3\u7cbe\u534e","Volcano Map (Atlas of Worlds)":"\u706b\u5c71\u708e\u57df(\u5f02\u754c\u56fe\u9274)","Malicious Intent Cobalt Jewel":"\u4e0d\u5584\u610f\u56fe \u94b4\u84dd\u73e0\u5b9d","Thicket Hulk":"\u4e1b\u6797\u5de8\u517d","Rathpith Globe Titanium Spirit Shield":"\u732e\u796d\u4e4b\u5fc3 \u5de8\u4eba\u9b54\u76fe","Maven\'s Invitation: Lex Ejoris":"\u8d24\u4e3b\u4e4b\u9080\uff1a\u6069\u7ea6\u5229\u65af\u4e4b\u5f8b","Lost Worlds":"\u5931\u843d\u5e1d\u56fd","Poorjoy\'s Asylum Temple Map (Atlas of Worlds)":"\u6c89\u6ca6\u4e4b\u95f4 \u593a\u9b42\u4e4b\u6bbf(\u5f02\u754c\u56fe\u9274)","Purity of Ice":"\u51b0\u971c\u51c0\u5316","The Aspirant":"\u96c4\u5fc3","Carving Knife":"\u523b\u9aa8\u5200","Fine Delirium Orb":"\u826f\u597d\u7684\u96fe\u9b47\u5b9d\u73e0","Gripped Gloves":"\u64d2\u62ff\u624b\u5957","Nemesis Leaguestone":"\u590d\u4ec7\u8d5b\u5b63\u77f3","The Bitter Blossom":"\u731b\u70c8\u7efd\u653e","Deep One Talisman":"\u6df1\u6e0a\u9b54\u7b26","Awakened Brutality Support":"\u6b8b\u66b4\uff08\u5f3a\u8f85\uff09","Fangjaw Talisman":"\u9f7f\u9ca8\u9b54\u7b26","Atoll Map":"\u6ee8\u6d77\u5c71\u4e18","Predatory Scorpion":"\u63a0\u98df\u5929\u874e","Imbued Wand":"\u9b54\u6027\u6cd5\u6756","Tyrant\'s Sekhem":"\u66b4\u541b\u4e4b\u7edf","Conductivity":"\u5bfc\u7535","Atziri\'s Promise Amethyst Flask":"\u963f\u5179\u91cc\u7684\u8bfa\u8a00 \u7d2b\u6676\u836f\u5242","Sniper Bow":"\u72d9\u51fb\u5f13","Summon Raging Spirit":"\u53ec\u5524\u6124\u6012\u72c2\u7075","Skullbeak":"\u51a5\u5599","Kitava\'s Teachings Small Cluster Jewel":"\u5947\u5854\u5f17\u7684\u6307\u6559 \u5c0f\u578b\u661f\u56e2\u73e0\u5b9d","Wereclaw Talisman":"\u4ea1\u722a\u9b54\u7b26","Chayula\'s Charged Breachstone":"\u590f\u4e4c\u62c9\u7684\u5145\u80fd\u88c2\u9699\u4e4b\u77f3","Sheaq, Maker of Floods":"\u5de8\u6f6e\u4e4b\u795e\u8c22\u514b","Crown of Thorns Vine Circlet":"\u523a\u68d8\u4e4b\u51a0 \u85e4\u8513\u4e4b\u51a0","Strand Map":"\u81f4\u547d\u5ca9\u6ee9","Iron Grip Support":"\u94a2\u94c1\u4e4b\u63e1","Arcane Surge Support":"\u79d8\u672f\u589e\u5f3a","Avian Twins Talisman":"\u53cc\u5b50\u9b54\u7b26","Suncaller Asha":"\u5524\u9633\u8005\u963f\u838e","Callous Mask":"\u65e0\u60c5\u4e4b\u9762","Beauty Through Death":"\u6765\u751f\u4e4b\u7f8e","Toxic Sewer Map (Legacy)":"\u5267\u6bd2\u6c34\u9053(\u9057\u4ea7)","Blueprint: Laboratory":"\u84dd\u56fe\uff1a\u5b9e\u9a8c\u5ba4","Trypanon Great Mallet":"\u88c2\u9885 \u521a\u731b\u5de8\u9524","Melee Splash Support":"\u8fd1\u6218\u4f24\u5bb3\u6269\u6563","Comprehensive Scouting Report":"\u7efc\u5408\u4fa6\u5bdf\u62a5\u544a","Nexus Gloves":"\u67a2\u7ebd\u624b\u5957","Putrid Weaver":"\u8150\u70c2\u7684\u5de8\u86db","Timeless Jewel":"\u6c38\u6052\u73e0\u5b9d","Large Mana Flask":"\u5927\u578b\u9b54\u529b\u836f\u5242","Kitava, The Destroyer":"\u6bc1\u706d\u8005\u5947\u5854\u5f17","Steelchaw":"\u94a2\u56bc","Scriptorium Map":"\u7834\u65e7\u4e66\u5e93","Polished Abyss Scarab":"\u95ea\u8000\u7684\u6df1\u6e0a\u5723\u7532\u866b","Farrul\'s Pounce Hydrascale Gauntlets":"\u5927\u5730\u4e4b\u63e1 \u706b\u876e\u9cde\u624b\u5957","Jade Hatchet":"\u788e\u7389\u65a7","The Brass Dome Gladiator Plate":"\u5de8\u94dc\u4e4b\u9876 \u89d2\u6597\u91cd\u94e0","Ornate Spiked Shield":"\u534e\u4e3d\u523a\u76fe","Thief\'s Trinket":"\u8d4f\u91d1\u730e\u4eba\u9970\u54c1","Acid Slitherer":"\u55dc\u8840\u6ed1\u884c\u8005","The Hungry Loop Unset Ring":"\u9965\u997f\u4e4b\u73af \u6f5c\u80fd\u4e4b\u6212","Rotfeather Talisman":"\u6b7b\u7fbd\u9b54\u7b26","Bisco\'s Leash Heavy Belt":"\u6bd4\u65af\u514b\u7684\u7f30\u7ef3 \u91cd\u9769\u8170\u5e26","Spirited Response Cobalt Jewel":"\u5148\u7956\u56de\u97f3 \u94b4\u84dd\u73e0\u5b9d","Infused Beachhead Harbinger Map":"\u704c\u6ce8\u7684\u964d\u4e34\u4e4b\u5730 \u5148\u9a71\u8005\u5730\u56fe","Apex Rapier":"\u9510\u950b\u7ec6\u5251","Saqawine Cobra":"\u82cd\u7a7a\u773c\u955c\u86c7","Blasphemer\'s Grasp Assassin\'s Mitts":"\u4eb5\u6e0e\u8005\u4e4b\u63e1 \u6697\u5f71\u62a4\u624b","Malachai\'s Artifice Unset Ring":"\u739b\u62c9\u51ef\u7684\u5de7\u6280 \u6f5c\u80fd\u4e4b\u6212","Cloak of Defiance Lacquered Garb":"\u536b\u9053\u4e4b\u888d \u6f06\u5f69\u675f\u8863","Broadhead Arrow Quiver":"\u5bbd\u77e2\u7bad\u888b","Increased Critical Strikes Support":"\u63d0\u9ad8\u66b4\u51fb\u51e0\u7387","Vivinsect Unset Ring":"\u6d3b\u89e3 \u6f5c\u80fd\u4e4b\u6212","Vaal Earthquake":"\u74e6\u5c14\uff1a\u9707\u5730","Corroded Tower Shield":"\u6591\u9a73\u5854\u76fe","Pestilent Strike":"\u81f4\u75ab\u6253\u51fb","Ashen Wood Map (Atlas of Worlds)":"\u65f1\u6728\u6797\u5730(\u5f02\u754c\u56fe\u9274)","Armoury Map":"\u88c5\u5907\u5e93","Maze Webspinner":"\u8ff7\u5bab\u7ec7\u7f51\u8005","Dusktoe Ironscale Boots":"\u8fce\u66ae \u94c1\u5f71\u957f\u9774","Infernal Blade":"\u70bc\u72f1\u5200","Awakened Cold Penetration Support":"\u51b0\u971c\u7a7f\u900f\uff08\u5f3a\u8f85\uff09","Blast Rain":"\u7206\u88c2\u7bad\u96e8","Culling Strike Support":"\u7ec8\u7ed3","Vaal Clarity":"\u74e6\u5c14\uff1a\u6e05\u6670","Ashen Wood Map (The Awakening)":"\u65f1\u6728\u6797\u5730(\u89c9\u9192)","Remembrance":"\u94ed\u8bb0","Stormcharger Plated Greaves":"\u98ce\u66b4\u9a91\u58eb \u575a\u94c1\u80eb\u7532","Divine Orb":"\u795e\u5723\u77f3","Replica Prismweave Rustic Sash":"\u5e7b\u5f69\u83f1\u7ec7\u3010\u4eff\u54c1\u3011 \u7d20\u5e03\u8170\u5e26","Jaws of Agony Supreme Spiked Shield":"\u82e6\u75db\u72c2\u9ca8 \u9738\u8005\u523a\u76fe","Last Hope":"\u6700\u540e\u5e0c\u671b","Great White Claw":"\u767d\u7075\u4e4b\u722a","The Oath":"\u529b\u4e4b\u8a93\u8a00","Highborn Staff":"\u8d35\u65cf\u957f\u6756","Shore Map":"\u66ae\u5149\u6d77\u6ee9","Gruelling Gauntlets":"\u78e8\u4eba\u624b\u7532","The Fool":"\u611a\u4eba","Longtooth Talisman":"\u957f\u7259\u9b54\u7b26","Mana Leech Support":"\u9b54\u529b\u5077\u53d6","Waste Pool Map (The Awakening)":"\u6b7b\u5bc2\u6ce5\u6c9f(\u89c9\u9192)","The Celestial Stone":"\u5929\u5802\u4e4b\u77f3","Queen\'s Escape Ornate Sword":"\u9003\u4ea1\u5973\u738b \u540d\u8d35\u5de8\u5251","The Transformation":"\u53d8\u8eab","Replica Tasalio\'s Sign Sapphire Ring":"\u5854\u8428\u91cc\u5965\u4e4b\u5370\u3010\u4eff\u54c1\u3011 \u84dd\u7389\u6212\u6307","The Eroding One":"\u8150\u5316\u4e4b\u4f53","Asenath\'s Gentle Touch Silk Gloves":"\u5b89\u8d5b\u5a1c\u4e1d\u7684\u5b89\u629a\u4e4b\u8bed \u4e1d\u7ef8\u624b\u5957","Feastbind Rustic Sash":"\u76db\u5bb4\u4e4b\u7ed3 \u7d20\u5e03\u8170\u5e26","Graveyard Map":"\u5815\u5f71\u5893\u573a","Elder-Blessed Rhoa":"\u88c2\u754c\u4e4b\u4ec6 \u6050\u5599\u9e1f","Gilded Axe":"\u91d1\u67c4\u4e4b\u65a7","Volcano Map (The Awakening)":"\u706b\u5c71\u708e\u57df(\u89c9\u9192)","Cold to Fire Support":"\u5bd2\u51b0\u8f6c\u70c8\u7130","Herald of Thunder":"\u95ea\u7535\u4e4b\u6377","Velvet Slippers":"\u4e1d\u7ed2\u4fbf\u978b","Vaal Greaves":"\u74e6\u5c14\u80eb\u7532","Wasteland Map":"\u8352\u5730","Soul Link":"\u7075\u9b42\u7f81\u7eca","Prophecy Leaguestone":"\u9884\u8a00\u8d5b\u5b63\u77f3","Kaltensoul Painted Buckler":"\u51b0\u971c\u4e4b\u9b42 \u5f69\u7ed8\u8f7b\u76fe","Elemental Hit":"\u5143\u7d20\u6253\u51fb","Vial of Awakening":"\u89c9\u9192\u9b54\u74f6","Scarlet Raiment":"\u70bd\u7ea2\u4e4b\u8863","Breaker Toruul":"\u7834\u88c2\u8005\u6258\u96f7\u5c14","Pit Map":"\u5de8\u5751","currency":"\u901a\u8d27","Vial of Summoning":"\u53ec\u5524\u9b54\u74f6","Alternating Sceptre":"\u53d8\u5316\u77ed\u6756","Demigod\'s Immortality Golden Visage":"\u534a\u795e\u7684\u4e0d\u673d \u91d1\u8272\u9762\u5177","Shipyard Map":"\u70bd\u708e\u8239\u575e","Malign Fangs":"\u6076\u6bd2\u4e4b\u7259","Debeon\'s Dirge Despot Axe":"\u6218\u6b4c \u9738\u4e3b\u5de8\u65a7","The Warden":"\u5178\u72f1\u957f","Mutated Adder":"\u7a81\u53d8\u7684\u6bd2\u86c7","Elder-Blessed Retch":"\u88c2\u754c\u4e4b\u4ec6 \u53cd\u520d\u9e1f","Acton\'s Nightmare Overgrown Shrine Map (Legacy)":"\u8f6e\u56de\u7684\u68a6\u9b47 \u5bc6\u8349\u795e\u6bbf(\u9057\u4ea7)","Call of the Brotherhood Two-Stone Ring":"\u610f\u5fd7\u547c\u5524 \u53cc\u7389\u6212\u6307","Blunderbore Astral Plate":"\u8e52\u8dda\u5de8\u517d \u661f\u8292\u6218\u94e0","Maloney\'s Nightfall Blunt Arrow Quiver":"\u9a6c\u6d1b\u5c3c\u7684\u66ae\u5149 \u949d\u77e2\u7bad\u888b","Sulphur Flask":"\u786b\u78fa\u836f\u5242","Apothecary\'s Gloves":"\u836f\u5242\u5e08\u624b\u5957","Blessing of Chayula":"\u590f\u4e4c\u62c9\u7684\u795d\u798f","Doon Cuebiyari Vaal Sceptre":"\u9ed1\u94a2 \u74e6\u5c14\u77ed\u6756","Olmec\'s Sanctum Maze Map (Legacy)":"\u8fdc\u53e4\u4e4b\u5370 \u51a5\u795e\u4e4b\u57df","Sentari\'s Answer Brass Spirit Shield":"\u5c71\u7279\u7acb\u7684\u56de\u5e94 \u94dc\u953b\u9b54\u76fe","Singing Siren":"\u51a5\u66f2\u6d77\u5996","Saqawine Rhex":"\u82cd\u7a7a\u51f6\u9e1f","Fire Penetration Support":"\u706b\u7130\u7a7f\u900f","Dune Hellion":"\u6c99\u4e18\u5730\u72f1\u72ac","Fire Arrow Quiver":"\u706b\u7075\u7bad\u888b","Clarity":"\u6e05\u6670","Mindless Scavenger":"\u5080\u5121\u9aa8\u5599","Glorious Plate":"\u8363\u8000\u6218\u94e0","The Porcupine":"\u5c04\u6210\u7b5b\u5b50","Thread of Hope Crimson Jewel":"\u5e0c\u671b\u4e4b\u7ebf \u8d64\u7ea2\u73e0\u5b9d","K\'aj Q\'ura":"\u50b2\u6162\u4e4b\u5fc3","Siren\'s Spawn":"\u6d77\u5996\u5e7c\u4f53","Doedre\'s Madness":"\u5fb7\u745e\u7ade\u4e4b\u72c2","Empire\'s Grasp Goliath Gauntlets":"\u5e1d\u56fd\u4e4b\u638c \u5de8\u7075\u62a4\u624b","Crimson Round Shield":"\u7eef\u7ea2\u5706\u76fe","Marrowcrush":"\u566c\u9ad3\u5de8\u517d","Replica Tukohama\'s Fortress Ebony Tower Shield":"\u56fe\u514b\u54c8\u739b\u5821\u5792\u3010\u4eff\u54c1\u3011 \u4e4c\u6728\u5854\u76fe","Goathide Boots":"\u7f8a\u76ae\u77ed\u9774","Frontier Leather":"\u8fb9\u620d\u76ae\u7532","Cemetery Map (Legacy)":"\u6668\u66e6\u5893\u5730(\u9057\u4ea7)","Imperial Legacy":"\u5e1d\u56fd\u7684\u9057\u4ea7","Nightmare Mace":"\u68a6\u9b47\u4e4b\u9524","The Infernal King":"\u72f1\u708e\u4e4b\u738b","Tornado":"\u9f99\u5377\u65cb\u98ce","Screaming Essence of Suffering":"\u82e6\u96be\u4e4b\u5486\u54ee\u7cbe\u534e","Corsair Sword":"\u6d77\u8d3c\u957f\u5200","The Formless Inferno Royal Burgonet":"\u65e0\u5f62\u70bc\u72f1 \u7687\u5ba4\u575a\u76d4","A Sea of Blue":"\u851a\u84dd\u4e4b\u6d77","Ivory Spirit Shield":"\u8c61\u7259\u9b54\u76fe","Contagion":"\u761f\u75ab","Scold\'s Bridle Mind Cage":"\u7981\u8bed \u7075\u80fd\u4e4b\u7b3c","Energy Blade":"\u80fd\u91cf\u4e4b\u5203","Vial of Transcendence":"\u8d85\u8d8a\u9b54\u74f6","Arcade Map":"\u5d29\u574f\u957f\u5eca","Heathen Wand":"\u5f02\u5f92\u6cd5\u6756","Perfection":"\u81f3\u81fb\u5b8c\u7f8e","Chin Sol Assassin Bow":"\u4e71\u77e2\u4e4b\u5f26 \u6697\u5f71\u5f13","Rime Gaze Mind Cage":"\u9177\u5bd2\u7684\u51dd\u89c6 \u7075\u80fd\u4e4b\u7b3c","The Dancing Duo Reaver Sword":"\u6740\u5b7d\u6212\u5200 \u6b8b\u66b4\u5de8\u5251","Fighting Bull":"\u6218\u6597\u516c\u725b","Extractor Mentis Agate Amulet":"\u5fc3\u7075\u62bd\u53d6 \u739b\u7459\u62a4\u8eab\u7b26","Diviner\'s Incubator":"\u9884\u8a00\u8005\u5b55\u80b2\u77f3","Tainted Chaos Orb":"\u6c61\u79fd\u6df7\u6c8c\u77f3","Atziri\'s Reflection Golden Buckler":"\u963f\u5179\u91cc\u7684\u53cd\u51fb \u91d1\u9633\u8f7b\u76fe","Demon Crown":"\u6076\u9b54\u4e4b\u51a0","Latticed Ringmail":"\u7cbe\u5236\u73af\u7532","Rusted Ambush Scarab":"\u9508\u8680\u7684\u5f3a\u88ad\u5723\u7532\u866b","Flicker Strike":"\u95ea\u73b0\u6253\u51fb","Dual Strike":"\u53cc\u6301\u6253\u51fb","Painseeker Shagreen Gloves":"\u82e6\u96be\u63a2\u5bfb\u8005 \u7c97\u9769\u624b\u5957","Ivory Temple Map (Atlas of Worlds)":"\u767d\u7389\u795e\u5e99(\u5f02\u754c\u56fe\u9274)","Voidheart Iron Ring":"\u865a\u7a7a\u5fc3\u7075 \u953b\u94c1\u6212\u6307","Desert Brigandine":"\u8352\u91ce\u9501\u94e0","Sepulchre Map":"\u9634\u6697\u5893\u51a2","Reinforced Steel Net":"\u7cbe\u70bc\u7684\u70bc\u94a2\u730e\u9b54\u5939","Haemophilia Serpentscale Gauntlets":"\u8840\u53cb\u75c5 \u86c7\u9cde\u624b\u5957","Icetomb Latticed Ringmail":"\u51b0\u606f \u7cbe\u5236\u73af\u7532","Izaro\'s Dilemma Imperial Claw":"\u4f0a\u6cfd\u6d1b\u4e4b\u8c1c \u5e1d\u56fd\u6218\u722a","Strapped Boots":"\u6263\u73af\u77ed\u9774","Mutated Watcher":"\u7a81\u53d8\u7684\u51dd\u89c6\u8005","Hegemony\'s Era Judgement Staff":"\u9738\u6743\u65f6\u4ee3 \u5ba1\u5224\u957f\u6756","The Landing":"\u964d\u4e34","Actum Butcher Axe":"\u963f\u514b\u987f \u5c60\u622e\u4e4b\u65a7","Golden Sacrificial Glyph":"\u91d1\u8272\u796d\u7b26","Shaped Reef Map (Atlas of Worlds)":"\u5371\u673a\u6d77\u7901(\u5851)(\u5f02\u754c\u56fe\u9274)","Fright Claw":"\u6050\u60e7\u4e4b\u722a","Replica Soul Strike Spike-Point Arrow Quiver":"\u7075\u9b42\u6253\u51fb\u3010\u4eff\u54c1\u3011 \u523a\u950b\u7bad\u888b","Vaal Axe":"\u74e6\u5c14\u5de8\u65a7","The Annihilating Light Quarterstaff":"\u6467\u6b8b\u4e4b\u5149 \u7ec6\u67c4\u957f\u6756","The Halcyon Jade Amulet":"\u592a\u5e73 \u7fe0\u7389\u62a4\u8eab\u7b26","Vorana\'s Preparation Iron Flask":"\u6c83\u62c9\u5a1c\u7684\u51c6\u5907 \u575a\u94c1\u836f\u5242","Fury Hound":"\u7194\u5ca9\u730e\u72ac","Eternal Blessing Support":"\u5723\u795d\uff08\u8f85\uff09","Villa Map (The Awakening)":"\u9b45\u5f71\u522b\u5885(\u89c9\u9192)","Oba\'s Cursed Trove Primordial Blocks Map (The Awakening)":"\u6b27\u9738\u7684\u5492\u6028\u5b9d\u5e93 \u8fdc\u53e4\u8857\u533a(\u89c9\u9192)","Quicksilver Flask":"\u6c34\u94f6\u836f\u5242","Arena Map (The Awakening)":"\u7ade\u6280\u573a(\u89c9\u9192)","Hungry Abyss Viridian Jewel":"\u9965\u9991\u6df1\u6e0a \u7fe0\u7eff\u73e0\u5b9d","Maze Map (Atlas of Worlds)":"\u51a5\u795e\u4e4b\u57df(\u5f02\u754c\u56fe\u9274)","Runic Gauntlets":"\u7b26\u6587\u624b\u7532","Crack Mace":"\u5f00\u88c2\u9524","Ruby Amulet":"\u8840\u8272\u62a4\u8eab\u7b26","Greater Sun Artifact":"\u9ad8\u7ea7\u70c8\u65e5\u795e\u5668","Combat Focus Viridian Jewel":"\u6218\u6597\u4e13\u6ce8 \u7fe0\u7eff\u73e0\u5b9d","Bloodseeker Sharktooth Claw":"\u55dc\u8840\u4e4b\u722a \u9ca8\u989a\u722a","Ground Slam":"\u88c2\u5730\u4e4b\u51fb","Skullhead Secutor Helm":"\u5149\u8f89\u4e4b\u9885 \u7cbe\u5175\u4e4b\u76d4","Divination Distillate Large Hybrid Flask":"\u5b9d\u89c6\u7cbe\u534e \u5927\u578b\u590d\u5408\u836f\u5242","Sacred Orb":"\u5d07\u795e\u77f3","Thaumaturge\'s Incubator":"\u5947\u672f\u5e08\u7684\u5b55\u80b2\u77f3","Screaming Essence of Rage":"\u8086\u8650\u4e4b\u5486\u54ee\u7cbe\u534e","Instilling Orb":"\u704c\u9876\u77f3","Chitus\' Needle Elegant Foil":"\u5207\u7279\u65af\u4e4b\u9488 \u8d35\u65cf\u7ec6\u5251","Maven\'s Invitation: Valdo\'s Rest":"\u8d24\u4e3b\u4e4b\u9080\uff1a\u74e6\u5c14\u591a\u4e4b\u606f","The Siege Small Cluster Jewel":"\u56f4\u653b \u5c0f\u578b\u661f\u56e2\u73e0\u5b9d","The Iron Fortress Crusader Plate":"\u94a2\u94c1\u8981\u585e \u5f81\u6218\u91cd\u94e0","Polished Elder Scarab":"\u95ea\u8000\u7684\u88c2\u754c\u8005\u5723\u7532\u866b","Meginord\'s Vise Steel Gauntlets":"\u6885\u5409\u8bfa\u5fb7\u7684\u5de8\u529b\u8155\u7532 \u51b7\u94a2\u62a4\u624b","Dreadsurge Cleaver":"\u6050\u6016\u5de8\u9570 \u5207\u5272\u8005","Paua Amulet":"\u6d77\u7075\u62a4\u8eab\u7b26","Lava Lake Map":"\u7194\u5ca9\u4e4b\u6e56","Jungle Valley Map (The Awakening)":"\u5267\u6bd2\u6797\u8c37(\u89c9\u9192)","The Saint\'s Treasure":"\u5723\u4eba\u4e4b\u793c","Golden Napuatzi Idol":"\u91d1\u8272\u5a1c\u5e15\u9f50\u795e\u50cf","Plank Kite Shield":"\u673d\u6728\u9e22\u76fe","Siphoning Trap":"\u8679\u5438\u9677\u9631","Agnerod Imperial Staff":"\u96f7\u9706\u5723\u6756 \u5e1d\u56fd\u957f\u6756","Duskblight Ironscale Boots":"\u5e7d\u6697\u51cb\u96f6 \u94c1\u5f71\u957f\u9774","Predator Support":"\u63a0\u98df\uff08\u8f85\uff09","Captured Soul of Shock and Horror":"\u5df2\u6355\u83b7\u7684\u6050\u60e7\u4e4b\u96f7\u4e4b\u9b42","Eldritch Knowledge Cobalt Jewel":"\u5f02\u80fd\u77e5\u8bc6 \u94b4\u84dd\u73e0\u5b9d","Void of the Elements":"\u5143\u7d20\u865a\u7a7a","Screaming Essence of Zeal":"\u70ed\u60c5\u4e4b\u5de8\u543c\u7cbe\u534e","Titan of the Grove":"\u4e1b\u6797\u5de8\u77f3","Dream Mace":"\u68a6\u5883\u4e4b\u9524","Chrysalis Talisman":"\u866b\u86f9\u9b54\u7b26","Ornate Ringmail":"\u534e\u4e3d\u73af\u7532","Ezomyte Hold Iron Hat":"\u827e\u5179\u9ea6\u4e4b\u63e1 \u7c97\u94c1\u76d4","Trapper Mitts":"\u730e\u4eba\u62a4\u624b","Animate Weapon":"\u5e7b\u5316\u6b66\u5668","The Hook":"\u94a9\u5b50","Crystallised Omniscience Onyx Amulet":"\u7ed3\u6676\u5168\u77e5 \u9ed1\u66dc\u62a4\u8eab\u7b26","Sun Leather":"\u6263\u73af\u76ae\u7532","Subsuming Spirit Shield":"\u5f52\u7eb3\u9b54\u76fe","Carnage Ape":"\u51b7\u8840\u72c2\u733f","Hazardous Research Cobalt Jewel":"\u5371\u9669\u7814\u7a76 \u94b4\u84dd\u73e0\u5b9d","The Side Quest":"\u652f\u7ebf\u4efb\u52a1","Timeless Delirium Orb":"\u6c38\u6052\u7684\u96fe\u9b47\u5b9d\u73e0","Dreamquest Slippers":"\u63a2\u68a6\u4e4b\u978b","Lightning Coil Desert Brigandine":"\u96f7\u8bed \u8352\u91ce\u9501\u94e0","Darkness Enthroned Stygian Vise":"\u591c\u4e34 \u6df1\u6e0a\u8170\u5e26","Awakened Added Cold Damage Support":"\u9644\u52a0\u51b0\u971c\u4f24\u5bb3\uff08\u5f3a\u8f85\uff09","Sai":"\u6218\u53c9","Lavianga\'s Wisdom War Hammer":"\u62c9\u7ef4\u5b89\u52a0\u7684\u667a\u6167 \u6218\u9524","Carnal Armour":"\u7981\u793c\u4e4b\u7532","Sin\'s Rebirth Stibnite Flask":"\u518d\u751f\u7684\u7f6a\u6076 \u8ff7\u96fe\u836f\u5242","Mud Geyser Map (Legacy)":"\u9634\u6666\u6ce5\u6ee9(\u9057\u4ea7)","Mirror Arrow":"\u9b45\u5f71\u5c04\u51fb","Eye of Innocence Citrine Amulet":"\u65e0\u7f6a\u4e4b\u773c \u9ec4\u6676\u62a4\u8eab\u7b26","Replica Leer Cast Festival Mask":"\u5171\u9e23\u4e4b\u9762\u3010\u4eff\u54c1\u3011 \u8282\u5e86\u4e4b\u9762","Advanced Traps Support":"\u9677\u9631\u51b7\u5374","Elder-Blessed Cobra":"\u88c2\u754c\u4e4b\u4ec6 \u773c\u955c\u86c7","Anger":"\u6124\u6012","Doryani\'s Delusion Sorcerer Boots":"\u591a\u5229\u4e9a\u5c3c\u7684\u5e7b\u60f3 \u672f\u58eb\u957f\u9774","Quartz Sceptre":"\u77f3\u82f1\u77ed\u6756","Piscator\'s Vigil Tornado Wand":"\u76ae\u65af\u5361\u6258\u7684\u6167\u773c \u72c2\u98ce\u6cd5\u6756","Replica Bones of Ullr Silk Slippers":"\u7075\u9ab8\u4e4b\u5c65\u3010\u4eff\u54c1\u3011 \u4e1d\u7ef8\u4fbf\u978b","Blastchain Mine Support":"\u94fe\u7206\u5730\u96f7\uff08\u8f85\uff09","Muttering Essence of Sorrow":"\u54c0\u60dc\u4e4b\u5462\u5583\u7cbe\u534e","Rock Spitter":"\u5ca9\u77f3\u6c99\u87f9","Lapis Amulet":"\u6d77\u7389\u62a4\u8eab\u7b26","Unnatural Instinct Viridian Jewel":"\u8d85\u81ea\u7136\u672c\u80fd \u7fe0\u7eff\u73e0\u5b9d","Tranquillity":"\u5b81\u9759","Enkindling Orb":"\u542f\u660e\u77f3","Item Quantity Support":"\u7269\u54c1\u6570\u91cf\u589e\u5e45","Rigwald\'s Command Midnight Blade":"\u745e\u4f5b\u7edf\u5e05 \u591c\u8bed\u957f\u5251","Primordial Staff":"\u53f2\u5178\u957f\u6756","Brinerot Mark Unset Ring":"\u5e03\u7433\u6d1b\u7279\u5370\u8bb0 \u6f5c\u80fd\u4e4b\u6212","Energised Armour Crimson Jewel":"\u80fd\u91cf\u575a\u7532 \u8d64\u7ea2\u73e0\u5b9d","Scrabbling Spitter":"\u75be\u884c\u5410\u6c99\u87f9","The Penitent":"\u5fcf\u6094\u8005","Amplification Rod Spiraled Wand":"\u589e\u5e45\u6756 \u87ba\u7eb9\u6cd5\u6756","Vengeance":"\u590d\u4ec7","Replica Paradoxica Vaal Rapier":"\u6096\u8bba\u3010\u4eff\u54c1\u3011 \u74e6\u5c14\u7ec6\u5251","Secondary Regrading Lens":"\u6b21\u8981\u77eb\u6b63\u900f\u955c","Palace Map (The Awakening)":"\u795e\u57df\u4e4b\u6bbf(\u89c9\u9192)","Polaric Invitation":"\u6781\u661f\u7684\u9080\u8bf7","Acton\'s Nightmare Overgrown Shrine Map":"\u8f6e\u56de\u7684\u68a6\u9b47 \u5bc6\u8349\u795e\u6bbf","Summon Phantasm Support":"\u53ec\u5524\u5e7b\u5f71\uff08\u8f85\uff09","Cragfall Serrated Arrow Quiver":"\u843d\u77f3 \u952f\u9f7f\u7bad\u888b","Deadly Tarantula":"\u81f4\u547d\u6bdb\u86db","Springleaf Plank Kite Shield":"\u65b0\u751f\u4e4b\u5fbd \u673d\u6728\u9e22\u76fe","The Calling":"\u8d8a\u754c\u7684\u547c\u5524","Deerskin Gloves":"\u9e7f\u76ae\u624b\u5957","Fragment of Winter":"\u51ac\u4e4b\u788e\u7247","Stabilising Sceptre":"\u5e73\u7a33\u77ed\u6756","Agnerod East Imperial Staff":"\u4e1c\u65b9\u96f7\u9706\u5723\u6756 \u5e1d\u56fd\u957f\u6756","Vial of the Ghost":"\u9b3c\u9b42\u9b54\u74f6","Spire of Stone Crimson Jewel":"\u77f3\u5854 \u8d64\u7ea2\u73e0\u5b9d","Slitherpinch Bronzescale Gauntlets":"\u82cd\u87d2\u4e4b\u9cde \u94dc\u5f71\u624b\u5957","Mud Geyser Map (The Awakening)":"\u9634\u6666\u6ce5\u6ee9(\u89c9\u9192)","Punishment":"\u60e9\u6212","Conquest Chainmail":"\u5f81\u6218\u9501\u7532","Temporal Rift":"\u65f6\u7a7a\u88c2\u9699","Replica Siegebreaker Heavy Belt":"\u7a81\u56f4\u8005\u3010\u4eff\u54c1\u3011 \u91cd\u9769\u8170\u5e26","The Duchess":"\u6d77\u6f6e\u4e4b\u97f3","Wings of Entropy Ezomyte Axe":"\u4e71\u4e16\u4e4b\u7ffc \u827e\u5179\u9ea6\u5de8\u65a7","Grandmaster Keyring":"\u5dc5\u5cf0\u94a5\u5319\u73af","Veruso\'s Battering Rams Titan Gauntlets":"\u9668\u843d\u4e4b\u73af \u5de8\u4eba\u62a4\u624b","Infested Ursa":"\u53d7\u75ab\u4e4b\u722a","Tabula Rasa Simple Robe":"\u65e0\u5c3d\u4e4b\u8863 \u7b80\u6613\u4e4b\u888d","Platinum Kris":"\u767d\u91d1\u6ce2\u5203","Greater Eldritch Ember":"\u9ad8\u7ea7\u53e4\u7075\u4f59\u70ec","Eelskin Gloves":"\u9cd7\u76ae\u624b\u5957","Cadigan\'s Crown Runic Crown":"\u5361\u8fea\u7518\u738b\u51a0 \u7b26\u6587\u738b\u51a0","Mutewind Seal Unset Ring":"\u54d1\u98ce\u5c01\u5370 \u6f5c\u80fd\u4e4b\u6212","The All-seeing Eye":"\u5168\u77e5\u4e4b\u773c","Giantsbane Bronze Gauntlets":"\u5de8\u7075\u707e\u661f \u9752\u94dc\u62a4\u624b","Flooded Mine Map":"\u79ef\u6c34\u77ff\u5751","Tore, Towering Ancient":"\u5de8\u53e4\u6258\u5c14","Flammability":"\u6613\u71c3","Flame Hellion":"\u70c8\u708e\u5730\u72f1\u72ac","Fine Incubator":"\u4e0a\u7b49\u5b55\u80b2\u77f3","Windshriek Reinforced Greaves":"\u98ce\u54ee \u5f3a\u5316\u80eb\u7532","Sibyl\'s Lament Coral Ring":"\u5e0c\u6bd4\u5c14\u4e4b\u53f9 \u73ca\u745a\u6212\u6307","String of Servitude Heavy Belt":"\u5974\u5f79\u4e4b\u7d22 \u91cd\u9769\u8170\u5e26","Skin of the Loyal Simple Robe":"\u5fe0\u8bda\u4e4b\u80a4 \u7b80\u6613\u4e4b\u888d","Badge of the Brotherhood Turquoise Amulet":"\u5144\u5f1f\u4f1a\u5fbd\u7ae0 \u9752\u7389\u62a4\u8eab\u7b26","Shaped Shore Map (Atlas of Worlds)":"\u66ae\u5149\u6d77\u6ee9(\u5851)(\u5f02\u754c\u56fe\u9274)","Farric Chieftain":"\u5927\u5730\u914b\u957f","Auric Mace":"\u5723\u7ea6\u4e4b\u9524","Poacher\'s Mark":"\u76d7\u730e\u8005\u5370\u8bb0","Maw of Mischief Bone Helmet":"\u5bb3\u4eba\u4e4b\u53e3 \u5524\u9aa8\u5934\u76d4","Spell Totem Support":"\u6cd5\u672f\u56fe\u817e","Circle of Anguish Ruby Ring":"\u82e6\u75db\u4e4b\u73af \u7ea2\u7389\u6212\u6307","Lightning Spire Trap":"\u7535\u5854\u9677\u9631","Vanguard Belt":"\u5148\u950b\u8170\u5e26","Belly of the Beast Full Wyrmscale":"\u517d\u8179 \u8fde\u8eab\u9f99\u9cde\u6218\u7532","Reciprocation Staff":"\u4ea4\u6362\u957f\u6756","Contract: Records Office":"\u5951\u7ea6\uff1a\u6863\u6848\u5904","Scriptorium Map (Atlas of Worlds)":"\u7834\u65e7\u4e66\u5e93(\u5f02\u754c\u56fe\u9274)","A Modest Request":"\u5fae\u672b\u7684\u8bf7\u6c42","Inevitability Cobalt Jewel":"\u4e0d\u53ef\u907f\u514d \u94b4\u84dd\u73e0\u5b9d","Jet Amulet":"\u6770\u7279\u62a4\u8eab\u7b26","The Standoff":"\u51b7\u6de1","Reckoning":"\u6e05\u7b97","Lesser Eldritch Ember":"\u6b21\u7ea7\u53e4\u7075\u4f59\u70ec","Fine Sensing Charm":"\u826f\u597d\u611f\u77e5\u9b54\u7b26","Golden Kris":"\u91d1\u5149\u6ce2\u5203","Fine Sharpening Stone":"\u826f\u597d\u78e8\u5200\u77f3","Breathstealer Hydrascale Gauntlets":"\u627c\u606f\u8005 \u706b\u876e\u9cde\u624b\u5957","Dig Map":"\u6398\u5730\u4e4b\u7262","Screaming Essence of Misery":"\u51c4\u60e8\u4e4b\u5486\u54ee\u7cbe\u534e","War Sword":"\u5f81\u6218\u4e4b\u5251","Large Life Flask":"\u5927\u578b\u751f\u547d\u836f\u5242","Jade Amulet":"\u7fe0\u7389\u62a4\u8eab\u7b26","Elevated Sextant":"\u5c0a\u5d07\u516d\u5206\u4eea","Poleaxe":"\u5de8\u6218\u65a7","Metamorph Lung":"\u707e\u53d8\u547c\u5438","Maddening Incubator":"\u72c2\u8e81\u7684\u5b55\u80b2\u77f3","Shaped Marshes Map (Atlas of Worlds)":"\u7edd\u671b\u6cbc\u6cfd(\u5851)(\u5f02\u754c\u56fe\u9274)","Poacher\'s Aim Viridian Jewel":"\u76d7\u730e\u8005\u7684\u51c6\u5fc3 \u7fe0\u7eff\u73e0\u5b9d","Choir of the Storm Lapis Amulet":"\u66b4\u98ce\u4e4b\u8bed \u6d77\u7389\u62a4\u8eab\u7b26","Fairgraves\' Tricorne Tricorne":"\u8d39\u5c14\u4e4b\u5e3d \u4e09\u89d2\u5e3d","Ancient Reliquary Key":"\u53e4\u85cf\u79d8\u94a5","Shadow Axe":"\u5e7d\u5f71\u5de8\u65a7","Savage Crab":"\u91ce\u86ee\u5de8\u87f9","Crimson Raiment":"\u7eef\u7ea2\u4e4b\u8863","Powerful Alchemical Resonator":"\u5de8\u80fd\u70bc\u91d1\u5171\u632f\u5668","Small Cluster Jewel":"\u5c0f\u578b\u661f\u56e2\u73e0\u5b9d","Audacity":"\u80c6\u8bc6","Vaal Lightning Strike":"\u74e6\u5c14\uff1a\u95ea\u7535\u6253\u51fb","Shaped Desert Map (Atlas of Worlds)":"\u8d2b\u7620\u4e4b\u5730(\u5851)(\u5f02\u754c\u56fe\u9274)","Simple Robe":"\u7b80\u6613\u4e4b\u888d","Guardian of the Chimera":"\u5947\u7f8e\u62c9\u5b88\u536b","Lioneye\'s Vision Crusader Plate":"\u72ee\u773c\u7684\u89c6\u7ebf \u5f81\u6218\u91cd\u94e0","Perandus Blazon Cloth Belt":"\u666e\u5170\u5fb7\u65af\u4e4b\u5370 \u9970\u5e03\u8170\u5e26","Serrated Foil":"\u952f\u9f7f\u7ec6\u5251","Rotting Legion Loricated Ringmail":"\u8150\u673d\u519b\u56e2 \u8986\u4f53\u73af\u7532","Burst Band":"\u7206\u7834\u5e26","Copper Tower Shield":"\u94dc\u953b\u5854\u76fe","Fine Lockpick":"\u826f\u597d\u89e3\u5bc6\u5de5\u5177","Cage Map":"\u6076\u5ff5\u7262\u7b3c","Pride":"\u5c0a\u4e25","Enlighten Support":"\u542f\u8499","Elemental Penetration Support":"\u5143\u7d20\u7a7f\u900f\uff08\u8f85\uff09","Screaming Essence of Envy":"\u5fcc\u5992\u4e4b\u5486\u54ee\u7cbe\u534e","Eelskin Tunic":"\u9cd7\u76ae\u4e4b\u8863","Shaped Promenade Map (Atlas of Worlds)":"\u6708\u8272\u56de\u5eca(\u5851)(\u5f02\u754c\u56fe\u9274)","Seismic Cry":"\u9707\u5730\u6218\u543c","Bone Scavenger":"\u98df\u8150\u9aa8\u5599","Ezomyte Tower Shield":"\u827e\u5179\u9ea6\u5854\u76fe","Overgrown Shrine Map (The Awakening)":"\u5bc6\u8349\u795e\u6bbf(\u89c9\u9192)","Trap and Mine Damage Support":"\u9677\u9631\u53ca\u5730\u96f7\u4f24\u5bb3","Solar Maul":"\u65e5\u5149\u9524","Infested Vulture":"\u88ab\u8150\u5316\u7684\u79c3\u9e70","Spider Forest Map":"\u5de8\u86db\u4e4b\u6797","Uul-Netol\'s Breachstone":"\u4e4c\u5c14\u5c3c\u591a\u88c2\u9699\u77f3","The Card Sharp":"\u795e\u6069\u4e4b\u8d50","Tomahawk":"\u5f81\u6218\u4e4b\u65a7","Vial of Dominance":"\u7edf\u5fa1\u9b54\u74f6","Singular Incubator":"\u5355\u4e00\u7684\u7684\u5b55\u80b2\u77f3","Agate Amulet":"\u739b\u7459\u62a4\u8eab\u7b26","The Scholar":"\u5b66\u8005","Skyforth Sorcerer Boots":"\u7a7a\u5411 \u672f\u58eb\u957f\u9774","Aul\'s Uprising Onyx Amulet":"\u5965\u5c14\u4e4b\u5174 \u9ed1\u66dc\u62a4\u8eab\u7b26","Eldritch Incubator":"\u53ef\u6015\u7684\u5b55\u80b2\u77f3","Castle Ruins Map (Atlas of Worlds)":"\u5e7d\u5f71\u9057\u5740(\u5f02\u754c\u56fe\u9274)","Museum Map (The Awakening)":"\u53e4\u535a\u7269\u9986(\u89c9\u9192)","Vaal Power Siphon":"\u74e6\u5c14\uff1a\u529b\u91cf\u62bd\u53d6","Greater Mana Flask":"\u826f\u8d28\u9b54\u529b\u836f\u5242","Totemic Maul":"\u56fe\u817e\u5de8\u9524","Foreboding Delirium Orb":"\u4e0d\u8be6\u7684\u96fe\u9b47\u5b9d\u73e0","The Incantation":"\u5492\u8bed","Poorjoy\'s Asylum Temple Map (The Awakening)":"\u6c89\u6ca6\u4e4b\u95f4 \u593a\u9b42\u4e4b\u6bbf(\u89c9\u9192)","Vaal Grace":"\u74e6\u5c14\uff1a\u4f18\u96c5","Beast of the Pits":"\u5730\u5e95\u5de8\u517d","Friendship":"\u53cb\u8c0a","Operative\'s Scouting Report":"\u4fa6\u63a2\u4fa6\u5bdf\u62a5\u544a","Academy Map":"\u6076\u7075\u5b66\u9662","Lightpoacher Great Crown":"\u5149\u660e\u5077\u730e\u8005 \u5f3a\u5316\u5de8\u76d4","Tear of Purity Lapis Amulet":"\u7eaf\u51c0\u4e4b\u6cea \u6d77\u7389\u62a4\u8eab\u7b26","Pit of the Chimera Map (Atlas of Worlds)":"\u5947\u7f8e\u62c9\u9886\u57df(\u5f02\u754c\u56fe\u9274)","Topaz Flask":"\u9ec4\u7389\u836f\u5242","Terrible Secret of Space":"\u6d2a\u8352\u79d8\u8f9b","Ancestral Call Support":"\u5148\u7956\u53ec\u5524","Prime Alchemical Resonator":"\u5a01\u80fd\u70bc\u91d1\u5171\u632f\u5668","Doedre\'s Damning Paua Ring":"\u5fb7\u745e\u7684\u9b54\u5177 \u6d77\u7075\u6212\u6307","Replica Nebulis Void Sceptre":"\u5185\u5e03\u5229\u65af\u3010\u4eff\u54c1\u3011 \u865a\u5f71\u77ed\u6756","The Skeleton":"\u9b54\u4f8d","Divine Inferno Crimson Jewel":"\u795e\u5723\u70bc\u72f1 \u8d64\u7ea2\u73e0\u5b9d","Leap Slam":"\u8dc3\u51fb","Concentrated Effect Support":"\u96c6\u4e2d\u6548\u5e94","Shaped Spider Forest Map (Atlas of Worlds)":"\u5de8\u86db\u4e4b\u6797(\u5851)(\u5f02\u754c\u56fe\u9274)","Vine Circlet":"\u85e4\u8513\u4e4b\u51a0","Shipyard Map (Atlas of Worlds)":"\u70bd\u708e\u8239\u575e(\u5f02\u754c\u56fe\u9274)","Infested Crab":"\u53d7\u611f\u67d3\u7684\u87f9","Oni-Goroshi Charan\'s Sword":"\u9b3c\u5f11 \u67e5\u5170\u4e4b\u5251","Precursor\'s Emblem Ruby Ring":"\u5148\u9a71\u7684\u7eb9\u7ae0 \u7ea2\u7389\u6212\u6307","The Eternal Apple Chiming Spirit Shield":"\u6c38\u6052\u82f9\u679c \u9b42\u76f8\u9b54\u76fe","Farric Magma Hound":"\u5927\u5730\u7194\u5ca9\u730e\u72ac","Bestial Maw":"\u72c2\u91ce\u88c2\u9f7f\u517d","Poisonous Concoction":"\u6bd2\u7206\u7075\u836f","Fertile Catalyst":"\u4e30\u6c83\u50ac\u5316\u5242","Uzaza\'s Valley Sapphire Ring":"\u4e4c\u624e\u8428\u7684\u5c71\u8c37 \u84dd\u7389\u6212\u6307","The Bear Woman":"\u718a\u5973","Promenade Map (Atlas of Worlds)":"\u6708\u8272\u56de\u5eca(\u5f02\u754c\u56fe\u9274)","Maven\'s Invitation: Glennach Cairns":"\u8d24\u4e3b\u4e4b\u9080\uff1a\u683c\u4f26\u7eb3\u8d6b\u77f3\u51a2","Petrified Club":"\u575a\u77f3\u6728\u68d2","Timeless Karui Emblem":"\u6c38\u6052\u5361\u9c81\u5370\u8bb0","Standard Lockpick":"\u6807\u51c6\u89e3\u5bc6\u5de5\u5177","Winter Orb":"\u5bd2\u51ac\u5b9d\u73e0","Painted Tower Shield":"\u5f69\u7ed8\u5854\u76fe","Aulen Greychain":"\u5de8\u529b\u5965\u4f26","Maze Needleback":"\u8ff7\u5bab\u523a\u732c","Arrogance Support":"\u8d64\u56a3\uff08\u8f85\uff09","Steelscale Gauntlets":"\u94a2\u5f71\u62a4\u624b","Amorphous Delirium Orb":"\u65e0\u5f62\u7684\u96fe\u9b47\u5b9d\u73e0","Craiceann, First of the Deep":"\u6df1\u6d77\u521d\u5b50 \u514b\u6797\u65af\u6602","Demigod\'s Beacon Golden Flame":"\u5347\u534e\u4e4b\u706f \u9ec4\u91d1\u5723\u708e","The Ignomon Gold Amulet":"\u70c8\u9633\u5fbd\u8bb0 \u5e1d\u91d1\u62a4\u8eab\u7b26","War Buckler":"\u6218\u4e89\u8f7b\u76fe","Primal Delirium Orb":"\u539f\u59cb\u7684\u96fe\u9b47\u5b9d\u73e0","Hypothermia Support":"\u6025\u51bb","Destructive Link":"\u6bc1\u706d\u7f81\u7eca","Alloyed Spiked Shield":"\u5408\u91d1\u523a\u76fe","Hallowed Life Flask":"\u795d\u798f\u751f\u547d\u836f\u5242","Warmonger":"\u597d\u6218\u4e4b\u7075","Unset Ring":"\u6f5c\u80fd\u4e4b\u6212","Replica Alpha\'s Howl Sinner Tricorne":"\u6781\u5730\u4e4b\u773c\u3010\u4eff\u54c1\u3011 \u7f6a\u8005\u4e4b\u5e3d","Shield Crush":"\u76fe\u724c\u78be\u538b","The Escape":"\u9003\u4ea1","Cursed Spawn":"\u8bc5\u5492\u6d77\u866b","Bone Crypt Map (Legacy)":"\u53e4\u77f3\u9675\u5893(\u9057\u4ea7)","Residence Map (The Awakening)":"\u795e\u4e3b\u5c45\u6240(\u89c9\u9192)","Replica Windripper Imperial Bow":"\u88c2\u98ce\u3010\u4eff\u54c1\u3011 \u5e1d\u56fd\u4e4b\u5f13","Harbinger\'s Shard":"\u5148\u9a71\u77f3\u788e\u7247","Torr Olgosso":"\u6258\u5c14","Vaal Rapier":"\u74e6\u5c14\u7ec6\u5251","Mutewind Pennant Enameled Buckler":"\u54d1\u98ce\u5c16\u65d7 \u91c9\u5f69\u8f7b\u76fe","The Rat Cage Sharkskin Tunic":"\u75ab\u9f20\u56da\u7b3c \u9ca8\u76ae\u4e4b\u8863","Hybrid Widow":"\u9ed1\u5be1\u5987","Pine Buckler":"\u677e\u6728\u8f7b\u76fe","Bronze Gauntlets":"\u9752\u94dc\u62a4\u624b","Tailoring Orb":"\u88c1\u526a\u77f3","Urgent Orders Support":"\u7d27\u6025\u53f7\u4ee4\uff08\u8f85\uff09","Kinetic Blast":"\u529b\u91cf\u7206\u7834","Cloudwhisper Boots":"\u5524\u4e91\u4e4b\u9774","Rewritten Distant Memory Basilica Map":"\u91cd\u8457\u7684\u9065\u8fdc\u56de\u5fc6 \u795e\u5723\u5927\u6559\u5802","Vaal Recluse":"\u74e6\u5c14\u9057\u7075","Dusktoe Leatherscale Boots":"\u8fce\u66ae \u7c97\u9cde\u76ae\u9774","Caer Blaidd, Wolfpack\'s Den Underground River Map":"\u585e\u5c14.\u5e03\u96f7\u5fb7\u72fc\u7a74 \u5730\u5e95\u4e4b\u6cb3","Winter\'s Embrace":"\u51db\u51ac\u4e4b\u62e5","Chayula\'s Pure Breachstone":"\u590f\u4e4c\u62c9\u7684\u7eaf\u51c0\u88c2\u9699\u4e4b\u77f3","Cone Helmet":"\u9525\u9876\u76d4","Bone Helmet":"\u5524\u9aa8\u5934\u76d4","Arachnid Nest Map (Legacy)":"\u5f02\u86db\u5de2\u7a74(\u9057\u4ea7)","Underground River Map (Atlas of Worlds)":"\u5730\u5e95\u4e4b\u6cb3(\u5f02\u754c\u56fe\u9274)","Contract: Laboratory":"\u5951\u7ea6\uff1a\u5b9e\u9a8c\u5ba4","Bone Crypt Map":"\u53e4\u77f3\u9675\u5893","Thicket Bow":"\u6797\u91ce\u730e\u5f13","Fox\'s Fortune Wild Leather":"\u72d0\u8fd0\u5f3a\u94e0 \u72c2\u91ce\u90e8\u65cf\u76ae\u7532","Awakened Cast On Critical Strike Support":"\u66b4\u51fb\u65f6\u65bd\u653e\uff08\u5f3a\u8f85\uff09","The Searing Touch Long Staff":"\u70bd\u708e\u4e4b\u4f7f \u957f\u6756","Heat-attuned Tower Shield":"\u9002\u70ed\u578b\u5854\u76fe","Shaped Toxic Sewer Map (Atlas of Worlds)":"\u5267\u6bd2\u6c34\u9053(\u5851)(\u5f02\u754c\u56fe\u9274)","Summon Ice Golem":"\u53ec\u5524\u5bd2\u51b0\u9b54\u50cf","Amber Oil":"\u7425\u73c0\u5723\u6cb9","Paradoxica Vaal Rapier":"\u6096\u8bba \u74e6\u5c14\u7ec6\u5251","Plaza Map":"\u5e7f\u573a","Replica Hyrri\'s Truth Jade Amulet":"\u897f\u91cc\u7684\u771f\u76f8\u3010\u4eff\u54c1\u3011 \u7fe0\u7389\u62a4\u8eab\u7b26","Golden Ceremonial Mask":"\u91d1\u8272\u5e86\u5178\u9762\u5177","Eye of Malice Callous Mask":"\u6028\u6068\u4e4b\u773c \u65e0\u60c5\u4e4b\u9762","Junglemare":"\u4e1b\u6797\u68a6\u9b47","Brass Maul":"\u94dc\u5f71\u5de8\u9524","Unravelling Horror":"\u5d29\u9aa8","Full Chainmail":"\u8fde\u8eab\u9501\u7532","Apprentice Cartographer\'s Seal":"\u521d\u7ea7\u5c01\u754c\u5370","Silverbough Crude Bow":"\u94f6\u679d \u7c97\u5236\u5f13","Winged Breach Scarab":"\u6709\u7ffc\u7684\u88c2\u9699\u5723\u7532\u866b","Mystic Devourer":"\u79d8\u672f\u541e\u566c\u8005","Olesya\'s Delight Cloth Belt":"\u5965\u83b1\u897f\u4e9a\u7684\u559c\u60a6 \u9970\u5e03\u8170\u5e26","Strong Rope Net":"\u5f3a\u529b\u7684\u7c97\u7ef3\u730e\u9b54\u5939","Chance to Poison Support":"\u4f4e\u9636\u6bd2\u5316","Captured Soul of Murgeth Bogsong":"\u5df2\u6355\u83b7\u7684\u6cfd\u6b4c\u8499\u6208\u65af\u4e4b\u9b42","Grand Black Scythe Artifact":"\u81f3\u9ad8\u9ed1\u9570\u795e\u5668","Ceremonial Kite Shield":"\u796d\u4eea\u9e22\u76fe","Mortal Ignorance":"\u51e1\u4eba\u7684\u65e0\u77e5[\u5de6\u4e0b]","Three Faces in the Dark":"\u9ed1\u6697\u4e09\u9762","Primordial Pool Map":"\u8d77\u6e90\u4e4b\u6c60","Seismic Trap":"\u9707\u6ce2\u9677\u9631","Three-step Assault Shagreen Boots":"\u5f3a\u88ad\u8005 \u7c97\u9769\u77ed\u9774","Pinnacle Tower Shield":"\u575a\u6bc5\u5854\u76fe","Vaal Storm Call":"\u74e6\u5c14\uff1a\u98ce\u66b4\u547c\u5524","Enameled Buckler":"\u91c9\u5f69\u8f7b\u76fe","Surveyor\'s Compass":"\u6d4b\u7ed8\u7f57\u76d8","Mud Geyser Map (Atlas of Worlds)":"\u9634\u6666\u6ce5\u6ee9(\u5f02\u754c\u56fe\u9274)","Replica Doedre\'s Damning Paua Ring":"\u5fb7\u745e\u7684\u9b54\u5177\u3010\u4eff\u54c1\u3011 \u6d77\u7075\u6212\u6307","Horizon Shard":"\u5e73\u884c\u77f3\u788e\u7247","Golden Prayer Idol":"\u91d1\u8272\u7948\u7977\u8005\u5851\u50cf","Filth Maw":"\u51c0\u6c34\u63a0\u98df\u8005","Corona Solaris Crystal Wand":"\u65e5\u8000\u4e4b\u51a0 \u6c34\u6676\u6cd5\u6756","Vaal Spectral Throw":"\u74e6\u5c14\uff1a\u7075\u4f53\u6295\u63b7","Bloodboil Coral Ring":"\u6cb8\u8840 \u73ca\u745a\u6212\u6307","Kondo\'s Pride Ezomyte Blade":"\u521a\u591a\u7684\u865a\u8363 \u827e\u5179\u9ea6\u5de8\u5251","Glimpse of Chaos Vaal Mask":"\u6df7\u6c8c\u4e00\u77a5 \u74e6\u5c14\u4e4b\u9762","Aquamarine Flask":"\u6d77\u84dd\u836f\u5242","Cemetery Map (The Awakening)":"\u6668\u66e6\u5893\u5730(\u89c9\u9192)","Cold Steel Viridian Jewel":"\u51b7\u94a2 \u7fe0\u7eff\u73e0\u5b9d","Maligaro\'s Cruelty Turquoise Amulet":"\u9a6c\u96f7\u683c\u7f57\u7684\u6b8b\u9177 \u9752\u7389\u62a4\u8eab\u7b26","Stone of Lazhwar Lapis Amulet":"\u62c9\u5179\u74e6\u7684\u7075\u77f3 \u6d77\u7389\u62a4\u8eab\u7b26","Battle Lamellar":"\u4e89\u6218\u9cde\u7532","Fleshcrafter Necromancer Silks":"\u5851\u8840\u5de8\u5320 \u64cd\u7075\u8005\u80cc\u5fc3","Deadly Joy":"\u81f4\u547d\u4e4b\u6109","Dissolution of the Flesh Crimson Jewel":"\u8840\u8089\u5206\u5d29 \u8d64\u7ea2\u73e0\u5b9d","Deregulation Scroll":"\u89e3\u9664\u5377\u8f74","Gilded Fossil":"\u9576\u91d1\u5316\u77f3","Screaming Essence of Anger":"\u6124\u6012\u4e4b\u5486\u54ee\u7cbe\u534e","Hair Trigger Viridian Jewel":"\u53d1\u95f8\u673a\u5173 \u7fe0\u7eff\u73e0\u5b9d","Sadima\'s Touch Wool Gloves":"\u730e\u5b9d\u8005\u7684\u62a4\u624b \u7f8a\u6bdb\u624b\u5957","Greater Volley Support":"\u9ad8\u9636\u9f50\u5c04\uff08\u8f85\uff09","Gilded Cartography Scarab":"\u9540\u91d1\u7684\u5236\u56fe\u8005\u5723\u7532\u866b","Golden Oil":"\u91d1\u8272\u5723\u6cb9","Doedre\'s Malevolence Velvet Gloves":"\u5fb7\u745e\u7684\u6076\u5ff5 \u4e1d\u7ed2\u624b\u5957","Arcane Cloak":"\u5965\u672f\u6597\u7bf7","Tavukai Coral Amulet":"\u5723\u4ee4 \u73ca\u745a\u62a4\u8eab\u7b26","Teak Round Shield":"\u67da\u6728\u5706\u76fe","Hedron Bow":"\u591a\u9762\u5f13","Frozen Cabins Map":"\u51bb\u7ed3\u4e4b\u8231","Pileah, Burning Corpse":"\u711a\u7075\u8005\u76ae\u91cc\u4e9a","The Master Artisan":"\u5de5\u5320\u5927\u5e08","The Watcher":"\u51dd\u89c6\u8005","Farric Taurus":"\u5927\u5730\u77f3\u808c\u725b","Battlemage\'s Cry":"\u9b54\u6b66\u6218\u53f7","Serrated Fossil":"\u72fc\u7259\u5316\u77f3","Scourge Arrow":"\u5929\u707e\u4e4b\u7bad","Royal Sceptre":"\u7687\u5bb6\u77ed\u6756","Steelskin":"\u94a2\u94c1\u4e4b\u80a4","Glacier Map (The Awakening)":"\u51b0\u5ddd(\u89c9\u9192)","The Sunburst Queen":"\u65e5\u708e\u866b\u540e","Leper\'s Alms Mirrored Spiked Shield":"\u4e34\u6b7b\u7684\u65bd\u820d \u94a2\u955c\u523a\u76fe","Thunderfist Murder Mitts":"\u8f70\u5929\u96f7 \u6697\u5f71\u8005\u62a4\u624b","Bladestorm":"\u5251\u5203\u98ce\u66b4","Footman Sword":"\u58eb\u5175\u5de8\u5251","Assassin\'s Boots":"\u6697\u5f71\u4e4b\u9774","Eventuality Rod":"\u6f5c\u80fd\u4e4b\u6756","Jungle Valley Map (Atlas of Worlds)":"\u5267\u6bd2\u6797\u8c37(\u5f02\u754c\u56fe\u9274)","Corrupted Energy Cobalt Jewel":"\u8150\u5316\u80fd\u91cf \u94b4\u84dd\u73e0\u5b9d","Two-Handed Sword":"\u53cc\u624b\u5251","Conqueror\'s Longevity Viridian Jewel":"\u5f81\u670d\u8005\u7684\u957f\u751f \u7fe0\u7eff\u73e0\u5b9d","Regicide Disguise Kit":"\u5f11\u541b\u6613\u5bb9\u5de5\u5177","Bazaar Map":"\u8fdc\u53e4\u5e02\u96c6","The Hunger":"\u9965\u997f","Feral Incubator":"\u91ce\u6027\u7684\u5b55\u80b2\u77f3","Wheel of the Stormsail Rotted Round Shield":"\u66b4\u96e8\u4e4b\u8235 \u673d\u6728\u5706\u76fe","The Betrayal":"\u80cc\u53db","Satin Slippers":"\u7f0e\u5e03\u4fbf\u978b","Burial Chambers Map":"\u5e7d\u95ed\u5893\u9886","Winged Ambush Scarab":"\u6709\u7ffc\u7684\u5f3a\u88ad\u5723\u7532\u866b","Blackgleam Blazing Arrow Quiver":"\u9ed1\u708e\u4e4b\u8292 \u71c3\u77e2\u7bad\u888b","Beacon of Madness Two-Toned Boots":"\u75af\u72c2\u7684\u8c61\u5f81 \u5f02\u8272\u978b","Archdemon Crown":"\u5927\u6076\u9b54\u4e4b\u51a0","Frigid Fossil":"\u51b0\u51bd\u5316\u77f3","Destroyer Regalia":"\u706d\u4e16\u6cd5\u8863","Cursed Crypt Map":"\u5492\u6028\u9675\u5893","Malachai\'s Simula Iron Mask":"\u739b\u62c9\u51ef\u7684\u796d\u5177 \u94c1\u953b\u4e4b\u9762","Orb of Annulment":"\u5265\u79bb\u77f3","Quill Rain Short Bow":"\u9aa4\u96e8\u4e4b\u5f26 \u77ed\u5f13","Thirst for Horrors War Buckler":"\u98a4\u6817\u4e4b\u9965 \u6218\u4e89\u8f7b\u76fe","Awakened Added Lightning Damage Support":"\u9644\u52a0\u95ea\u7535\u4f24\u5bb3\uff08\u5f3a\u8f85\uff09","Barrows Map (Atlas of Worlds)":"\u5c71\u6797\u79d8\u7a74(\u5f02\u754c\u56fe\u9274)","Kaom\'s Primacy Karui Chopper":"\u5188\u59c6\u7684\u9738\u4e1a \u5361\u9c81\u5de8\u65a7","Kikazaru Topaz Ring":"\u57fa\u52a0\u8428\u9c81 \u9ec4\u7389\u6212\u6307","Galvanic Arrow":"\u7535\u5149\u7bad","Curtain Call Plague Mask":"\u591c\u5e55\u53ec\u5524 \u75ab\u707e\u4e4b\u9762","Silverbranch Crude Bow":"\u5e7b\u94f6\u4e4b\u5f26 \u7c97\u5236\u5f13","Infected Spiker":"\u53d7\u611f\u67d3\u523a\u9488\u517d","Reef Map (Legacy)":"\u5371\u673a\u6d77\u7901(\u9057\u4ea7)","Assassin\'s Garb":"\u6697\u5f71\u4e4b\u88c5","Solaris Circlet":"\u65e5\u8000\u4e4b\u51a0","Death\'s Harp Death Bow":"\u51a5\u4f7f\u4e4b\u7434 \u6b7b\u4ea1\u4e4b\u5f13","Bodyswap":"\u7075\u4f53\u8f6c\u6362","Monochrome":"\u9ed1\u767d\u4e16\u754c","Ball Lightning":"\u5929\u96f7\u4e4b\u73e0","Haemocombustion Scroll":"\u711a\u8840\u5377\u8f74","Azyran\'s Reward":"\u963f\u7956\u5170\u7684\u5956\u8d4f","Seething Fury Viridian Jewel":"\u6012\u706b\u4e2d\u70e7 \u7fe0\u7eff\u73e0\u5b9d","Delirious Scouting Report":"\u4ea2\u594b\u4fa6\u5bdf\u62a5\u544a","Thicket Map (Legacy)":"\u60ca\u60e7\u6811\u4e1b(\u9057\u4ea7)","Soul Mantle Spidersilk Robe":"\u7956\u7075\u4e4b\u7ea6 \u86db\u4e1d\u4e4b\u888d","Tower Map (Atlas of Worlds)":"\u9ad8\u5854(\u5f02\u754c\u56fe\u9274)","Tropical Island Map (Atlas of Worlds)":"\u6674\u7a7a\u5e7d\u5c9b(\u5f02\u754c\u56fe\u9274)","Dense Fossil":"\u81f4\u5bc6\u5316\u77f3","Lesser Black Scythe Artifact":"\u6b21\u7ea7\u9ed1\u9570\u795e\u5668","Deafening Essence of Hatred":"\u618e\u6068\u4e4b\u7834\u7a7a\u7cbe\u534e","Replica Ungil\'s Gauche Boot Knife":"\u6069\u5409\u5c14\u7684\u53c9\u5203\u3010\u4eff\u54c1\u3011 \u7a83\u8005\u77ed\u5203","Fated Siren":"\u5bbf\u547d\u6d77\u5996","Ambush":"\u4f0f\u51fb","Desert Map (The Awakening)":"\u8d2b\u7620\u4e4b\u5730(\u89c9\u9192)","Exquisite Leather":"\u7cbe\u5236\u76ae\u7532","Divine Ire":"\u5723\u6028","Emperor\'s Wit Cobalt Jewel":"\u5e1d\u738b\u7684\u667a\u6167 \u94b4\u84dd\u73e0\u5b9d","Voice of the Storm Lapis Amulet":"\u66b4\u98ce\u4e4b\u8a00 \u6d77\u7389\u62a4\u8eab\u7b26","The Shattered Divinity Blunt Arrow Quiver":"\u795e\u6027\u7834\u788e \u949d\u77e2\u7bad\u888b","Gardens Map":"\u82b1\u56ed\u8ff7\u5bab","Cloak of Flame Scholar\'s Robe":"\u70c8\u708e\u4e4b\u888d \u5b66\u8005\u4e4b\u888d","Iceberg Map":"\u6781\u5bd2\u51b0\u539f","The Aylardex Agate Amulet":"\u57c3\u62c9\u9edb\u4e1d \u739b\u7459\u62a4\u8eab\u7b26","Cleaver":"\u5207\u5272\u8005","The Goddess Scorned Elegant Sword":"\u5973\u795e\u7684\u6012\u708e \u8d35\u65cf\u4e4b\u5251","Muttering Essence of Fear":"\u6050\u60e7\u4e4b\u5462\u5583\u7cbe\u534e","Mirage Archer Support":"\u5e7b\u5f71\u5c04\u624b","Rewritten Distant Memory Synthesised Map":"\u91cd\u8457\u7684\u9065\u8fdc\u56de\u5fc6 \u5bfb\u68a6\u8ffd\u5fc6","Necropolis Map (The Awakening)":"\u9b54\u5f71\u5893\u573a(\u89c9\u9192)","Underground Sea Map (Legacy)":"\u6ee8\u6d77\u5e7d\u7a74(\u9057\u4ea7)","Meat Shield Support":"\u8089\u76fe\uff08\u8f85\uff09","Wither":"\u6b7b\u4ea1\u51cb\u96f6","Scorpion\'s Call Heavy Arrow Quiver":"\u9b54\u874e\u7684\u547c\u5524 \u91cd\u77e2\u7bad\u888b","Padded Vest":"\u8584\u886c\u8863","Vampiric Link":"\u8840\u7075\u7f81\u7eca","Silk Robe":"\u4e1d\u8d28\u4e4b\u888d","Cameria\'s Avarice Gavel":"\u5361\u7f8e\u5229\u4e9a\u4e4b\u8d2a\u5a6a \u575a\u9524","Bear Trap":"\u6355\u718a\u9677\u9631","Witchhunter\'s Judgment Highborn Staff":"\u730e\u5deb\u4eba\u7684\u5ba1\u5224 \u8d35\u65cf\u957f\u6756","The High Templar":"\u795e\u4e3b\u4e4b\u7075","Arsenal Map (Legacy)":"\u53e4\u5175\u5de5\u5382(\u9057\u4ea7)","Divine Life Flask":"\u4e0d\u673d\u751f\u547d\u836f\u5242","Herald of Ashes":"\u5730\u708e\u4e4b\u5146","Armoury Map (Atlas of Worlds)":"\u88c5\u5907\u5e93(\u5f02\u754c\u56fe\u9274)","Bloodgrip Marble Amulet":"\u9c9c\u8840\u652f\u914d \u5927\u7406\u77f3\u62a4\u8eab\u7b26","Giant Mana Flask":"\u5de8\u578b\u9b54\u529b\u836f\u5242","Enigmatic Assembly A4":"\u795e\u79d8\u7ec4\u88c5\u4f53 A4","Piledriver":"\u626b\u8361\u8005","Courtyard Map (Legacy)":"\u5947\u672f\u4e4b\u5ead(\u9057\u4ea7)","Winged Torment Scarab":"\u6709\u7ffc\u7684\u82e6\u75db\u5723\u7532\u866b","Sulphur Vents Map":"\u786b\u78fa\u8680\u5cb8","Burial Medallion":"\u846c\u793c\u5fbd\u7ae0","Wildfire Crimson Jewel":"\u91ce\u706b \u8d64\u7ea2\u73e0\u5b9d","Purity of Fire":"\u706b\u7130\u51c0\u5316","Tunnelfiend":"\u5730\u4e0b\u90aa\u517d","Stone Hammer":"\u77f3\u9524","Minion Life Support":"\u53ec\u5524\u751f\u7269\u751f\u547d","Secutor Helm":"\u7cbe\u5175\u4e4b\u76d4","Gilded Torment Scarab":"\u9540\u91d1\u7684\u82e6\u75db\u5723\u7532\u866b","Screaming Essence of Hatred":"\u618e\u6068\u4e4b\u5486\u54ee\u7cbe\u534e","The Coward\'s Trial Cursed Crypt Map (Atlas of Worlds)":"\u61e6\u8005\u7684\u8bd5\u9a8c \u5492\u6028\u9675\u5893(\u5f02\u754c\u56fe\u9274)","Precursor\'s Emblem Prismatic Ring":"\u5148\u9a71\u7684\u7eb9\u7ae0 \u4e09\u76f8\u6212\u6307","Chance to Flee Support":"\u51e0\u7387\u9003\u8dd1","Konu, Maker of Wind":"\u52b2\u98ce\u4e4b\u795e\u5bc7\u52aa","Arid Lake Map (Legacy)":"\u8352\u829c\u6e56\u57df(\u9057\u4ea7)","Farric Lynx Alpha":"\u5927\u5730\u5de8\u578b\u731e\u7301","Behemoth Mace":"\u5df4\u54c8\u59c6\u7279","Minion Damage Support":"\u53ec\u5524\u751f\u7269\u4f24\u5bb3","Combat Focus Crimson Jewel":"\u6218\u6597\u4e13\u6ce8 \u8d64\u7ea2\u73e0\u5b9d","Agnerod North Imperial Staff":"\u5317\u65b9\u96f7\u9706\u5723\u6756 \u5e1d\u56fd\u957f\u6756","Null and Void Legion Gloves":"\u865a\u7a7a \u519b\u56e2\u624b\u5957","The Tireless Extractor":"\u6052\u4e45\u69a8\u53d6","Hollowskull, the Willing Host":"\u81ea\u613f\u5bbf\u4e3b\u7a7a\u9885","Star of Wraeclast Ruby Amulet":"\u74e6\u5c14\u514b\u62c9\u65af\u4e4b\u661f \u8840\u8272\u62a4\u8eab\u7b26","Elegant Foil":"\u8d35\u65cf\u7ec6\u5251","Font of Thunder Mirrored Spiked Shield":"\u96f7\u9e23\u6d17\u793c \u94a2\u955c\u523a\u76fe","The Scourge Terror Claw":"\u707e\u5bb3 \u6050\u60e7\u4e4b\u7259","Shore Map (Legacy)":"\u66ae\u5149\u6d77\u6ee9(\u9057\u4ea7)","Indigon Hubris Circlet":"\u975b\u84dd\u4e4b\u51a0 \u7075\u4e3b\u4e4b\u73af","Host Adder":"\u5bbf\u4e3b\u8f90\u5c04","Prime Sextant":"\u539f\u59cb\u516d\u5206\u4eea","Mirror of Kalandra":"\u5361\u5170\u5fb7\u7684\u9b54\u955c","Crown of the Pale King Regicide Mask":"\u6b92\u7687\u4e4b\u51a0 \u5f11\u541b\u4e4b\u9762","The Long Winter Cobalt Jewel":"\u51db\u51bd\u5bd2\u51ac \u94b4\u84dd\u73e0\u5b9d","Dread Maul":"\u5a01\u6743\u5de8\u9524","Burial Chambers Map (Atlas of Worlds)":"\u5e7d\u95ed\u5893\u9886(\u5f02\u754c\u56fe\u9274)","Tempered Flesh Crimson Jewel":"\u6dec\u706b\u4e4b\u8eaf \u8d64\u7ea2\u73e0\u5b9d","Awakened Sextant":"\u89c9\u9192\u516d\u5206\u4eea","Dark Temptation":"\u9ed1\u6697\u7684\u5f15\u8bf1","Shadowstitch Sacrificial Garb":"\u6697\u5f71\u7f1d\u5408 \u796d\u793c\u675f\u8863","Core Map (Atlas of Worlds)":"\u6838\u5fc3(\u5f02\u754c\u56fe\u9274)","Foundry Map":"\u953b\u6676\u8f66\u95f4","Ice Crash":"\u5bd2\u51b0\u51b2\u51fb","Unstable Payload Cobalt Jewel":"\u4e0d\u7a33\u5b9a\u627f\u8f7d \u94b4\u84dd\u73e0\u5b9d","Relic of the Pact Spiraled Wand":"\u534f\u7ea6\u7684\u9057\u7269 \u87ba\u7eb9\u6cd5\u6756","Caldera Map (Atlas of Worlds)":"\u5bc2\u7075\u4e4b\u6e0a(\u5f02\u754c\u56fe\u9274)","Deafening Essence of Torment":"\u6298\u78e8\u4e4b\u7834\u7a7a\u7cbe\u534e","Alberon\'s Warpath Soldier Boots":"\u963f\u5c14\u8d1d\u9686\u7684\u5f81\u9014 \u6218\u58eb\u4e4b\u9774","The Catch":"\u9690\u60c5","Spectral Helix":"\u7075\u5e7b\u65cb\u65a9","Ancient City Map":"\u8fdc\u53e4\u4e4b\u57ce","Reinforced Rope Net":"\u7cbe\u70bc\u7684\u7c97\u7ef3\u730e\u9b54\u5939","Thousand Teeth Temu Vaal Buckler":"\u5343\u9f7f \u74e6\u5c14\u8f7b\u76fe","Wailing Essence of Fear":"\u6050\u60e7\u4e4b\u54c0\u568e\u7cbe\u534e","Added Fire Damage Support":"\u9644\u52a0\u706b\u7130\u4f24\u5bb3","Vestige of Divinity Gnarled Branch":"\u5e84\u91cd\u4e4b\u6756 \u673d\u6728\u4e4b\u5e72","Omeyocan Carnal Boots":"\u81f3\u9ad8\u5929\u5802 \u7981\u793c\u4e4b\u9774","Executioner Bloodwing":"\u8840\u7ffc\u5904\u5211\u8005","Hydrascale Gauntlets":"\u706b\u876e\u9cde\u624b\u5957","Vaal Righteous Fire":"\u74e6\u5c14\uff1a\u6b63\u4e49\u4e4b\u706b","Strong Iron Net":"\u5f3a\u529b\u7684\u953b\u94c1\u730e\u9b54\u5939","Expedition\'s End Sentinel Jacket":"\u8fdc\u5f81\u5c3d\u5934 \u54e8\u5175\u4e4b\u8863","Scar of Fate Nailed Fist":"\u547d\u8fd0\u4f24\u75d5 \u62f3\u9489","Shaped Tower Map (Atlas of Worlds)":"\u9ad8\u5854(\u5851)(\u5f02\u754c\u56fe\u9274)","Shaped Ancient City Map (Atlas of Worlds)":"\u8fdc\u53e4\u4e4b\u57ce(\u5851)(\u5f02\u754c\u56fe\u9274)","Serpentine Staff":"\u86c7\u7eb9\u957f\u6756","Spiny Maul":"\u51f6\u523a\u5de8\u9524","Chateau Map (Atlas of Worlds)":"\u53e4\u5821(\u5f02\u754c\u56fe\u9274)","Fragmented Incubator":"\u7834\u788e\u7684\u5b55\u80b2\u77f3","Racecourse Map":"\u5de8\u578b\u7ade\u6280\u573a","Shaped Pier Map (Atlas of Worlds)":"\u6012\u6d6a\u4e4b\u6e2f(\u5851)(\u5f02\u754c\u56fe\u9274)","Chains of Emancipation Chain Belt":"\u8131\u7f1a\u4e4b\u9501 \u6263\u94fe\u8170\u5e26","Loricated Ringmail":"\u8986\u4f53\u73af\u7532","Second Piece of Directions Blunt Arrow Quiver Piece":"\u5c04\u672f\u5148\u9a71\u8005\u788e\u7247II \u949d\u77e2\u7bad\u888b","Dunes Map":"\u66ae\u8272\u6c99\u4e18","Brass Spirit Shield":"\u94dc\u953b\u9b54\u76fe","Explosive Trap":"\u7206\u70b8\u9677\u9631","Shaped Cells Map (Atlas of Worlds)":"\u5e7d\u9b42\u76d1\u7262(\u5851)(\u5f02\u754c\u56fe\u9274)","Replica Advancing Fortress Gut Ripper":"\u8d85\u8d8a\u58c1\u5792\u3010\u4eff\u54c1\u3011 \u88c2\u810f\u94a9","Mahuxotl\'s Machination Steel Kite Shield":"\u9a6c\u8d6b\u7d22\u6258\u4e4b\u8bc8 \u51b7\u94a2\u9e22\u76fe","Thraxia":"\u745f\u62c9\u897f\u4e9a","Rat\'s Nest Leather Cap":"\u9f20\u5de2 \u76ae\u5e3d","Prismatic Ring":"\u4e09\u76f8\u6212\u6307","Scale Vest":"\u7ec6\u9cde\u80cc\u5fc3","Crystal Vault Latticed Ringmail":"\u6c34\u6676\u5893\u7a74 \u7cbe\u5236\u73af\u7532","Exceptional Eldritch Ember":"\u5353\u8d8a\u53e4\u7075\u4f59\u70ec","Redblade Band Unset Ring":"\u7ea2\u5203\u4e4b\u73af \u6f5c\u80fd\u4e4b\u6212","Geode Map":"\u6c34\u6676\u6d1e\u7a74","Wailing Essence of Suffering":"\u82e6\u96be\u4e4b\u54c0\u568e\u7cbe\u534e","Lighthouse Map":"\u5b64\u5c9b\u706f\u5854","The Visionary":"\u68a6\u60f3\u5bb6","Umbilicus Immortalis Leather Belt":"\u4e0d\u673d\u7cfb\u547d \u76ae\u9769\u8170\u5e26","Standard Sharpening Stone":"\u6807\u51c6\u78e8\u5200\u77f3","Bijoux":"\u5730\u644a\u8d27","Runic Sollerets":"\u7b26\u6587\u62a4\u817f","Platinia":"\u666e\u62c9\u63d0\u5c3c\u4e9a","First Piece of Brutality Imperial Staff Piece":"\u6b8b\u66b4\u5148\u9a71\u8005\u788e\u7247I \u5e1d\u56fd\u957f\u6756","Ranger Bow":"\u6e38\u4fa0\u5f13","maps":"\u5730\u56fe","Lightning Strike":"\u95ea\u7535\u6253\u51fb","Vigilante Contract":"\u4e49\u8b66\u5951\u7ea6","Infantry Brigandine":"\u6b65\u5175\u9501\u7532","Goliath Gauntlets":"\u5de8\u7075\u62a4\u624b","The Demon":"\u6076\u9b54","Death and Taxes Necropolis Map":"\u4ea1\u8005\u4e4b\u8d22 \u9b54\u5f71\u5893\u573a","The Emptiness":"\u4e07\u4e8b\u7686\u7a7a","Harmonic Spirit Shield":"\u548c\u8c10\u9b54\u76fe","Grand Broken Circle Artifact":"\u81f3\u9ad8\u88c2\u73af\u795e\u5668","Ambush Boots":"\u4f0f\u51fb\u4e4b\u9774","The Journey":"\u65c5\u7a0b","Park Map":"\u5bc2\u591c\u6797\u82d1","Oiled Coat":"\u9632\u6c34\u5916\u8863","Foreseen Spawn":"\u5148\u77e5\u866b\u5375","Replica Trypanon Great Mallet":"\u88c2\u9885\u3010\u4eff\u54c1\u3011 \u521a\u731b\u5de8\u9524","Awl":"\u51ff\u9489","Karui Axe":"\u5361\u9c81\u53e4\u65a7","Shaped Port Map (Atlas of Worlds)":"\u4e2d\u8f6c\u7801\u5934(\u5851)(\u5f02\u754c\u56fe\u9274)","Mask of the Stitched Demon Magistrate Crown":"\u7f1d\u5408\u6076\u9b54\u9762\u7f69 \u884c\u653f\u8005\u6218\u51a0","The Journalist":"\u72d7\u4ed4\u961f","The Deceiver":"\u72e1\u5f92","Lokan, The Deceiver":"\u72e1\u5f92\u6d1b\u80af","Rusted Breach Scarab":"\u9508\u8680\u7684\u88c2\u9699\u5723\u7532\u866b","Elegant Ringmail":"\u6743\u8d35\u73af\u7532","Conjurer\'s Vestment":"\u5492\u8005\u957f\u8863","The Formless Flame Siege Helmet":"\u65e0\u5f62\u706b\u70ac \u7834\u57ce\u4e4b\u76d4","The Polymath":"\u535a\u5b66\u8005","Feathered Arrow Quiver":"\u98de\u7fbd\u7bad\u888b","Vaal Breach":"\u74e6\u5c14\uff1a\u88c2\u9699","Eternal Life Flask":"\u6c38\u6052\u751f\u547d\u836f\u5242","Full Wyrmscale":"\u8fde\u8eab\u9f99\u9cde\u6218\u7532","Triskaidekaphobia":"\u5341\u4e09\u5927\u5fcc","Twisted Distant Memory Synthesised Map":"\u626d\u66f2\u7684\u9065\u8fdc\u56de\u5fc6 \u5bfb\u68a6\u8ffd\u5fc6","Valako\'s Sign Topaz Ring":"\u74e6\u62c9\u5e93\u4e4b\u5370 \u9ec4\u7389\u6212\u6307","Shaped Bog Map (Atlas of Worlds)":"\u7634\u6c14\u6ce5\u6cbc(\u5851)(\u5f02\u754c\u56fe\u9274)","Weeping Essence of Doubt":"\u7591\u60d1\u4e4b\u557c\u6ce3\u7cbe\u534e","The Perandus Manor Chateau Map (Atlas of Worlds)":"\u666e\u5170\u5fb7\u65af\u5e84\u56ed \u53e4\u5821(\u5f02\u754c\u56fe\u9274)","The Vinktar Square Courtyard Map (The Awakening)":"\u7ef4\u514b\u5854\u5e7f\u573a \u5947\u672f\u4e4b\u5ead(\u89c9\u9192)","The Scarred Meadow":"\u521b\u75d5\u4e4b\u539f","Golden Visage":"\u91d1\u8272\u9762\u5177","Winter Crown":"\u5bd2\u51ac\u4e4b\u51a0","Solarine Bow":"\u65e5\u88d4\u5f13","Scorching Ray":"\u707c\u70ed\u5149\u7ebf","Light Quiver":"\u8f7b\u5de7\u7bad\u888b","Flooded Mine Map (Atlas of Worlds)":"\u79ef\u6c34\u77ff\u5751(\u5f02\u754c\u56fe\u9274)","The Blood Thorn Gnarled Branch":"\u8840\u68d8 \u673d\u6728\u4e4b\u5e72","Emperor\'s Might Crimson Jewel":"\u5e1d\u738b\u7684\u9738\u6743 \u8d64\u7ea2\u73e0\u5b9d","Auxium Crystal Belt":"\u5965\u672f\u4e4b\u7b26 \u6c34\u6676\u8170\u5e26","Prime Regrading Lens":"\u4e3b\u8981\u77eb\u6b63\u900f\u955c","Temple Map":"\u593a\u9b42\u4e4b\u6bbf","Toxic Sewer Map (The Awakening)":"\u5267\u6bd2\u6c34\u9053(\u89c9\u9192)","Sanctified Mana Flask":"\u5723\u5316\u9b54\u529b\u836f\u5242","Shrapnel Ballista":"\u6563\u5c04\u5f29\u70ae","Spindle Spider":"\u957f\u8db3\u5de8\u86db","Winged Cartography Scarab":"\u6709\u7ffc\u7684\u5236\u56fe\u8005\u5723\u7532\u866b","Corundum Flask":"\u521a\u7389\u836f\u5242","Ralakesh\'s Impatience Riveted Boots":"\u62c9\u514b\u65af\u7684\u6e34\u671b \u4eea\u5f0f\u77ed\u9774","Chitus\' Apex Necromancer Circlet":"\u5207\u7279\u65af\u7684\u5a01\u6743 \u64cd\u7075\u8005\u4e4b\u51a0","The Formless Sea":"\u65e0\u8ff9\u4e4b\u6d77","Shrieking Essence of Scorn":"\u50b2\u89c6\u4e4b\u5c16\u5578\u7cbe\u534e","Fenumal Hybrid Arachnid":"\u6697\u591c\u6df7\u6bd2\u9b54\u86db","The Darkest Dream":"\u6df1\u6df1\u9ed1\u68a6","Shattered Chains Crimson Jewel":"\u7834\u788e\u4e4b\u70bc \u8d64\u7ea2\u73e0\u5b9d","Elder-Blessed Goatman":"\u88c2\u754c\u4e4b\u4ec6 \u7f8a\u4eba","Ghetto Map":"\u8d64\u8d2b\u5c45\u6240","Rotgut Quicksilver Flask":"\u4f24\u80c3\u9152 \u6c34\u94f6\u836f\u5242","Reckless Ambition":"\u83bd\u649e\u7684\u91ce\u5fc3","Ulaman\'s Gaze Searching Eye Jewel":"\u4e4c\u52d2\u66fc\u7684\u51dd\u89c6 \u9510\u5229\u4e4b\u51dd\u73e0\u5b9d","Emperor\'s Cunning Viridian Jewel":"\u5e1d\u738b\u7684\u8be1\u8ba1 \u7fe0\u7eff\u73e0\u5b9d","Guardian of the Mound":"\u5723\u4e18\u4e4b\u7075","Obscurantis Lion Pelt":"\u538c\u98df\u8005 \u72ee\u9996\u76ae\u76d4","Torment Leaguestone":"\u82e6\u75db\u8d5b\u5b63\u77f3","Veil of the Night Great Helmet":"\u591c\u5e55 \u5de8\u76d4","Basic Disguise Kit":"\u57fa\u7840\u6613\u5bb9\u5de5\u5177","Reaper\'s Pursuit Shadow Axe":"\u6b7b\u795e\u7684\u53d6\u9b42\u5668 \u5e7d\u5f71\u5de8\u65a7","Grave Trough Map":"\u8352\u575f\u51f9\u5730","Crimson Temple Map":"\u73ab\u7ea2\u795e\u6bbf","Mutated Growth Cobalt Jewel":"\u5815\u843d\u5f02\u4f53 \u94b4\u84dd\u73e0\u5b9d","Replica Voidwalker Murder Boots":"\u865a\u7a7a\u884c\u8005\u3010\u4eff\u54c1\u3011 \u6697\u5f71\u8005\u957f\u9774","Alluring Bounty":"\u8bf1\u4eba\u7684\u5956\u8d4f","Spectral Throw":"\u7075\u4f53\u6295\u63b7","Mark of the Red Covenant Tribal Circlet":"\u7ea2\u5951\u7b26\u5370 \u796d\u4eea\u4e4b\u51a0","Noble Claw":"\u8d35\u65cf\u6218\u722a","Fickle Spiritblade":"\u65e0\u5e38\u9b42\u5203","Close Helmet":"\u62a4\u9762\u76d4","Occultist\'s Vestment":"\u79d8\u672f\u957f\u8863","Oskarm Nubuck Gloves":"\u6b27\u65af\u5361\u59c6 \u7802\u5f71\u624b\u5957","Incandescent Heart Saintly Chainmail":"\u70c8\u708e\u4e4b\u5fc3 \u5723\u6d01\u9501\u7532","Tusked Hominid Skull":"\u957f\u7259\u4eba\u9aa8","Malformation Map (The Awakening)":"\u7578\u5f62\u4ea1\u57df(\u89c9\u9192)","Thistlesage":"\u84ba\u85dc\u517d","The Fox":"\u72e1\u72d0","Lookout Map":"\u5371\u5899\u4e4b\u5730","Vorana\'s March Runic Sabatons":"\u6c83\u62c9\u5a1c\u7684\u5f81\u9014 \u7b26\u6587\u6218\u9774","The Life Thief":"\u751f\u547d\u7a83\u8d3c","The Rabid Rhoa":"\u75af\u72c2\u6050\u5599\u9e1f","Awakened Spell Echo Support":"\u65bd\u6cd5\u56de\u54cd\uff08\u5f3a\u8f85\uff09","Usurper\'s Penance Eternal Burgonet":"\u7be1\u593a\u8005\u7684\u6551\u8d4e \u6c38\u6052\u575a\u76d4","Wailing Essence of Sorrow":"\u54c0\u60dc\u4e4b\u54c0\u568e\u7cbe\u534e","The Samurai\'s Eye":"\u6b66\u58eb\u4e4b\u773c","Banishing Blade":"\u653e\u9010\u5200","Vaal Claw":"\u74e6\u5c14\u6218\u722a","Xoph\'s Flawless Breachstone":"\u7d22\u4f0f\u7684\u65e0\u6687\u88c2\u9699\u77f3","Crazed Flamebeast":"\u75af\u72c2\u7684\u708e\u517d","Polished Shaper Scarab":"\u95ea\u8000\u7684\u5851\u754c\u8005\u5723\u7532\u866b","Overgrown Ruin Map (Legacy)":"\u957f\u8349\u9057\u8ff9(\u9057\u4ea7)","Emperor\'s Luck":"\u5e1d\u8fd0","The Infinite Pursuit Goliath Greaves":"\u65e0\u5c3d\u4e4b\u8ddd \u5de8\u7075\u80eb\u7532","Decoy Totem":"\u8bf1\u9975\u56fe\u817e","Perandus Coin":"\u666e\u5170\u5fb7\u65af\u91d1\u5e01","Sudden Ignition Viridian Jewel":"\u7a81\u7136\u70b9\u706b \u7fe0\u7eff\u73e0\u5b9d","Pyre Sapphire Ring":"\u71c3\u7130 \u84dd\u7389\u6212\u6307","Small Mana Flask":"\u5c0f\u578b\u9b54\u529b\u836f\u5242","Flanged Mace":"\u62a4\u4f53\u4e4b\u9524","Screaming Essence of Loathing":"\u538c\u6076\u4e4b\u5486\u54ee\u7cbe\u534e","Prismatic Jewel":"\u4e09\u76f8\u73e0\u5b9d","Haunting Shadows":"\u5e7d\u5f71\u7ea0\u7f20","Bound Fossil":"\u7ed1\u7f1a\u5316\u77f3","Steel Bracers":"\u94a2\u5236\u62a4\u8155","Raven Mask":"\u7978\u9e26\u4e4b\u9762","Lori\'s Lantern Prismatic Ring":"\u7f57\u91cc\u7684\u5e78\u8fd0\u4e4b\u706f \u4e09\u76f8\u6212\u6307","Academy Map (Atlas of Worlds)":"\u6076\u7075\u5b66\u9662(\u5f02\u754c\u56fe\u9274)","Metallic Fossil":"\u91d1\u5c5e\u5316\u77f3","Mutewind Whispersteps Serpentscale Boots":"\u54d1\u98ce\u8f7b\u6b65 \u86c7\u9cde\u957f\u9774","Wyrmsign Wyrmscale Gauntlets":"\u9f99\u65cf\u5370\u8bb0 \u876e\u9cde\u624b\u5957","Vaal Orb":"\u74e6\u5c14\u5b9d\u73e0","Barrage":"\u5f39\u5e55","Eldritch Exalted Orb":"\u53e4\u7075\u5d07\u9ad8\u77f3","From Dust Cobalt Jewel":"\u5c18\u571f\u5f52\u6765 \u94b4\u84dd\u73e0\u5b9d","Cruelty Support":"\u51cc\u5389\uff08\u8f85\uff09","Relic of the Cycle Crude Bow":"\u8f6e\u56de\u4e4b\u8bb0 \u7c97\u5236\u5f13","Deathly Designs":"\u81f4\u547d\u8c0b\u5212","The Hundred Foot Shadow":"\u5f71\u767e\u8db3","Shaped Villa Map (Atlas of Worlds)":"\u9b45\u5f71\u522b\u5885(\u5851)(\u5f02\u754c\u56fe\u9274)","Esh\'s Enriched Breachstone":"\u827e\u8bb8\u7684\u5f3a\u5316\u88c2\u9699\u4e4b\u77f3","Black Oil":"\u6f06\u9ed1\u5723\u6cb9","Contract: Bunker":"\u5951\u7ea6\uff1a\u5821\u5792","Apep\'s Slumber Ancient Spirit Shield":"\u827e\u666e\u4e4b\u68a6 \u8fdc\u53e4\u9b54\u76fe","Wings of Entropy Sundering Axe":"\u4e71\u4e16\u4e4b\u7ffc \u88c2\u7532\u5de8\u65a7","Glassblower\'s Bauble":"\u73bb\u7483\u5f39\u73e0","Algor Mortis Carnal Mitts":"\u5c38\u50f5 \u7981\u793c\u62a4\u624b","Reckless Defence Cobalt Jewel":"\u9c81\u83bd\u9632\u5fa1 \u94b4\u84dd\u73e0\u5b9d","Alone in the Darkness":"\u9ed1\u6697\u4e2d\u72ec\u884c","Viridian Jewel":"\u7fe0\u7eff\u73e0\u5b9d","Brood Princess":"\u6d77\u866b\u4e4b\u6bcd","Hands of the High Templar Crusader Gloves":"\u795e\u4e3b\u4e4b\u624b \u5723\u6218\u624b\u5957","Winterweave Coral Ring":"\u51ac\u65e5\u4e4b\u7ec7 \u73ca\u745a\u6212\u6307","Infernal Sword":"\u72f1\u708e\u91cd\u5251","Heretic\'s Veil Deicide Mask":"\u5f02\u6559\u9762\u7eb1 \u5f11\u795e\u4e4b\u9762","The Wolverine":"\u91d1\u521a\u72fc","Phantasmagoria Map (The Awakening)":"\u9b54\u7075\u5e7b\u72f1(\u89c9\u9192)","Amber Amulet":"\u7425\u73c0\u62a4\u8eab\u7b26","Ungil\'s Gauche Boot Knife":"\u6069\u5409\u5c14\u7684\u53c9\u5203 \u7a83\u8005\u77ed\u5203","Enigmatic Assembly B2":"\u795e\u79d8\u7ec4\u88c5\u4f53 B2","Lesser Sun Artifact":"\u6b21\u7ea7\u70c8\u65e5\u795e\u5668","Ghetto Map (The Awakening)":"\u8d64\u8d2b\u5c45\u6240(\u89c9\u9192)","Riftwalker":"\u88c2\u9699\u884c\u8005","Infested Skitterer":"\u611f\u67d3\u63a0\u86db","The Magma Crab":"\u7194\u5ca9\u87f9","Karui Sceptre":"\u5361\u9c81\u77ed\u6756","Shaped Waste Pool Map (Atlas of Worlds)":"\u6b7b\u5bc2\u6ce5\u6c9f(\u5851)(\u5f02\u754c\u56fe\u9274)","Arctic Armour":"\u6781\u5730\u88c5\u7532","Sallet":"\u8f7b\u94c1\u62a4\u76d4","Oak Buckler":"\u6a61\u6728\u8f7b\u76fe","Mallet":"\u5343\u65a4\u9524","Ancient Sword":"\u8fdc\u53e4\u4e4b\u5251","Allure Vaal Claw":"\u9b45\u60d1 \u74e6\u5c14\u6218\u722a","Silver Flask":"\u771f\u94f6\u836f\u5242","The Mind\'s Eyes":"\u5fc3\u7075\u4e4b\u773c","Shrine Map":"\u5947\u672f\u79d8\u6bbf","Tropical Island Map (The Awakening)":"\u6674\u7a7a\u5e7d\u5c9b(\u89c9\u9192)","Justified Ambition":"\u5fd7\u5411\u9ad8\u8fdc","Golden Wreath":"\u91d1\u9ec4\u82b1\u73af","The Oak Plank Kite Shield":"\u6a61\u6811 \u673d\u6728\u9e22\u76fe","Opalescent Oil":"\u4e73\u767d\u5723\u6cb9","Viridi\'s Veil Praetor Crown":"\u7ef4\u91cc\u8fea\u7684\u9762\u7eb1 \u9886\u4e3b\u6218\u51a0","Thundersight Solaris Circlet":"\u96f7\u76ee \u65e5\u8000\u4e4b\u51a0","Oriath\'s Virtue":"\u5965\u745e\u4e9a\u7684\u7f8e\u5fb7","Crested Tower Shield":"\u8363\u51a0\u5854\u76fe","Ahkeli\'s Valley Ruby Ring":"\u963f\u514b\u83b1\u7684\u5c71\u8c37 \u7ea2\u7389\u6212\u6307","The Ethereal":"\u7a7a\u7075","Stun Support":"\u51fb\u6655","Harbinger Map":"\u5148\u9a71\u8005\u5730\u56fe","Ambu\'s Charge Crusader Chainmail":"\u5b89\u59c6\u5e03\u7684\u6218\u7532 \u5723\u6218\u9501\u7532","Imperial Bow":"\u5e1d\u56fd\u4e4b\u5f13","Sacrifice at Dawn":"\u9ece\u660e\u7684\u5949\u732e[\u53f3\u4e0b]","Skeletal Beast":"\u67af\u9aa8\u91ce\u517d","Tropical Island Map (Legacy)":"\u6674\u7a7a\u5e7d\u5c9b(\u9057\u4ea7)","Mindspiral Aventail Helmet":"\u7075\u6f29 \u6218\u610f\u4e4b\u76d4","The Wolf\'s Legacy":"\u72fc\u738b\u7684\u9057\u4ea7","Wake of Destruction Mesh Boots":"\u8986\u706d\u4e4b\u5146 \u7f51\u773c\u957f\u9774","gems":"\u6280\u80fd\u5b9d\u77f3","Weight of the Empire Crimson Jewel":"\u5e1d\u56fd\u91cd\u91cf \u8d64\u7ea2\u73e0\u5b9d","Crystal Ore Map (The Awakening)":"\u51b0\u51b7\u901a\u9053(\u89c9\u9192)","Spidersilk Robe":"\u86db\u4e1d\u4e4b\u888d","Prism Guardian Archon Kite Shield":"\u5143\u7d20\u7684\u5e87\u62a4 \u5a01\u80fd\u9e22\u76fe","Eternal Burgonet":"\u6c38\u6052\u575a\u76d4","The Whiteout":"\u96ea\u76f2","The Heroic Shot":"\u82f1\u52c7\u6253\u51fb","Vaults of Atziri Vaal Pyramid Map (Atlas of Worlds)":"\u963f\u5179\u91cc\u7684\u79d8\u5b9d\u5e93 \u74e6\u5c14\u91d1\u5b57\u5854(\u5f02\u754c\u56fe\u9274)","Awakened Void Manipulation Support":"\u865a\u7a7a\u64cd\u7eb5\uff08\u5f3a\u8f85\uff09","The Valkyrie":"\u5973\u4e4b\u6b66\u795e","Stonebeak, Battle Fowl":"\u77f3\u5599\u6218\u79bd","Sacrificial Garb":"\u796d\u793c\u675f\u8863","Stygian Silverback":"\u51a5\u754c\u94f6\u80cc\u517d","The Interrogation Small Cluster Jewel":"\u5ba1\u8baf \u5c0f\u578b\u661f\u56e2\u73e0\u5b9d","Innervate Support":"\u95ea\u7535\u652f\u914d","Shard of Fate":"\u547d\u8fd0\u4e4b\u6676","Void Sphere":"\u865a\u7a7a\u6cd5\u7403","Herald of Agony":"\u82e6\u75db\u4e4b\u6377","Vulnerability":"\u8106\u5f31","Replica Reckless Defence Cobalt Jewel":"\u9c81\u83bd\u9632\u5fa1\u3010\u4eff\u54c1\u3011 \u94b4\u84dd\u73e0\u5b9d","Splinter of the Moon Driftwood Wand":"\u788e\u6708 \u673d\u6728\u6cd5\u6756","Sunblast Cloth Belt":"\u65e5\u708e \u9970\u5e03\u8170\u5e26","Rise of the Phoenix Mosaic Kite Shield":"\u70c8\u708e\u4e4b\u7ffc \u539a\u88c5\u9e22\u76fe","Siege Helmet":"\u7834\u57ce\u4e4b\u76d4","Splinter of Uul-Netol":"\u88c2\u9699\u788e\u7247","Maven\'s Invitation: Lira Arthain":"\u8d24\u4e3b\u4e4b\u9080\uff1a\u5229\u62c9\u4e9a\u68ee","Wailing Essence of Anguish":"\u714e\u71ac\u4e4b\u54c0\u568e\u7cbe\u534e","Altered Distant Memory Synthesised Map":"\u6539\u53d8\u7684\u9065\u8fdc\u56de\u5fc6 \u5bfb\u68a6\u8ffd\u5fc6","Fight for Survival Viridian Jewel":"\u4e3a\u751f\u5b58\u800c\u6218 \u7fe0\u7eff\u73e0\u5b9d","Blizzard Crown":"\u66b4\u96ea\u4e4b\u51a0","Rive Terror Claw":"\u88c2\u9699 \u6050\u60e7\u4e4b\u7259","Terror Maul":"\u60e7\u7075\u91cd\u9524","Conservatory Map":"\u53e4\u5854\u5185\u5802","Replica Soul Tether Cloth Belt":"\u7075\u9b42\u7f81\u7eca\u3010\u4eff\u54c1\u3011 \u9970\u5e03\u8170\u5e26","Horned Sceptre":"\u7284\u89d2\u77ed\u6756","Burtok, Conjurer of Bones":"\u9aa8\u6cd5\u5e08\u4f2f\u6258\u514b","Enhance Support":"\u589e\u5e45","Soul Strike Spike-Point Arrow Quiver":"\u7075\u9b42\u6253\u51fb \u523a\u950b\u7bad\u888b","Replica Mistwall Lacquered Buckler":"\u8ff7\u96fe\u4e4b\u5899\u3010\u4eff\u54c1\u3011 \u6f06\u5f69\u8f7b\u76fe","The Pariah Unset Ring":"\u8349\u6c11 \u6f5c\u80fd\u4e4b\u6212","Flameblast":"\u70c8\u7130\u7206\u7834","Vile Arrow Quiver":"\u6076\u77e2\u7bad\u888b","Mind Cage":"\u7075\u80fd\u4e4b\u7b3c","Hallowed Ground Graveyard Map (Atlas of Worlds)":"\u9b54\u8bc5\u4e4b\u57df \u5815\u5f71\u5893\u573a(\u5f02\u754c\u56fe\u9274)","Lair Map (Atlas of Worlds)":"\u5de2\u7a74(\u5f02\u754c\u56fe\u9274)","The Lover":"\u60c5\u4eba","The White Knight":"\u767d\u8863\u9a91\u58eb","Crystal Ore Map":"\u51b0\u51b7\u901a\u9053","Mao Kun Reef Map (Legacy)":"\u8d3c\u7a9d \u5371\u673a\u6d77\u7901(\u9057\u4ea7)","Jagged Foil":"\u952f\u72b6\u8584\u5203","Battle Sword":"\u58eb\u5175\u957f\u5251","Nightmare Manifest":"\u618e\u6068\u68a6\u9b47","Driftwood Club":"\u673d\u6728\u4e4b\u68d2","Blade Trap":"\u5251\u5203\u9677\u9631","Strapped Leather":"\u6263\u73af\u76ae\u7532","Hall of Grandmasters Promenade Map (Legacy)":"\u5143\u5e05\u6bbf\u5802 \u6708\u8272\u56de\u5eca(\u9057\u4ea7)","Grotto Map (Atlas of Worlds)":"\u5e7d\u6697\u5730\u7a74(\u5f02\u754c\u56fe\u9274)","Love Through Ice":"\u8de8\u51b0\u4e4b\u604b","Gilded Metamorph Scarab":"\u9540\u91d1\u7684\u707e\u53d8\u5723\u7532\u866b","The Poet\'s Pen Carved Wand":"\u8bd7\u4eba\u4e4b\u7b14 \u7c97\u7eb9\u6cd5\u6756","Static Strike":"\u5145\u80fd\u6253\u51fb","Nightmare Bascinet":"\u68a6\u9b47\u6218\u76d4","Flashfire Blade":"\u95ea\u706b\u5200","Waste Lurcher":"\u5e9f\u6c34\u6df7\u79cd","Heavy Arrow Quiver":"\u91cd\u77e2\u7bad\u888b","Underground River Map (Legacy)":"\u5730\u5e95\u4e4b\u6cb3(\u9057\u4ea7)","Cowl of the Thermophile Ezomyte Burgonet":"\u55dc\u706b\u4e4b\u51a0 \u827e\u5179\u9ea6\u575a\u76d4","Widowmaker Boot Blade":"\u5be1\u5987 \u7a83\u8005\u77ed\u5315","Wool Shoes":"\u7f8a\u6bdb\u4e4b\u978b","Slimy Nemesis":"\u6d1e\u7a9f\u6d77\u866b","Royal Bow":"\u7687\u5bb6\u730e\u5f13","Coronal Leather":"\u5149\u8000\u76ae\u7532","Saffell\'s Frame Branded Kite Shield":"\u8428\u8d39\u5c14\u7684\u667a\u6167 \u5723\u8bb0\u9e22\u76fe","Maze Map (Legacy)":"\u51a5\u795e\u4e4b\u57df(\u9057\u4ea7)","Dusk Blade":"\u66ae\u8272\u4e4b\u5203","Golden Blade":"\u91d1\u8272\u4e4b\u5203","Awakened Lightning Penetration Support":"\u95ea\u7535\u7a7f\u900f\uff08\u5f3a\u8f85\uff09","Summon Skeletons":"\u53ec\u5524\u9b54\u4f8d","Eclipse Solaris Crystal Wand":"\u5b87\u8680 \u6c34\u6676\u6cd5\u6756","Gouger":"\u7a7f\u4f53\u51ff","Perseverance Vanguard Belt":"\u6052\u6bc5\u610f\u5fd7 \u5148\u950b\u8170\u5e26","Combustibles Crimson Jewel":"\u71c3\u5c3d \u8d64\u7ea2\u73e0\u5b9d","Blazing Salvo":"\u6012\u708e\u7a7f\u5fc3","Riposte":"\u51fb\u5203","Chrome-infused Goliath":"\u94ec\u6ce8\u5de8\u4eba","Thousand Ribbons Simple Robe":"\u5343\u7f0e \u7b80\u6613\u4e4b\u888d","Ancestral Cry":"\u5148\u7956\u6218\u543c","Stealth Boots":"\u533f\u8e2a\u77ed\u9774","Discipline":"\u7eaa\u5f8b","Grace":"\u4f18\u96c5","Butcher Axe":"\u5c60\u622e\u4e4b\u65a7","The Easy Stroll":"\u8f7b\u677e\u6f2b\u6b65","The Undaunted":"\u65e0\u754f\u8005","Vaal Ancestral Warchief":"\u74e6\u5c14\uff1a\u5148\u7956\u6218\u58eb\u957f","Nadia the Soothing":"\u5bc2\u9759\u4e4b\u68a6\u5a1c\u8fea\u96c5","Replica Forbidden Shako Great Crown":"\u7981\u65ad\u7684\u519b\u5e3d\u3010\u4eff\u54c1\u3011 \u5f3a\u5316\u5de8\u76d4","Smallsword":"\u5c0f\u5251","Vitality":"\u6d3b\u529b","The Maven\'s Writ":"\u8d24\u4e3b\u6555\u4ee4","Replica Earendel\'s Embrace Grinning Fetish":"\u53f6\u5170\u5fb7\u5c14\u7684\u62e5\u62b1\u3010\u4eff\u54c1\u3011 \u8fdc\u53e4\u4e4b\u796d","Apep\'s Slumber Vaal Spirit Shield":"\u827e\u666e\u4e4b\u68a6 \u74e6\u5c14\u9b54\u76fe","Saqawine Lure":"\u82cd\u7a7a\u4e4b\u8bf1","Cremation":"\u706b\u846c","Withering Touch Support":"\u51cb\u96f6\u4e4b\u89e6\uff08\u8f85\uff09","Screaming Essence of Contempt":"\u8f7b\u89c6\u4e4b\u5486\u54ee\u7cbe\u534e","Tempered Spirit Viridian Jewel":"\u6dec\u706b\u4e4b\u9b42 \u7fe0\u7eff\u73e0\u5b9d","Merveil\'s Favoured":"\u83ab\u8587\u513f\u7684\u5e7c\u5973","Temple Map (Atlas of Worlds)":"\u593a\u9b42\u4e4b\u6bbf(\u5f02\u754c\u56fe\u9274)","Expedition Logbook":"\u5148\u7956\u79d8\u85cf\u65e5\u5fd7","Preventative Contract":"\u9884\u9632\u5951\u7ea6","Familial Contract":"\u5bb6\u65cf\u5951\u7ea6","Contract: Tunnels":"\u5951\u7ea6\uff1a\u96a7\u9053","Underground River Map":"\u5730\u5e95\u4e4b\u6cb3","The Vinktar Square Courtyard Map":"\u7ef4\u514b\u5854\u5e7f\u573a \u5947\u672f\u4e4b\u5ead","Contract: Repository":"\u5951\u7ea6\uff1a\u50a8\u85cf\u5e93","Voidfletcher Primal Arrow Quiver":"\u865a\u7a7a\u5236\u7bad\u8005 \u539f\u77e2\u7bad\u888b","Contract: Mansion":"\u5951\u7ea6\uff1a\u8c6a\u5b85","Contract: Prohibited Library":"\u5951\u7ea6\uff1a\u7981\u65ad\u4e66\u5e93","Blueprint: Underbelly":"\u84dd\u56fe\uff1a\u8584\u5f31\u4e4b\u5730","Blueprint: Tunnels":"\u84dd\u56fe\uff1a\u96a7\u9053","Serrated Arrow Quiver":"\u952f\u9f7f\u7bad\u888b","Blueprint: Mansion":"\u84dd\u56fe\uff1a\u8c6a\u5b85","Hrimnor\'s Dirge Sledgehammer":"\u96f7\u59c6\u8bfa\u7684\u633d\u6b4c \u51b7\u94c1\u91cd\u9524","The Vinktar Square Courtyard Map (Atlas of Worlds)":"\u7ef4\u514b\u5854\u5e7f\u573a \u5947\u672f\u4e4b\u5ead(\u5f02\u754c\u56fe\u9274)","Blueprint: Prohibited Library":"\u84dd\u56fe\uff1a\u7981\u65ad\u4e66\u5e93","Warlord\'s Reach Crimson Jewel":"\u7763\u519b\u4e4b\u529b \u8d64\u7ea2\u73e0\u5b9d","Contract: The Twins Vengeful Contract":"\u5951\u7ea6\uff1a\u7f6a\u6076\u53cc\u751f \u590d\u4ec7\u5951\u7ea6","Contract: The Slaver King Vigilante Contract":"\u5951\u7ea6\uff1a\u8d29\u5974\u4e4b\u738b \u4e49\u8b66\u5951\u7ea6","Blood Morpher":"\u5316\u8840\u4e4b\u7075","Corpsewalker Carnal Boots":"\u7075\u67a2\u884c\u8005 \u7981\u793c\u4e4b\u9774","Dirt Scrabbler":"\u5c18\u57a2\u8005","Box of Tripyxis":"\u7279\u91cc\u5e87\u5e0c\u65af\u4e4b\u7bb1","Infested Serpent":"\u53d7\u75ab\u5de8\u86c7","heistmission":"\u8d4f\u91d1\u5951\u7ea6\u84dd\u56fe","Skeleton Keyring":"\u4e07\u80fd\u94a5\u5319\u73af","Essential Keyring":"\u666e\u901a\u94a5\u5319\u73af","Primeval Rapier":"\u53e4\u5178\u523a\u5251","Hollowpoint Arrowhead":"\u4e2d\u7a7a\u7bad\u5934","Fragmenting Arrowhead":"\u88c2\u7247\u7bad\u5934","Flanged Arrowhead":"\u6cd5\u5170\u7bad\u5934","Thaumaturgical Sensing Charm":"\u5947\u672f\u611f\u77e5\u9b54\u7b26","Coruscating Elixir Ruby Flask":"\u95ea\u8000\u7cbe\u534e \u7ea2\u7389\u836f\u5242","Phantasmagoria Map (Atlas of Worlds)":"\u9b54\u7075\u5e7b\u72f1(\u5f02\u754c\u56fe\u9274)","Orbala\'s Fifth Adventure":"\u6b27\u5df4\u62c9\u7684\u7b2c\u4e94\u6b21\u5192\u9669","Whispering Essence of Hatred":"\u618e\u6068\u4e4b\u4f4e\u8bed\u7cbe\u534e","Dialla\'s Malefaction Sage\'s Robe":"\u65e0\u6094\u4e4b\u7231 \u8d24\u8005\u4e4b\u888d","Crude Sensing Charm":"\u7c97\u5236\u611f\u77e5\u9b54\u7b26","Mark of the Elder Steel Ring":"\u88c2\u754c\u4e4b\u5370 \u5408\u91d1\u6212\u6307","Elemental Army Support":"\u5143\u7d20\u5927\u519b\uff08\u8f85\uff09","Nebuloch Nightmare Mace":"\u5c3c\u5e03\u6d1b\u514b \u68a6\u9b47\u4e4b\u9524","Master Lockpick":"\u5353\u8d8a\u89e3\u5bc6\u5de5\u5177","The Fracturing Spinner Blunt Arrow Quiver":"\u7206\u88c2\u4e4b\u5c04 \u949d\u77e2\u7bad\u888b","Replica Rumi\'s Concoction Granite Flask":"\u9c81\u7c73\u7684\u7075\u836f\u3010\u4eff\u54c1\u3011 \u575a\u5ca9\u836f\u5242","Immortal Flesh Leather Belt":"\u6c38\u751f \u76ae\u9769\u8170\u5e26","Talisman Leaguestone":"\u9b54\u7b26\u8d5b\u5b63\u77f3","Speaker\'s Wreath Prophet Crown":"\u4f17\u751f\u6307\u5f15 \u7bb4\u8a00\u6218\u51a0","Thaumetic Blowtorch":"\u5947\u672f\u55b7\u706f","Flanged Drill":"\u6cd5\u5170\u94bb\u5934","Sacrifice at Noon":"\u6b63\u5348\u7684\u5949\u732e[\u5de6\u4e0b]","Disapprobation Axe":"\u5426\u8ba4\u65a7","Dragonscale Doublet":"\u9f99\u9cde\u62a4\u7532","The Cacophony":"\u4e0d\u534f\u4e4b\u97f3","Archon Kite Shield Piece":"\u5a01\u80fd\u9e22\u76fe","Steel Drill":"\u94a2\u94bb\u5934","Thaumetic Flashpowder":"\u6258\u9ea6\u8fea\u514b\u95ea\u5149\u7c89","Queen of the Forest Destiny Leather":"\u68ee\u6797\u4e4b\u540e \u547d\u8fd0\u76ae\u7532","Large Cluster Jewel":"\u5927\u578b\u661f\u56e2\u73e0\u5b9d","Moonstone Ring":"\u6708\u5149\u77f3\u6212\u6307","The Aesthete":"\u5927\u827a\u672f\u5bb6","Vaal Lightning Trap":"\u74e6\u5c14\uff1a\u95ea\u7535\u9677\u9631","Trarthan Flashpowder":"\u7279\u62c9\u73ca\u95ea\u5149\u7c89","Leyline Map":"\u8352\u51c9\u539f\u91ce","Espionage Disguise Kit":"\u95f4\u8c0d\u6613\u5bb9\u5de5\u5177","Colosseum Map":"\u5927\u51b3\u6597\u573a","Theatre Disguise Kit":"\u5267\u9662\u6613\u5bb9\u5de5\u5177","Lustrous Ward":"\u5149\u8f89\u7ed3\u754c","Crude Ward":"\u7c97\u5236\u7ed3\u754c","Tattered Cloak":"\u7834\u70c2\u62ab\u98ce","Torn Cloak":"\u7834\u65e7\u62ab\u98ce","Focal Stone":"\u5375\u77f3","Merciless Armament":"\u65e0\u60c5\u519b\u68b0","Polished Legion Scarab":"\u95ea\u8000\u7684\u519b\u56e2\u5723\u7532\u866b","Studded Bracers":"\u9576\u9489\u62a4\u8155","Glacier Map (Atlas of Worlds)":"\u51b0\u5ddd(\u5f02\u754c\u56fe\u9274)","Xoph\'s Blood Amber Amulet":"\u7d22\u4f0f\u4e4b\u8840 \u7425\u73c0\u62a4\u8eab\u7b26","Rebuking Blade":"\u8d23\u96be\u5200","Enduring Cry":"\u575a\u51b3\u6218\u543c","Exsanguinate":"\u8d64\u70bc\u9b54\u5149","Enamel Brooch":"\u73d0\u7405\u80f8\u9488","Golden Brooch":"\u91d1\u8272\u80f8\u9488","Silver Brooch":"\u94f6\u8272\u80f8\u9488","Silkweave Sole":"\u4e1d\u7f51\u978b\u5e95","Winged Sole":"\u7fbd\u7ffc\u978b\u5e95","Hussar Brigandine":"\u8f7b\u9a91\u9501\u7532","Ring of Blades Viridian Jewel":"\u5229\u5203\u6212\u6307 \u7fe0\u7eff\u73e0\u5b9d","Foxhide Sole":"\u72d0\u76ae\u978b\u5e95","Oriath\'s Vengeance":"\u5965\u745e\u4e9a\u7684\u590d\u4ec7","Lighthouse Map (Atlas of Worlds)":"\u5b64\u5c9b\u706f\u5854(\u5f02\u754c\u56fe\u9274)","Eelskin Sole":"\u9cd7\u76ae\u978b\u5e95","Rain of Chaos":"\u6df7\u6c8c\u4e4b\u96e8","heistequipment":"\u8d4f\u91d1\u730e\u4eba\u88c5\u5907","Tolman, the Exhumer":"\u89c9\u9192\u8005\u6258\u5c14\u66fc","Bane":"\u6df7\u6c8c\u4e4b\u6bd2","Lussi \\"Rotmother\\" Roth":"\u3010\u8150\u6bcd\u3011\u9732\u897f\u841d\u4e1d","Susara, Siren of Pondium":"\u6d77\u5996\u58a9\u5ea7\u82cf\u8428\u62c9","Scum Crawler":"\u6c61\u6ce5\u98df\u8150\u866b","Cat\'s Paw":"\u732b\u722a\u5203","Ngamahu Tiki Coral Amulet":"\u52aa\u845b\u739b\u547c\u4e4b\u50cf \u73ca\u745a\u62a4\u8eab\u7b26","Zerphi\'s Heart Paua Amulet":"\u6cfd\u4f5b\u4f0a\u4e4b\u5fc3 \u6d77\u7075\u62a4\u8eab\u7b26","Dance of the Offered Shackled Boots":"\u732e\u796d\u821e\u978b \u7f1a\u8db3\u957f\u9774","Bin\'aia, Crimson Rain":"\u7eef\u7ea2\u4e4b\u96e8\u5bbe\u59ae\u96c5","El\'Abin, Bloodeater":"\u55dc\u8840\u8005\u4f0a\u5170\u96c5\u672c","Uruk Baleh":"\u5384\u7f57\u514b\u5df4\u62c9","The Spoiled Prince":"\u9a84\u7eb5\u7687\u5b50","Simple Rope Net":"\u666e\u901a\u7684\u7c97\u7ef3\u730e\u9b54\u5939","Jeinei Yuushu":"\u73cd\u6d85\u4f18\u82cf","Drought-Maddened Rhoa":"\u65f1\u5730\u6050\u5599\u9e1f","Demon\'s Horn":"\u9b54\u89d2\u6cd5\u6756","Bear\'s Girdle Leather Belt":"\u718a\u4e4b\u675f\u8170 \u76ae\u9769\u8170\u5e26","Morgrants, The Deafening":"\u72ee\u543c\u6469\u5c14\u845b\u5170\u7279\u65af","Shaped Ashen Wood Map (Atlas of Worlds)":"\u65f1\u6728\u6797\u5730(\u5851)(\u5f02\u754c\u56fe\u9274)","Replica Pure Talent Viridian Jewel":"\u7eaf\u624d\u3010\u4eff\u54c1\u3011 \u7fe0\u7eff\u73e0\u5b9d","Brittle Barrier Cobalt Jewel":"\u6613\u788e\u5c4f\u969c \u94b4\u84dd\u73e0\u5b9d","Uul-Netol\'s Kiss Labrys":"\u4e4c\u5c14\u5c3c\u591a\u4e4b\u543b \u53cc\u5f71\u5de8\u65a7","Marchak, The Betrayer":"\u53db\u5f92\u9a6c\u5c14\u672d\u514b","Invari, The Bloodshaper":"\u6714\u8840\u8005\u4f0a\u4f10\u5229","Tower Map":"\u9ad8\u5854","The Beast Fur Shawl Vaal Regalia":"\u517d\u6bdb\u62ab\u80a9 \u74e6\u5c14\u6cd5\u8863","The Winged Death":"\u5e26\u7ffc\u6b7b\u795e","Rotting Vulture":"\u8150\u673d\u79c3\u9e70","Scavenging Vulture":"\u51c0\u98df\u79c3\u9e70","Blazing Arrow Quiver":"\u71c3\u77e2\u7bad\u888b","Armala, the Widow":"\u5be1\u5987\u5236\u9020\u8005\u963f\u739b\u62c9","Amalgam of Nightmares":"\u5669\u68a6\u6c34\u94f6","The Reaver":"\u622e\u7075","The Arbiter of Knowledge":"\u77e5\u8bc6\u4e4b\u529b","Serpentscale Boots":"\u86c7\u9cde\u957f\u9774","Offering to the Serpent Legion Gloves":"\u66b4\u541b\u4e4b\u63e1 \u519b\u56e2\u624b\u5957","Excellis Aurafix":"\u96f7\u9706\u4e4b\u4f7f","Poporo, the Highest Spire":"\u9ad8\u5854\u6ce2\u6ce2\u5f31","Puruna, the Challenger":"\u6311\u6218\u8005\u666e\u9c81\u7eb3","Forest of Flames":"\u70c8\u7130\u4e4b\u68ee","Faster Attacks Support":"\u5feb\u901f\u653b\u51fb","Titan Gauntlets":"\u5de8\u4eba\u62a4\u624b","Storm Call":"\u98ce\u66b4\u547c\u5524","Gravebind Hydrascale Gauntlets":"\u575f\u573a\u4e4b\u94fe \u706b\u876e\u9cde\u624b\u5957","The Primordial Chain Coral Amulet":"\u539f\u59cb\u9501\u94fe \u73ca\u745a\u62a4\u8eab\u7b26","Maple Round Shield":"\u67ab\u6728\u5706\u76fe","The Coward\'s Trial Cursed Crypt Map (Legacy)":"\u61e6\u8005\u7684\u8bd5\u9a8c \u5492\u6028\u9675\u5893(\u9057\u4ea7)","Xoph\'s Inception Bone Bow":"\u7d22\u4f0f\u7684\u59cb\u6e90 \u9aa8\u5236\u5f13","Snakebite Assassin\'s Mitts":"\u876e\u543b \u6697\u5f71\u62a4\u624b","Sewer Drifter":"\u4e0b\u6c34\u9053\u6f02\u6d41\u8005","Drifting Eye":"\u4e0d\u7965\u4e4b\u773c","Story of the Vaal Variscite Blade":"\u74e6\u5c14\u4f20\u8bf4 \u78a7\u94dc\u77ed\u5251","Ornate Mace":"\u534e\u4e3d\u4e4b\u9524","Infected Beast":"\u53d7\u611f\u67d3\u7684\u91ce\u517d","Second Piece of Storms Callous Mask Piece":"\u51b0\u96f7\u5148\u9a71\u8005II \u65e0\u60c5\u4e4b\u9762","Webbed Spider":"\u7ec7\u7f51\u5de8\u86db","The Gulf":"\u5929\u4eba\u6c38\u9694","Searching Eye Jewel":"\u9510\u5229\u4e4b\u51dd\u73e0\u5b9d","Asenath\'s Mark Iron Circlet":"\u5b89\u8d5b\u5a1c\u4e1d\u7684\u8fc5\u654f\u4e4b\u51a0 \u94c1\u953b\u4e4b\u51a0","Kaom\'s Roots Titan Greaves":"\u5188\u59c6\u7684\u7a33\u91cd\u4e4b\u9774 \u5de8\u4eba\u80eb\u7532","Hatchling":"\u5e7c\u86db","Cave Skitterer":"\u6d1e\u7a74\u6c99\u86db","Slink Boots":"\u8ff7\u8e2a\u77ed\u9774","Vaults of Atziri Vaal Pyramid Map":"\u963f\u5179\u91cc\u7684\u79d8\u5b9d\u5e93 \u74e6\u5c14\u91d1\u5b57\u5854","Crypt Ambusher":"\u6c34\u6676\u5de8\u86db","Crypt Weaver":"\u6df1\u7a74\u5de8\u86db","Corrupted Arach":"\u5815\u9b42\u5de8\u86db","Sundance Clasped Boots":"\u65e5\u8000 \u73af\u5e26\u957f\u9774","Corrupted Spitter":"\u8150\u5316\u9b54\u86db","Transcendent Flesh Crimson Jewel":"\u5347\u534e\u4e4b\u8eaf \u8d64\u7ea2\u73e0\u5b9d","Metamorph Eye":"\u707e\u53d8\u89c6\u754c","Plated Greaves":"\u575a\u94c1\u80eb\u7532","Incandescent Invitation":"\u70bd\u7130\u7684\u9080\u8bf7","Grelwood Shank Eternal Sword":"\u97e7\u6728\u66f2\u5203 \u6c38\u6052\u4e4b\u5251","Lurking Venom":"\u4f0f\u51fb\u6bd2\u86db","Balah, Duke":"\u516c\u7235\u5df4\u62c9\u54c8","The Weaver":"\u7f16\u7ec7\u8005","Shadow Fangs":"\u6697\u5f71\u4e4b\u7259","Black Death":"\u707e\u75ab\u4e4b\u5146","Shock Nova":"\u95ea\u7535\u65b0\u661f","Massier":"\u9ea6\u897f\u5c14","Grotto Map (The Awakening)":"\u5e7d\u6697\u5730\u7a74(\u89c9\u9192)","Spinner of False Hope":"\u5e7b\u8c61\u6050\u86db","Singularity Platinum Sceptre":"\u5947\u5f02 \u767d\u91d1\u77ed\u6756","Cobra Lash":"\u6bd2\u86c7\u97ad\u51fb","Arachnoxia":"\u9ed1\u5be1\u5987","Host Cobra":"\u5bbf\u4e3b\u773c\u955c\u86c7","Scalding Arachnid":"\u707c\u70ed\u706b\u86db","Nightwind Slippers":"\u591c\u98ce\u4e4b\u978b","Hybrid Arachnid":"\u6df7\u8840\u5f02\u86db","Maligaro\'s Muse":"\u9a6c\u96f7\u683c\u7f57\u7684\u6c89\u601d","Diseased Arachnid":"\u67d3\u75c5\u5de8\u86db","Balefire Opal Sceptre":"\u82cd\u767d\u70c8\u706b \u7075\u77f3\u77ed\u6756","Legion Sword":"\u519b\u56e2\u957f\u5251","Slimy Bloodsucker":"\u6d1e\u7a9f\u5438\u8840\u602a","Sand Serpent":"\u6c99\u87d2","Barb Serpent":"\u68d8\u523a\u5de8\u86c7","Thornrunner":"\u9488\u9cde","Mutated Arachnid":"\u7a81\u53d8\u7684\u5f02\u86db","Bramble Cobra":"\u4e1b\u6797\u773c\u955c\u86c7","Night Adder":"\u591c\u8272\u6bd2\u86c7","Primitive Alchemical Resonator":"\u539f\u59cb\u70bc\u91d1\u5171\u632f\u5668","Mirage of Bones":"\u67af\u9aa8\u547c\u5524\u8005","Cloth Belt":"\u9970\u5e03\u8170\u5e26","Astragali":"\u9ec4\u82aa","Belcer, the Pirate Lord":"\u6d77\u76d7\u4e4b\u4e3b\u8d1d\u5c14\u745f","Thunderskull":"\u96f7\u9e23\u4e4b\u9ab8","Deep Crustacean":"\u6c34\u6e0a\u7532\u87f9","Bleached Crustacean":"\u82cd\u767d\u5de8\u87f9","Shield Crab":"\u9644\u58f3\u5de8\u87f9","Immortal Resolve":"\u4e0d\u673d\u51b3\u5fc3","Vaal Temple Map (Legacy)":"\u74e6\u5c14\u5bc6\u6bbf(\u9057\u4ea7)","Ornate Quiver":"\u534e\u7f8e\u7bad\u888b","Invading Crustacean":"\u5165\u4fb5\u7532\u87f9","Cave Crustacean":"\u6d1e\u7a74\u7532\u87f9","Mutated Winterclaw":"\u7a81\u53d8\u7684\u971c\u722a","Shavronne the Sickening":"\u6c89\u91cd\u8005\u859b\u6717","Polished Metamorph Scarab":"\u629b\u5149\u7684\u707e\u53d8\u5723\u5723\u7532\u866b","Battle Buckler":"\u6597\u8005\u8f7b\u76fe","The Supreme Truth Crystal Sceptre":"\u65e0\u4e0a\u7bb4\u8a00 \u6c34\u6676\u77ed\u6756","Merveil\'s Retainer":"\u6d77\u5996\u5bb6\u81e3","Merveil\'s Chosen":"\u6d77\u5996\u7231\u5973","Coward\'s Chains Chain Belt":"\u61e6\u592b\u4e4b\u94fe \u6263\u94fe\u8170\u5e26","Merveil\'s Attendant":"\u83ab\u8587\u513f\u7684\u4f8d\u5973","Merveil\'s Blessed":"\u83ab\u8587\u513f\u7684\u5ba0\u513f","Last Resort Nailed Fist":"\u7ec8\u606f \u62f3\u9489","Erythrophagia":"\u55dc\u8840\u7329\u7ea2","Elegant Round Shield":"\u6743\u8d35\u5706\u76fe","Shock and Horror":"\u6050\u60e7\u4e4b\u96f7","Charan\'s Sword":"\u67e5\u5170\u4e4b\u5251","Merveil, the Returned":"\u590d\u751f\u8005\u83ab\u8587\u513f","Eoin Greyfur":"\u7070\u53d1\u827e\u6b27\u6069","Emberwake Ruby Ring":"\u4f59\u70ec\u4e4b\u75d5 \u7ea2\u7389\u6212\u6307","Tamulus":"\u6c99\u5361\u4e3d\u4e4b\u5c3e","Willclash Golden Mask":"\u610f\u5fd7\u4ea4\u950b \u9ec4\u91d1\u4e4b\u9762","The Queen":"\u5973\u738b","Spine Bow":"\u810a\u5f13","Boot Knife":"\u7a83\u8005\u77ed\u5203","Sulphuric Scorpion":"\u786b\u78fa\u874e","The Deal":"\u4e70\u5356","Black Scorpion":"\u9ed1\u874e","Orchard Map (Legacy)":"\u5bc6\u6797\u679c\u56ed(\u9057\u4ea7)","Megaera":"\u708e\u7075\u5bc6\u5361\u62c9","The Chosen":"\u5929\u9009","Devouring Totem":"\u541e\u566c\u56fe\u817e","Replica Atziri\'s Acuity Vaal Gauntlets":"\u963f\u5179\u91cc\u7684\u6377\u601d\u3010\u4eff\u54c1\u3011 \u74e6\u5c14\u62a4\u624b","Lesser Multiple Projectiles Support":"\u4f4e\u9636\u591a\u91cd\u6295\u5c04","Maze Map":"\u51a5\u795e\u4e4b\u57df","Glace":"\u51bb\u7075","Fossil Eater":"\u98df\u9ab8\u87f9","Toxic Crawler":"\u5267\u6bd2\u98df\u8150\u866b","The Coward\'s Trial Cursed Crypt Map":"\u61e6\u8005\u7684\u8bd5\u9a8c \u5492\u6028\u9675\u5893","Pier Map":"\u6012\u6d6a\u4e4b\u6e2f","Mortal Rage":"\u51e1\u4eba\u7684\u6124\u6012[\u53f3\u4e0a]","The Dweller of the Deep":"\u6df1\u6e0a\u5de8\u87f9","Gravel Eater":"\u98df\u783e\u722a\u87f9","Terminus Est Tiger Sword":"\u884c\u5211\u4e4b\u5203 \u864e\u7259\u5de8\u5251","Mother of the Hive":"\u87f9\u5de2\u4e4b\u6bcd","Ghostram":"\u51a5\u5e9c\u96f7\u9706","The Gambler":"\u8d4c\u5f92","Sand Leaper":"\u6c99\u5730\u8df3\u866b","Shrieking Essence of Torment":"\u6298\u78e8\u4e4b\u5c16\u5578\u7cbe\u534e","Tribal Maul":"\u796d\u4eea\u5de8\u9524","Contract: Breaking the Unbreakable Preventative Contract":"\u5951\u7ea6\uff1a\u7262\u4e0d\u53ef\u7834 \u9884\u9632\u5951\u7ea6","Dust Scrabbler":"\u62e8\u5c18\u8005","Leyline Gloves":"\u96f7\u7ebf\u624b\u5957","Shaped Overgrown Shrine Map (Atlas of Worlds)":"\u5bc6\u8349\u795e\u6bbf(\u5851)(\u5f02\u754c\u56fe\u9274)","Ancient Devourer":"\u8fdc\u53e4\u541e\u566c\u8005","Kamaq, Soilmaker":"\u5927\u5730\u4e4b\u795e\u5361\u9a6c\u514b","Tiger Sword":"\u864e\u7259\u5de8\u5251","Deafening Essence of Contempt":"\u8f7b\u89c6\u4e4b\u7834\u7a7a\u7cbe\u534e","Tunnelworm":"\u94a9\u866b","Devourer":"\u541e\u566c\u8005","Golden Flame":"\u9ec4\u91d1\u5723\u708e","Pirate Treasure":"\u6d77\u76d7\u5b9d\u85cf\u5b88\u62a4\u8005","Defiled Cathedral Map":"\u4e0d\u6d01\u6559\u5802","Primordial Rhoa":"\u59cb\u7956\u6050\u5599\u9e1f","Quetzerxi":"\u594e\u7279\u897f","Zombie Rhoa":"\u8150\u8d25\u6050\u5599","Ambush Mitts":"\u4f0f\u51fb\u62a4\u624b","Corrupted Rhoa":"\u8150\u5316\u7684\u6050\u5599\u9e1f","Infested Rhoa":"\u88ab\u611f\u67d3\u7684\u6050\u5599\u9e1f","Shaper\'s Touch Crusader Gloves":"\u5851\u754c\u4e4b\u89e6 \u5723\u6218\u624b\u5957","Burning Damage Support":"\u589e\u52a0\u71c3\u70e7\u4f24\u5bb3","Lion Sword":"\u72ee\u722a\u5de8\u5251","The Searing Touch Lathi":"\u70bd\u708e\u4e4b\u4f7f \u6b66\u672f\u957f\u6756","Crest of Desire Fluted Bascinet":"\u6e34\u671b\u4e4b\u51a0 \u5168\u7f69\u6218\u76d4","Grasping Mail":"\u627c\u6740\u94fe\u7532","Perandus Signet Paua Ring":"\u666e\u5170\u5fb7\u65af\u4e4b\u8bb0 \u6d77\u7075\u6212\u6307","Battle Plate":"\u6218\u94e0","Infected Ambusher":"\u53d7\u611f\u67d3\u7684\u4f0f\u51fb\u8005","Ventarus":"\u6cdb\u5854\u9c81\u65af","Rabid Rhoa":"\u75af\u72c2\u7684\u6050\u5599\u9e1f","Fenumal Plagued Arachnid":"\u6697\u591c\u5f02\u86db","Cabalist Regalia":"\u79d8\u672f\u6cd5\u8863","Purge Hound":"\u6076\u989c\u5de8\u72ac","Mountain Hellion":"\u5c71\u738b\u5730\u72f1\u72ac","Gnar, Eater of Carrion":"\u98df\u8150\u8005\u845b\u7eb3","Shore Map (Atlas of Worlds)":"\u66ae\u5149\u6d77\u6ee9(\u5f02\u754c\u56fe\u9274)","Pitbull Demon":"\u6597\u725b\u72ac\u9b54","Rheniot":"\u745e\u5c3c\u6b27\u7279","Hammered Buckler":"\u94c6\u9489\u8f7b\u76fe","Rhodion":"\u7f57\u8fea\u6b27\u6069","Auriot":"\u5965\u5229\u6b27\u7279","Chain Support":"\u8fde\u9501","Swarthy Mollusc":"\u9ed1\u6e9c\u6e9c\u7684\u7ae0\u9c7c\u54e5","Poisonous Parasite":"\u5e7d\u6bd2\u5bc4\u751f\u866b","Chest Splitter":"\u5f00\u819b\u5229\u5203","Deft Fossil":"\u673a\u5de7\u5316\u77f3","Infected Watcher":"\u67d3\u75ab\u4e4b\u773c","Potent Alchemical Resonator":"\u5f3a\u80fd\u70bc\u91d1\u5171\u632f\u5668","Jagged Fossil":"\u952f\u9f7f\u5316\u77f3","Goatman Fire-raiser":"\u7f8a\u4eba\u708e\u5492\u5e08","Her Mask":"\u5979\u7684\u9762\u5177","Malachai\'s Mark Murder Mitts":"\u9a6c\u62c9\u51ef\u4e4b\u8bb0 \u6697\u5f71\u8005\u62a4\u624b","Plated Parasite":"\u88c5\u7532\u5bc4\u751f\u866b","Ravenous Parasite":"\u9965\u997f\u5bc4\u751f\u866b","Parasite":"\u5bc4\u751f\u866b","Ion Darkshroud, the Hungering Blade":"\u6e38\u5f0b\u4e4b\u5203\u827e\u6602","Long Staff":"\u957f\u6756","Echo of the Verdant":"\u81ea\u7136\u4e4b\u56de\u97f3","Barrow Ape":"\u9057\u51a2\u72c2\u733f","Contract: Death to Darnaw Naval Contract":"\u5951\u7ea6\uff1a\u8fbe\u8bfa\u7684\u8986\u706d \u6d77\u519b\u5951\u7ea6","Replica Sorrow of the Divine Sulphur Flask":"\u795e\u5723\u54c0\u60bc\u3010\u4eff\u54c1\u3011 \u786b\u78fa\u836f\u5242","Blood Stasis ":"\u51b7\u8840\u4e4b\u7075","Aidan the Frenzied":"\u8fc5\u6377\u4e4b\u5f71\u827e\u4e39","Spirit of Aidan":"\u827e\u4e39\u4e4b\u7075","Wailing Essence of Wrath":"\u96f7\u9706\u4e4b\u54c0\u568e\u7cbe\u534e","Messenger of the Hollows":"\u7a7a\u6d1e\u4f7f\u8005","Lord of the Hollows":"\u7a7a\u6d1e\u4e4b\u4e3b","Darksteel Treads":"\u4e4c\u94a2\u4e4b\u5c65","Champion of the Hollows":"\u7a7a\u6d1e\u52c7\u58eb","Shrieker Eihal":"\u865a\u7a7a\u4e4b\u543c","Maternal Rhex":"\u96cc\u6027\u51f6\u9e1f","Arachnid Tomb Map (Atlas of Worlds)":"\u7075\u866b\u5893\u7a74(\u5f02\u754c\u56fe\u9274)","Mercenary\'s Lot Slink Gloves":"\u4f63\u5175\u9886\u5730 \u8ff7\u8e2a\u624b\u5957","Wild Rhex":"\u91ce\u6027\u51f6\u9e1f","Escaped Rhex":"\u82df\u6d3b\u51f6\u9e1f","He of Many Pieces":"\u788e\u7247\u541b\u4e3b","Visceris":"\u74e6\u745f\u745e\u65af","Nightmare\'s Omen":"\u68a6\u9b47\u4e4b\u5146","Mountain Lynx":"\u6797\u5c3c\u514b\u65af","Trinity Support":"\u4e09\u4f4d\u4e00\u4f53\uff08\u8f85\uff09","Sun Plate":"\u65e5\u5149\u4e4b\u94e0","The Grey Spire Judgement Staff":"\u7070\u8272\u5c16\u690e \u5ba1\u5224\u957f\u6756","Arctic Wolf":"\u51b0\u971c\u5de8\u72fc","Dire Wolf":"\u6050\u60e7\u4e4b\u72fc","Shredder of Gladiators":"\u9b44\u7f57\u6597\u5251\u58eb","Death Rush Amethyst Ring":"\u4ea1\u8005\u547c\u5524 \u7d2b\u6676\u6212\u6307","Graveyard Map (Legacy)":"\u5815\u5f71\u5893\u573a(\u9057\u4ea7)","Mutated Flamebeast":"\u7a81\u53d8\u7684\u708e\u517d","The Putrid Cloister Museum Map (Atlas of Worlds)":"\u5e7d\u79d8\u535a\u7269\u9986 \u53e4\u535a\u7269\u9986(\u5f02\u754c\u56fe\u9274)","Farric Tiger Alpha":"\u5927\u5730\u5de8\u864e","Craicic Watcher":"\u6df1\u6d77\u5b88\u671b\u8005","Tremor Rod Military Staff":"\u98a4\u6296\u4e4b\u6756 \u519b\u7528\u957f\u6756","Rusted Shaper Scarab":"\u9508\u8680\u7684\u5851\u754c\u8005\u5723\u7532\u866b","The Jeweller\'s Boon":"\u73e0\u5b9d\u5320\u7684\u798f\u7949","Double Claw":"\u53cc\u5203\u722a","Manastorm Fossilised Spirit Shield":"\u65e7\u6570\u636e","Kongming\'s Stratagem Ivory Spirit Shield":"\u65e7\u6570\u636e","Allelopathy Sorcerer Gloves":"\u65e7\u6570\u636e","Briskwrap Strapped Leather":"\u65e7\u6570\u636e","Rocco, the Bloodthirsty":"\u55dc\u6597\u8005\u745e\u514b","Fenumal Widow":"\u6697\u591c\u9ed1\u5be1\u5987","Craicic Sand Spitter":"\u6df1\u6d77\u55b7\u7802\u722a\u87f9","Fenumal Scrabbler":"\u6697\u591c\u6536\u5272\u8005","Imp Crown":"\u5c0f\u9b3c\u4e4b\u51a0","Fenumal Devourer":"\u6697\u591c\u541e\u566c\u8005","Saqawine Rhoa":"\u82cd\u7a7a\u6050\u5599\u9e1f","Farric Pit Hound":"\u5927\u5730\u6df1\u9083\u730e\u72ac","Carrion Swarmer":"\u98df\u8150\u866b","Bronzescale Boots":"\u94dc\u5f71\u957f\u9774","Unstable Catalyst":"\u4e0d\u7a33\u5b9a\u7684\u50ac\u5316\u5242","Great Helmet":"\u5de8\u76d4","Farric Ape":"\u5927\u5730\u5de8\u733f","The Rite of Elements":"\u5143\u7d20\u796d\u7940","Golden Mask":"\u9ec4\u91d1\u4e4b\u9762","Bloodgrip Coral Amulet":"\u9c9c\u8840\u652f\u914d \u73ca\u745a\u62a4\u8eab\u7b26","Saqawine Retch":"\u82cd\u7a7a\u53cd\u520d\u9e1f","Convocation":"\u53f7\u53ec","Echoes of Love":"\u7231\u7684\u56de\u97f3","Steel Spirit Viridian Jewel":"\u575a\u6bc5\u5fc3\u7075 \u7fe0\u7eff\u73e0\u5b9d","Baran\'s Crest":"\u5df4\u5170\u4e4b\u51a0","Fenumal Queen":"\u6697\u591c\u5973\u738b","Farrul\'s Bite Harlequin Mask":"\u5927\u5730\u4e4b\u7259 \u9e70\u5599\u4e4b\u9762","Maligaro\'s Lens Compound Spiked Shield":"\u9a6c\u96f7\u683c\u7f57\u7684\u67d3\u8840\u900f\u955c \u590d\u5408\u523a\u76fe","Saqawine Chimeral":"\u82cd\u7a7a\u5947\u7f8e\u62c9","Farric Flame Hellion Alpha":"\u5927\u5730\u70c8\u708e\u5730\u72f1\u5de8\u72ac","Farric Goatman":"\u5927\u5730\u7f8a\u4eba","Panquetzaliztli Jagged Maul":"\u5de8\u51fb\u4e4b\u9524 \u72fc\u7259\u91cd\u9524","Craicic Savage Crab":"\u6df1\u6d77\u91ce\u86ee\u5de8\u87f9","Sorrow Mask":"\u60b2\u4f24\u9762\u5177","Overgrown Ruin Map (The Awakening)":"\u957f\u8349\u9057\u8ff9(\u89c9\u9192)","Deidbellow Gilded Sallet":"\u4e27\u543c \u91d1\u9762\u62a4\u76d4","Farric Goliath":"\u5927\u5730\u9488\u80cc\u517d","Farric Gargantuan":"\u5927\u5730\u91ce\u517d","The Goddess":"\u5973\u795e","Bolt Brownfur, Earth Churner":"\u5927\u5730\u6d41\u4ea1\u8005\u68d5\u80e1\u5b50","Gluttonous Gull":"\u72c2\u98df\u53cd\u520d\u9e1f","Fungal Hollow Map (Atlas of Worlds)":"\u5b62\u5b50\u7a7a\u8c37(\u5f02\u754c\u56fe\u9274)","Explorer\'s Scouting Report":"\u63a2\u7d22\u4fa6\u5bdf\u62a5\u544a","Energy Leech Support":"\u80fd\u91cf\u5077\u53d6\uff08\u8f85\uff09","Shavronne\'s Gambit Scholar Boots":"\u859b\u6717\u7684\u8be1\u8ba1 \u5b66\u8005\u957f\u9774","Excavation Map":"\u6316\u6398\u573a","Avian Retch":"\u4e1b\u6797\u53cd\u520d\u9e1f","Cemetery Map":"\u6668\u66e6\u5893\u5730","Essence of Hysteria":"\u6d6e\u5938\u7cbe\u534e","Gorulis, Will-Thief":"\u4f20\u5947\u795e\u76d7\u7f57\u683c\u65af","Carrion Queen":"\u98df\u8150\u866b\u540e","Undying Flesh Talisman":"\u4e0d\u673d\u9b54\u7b26","The Surrender Ezomyte Tower Shield":"\u964d\u4f0f \u827e\u5179\u9ea6\u5854\u76fe","Corroded Blade":"\u9508\u6591\u5de8\u5251","Rabid Broodqueen":"\u75af\u72c2\u7684\u80b2\u96cf\u5973\u738b","Mother of the Swarm":"\u8150\u8d25\u4e4b\u6e90","Maelstr\xf6m of Chaos Atoll Map":"\u6df7\u6c8c\u4e4b\u6e0a \u6ee8\u6d77\u5c71\u4e18","Musky \\"Two-Eyes\\" Grenn":"\u3010\u53cc\u773c\u3011\u5f02\u5473\u683c\u6797","Carrion Burrower":"\u5927\u98df\u8150\u866b","Replica Heartbreaker Royal Skean":"\u88c2\u5fc3\u5203\u3010\u4eff\u54c1\u3011 \u7687\u5bb6\u77ed\u5315","Ringmail Gloves":"\u73af\u7532\u624b\u5957","Item Rarity Support":"\u7269\u54c1\u7a00\u6709\u5ea6\u589e\u5e45","Dying Sun Ruby Flask":"\u901d\u65e5 \u7ea2\u7389\u836f\u5242","Wideswing Poleaxe":"\u9614\u65a9 \u5de8\u6218\u65a7","Hyrri\'s Demise Sharktooth Arrow Quiver":"\u897f\u91cc\u4e4b\u901d \u9ca8\u9f7f\u7bad\u888b","War Hound":"\u6218\u4e89\u730e\u72ac","Bladetooth":"\u5203\u7259","Elder-Blessed Hellion":"\u88c2\u754c\u4e4b\u4ec6 \u5730\u72f1\u72ac","Underground River Map (The Awakening)":"\u5730\u5e95\u4e4b\u6cb3(\u89c9\u9192)","Mountain Hellion Alpha":"\u5c71\u738b\u5730\u72f1\u72ac\u9886\u8896 \u963f\u5c14\u6cd5","Shackled Hellion":"\u53d7\u5236\u5730\u72f1\u72ac","The Burning Menace":"\u66b4\u708e\u517d","Sebbert, Crescent\'s Point":"\u65b0\u6708\u4e4b\u7eaa\u745f\u4f2f\u7279","The Stormheart Royal Staff":"\u98ce\u66b4\u4e4b\u773c \u7687\u5bb6\u957f\u6756","Replica Infractem Decimation Bow":"\u7a7f\u4e91\u3010\u4eff\u54c1\u3011 \u730e\u9b42\u4e4b\u5f13","The Brittle Emperor":"\u67af\u9aa8\u7687\u5e1d","Lochtonial Caress Iron Gauntlets":"\u610f\u8bc6\u4e4b\u7f18 \u94c1\u953b\u62a4\u624b","Leer Cast Festival Mask":"\u5171\u9e23\u4e4b\u9762 \u8282\u5e86\u4e4b\u9762","Life Gain on Hit Support":"\u51fb\u4e2d\u751f\u547d\u56de\u590d","Sharktooth Arrow Quiver":"\u9ca8\u9f7f\u7bad\u888b","Doryani\'s Delusion Slink Boots":"\u591a\u5229\u4e9a\u5c3c\u7684\u5e7b\u60f3 \u8ff7\u8e2a\u77ed\u9774","Ungulath":"\u7f8a\u4eba\u738b\u6069\u683c\u62c9\u65af","Rek\'tar, the Breaker":"\u7834\u58c1\u8005\u96f7\u514b\u5854","Goatman":"\u7f8a\u4eba","Telvar, the Inebriated":"\u9152\u9189\u8005\u7279\u5c14\u74e6","Pesquin, the Mad Baron":"\u75af\u72c2\u7537\u7235\u5e15\u65af\u79d1","Wild Chimeral":"\u91ce\u751f\u9f99\u8725","The Trial":"\u8fdc\u5f81","Atoll Map (The Awakening)":"\u6ee8\u6d77\u5c71\u4e18(\u89c9\u9192)","Alpha Paradisae":"\u5723\u57df\u5143\u7075","Ambitious Obsession":"\u6267\u7740\u7684\u91ce\u5fc3","Paradisae Venenum":"\u4e50\u56ed\u73cd\u8725","Wailing Essence of Anger":"\u6124\u6012\u4e4b\u54c0\u568e\u7cbe\u534e","Feral Chimeral":"\u51f6\u731b\u9f99\u8725","Victario\'s Flight Goathide Boots":"\u7ef4\u591a\u91cc\u5965\u7684\u98de\u5347 \u7f8a\u76ae\u77ed\u9774","Plumed Chimeral":"\u5f69\u7fbd\u9f99\u8725","Genesis Paradisae":"\u521b\u4e16\u5723\u7075","Putembo\'s Valley Topaz Ring":"\u666e\u85e4\u535a\u7684\u5c71\u8c37 \u9ec4\u7389\u6212\u6307","Dialla\'s Subjugation":"\u8fbe\u62c9\u592b\u4eba\u7684\u5b9d\u77f3","Vaulting Croaker":"\u8dc3\u5f71\u5b9d\u77f3\u86d9","Chimeric Croaker":"\u5b9d\u77f3\u9e23\u86d9","Twisted Chimeral":"\u626d\u66f2\u7684\u9f99\u8725","Captain Tanner Lightfoot":"\u5e7d\u8db3\u5766\u7eb3\u5c14\u961f\u957f","Strange Frog":"\u7578\u5f02\u4e4b\u86d9","Varhesh, Shimmering Aberration":"\u5fae\u5149\u5de8\u4f8d\u6cd5\u8d6b\u897f","Spinesnap":"\u730e\u810a\u8005","The Crimson Storm Steelwood Bow":"\u8d64\u7ea2\u98ce\u66b4 \u94a2\u6728\u4e4b\u5f13","Fetid Maw":"\u6076\u81ed\u88c2\u9f7f\u517d","Vault Map":"\u673a\u5173\u5b9d\u5e93","Charged Compass":"\u5145\u80fd\u7f57\u76d8","Rabid Maw":"\u75af\u72c2\u7684\u88c2\u9f7f\u517d","The Forgotten Soldier":"\u88ab\u9057\u5fd8\u7684\u58eb\u5175","Transmutation Shard":"\u8715\u53d8\u77f3\u788e\u7247","Bloodplay Stiletto":"\u8840\u8c11 \u9510\u5229\u523a\u5315","The Golden Ibis":"\u91d1\u9e6e","Brand Recall":"\u70d9\u5370\u53ec\u56de","Brinecrack":"\u6d77\u738b\u4f8d\u4ece\u5947\u6c40\u514b\u62c9\u514b","Woad, Mockery of Man":"\u6a21\u4eff\u4e4b\u4eba\u6c83\u5fb7","Thena Moga, the Crimson Storm":"\u73ab\u7ea2\u98ce\u66b4\u7f07\u8036\u5a1c","Broad Axe":"\u9614\u65a7","Damoi Tui":"\u8fbe\u83ab\u4f0a","Reinforced Iron Net":"\u7cbe\u70bc\u7684\u953b\u94c1\u730e\u9b54\u5939","The Dancing Dervish Reaver Sword":"\u7985\u610f\u82e6\u884c\u50e7 \u6b8b\u66b4\u5de8\u5251","Crusader\'s Exalted Orb":"\u5723\u6218\u8005\u7684\u5d07\u9ad8\u77f3","The Coming Calamity Destroyer Regalia":"\u7075\u9b42\u7532\u80c4 \u706d\u4e16\u6cd5\u8863","Southswing Gloves":"\u5357\u98ce\u624b\u5957","Pen Map":"\u9690\u6666\u7262\u72f1","Tercel Rhoa":"\u96c4\u5065\u6050\u5599","The Hallowed Husk":"\u8d85\u7075\u4e4b\u4f53","Doedre the Defiler":"\u6c61\u6d4a\u8005\u5fb7\u745e","Second Piece of Focus Archon Kite Shield Piece":"\u4e0d\u5c48\u5148\u9a71\u8005II \u5a01\u80fd\u9e22\u76fe","Watcher\'s Eye Prismatic Jewel":"\u5b88\u671b\u4e4b\u773c \u4e09\u76f8\u73e0\u5b9d","Portentia, the Foul":"\u7ea0\u7f20\u4e4b\u6ce2\u5766\u8fea\u4e9a","Ambrosia, Daughter of Merveil":"\u83ab\u8587\u513f\u4e4b\u5973\u827e\u5e03\u841d\u897f\u96c5","Erebix, Light\'s Bane":"\u5149\u660e\u514b\u661f\u963f\u5c14\u78a7\u65af","Ambrius, Legion Slayer":"\u5343\u4eba\u65a9\u5b89\u5e03\u91cc\u5965\u65af","Thunderous Skies":"\u6012\u96f7\u4e4b\u7a7a","Jasper Chopper":"\u7075\u7389\u5de8\u65a7","The Hollow Lady":"\u5f03\u9b42\u4e4b\u5973","Prime Chaotic Resonator":"\u5a01\u80fd\u6df7\u4e71\u5171\u632f\u5668","Lady Stormflay":"\u98ce\u66b4\u4e4b\u4f7f","Pillars of Arun Dunes Map":"\u963f\u5c14\u4f26\u795e\u67f1 \u66ae\u8272\u6c99\u4e18","The Fallen Queen":"\u5815\u5f71\u5973\u738b","K\'aj Y\'ara\'az":"\u5ac9\u5992\u4e4b\u5fc3","Shagreen Boots":"\u7c97\u9769\u77ed\u9774","Carcass Map":"\u6076\u81ed\u6b7b\u57df","The Broken Prince":"\u7834\u9053\u738b\u5b50","Infested Crawler":"\u611f\u67d3\u98df\u8150\u866b","The Poet":"\u8bd7\u4eba","Talon Archer":"\u6df1\u7a74\u5c04\u624b","Rooster Demon":"\u516c\u9e21\u6076\u9b54","Avatar of Undoing":"\u65e0\u7528\u4e4b\u89d2\'s Scout","Penitentiary Incarcerator":"\u76d1\u72f1\u770b\u5b88\u8005","Bazur":"\u5df4\u8428\u7f57\u65af","Redbeak Rusted Sword":"\u8d64\u7ea2\u77ed\u5203 \u9508\u5251","Nassar, Lion of the Seas":"\u6d77\u4e4b\u96c4\u72ee\u5a1c\u8428","Legion Hammer":"\u519b\u56e2\u4e4b\u9524","The Great White Beast":"\u767d\u8272\u5de8\u517d","Shaped Mud Geyser Map (Atlas of Worlds)":"\u9634\u6666\u6ce5\u6ee9(\u5851)(\u5f02\u754c\u56fe\u9274)","Replica Duskdawn Maelstr\xf6m Staff":"\u5bb5\u6653\u3010\u4eff\u54c1\u3011 \u98ce\u66b4\u957f\u6756","Prismatic Eclipse Twilight Blade":"\u8679\u8000\u4e4b\u6708 \u66ae\u5149\u957f\u5251","Blood Progenitor":"\u5de8\u733f\u8840\u7956","Sadist Garb":"\u72c2\u8650\u8005\u675f\u8863","Lightning Trap":"\u95ea\u7535\u9677\u9631","Jeweller\'s Delirium Orb":"\u73e0\u5b9d\u5320\u7684\u96fe\u9b47\u5b9d\u73e0","Mask of the Spirit Drinker Crusader Helmet":"\u996e\u9b42\u8005\u9762\u7f69 \u5723\u6218\u4e4b\u76d4","Calderus":"\u5361\u62c9\u5fb7\u745e\u65af","Dying Light":"\u6d88\u901d\u7684\u5149\u8292","Overgrown Shrine Map (Atlas of Worlds)":"\u5bc6\u8349\u795e\u6bbf(\u5f02\u754c\u56fe\u9274)","Risen Infested Beast":"\u590d\u82cf\u7684\u53d7\u611f\u67d3\u91ce\u517d","Maven\'s Invitation: The Atlas":"\u8d24\u4e3b\u4e4b\u9080\uff1a\u5f02\u754c\u56fe\u9274","Nomic\'s Storm Strapped Boots":"\u8bfa\u7c73\u514b\u7684\u98ce\u66b4 \u6263\u73af\u77ed\u9774","Porcupine Goliath":"\u9488\u80cc\u5de8\u517d","Primal Beast":"\u8fdc\u53e4\u91ce\u517d","Forest Beast":"\u68ee\u6797\u91ce\u517d","Silken Hood":"\u7ef8\u7f0e\u4e4b\u515c","Corrupted Beast":"\u8150\u5316\u517d","The Sun":"\u70c8\u65e5","Enraptured Beast":"\u72c2\u91ce\u5de8\u517d","Hairy Bonecruncher":"\u957f\u6bdb\u788e\u9aa8\u517d","Bone Cruncher":"\u788e\u9aa8\u517d","Timeless Eternal Empire Splinter":"\u6c38\u6052\u5e1d\u56fd\u88c2\u7247","Shaggy Monstrosity":"\u6bd2\u606f\u5de8\u517d","Cave Beast":"\u6d1e\u7a74\u517d","The Great White Bones":"\u767d\u8272\u5de8\u517d\u7684\u9ab8\u9aa8","Simi, the Nature Touched":"\u81ea\u7136\u4e4b\u58f0\u5e0c\u5bc6","The Sanguine Siren":"\u73ab\u7ea2\u5973\u5996","Rain of Splinters Crimson Jewel":"\u788e\u955e\u96e8 \u8d64\u7ea2\u73e0\u5b9d","Lord of the Ashen Arrow":"\u7075\u7bad\u4e4b\u5f26","Desert Spring Map":"\u8352\u6f20\u7eff\u6d32","Cintiq, the Inescapable":"\u7d22\u547d\u8005\u8f9b\u63d0\u5e93","Sumter the Twisted":"\u6851\u7279","Herald of Ash":"\u7070\u70ec\u4e4b\u6377","Chernobog\'s Pillar Ebony Tower Shield":"\u4e94\u8292\u5c4f\u969c \u4e4c\u6728\u5854\u76fe","Oak the Mighty":"\u5de8\u529b\u6b27\u514b","Enticer of Rot":"\u51a5\u7f36\u4e4b\u5973","Master of the Blade":"\u767d\u5203\u5b97\u5e08","Coated Shrapnel Crimson Jewel":"\u69b4\u661f \u8d64\u7ea2\u73e0\u5b9d","Coves Map (Atlas of Worlds)":"\u75be\u98ce\u5ce1\u6e7e(\u5f02\u754c\u56fe\u9274)","Piety the Empyrean":"\u5929\u96f7\u4e4b\u4f7f\u6d3e\u8482","Gilded Divination Scarab":"\u9540\u91d1\u7684\u795e\u6069\u5723\u7532\u866b","Tecrod\'s Gaze Murderous Eye Jewel":"\u7279\u514b\u7f57\u7684\u51dd\u89c6 \u51f6\u6b8b\u4e4b\u51dd\u73e0\u5b9d","Bloodlust Support":"\u55dc\u8840","Iron Sceptre":"\u51b7\u94c1\u77ed\u6756","Blackguard Avenger":"\u4e4c\u65d7\u5b88\u536b\u590d\u4ec7\u8005","Blackguard Tempest":"\u4e4c\u65d7\u5b88\u536b\u4e4b\u96f7","Tyrant":"\u66b4\u541b","Conjurer Gloves":"\u5492\u8005\u624b\u5957","Augustina Solaria":"\u8fce\u9633\u8005\u5965\u53e4\u4e1d\u6c40\u5a1c","The Cleansing Light":"\u6d01\u51c0\u4e4b\u5149","Guardian of the Hydra":"\u4e5d\u5934\u86c7\u5b88\u536b","Ezomyte Spiked Shield":"\u827e\u5179\u9ea6\u523a\u76fe","The Grey Plague":"\u7070\u8272\u761f\u75ab","Winged Expedition Scarab":"\u6709\u7ffc\u7684\u5148\u7956\u79d8\u85cf\u5723\u7532\u866b","Virulent Spider":"\u81f4\u547d\u5de8\u86db","Painted Buckler":"\u5f69\u7ed8\u8f7b\u76fe","Dry Sea Map":"\u5e72\u67af\u4e4b\u6d77","Fortified Legion Cobalt Jewel":"\u575a\u5b88\u519b\u56e2 \u94b4\u84dd\u73e0\u5b9d","Warbands Leaguestone":"\u519b\u56e2\u8d5b\u5b63\u77f3","The Feast":"\u76db\u5bb4","Simple Lockpick":"\u6734\u7d20\u80f8\u9488","Rampage Leaguestone":"\u66b4\u8d70\u8d5b\u5b63\u77f3","Etched Kite Shield":"\u523b\u6587\u9e22\u76fe","Perandus Leaguestone":"\u666e\u5170\u5fb7\u65af\u8d5b\u5b63\u77f3","Onslaught Leaguestone":"\u731b\u653b\u8d5b\u5b63\u77f3","Invasion Leaguestone":"\u4fb5\u7565\u8d5b\u5b63\u77f3","Praxis Paua Ring":"\u666e\u62c9\u514b\u65af \u6d77\u7075\u6212\u6307","Breach Leaguestone":"\u88c2\u9699\u8d5b\u5b63\u77f3","Coralito\'s Signature Diamond Flask":"\u514b\u62c9\u91cc\u591a\u4e4b\u540d \u5b9d\u94bb\u836f\u5242","Blightwell Clutching Talisman":"\u67af\u4e95 \u5492\u7b8d\u9b54\u7b26","Circle of Nostalgia Amethyst Ring":"\u4e61\u6101\u4e4b\u73af \u7d2b\u6676\u6212\u6307","Ambush Leaguestone":"\u4f0f\u51fb\u8d5b\u5b63\u77f3","Medved\'s Challenge Runic Gauntlets":"\u6885\u5fb7\u7ef4\u5fb7\u7684\u6311\u6218 \u7b26\u6587\u624b\u7532","Abberath\'s Hooves Goathide Boots":"\u5730\u52a8 \u7f8a\u76ae\u77ed\u9774","Exquisite Blade":"\u7cbe\u81f4\u4e4b\u5203","Plateau Map (Atlas of Worlds)":"\u6d77\u98ce\u9ad8\u539f(\u5f02\u754c\u56fe\u9274)","Curved Blade":"\u5f2f\u5203","Blasting Blade":"\u7206\u7834\u5200","The Three Dragons Golden Mask":"\u4e09\u9f99\u6218\u7eaa \u9ec4\u91d1\u4e4b\u9762","Greater Black Scythe Artifact":"\u9ad8\u7ea7\u9ed1\u9570\u795e\u5668","Foliate Brooch":"\u53f6\u9970\u80f8\u9488","Butcher Sword":"\u51b7\u8840\u5de8\u5251","General\'s Brigandine":"\u5c06\u519b\u94e0\u7532","Spectral Sword":"\u5e7d\u9b42\u5de8\u5251","Ornate Sword":"\u540d\u8d35\u5de8\u5251","Bastard Sword":"\u91cd\u5251","Longsword":"\u5927\u5251","The Cadaver Bull":"\u72e9\u5fc3\u4e4b\u5599","Reaver Sword":"\u6b8b\u66b4\u5de8\u5251","Engraved Greatsword":"\u7b26\u6587\u5de8\u5251","Amanamu\'s Gaze Ghastly Eye Jewel":"\u57c3\u66fc\u7eb3\u59c6\u7684\u51dd\u89c6 \u82cd\u767d\u4e4b\u51dd\u73e0\u5b9d","Opal Ring":"\u86cb\u767d\u77f3\u6212\u6307","Highland Blade":"\u9ad8\u5c71\u91cd\u5203","Mutated Broodqueen":"\u7a81\u53d8\u7684\u80b2\u96cf\u5973\u738b","The Signal Fire Fire Arrow Quiver":"\u72fc\u70df \u706b\u7075\u7bad\u888b","Impact Force Propagator":"\u51b2\u51fb\u4e4b\u529b\u6269\u6563\u5668","Forbidden Flame Crimson Jewel":"\u7981\u65ad\u4e4b\u706b \u8d64\u7ea2\u73e0\u5b9d","Geode Map (The Awakening)":"\u6c34\u6676\u6d1e\u7a74(\u89c9\u9192)","Blunt Force Condenser":"\u949d\u51fb\u4e4b\u529b\u51dd\u805a\u5668","Crown of Eyes Hubris Circlet":"\u90aa\u773c\u4e4b\u51a0 \u7075\u4e3b\u4e4b\u73af","Astral Plate":"\u661f\u8292\u6218\u94e0","Great Mallet":"\u521a\u731b\u5de8\u9524","Gilded Ambush Scarab":"\u9540\u91d1\u7684\u5f3a\u88ad\u5723\u7532\u866b","Jagged Maul":"\u72fc\u7259\u91cd\u9524","Sledgehammer":"\u51b7\u94c1\u91cd\u9524","Lowlands Hopper":"\u4f4e\u5730\u8df3\u866b","The Immortal Will Archon Kite Shield":"\u4e0d\u673d\u610f\u5fd7 \u5a01\u80fd\u9e22\u76fe","Underground Sea Map (The Awakening)":"\u6ee8\u6d77\u5e7d\u7a74(\u89c9\u9192)","The Innocent":"\u65e0\u8f9c\u8005","Imperial Maul":"\u5e1d\u56fd\u91cd\u9524","Meatgrinder":"\u622e\u9b42\u91cd\u9524","Tinkerskin Sadist Garb":"\u949f\u8868\u5320\u7684\u534e\u670d \u72c2\u8650\u8005\u675f\u8863","Colossus Mallet":"\u5de8\u578b\u91cd\u9524","Karui Maul":"\u5361\u9c81\u91cd\u9524","Yriel\'s Fostering Exquisite Leather":"\u4f0a\u745e\u7684\u7cbe\u901a \u7cbe\u5236\u76ae\u7532","Imperfect Memories":"\u4e0d\u5b8c\u7f8e\u7684\u56de\u5fc6","Ebony Tower Shield":"\u4e4c\u6728\u5854\u76fe","Wave of Conviction":"\u5b9a\u7f6a\u6ce2","Prong Dagger":"\u5c16\u8019\u77ed\u5315","Tulfall Tornado Wand":"\u6258\u6c83\u5367 \u72c2\u98ce\u6cd5\u6756","Reaver Helmet":"\u63a0\u593a\u8005\u4e4b\u76d4","Plated Maul":"\u534e\u4e3d\u91cd\u9524","Plaza Map (Atlas of Worlds)":"\u5e7f\u573a(\u5f02\u754c\u56fe\u9274)","Blood Sacrifice Crimson Jewel":"\u8840\u727a \u8d64\u7ea2\u73e0\u5b9d","Shaped Canyon Map (Atlas of Worlds)":"\u7099\u9633\u5ce1\u8c37(\u5851)(\u5f02\u754c\u56fe\u9274)","Steelhead":"\u6c89\u94a2\u91cd\u9524","Talon Axe":"\u731b\u79bd\u722a\u65a7","Dagger Axe":"\u5315\u65a7","Sacrifice at Dusk":"\u9ec4\u660f\u7684\u5949\u732e[\u5de6\u4e0a]","Chain Boots":"\u94fe\u7532\u957f\u9774","Honed Cleaver":"\u78e8\u5229\u780d\u5200","Shagreen Gloves":"\u7c97\u9769\u624b\u5957","Prime Cleaver":"\u9996\u8981\u780d\u5200","Double Axe":"\u53cc\u5203\u5de8\u65a7","Despot Axe":"\u9738\u4e3b\u5de8\u65a7","Queen\'s Decree Ornate Sword":"\u5a01\u4e25\u4e4b\u5203 \u540d\u8d35\u5de8\u5251","Ezomyte Axe":"\u827e\u5179\u9ea6\u5de8\u65a7","Dreamfeather Eternal Sword":"\u5e7b\u68a6\u98de\u7fbd \u6c38\u6052\u4e4b\u5251","Replica Fencoil Gnarled Branch":"\u7eff\u85e4\u3010\u4eff\u54c1\u3011 \u673d\u6728\u4e4b\u5e72","Sundering Axe":"\u88c2\u7532\u5de8\u65a7","Abyssal Axe":"\u6df1\u6e0a\u5de8\u65a7","Imp Dagger":"\u9b54\u6027\u4e4b\u5203","Stone Axe":"\u77f3\u65a7","Noble Axe":"\u6743\u8d35\u5de8\u65a7","The Seeker":"\u5bfb\u89c5\u8005","Master Cartographer\'s Seal":"\u5927\u5e08\u5c01\u754c\u5370","Labrys":"\u53cc\u5f71\u5de8\u65a7","Recurve Bow":"\u53cd\u66f2\u5f13","The Undisputed":"\u65e0\u53ef\u4e89\u8bae\u8005","Shaped Museum Map (Atlas of Worlds)":"\u53e4\u535a\u7269\u9986(\u5851)(\u5f02\u754c\u56fe\u9274)","Ghetto Map (Legacy)":"\u8d64\u8d2b\u5c45\u6240(\u9057\u4ea7)","Lightning Tendrils":"\u7535\u80fd\u91ca\u653e","Lair of the Hydra Map (Atlas of Worlds)":"\u4e5d\u5934\u86c7\u5de2\u7a74(\u5f02\u754c\u56fe\u9274)","Vaal Double Strike":"\u74e6\u5c14\uff1a\u53cc\u91cd\u6253\u51fb","Moon Staff":"\u6708\u795e\u957f\u6756","Kintsugi Exquisite Leather":"\u91d1\u73cf\u4e4b\u7f2e \u7cbe\u5236\u76ae\u7532","Replica Malachai\'s Artifice Unset Ring":"\u739b\u62c9\u51ef\u7684\u5de7\u6280\u3010\u4eff\u54c1\u3011 \u6f5c\u80fd\u4e4b\u6212","Frost Wall":"\u51b0\u5899","Woodful Staff":"\u575a\u6728\u957f\u6756","Summon Skitterbots":"\u53ec\u5524\u98de\u63a0\u8005","Iron Ring":"\u953b\u94c1\u6212\u6307","Obscured Delirium Orb":"\u6726\u80e7\u7684\u96fe\u9b47\u5b9d\u73e0","Coiled Staff":"\u5f3a\u5316\u957f\u6756","Iron Staff":"\u94c1\u953b\u957f\u6756","Pileah, Corpse Burner":"\u711a\u7075\u8005\u76ae\u91cc\u4e9a","Primitive Staff":"\u7c97\u5236\u957f\u6756","The Tinkerer\'s Table":"\u4fee\u8865\u5320\u4e4b\u684c","Ezomyte Staff":"\u827e\u5179\u9ea6\u957f\u6756","Lathi":"\u6b66\u672f\u957f\u6756","The Nurse":"\u7167\u6599\u8005","Foul Staff":"\u6076\u7075\u957f\u6756","Shaped Cursed Crypt Map (Atlas of Worlds)":"\u5492\u6028\u9675\u5893(\u5851)(\u5f02\u754c\u56fe\u9274)","House of Mirrors":"\u660e\u955c","Residence Map":"\u795e\u4e3b\u5c45\u6240","Gardens Map (Atlas of Worlds)":"\u82b1\u56ed\u8ff7\u5bab(\u5f02\u754c\u56fe\u9274)","Saqawal, First of the Sky":"\u82cd\u7a7a\u521d\u5b50 \u8428\u5947\u6c83","Charged Traps Support":"\u5145\u80fd\u9677\u9631\uff08\u8f85\uff09","The Broken Crown Prophet Crown":"\u7f3a\u89d2\u5e1d\u51a0 \u7bb4\u8a00\u6218\u51a0","Rusted Sulphite Scarab":"\u9508\u8680\u7684\u4e9a\u786b\u9178\u5723\u7532\u866b","Mask of the Spirit Drinker Magistrate Crown":"\u996e\u9b42\u8005\u9762\u7f69 \u884c\u653f\u8005\u6218\u51a0","Canyon Map":"\u7099\u9633\u5ce1\u8c37","The Druggery Cloth Belt":"\u590d\u82cf\u4e4b\u836f \u9970\u5e03\u8170\u5e26","Foundry Bow":"\u94f8\u9020\u5f13","Death Bow":"\u6b7b\u4ea1\u4e4b\u5f13","Colonnade Map (Legacy)":"\u6fc0\u6218\u67f1\u5eca(\u9057\u4ea7)","Captured Soul of Stalker of the Endless Dunes":"\u5df2\u6355\u83b7\u7684\u65e0\u8fb9\u6c99\u4e18\u6f5c\u884c\u8005","Bone Bow":"\u9aa8\u5236\u5f13","Steel Ring":"\u5408\u91d1\u6212\u6307","Flask of Welakath":"\u7ef4\u62c9\u514b\u65af\u70e7\u74f6","Hale Negator Mind Cage":"\u5f3a\u5065\u5426\u51b3\u8005 \u7075\u80fd\u4e4b\u7b3c","Chains of Command Saintly Chainmail":"\u5c06\u519b\u7684\u590d\u751f \u5723\u6d01\u9501\u7532","Composite Bow":"\u5408\u6210\u5f13","Vaal Molten Shell":"\u74e6\u5c14\uff1a\u7194\u5ca9\u62a4\u76fe","Exceptional Eldritch Ichor":"\u5353\u8d8a\u53e4\u7075\u6eb6\u6db2","Vaal Discipline":"\u74e6\u5c14\uff1a\u7eaa\u5f8b","Elemental Proliferation Support":"\u5143\u7d20\u6269\u6563","Grand Eldritch Ember":"\u4e0a\u7ea7\u53e4\u7075\u4f59\u70ec","War Hammer":"\u6218\u9524","Whakawairua Tuahu Strand Map":"\u7981\u95ed\u796d\u575b \u81f4\u547d\u5ca9\u6ee9","A Familiar Call":"\u719f\u6089\u7684\u547c\u5524","Necromancer Circlet":"\u64cd\u7075\u8005\u4e4b\u51a0","Ballista Totem Support":"\u5f29\u70ae\u56fe\u817e\uff08\u8f85\uff09","Shaped Arsenal Map (Atlas of Worlds)":"\u53e4\u5175\u5de5\u5382(\u5851)(\u5f02\u754c\u56fe\u9274)","Ashrend Buckskin Tunic":"\u62c2\u70ec \u9e7f\u76ae\u5916\u5957","Burning Blood":"\u71c3\u70e7\u4e4b\u8840","Iron Gauntlets":"\u94c1\u953b\u62a4\u624b","Copper Plate":"\u94dc\u953b\u677f\u7532","Short Bow":"\u77ed\u5f13","Toxic Sewer Map (Atlas of Worlds)":"\u5267\u6bd2\u6c34\u9053(\u5f02\u754c\u56fe\u9274)","Survival Instincts Viridian Jewel":"\u751f\u5b58\u672c\u80fd \u7fe0\u7eff\u73e0\u5b9d","Assassin Bow":"\u6697\u5f71\u5f13","Spiraled Wand":"\u87ba\u7eb9\u6cd5\u6756","Broadstroke Heavy Quiver":"\u75be\u88ad\u4e4b\u950b \u91cd\u77e2\u7bad\u888b","The Tempest\'s Liberation Callous Mask":"\u98ce\u96ea\u91ca\u653e \u65e0\u60c5\u4e4b\u9762","Waste Pool Map (Legacy)":"\u6b7b\u5bc2\u6ce5\u6c9f(\u9057\u4ea7)","Bronn\'s Lithe Cutthroat\'s Garb":"\u5e03\u9686\u7684\u5f71\u8863 \u6b7b\u795e\u4e4b\u88c5","Replica Pillars of Arun Dunes Map":"\u963f\u5c14\u4f26\u795e\u67f1\u3010\u4eff\u54c1\u3011 \u66ae\u8272\u6c99\u4e18","Elemental Focus Support":"\u5143\u7d20\u96c6\u4e2d","Maze of the Minotaur Map":"\u725b\u5934\u4eba\u8ff7\u5bab","Citadel Bow":"\u57ce\u585e\u6218\u5f13","Decimation Bow":"\u730e\u9b42\u4e4b\u5f13","Esh\'s Mirror Thorium Spirit Shield":"\u827e\u8bb8\u4e4b\u955c \u6697\u91d1\u9b54\u76fe","Shrieking Essence of Fear":"\u6050\u60e7\u4e4b\u5c16\u5578\u7cbe\u534e","Shrieking Essence of Misery":"\u51c4\u60e8\u4e4b\u5c16\u5578\u7cbe\u534e","Canyon Map (Legacy)":"\u7099\u9633\u5ce1\u8c37(\u9057\u4ea7)","Chain Hook":"\u94a9\u94fe\u653b\u51fb","Ivory Bow":"\u8c61\u7259\u5f13","Goldrim Leather Cap":"\u91d1\u7f15\u5e3d \u76ae\u5e3d","The Harvester":"\u6536\u5272\u8005","Brimstone Treads":"\u8e0f\u70df\u4e4b\u5c65","Decurve Bow":"\u76f4\u5f13","Tempered Mind Cobalt Jewel":"\u6dec\u706b\u4e4b\u5fc3 \u94b4\u84dd\u73e0\u5b9d","Shavronne\'s Revelation Moonstone Ring":"\u859b\u6717\u7684\u542f\u793a\u4e4b\u73af \u6708\u5149\u77f3\u6212\u6307","Tainted Oil":"\u6c61\u79fd\u5723\u6cb9","Royal Burgonet":"\u7687\u5ba4\u575a\u76d4","Cartographer\'s Delirium Orb":"\u5236\u56fe\u5e08\u7684\u96fe\u9b47\u5b9d\u73e0","Profane Wand":"\u4eb5\u6e0e\u6cd5\u6756","Chromatic Orb":"\u5e7b\u8272\u77f3","Ancient Seal":"\u53e4\u4ee3\u5c01\u5370","The Anima Stone Prismatic Jewel":"\u805a\u9b42\u77f3 \u4e09\u76f8\u73e0\u5b9d","Accumulator Wand":"\u84c4\u80fd\u6cd5\u6756","Crystal Ore Map (Legacy)":"\u51b0\u51b7\u901a\u9053(\u9057\u4ea7)","Congregator Wand":"\u96c6\u5408\u6cd5\u6756","Assembler Wand":"\u88c5\u914d\u6cd5\u6756","Flamethrower Trap":"\u63b7\u706b\u9677\u9631","Captured Soul of Mephod, the Earth Scorcher":"\u5df2\u6355\u83b7\u7684\u64bc\u5730\u8005\u7c73\u798f\u5fb7","Convoking Wand":"\u53ec\u96c6\u6cd5\u6756","Crystal Wand":"\u6c34\u6676\u6cd5\u6756","Hrimnor\'s Resolve Samnite Helmet":"\u96f7\u59c6\u8bfa\u7684\u8c6a\u60c5 \u8428\u59c6\u5c3c\u76d4","Pride Before the Fall":"\u9a84\u8005\u5fc5\u8d25","Lucky Connections":"\u597d\u8fd0\u8fde\u8fde","Steel Kite Shield":"\u51b7\u94a2\u9e22\u76fe","Faun\'s Horn":"\u517d\u89d2\u6cd5\u6756","Sage Wand":"\u8d24\u8005\u6cd5\u6756","No Traces":"\u65e0\u8ff9\u53ef\u5bfb","Thief\'s Garb":"\u7a83\u8d3c\u4e4b\u88c5","Survivor\'s Guilt Heavy Belt":"\u5e78\u5b58\u8005\u7684\u6127\u759a \u91cd\u9769\u8170\u5e26","Rearguard Broadhead Arrow Quiver":"\u5bd2\u950b\u4e4b\u536b \u5bbd\u77e2\u7bad\u888b","First Snow Cobalt Jewel":"\u521d\u96ea \u94b4\u84dd\u73e0\u5b9d","Spiked Club":"\u949d\u9489\u6728\u68d2","Alpha\'s Howl Sinner Tricorne":"\u6781\u5730\u4e4b\u773c \u7f6a\u8005\u4e4b\u5e3d","Goat\'s Horn":"\u7f8a\u89d2\u6cd5\u6756","The Iron Bard":"\u575a\u6bc5\u8bd7\u4eba","Prophecy Wand":"\u7bb4\u8a00\u6cd5\u6756","Tornado Wand":"\u72c2\u98ce\u6cd5\u6756","Opal Wand":"\u7075\u77f3\u6cd5\u6756","Yorishi, Aurora-sage":"\u66ae\u5149\u4fe1\u5f92\u60a0\u5229\u5e0c","Serpent Wand":"\u86c7\u773c\u6cd5\u6756","Debilitation Gauntlets":"\u8870\u5f31\u624b\u7532","Necromancer Silks":"\u64cd\u7075\u8005\u80cc\u5fc3","Victario\'s Charity Laminated Kite Shield":"\u7ef4\u591a\u91cc\u5965\u7684\u8d21\u732e \u5408\u677f\u9e22\u76fe","Weight of Sin Viridian Jewel":"\u7f6a\u6076\u7684\u91cd\u91cf \u7fe0\u7eff\u73e0\u5b9d","Hunter Hood":"\u730e\u8005\u4e4b\u515c","Replica Cortex Relic Chambers Map":"\u8111\u5c42\u3010\u4eff\u54c1\u3011 \u53e4\u85cf\u5bc6\u5ba4","Ezomyte Burgonet":"\u827e\u5179\u9ea6\u575a\u76d4","Writhing Talisman":"\u72c2\u766b\u9b54\u7b26","Walnut Spirit Shield":"\u6843\u6728\u9b54\u76fe","Turquoise Amulet":"\u9752\u7389\u62a4\u8eab\u7b26","Dragoon Sword":"\u9a91\u5175\u519b\u5200","Combat Focus Cobalt Jewel":"\u6218\u6597\u4e13\u6ce8 \u94b4\u84dd\u73e0\u5b9d","Dark Dreams":"\u9ed1\u6697\u4e4b\u68a6","Two-Stone Ring":"\u53cc\u7389\u6212\u6307","Unrelenting Timeless Vaal Emblem":"\u4e0d\u5c48\u74e6\u5c14\u5370\u8bb0","Toxic Rain":"\u6bd2\u96e8","Simulacrum Splinter":"\u68a6\u9b47\u62df\u50cf\u88c2\u7247","Colossal Hybrid Flask":"\u9ad8\u9636\u590d\u5408\u836f\u5242","Mortem Morsu Fright Claw":"\u566c\u9b42\u4e4b\u7259 \u6050\u60e7\u4e4b\u722a","Wyrmscale Boots":"\u5730\u876e\u9cde\u957f\u9774","Burning Arrow":"\u71c3\u70e7\u7bad\u77e2","Journeyman Cartographer\'s Seal":"\u4e2d\u7ea7\u5c01\u754c\u5370","Winged Elder Scarab":"\u6709\u7ffc\u7684\u88c2\u754c\u8005\u5723\u7532\u866b","Harpy Rapier":"\u9b54\u5599\u7ec6\u5251","The Anticipation Ezomyte Tower Shield":"\u60ac\u5ff5 \u827e\u5179\u9ea6\u5854\u76fe","Amethyst Flask":"\u7d2b\u6676\u836f\u5242","Maze of the Minotaur Map (Atlas of Worlds)":"\u725b\u5934\u4eba\u8ff7\u5bab(\u5f02\u754c\u56fe\u9274)","Eagle Claw":"\u9e70\u722a\u5203","Whalebone Rapier":"\u9cb8\u9aa8\u7ec6\u5203","Cheap Construction Viridian Jewel":"\u5ec9\u4ef7\u5efa\u8bbe \u7fe0\u7eff\u73e0\u5b9d","Craiceann\'s Carapace Golden Plate":"\u6df1\u6d77\u9b54\u7532 \u91d1\u8000\u4e4b\u94e0","The Master":"\u4e3b\u5bb0","Spiraled Foil":"\u87ba\u7eb9\u7ec6\u5251","Albino Rhoa Feather":"\u767d\u5316\u7684\u7fbd\u6bdb","Pecoraro":"\u5bd2\u5149\u523a\u5251","Thicket Map (The Awakening)":"\u60ca\u60e7\u6811\u4e1b(\u89c9\u9192)","Tempered Foil":"\u5f3a\u5316\u7ec6\u5251","Rolling Magma":"\u7194\u5ca9\u5954\u6d8c","Cyclopean Coil Leather Belt":"\u5de8\u5ca9\u6307\u5957 \u76ae\u9769\u8170\u5e26","Forge of the Phoenix Map":"\u4e0d\u6b7b\u9e1f\u953b\u53f0","Dragonbone Rapier":"\u9f99\u9aa8\u7ec6\u5251","Fancy Foil":"\u534e\u4e3d\u7ec6\u5251","Estoc":"\u7a7f\u7532\u523a\u5251","Burnished Foil":"\u51b7\u8292\u523a\u5251","Mechalarm Belt":"\u8b66\u6212\u8170\u5e26","Chaber Cairn Great Mallet":"\u77f3\u51a2 \u521a\u731b\u5de8\u9524","Wailing Essence of Doubt":"\u7591\u60d1\u4e4b\u54c0\u568e\u7cbe\u534e","Grappler":"\u6355\u6349\u8005","Shrieking Essence of Spite":"\u523b\u6bd2\u4e4b\u5c16\u5578\u7cbe\u534e","Shaped Temple Map (Atlas of Worlds)":"\u593a\u9b42\u4e4b\u6bbf(\u5851)(\u5f02\u754c\u56fe\u9274)","Impale Support":"\u5c16\u523a\u6218\u6756","Remnant of Empires Goathide Buckler":"\u5e1d\u56fd\u7684\u6b8b\u58c1 \u7f8a\u76ae\u8f7b\u76fe","Channel Map (The Awakening)":"\u79d8\u5bc6\u901a\u9053(\u89c9\u9192)","Rusted Elder Scarab":"\u9508\u8680\u7684\u88c2\u754c\u8005\u5723\u7532\u866b","The Queen\'s Hunger Vaal Regalia":"\u5973\u738b\u7684\u9965\u997f \u74e6\u5c14\u6cd5\u8863","Glacial Cascade":"\u51b0\u5ddd\u4e4b\u523a","First Piece of the Arcane Legion Sword Piece":"\u79d8\u6cd5\u5148\u9a71\u8005\u788e\u7247I \u519b\u56e2\u957f\u5251","Craghead Serrated Arrow Quiver":"\u5ca9\u5934 \u952f\u9f7f\u7bad\u888b","Heavy Quiver":"\u91cd\u77e2\u7bad\u888b","Anarchic Spiritblade":"\u65e0\u5e8f\u9b42\u5203","Controlled Destruction Support":"\u7cbe\u51c6\u7834\u574f","Faminebind Rustic Sash":"\u9965\u8352\u4e4b\u7ed3 \u7d20\u5e03\u8170\u5e26","Hrimburn Goathide Gloves":"\u674e\u59c6\u672c \u7f8a\u76ae\u624b\u5957","The Tactician Studded Belt":"\u8c0b\u58eb\u4e4b\u73af \u6263\u9489\u8170\u5e26","Festival Mask":"\u8282\u5e86\u4e4b\u9762","Gilded Legion Scarab":"\u9540\u91d1\u7684\u519b\u56e2\u5723\u7532\u866b","Wanderlust Wool Shoes":"\u82e6\u884c\u4e4b\u5c65 \u7f8a\u6bdb\u4e4b\u978b","Thresher Claw":"\u6495\u88c2\u5c16\u722a","Legion Boots":"\u519b\u56e2\u957f\u9774","Tainted Mythic Orb":"\u6c61\u79fd\u795e\u79d8\u77f3","Vaal Scouting Report":"\u74e6\u5c14\u4fa6\u5bdf\u62a5\u544a","Leather Hood":"\u9769\u515c","Shaped Jungle Valley Map (Atlas of Worlds)":"\u5267\u6bd2\u6797\u8c37(\u5851)(\u5f02\u754c\u56fe\u9274)","Broad Sword":"\u9614\u5251","Sabre":"\u65e7\u519b\u5200","Shockwave Support":"\u9707\u6ce2\uff08\u8f85\uff09","Wreath of Phrecia Iron Circlet":"\u8d39\u897f\u4e9a\u7684\u82b1\u73af \u94c1\u953b\u4e4b\u51a0","Fragment of Enslavement":"\u5974\u5f79\u788e\u7247[\u53f3\u4e0a]","Flame Link":"\u70c8\u708e\u7f81\u7eca","Hateforge Ancient Gauntlets":"\u4ec7\u6068\u7194\u7089 \u8fdc\u53e4\u62a4\u624b","Vaal Blade":"\u74e6\u5c14\u519b\u5203","Third Piece of the Arcane Legion Sword Piece":"\u79d8\u6cd5\u5148\u9a71\u8005\u788e\u7247III \u519b\u56e2\u957f\u5251","Ramparts Map (Atlas of Worlds)":"\u5947\u8ff9\u4e4b\u5899(\u5f02\u754c\u56fe\u9274)","Venomous Spawn":"\u5267\u6bd2\u6d77\u866b","Crude Bow":"\u7c97\u5236\u5f13","Birth of the Three":"\u4e09\u8005\u4e4b\u8bde","Earth Drinker":"\u5927\u5730\u541e\u98df\u8005","Dragonscale Boots":"\u9f99\u9cde\u957f\u9774","Regicide Mask":"\u5f11\u541b\u4e4b\u9762","Graceful Sword":"\u6743\u8d35\u4e4b\u5251","Elder Sword":"\u667a\u8005\u957f\u5251","Colosseum Map (The Awakening)":"\u5927\u51b3\u6597\u573a(\u89c9\u9192)","Spider Forest Map (The Awakening)":"\u5de8\u86db\u4e4b\u6797(\u89c9\u9192)","First Piece of Focus Archon Kite Shield Piece":"\u4e0d\u5c48\u5148\u9a71\u8005I \u5a01\u80fd\u9e22\u76fe","Baselard":"\u51b7\u5149\u957f\u5251","Infernal Legion Support":"\u708e\u519b\uff08\u8f85\uff09","Veiled Chaos Orb":"\u52a0\u5bc6\u6df7\u6c8c\u77f3","Rusted Sword":"\u9508\u5251","Tornado Shot":"\u9f99\u5377\u5c04\u51fb","Bust of Emperor Caspiro":"\u5361\u65af\u76ae\u7f57\u7687\u5e1d\u7684\u80f8\u50cf","Violent Dead Cobalt Jewel":"\u66b4\u529b\u7684\u6b7b\u8005 \u94b4\u84dd\u73e0\u5b9d","A Note in the Wind":"\u98ce\u4e2d\u4e4b\u8bed","Ursine Pelt":"\u718a\u9996\u76ae\u76d4","Venom Gyre":"\u5267\u6bd2\u65cb\u98ce","White Wind Imperial Skean":"\u767d\u51c0\u4e4b\u98ce \u5e1d\u56fd\u77ed\u5315","Crypt Armour":"\u5730\u7a74\u6218\u7532","Rigwald\'s Charge Highland Blade":"\u745e\u4f5b\u7684\u594b\u6218\u957f\u5251 \u9ad8\u5c71\u91cd\u5203","Tul\'s Flawless Breachstone":"\u6258\u6c83\u7684\u65e0\u6687\u88c2\u9699\u77f3","Pier Map (Legacy)":"\u6012\u6d6a\u4e4b\u6e2f(\u9057\u4ea7)","Sambodhi\'s Wisdom":"\u8428\u535a\u8f9b\u4e4b\u667a","Storm\'s Gift Assassin\'s Mitts":"\u98ce\u66b4\u8d50\u798f \u6697\u5f71\u62a4\u624b","Mortal Hope":"\u51e1\u4eba\u7684\u5e0c\u671b[\u53f3\u4e0b]","The Professor":"\u6559\u6388","Sand Scorpion":"\u6c99\u874e","Coral Ruins Map":"\u73ca\u745a\u9057\u8ff9","Ochre Sceptre":"\u8d64\u8272\u77ed\u6756","Gladiator Helmet":"\u89d2\u6597\u8005\u4e4b\u76d4","The Fletcher":"\u5236\u7bad\u8005","Igna Phoenix":"\u706b\u51e4\u4f0a\u683c\u5a1c","Caldera Map (The Awakening)":"\u5bc2\u7075\u4e4b\u6e0a(\u89c9\u9192)","Replica Veil of the Night Great Helmet":"\u591c\u5e55\u3010\u4eff\u54c1\u3011 \u5de8\u76d4","Sapphire Flask":"\u84dd\u7389\u836f\u5242","Bladed Mace":"\u591a\u5203\u9524","Scare Mask":"\u5e7d\u60e7\u4e4b\u9762","Kingsguard Conquest Chainmail":"\u7687\u5bb6\u536b\u7532 \u5f81\u6218\u9501\u7532","Brutal Restraint Timeless Jewel":"\u6b8b\u9177\u7684\u7ea6\u675f \u6c38\u6052\u73e0\u5b9d","Crimson Township Map":"\u7eef\u7ea2\u5c0f\u9547","Fossilised Spirit Shield":"\u77f3\u5316\u9b54\u76fe","Fungal Hollow Map":"\u5b62\u5b50\u7a7a\u8c37","Opal Sceptre":"\u7075\u77f3\u77ed\u6756","Midnight Blade":"\u591c\u8bed\u957f\u5251","Silo Map":"\u5706\u5f62\u79d8\u7a96","Hunter\'s Resolve":"\u730e\u8005\u4e4b\u613f","Timeless Vaal Splinter":"\u6c38\u6052\u74e6\u5c14\u88c2\u7247","Xoph\'s Charged Breachstone":"\u7d22\u4f0f\u7684\u5145\u80fd\u88c2\u9699\u4e4b\u77f3","Seven Years Bad Luck":"\u4e03\u5e74\u5384\u8fd0","Blue Pearl Amulet":"\u78a7\u73e0\u62a4\u8eab\u7b26","Abyssal Sceptre":"\u6df1\u6e0a\u77ed\u6756","The One With All":"\u5b8c\u4eba","Compound Spiked Shield":"\u590d\u5408\u523a\u76fe","Wondertrap Velvet Slippers":"\u56de\u5149\u4e4b\u8ff9 \u4e1d\u7ed2\u4fbf\u978b","Lead Sceptre":"\u94c5\u94f8\u77ed\u6756","Crystal Sceptre":"\u6c34\u6676\u77ed\u6756","The Overflowing Chalice Sulphur Flask":"\u9ad8\u6d01\u5723\u676f \u786b\u78fa\u836f\u5242","Sekhem":"\u5a01\u80fd\u77ed\u6756","Driftwood Sceptre":"\u673d\u6728\u77ed\u6756","Heart Coil":"\u6838\u5fc3\u7ebf\u5708","Sinner Tricorne":"\u7f6a\u8005\u4e4b\u5e3d","Iron Circlet":"\u94c1\u953b\u4e4b\u51a0","War Axe":"\u884c\u519b\u65a7","Fluted Bascinet":"\u5168\u7f69\u6218\u76d4","Morphing Incubator":"\u707e\u53d8\u5b55\u80b2\u77f3","Wyrm Mace":"\u53e4\u9f99\u4e4b\u9524","Boom Mace":"\u98ce\u96f7\u9524","Added Cold Damage Support":"\u9644\u52a0\u51b0\u971c\u4f24\u5bb3","Temptation Step Shagreen Boots":"\u8bf1\u60d1\u9636\u68af \u7c97\u9769\u77ed\u9774","Orb of Scouring":"\u91cd\u94f8\u77f3","Flare Mace":"\u660e\u4eae\u9524","Rigwald\'s Savagery Royal Axe":"\u91ce\u6027\u745e\u4f5b \u7687\u5bb6\u4e4b\u65a7","Flame Surge":"\u6012\u7130\u5954\u817e","Lightbane Raiment Ornate Ringmail":"\u9b54\u9053\u4e4b\u8863 \u534e\u4e3d\u73af\u7532","Wild Leather":"\u72c2\u91ce\u90e8\u65cf\u76ae\u7532","Midnight Bargain Engraved Wand":"\u51a5\u7ea6 \u7b26\u6587\u6cd5\u6756","Fertile Mind Cobalt Jewel":"\u4e30\u5bcc\u5fc3\u7075 \u94b4\u84dd\u73e0\u5b9d","Seven-League Step Rawhide Boots":"\u795e\u884c\u9774 \u751f\u76ae\u77ed\u9774","Shaped Primordial Pool Map (Atlas of Worlds)":"\u8d77\u6e90\u4e4b\u6c60(\u5851)(\u5f02\u754c\u56fe\u9274)","Trolltimber Spire Cedar Tower Shield":"\u5deb\u6728 \u677e\u6728\u5854\u76fe","Tenderizer":"\u88c2\u8089\u4e4b\u9524","Rats":"\u9f20\u8f88","Vile Power":"\u6076\u6bd2\u7684\u6743\u529b","Ancestral Club":"\u7956\u7075\u4e4b\u6775","Facetor\'s Lens":"\u8d39\u65af\u7279\u7684\u900f\u955c","Explosive Concoction":"\u7206\u7834\u7075\u836f","Phantom Mace":"\u5e7b\u8c61\u4e4b\u9524","Frostferno Leather Hood":"\u51b0\u72f1 \u9769\u515c","Crazed Chieftain":"\u75af\u72c2\u7684\u914b\u957f","Whakawairua Tuahu Strand Map (The Awakening)":"\u7981\u95ed\u796d\u575b \u81f4\u547d\u5ca9\u6ee9(\u89c9\u9192)","Imperial Staff Piece":"\u5e1d\u56fd\u957f\u6756","Icicle Mine":"\u51b0\u9525\u5730\u96f7","Samite Gloves":"\u7ee3\u5e03\u624b\u5957","Death":"\u6b7b\u4ea1","Nycta\'s Lantern Crystal Sceptre":"\u5948\u53ef\u59b2\u4e4b\u706f \u6c34\u6676\u77ed\u6756","Barbed Club":"\u9510\u523a\u6728\u68d2","Crystal Ore Map (Atlas of Worlds)":"\u51b0\u51b7\u901a\u9053(\u5f02\u754c\u56fe\u9274)","Ngamahu\'s Flame Abyssal Axe":"\u52aa\u845b\u739b\u547c\u4e4b\u8000 \u6df1\u6e0a\u5de8\u65a7","Greater Broken Circle Artifact":"\u9ad8\u7ea7\u88c2\u73af\u795e\u5668","Enchanted Incubator":"\u9644\u9b54\u5b55\u80b2\u77f3","Fields Map":"\u65e0\u8fb9\u539f\u91ce","Etched Hatchet":"\u8680\u523b\u6218\u65a7","Abyssal Delirium Orb":"\u6df1\u6e0a\u7684\u96fe\u9b47\u5b9d\u73e0","Psychotic Axe":"\u766b\u72c2\u65a7","Glimmer of Hope":"\u5e0c\u671b\u5fae\u5149","The Restless Ward Carnal Armour":"\u65e0\u5c3d\u4e4b\u536b \u7981\u793c\u4e4b\u7532","Gloomfang Blue Pearl Amulet":"\u660f\u6697\u4e4b\u7259 \u78a7\u73e0\u62a4\u8eab\u7b26","Wrath":"\u96f7\u9706","Lycius, Midnight\'s Howl":"\u5229\u5e0c\u65af\u5578\u591c","Spectral Axe":"\u5e7d\u9b42\u4e4b\u65a7","Greater Eldritch Ichor":"\u9ad8\u7ea7\u53e4\u7075\u6eb6\u6db2","Urn of Farud":"\u6cd5\u9c81\u5fb7\u4e4b\u74ee","Vial of Sacrifice":"\u732e\u796d\u9b54\u74f6","Arming Axe":"\u957f\u67c4\u65a7","Ruby Ring":"\u7ea2\u7389\u6212\u6307","Orra Greengate":"\u9752\u95e8\u6b27\u62c9","Lone Antler Talisman":"\u5b64\u89d2\u9b54\u7b26","Lavianga\'s Spirit Sanctified Mana Flask":"\u62c9\u7ef4\u5b89\u52a0\u4e4b\u6cc9 \u5723\u5316\u9b54\u529b\u836f\u5242","Golden Matatl Idol":"\u91d1\u8272\u9a6c\u6cf0\u5c14\u795e\u50cf","Boarding Axe":"\u4e07\u7528\u624b\u65a7","Lifesprig Driftwood Wand":"\u751f\u673a\u4e4b\u8bb0 \u673d\u6728\u6cd5\u6756","The Obscured":"\u9ed1\u6697\u7f2d\u7ed5","Mark of the Shaper Opal Ring":"\u5851\u754c\u4e4b\u5370 \u86cb\u767d\u77f3\u6212\u6307","The Eternity Shroud Blood Raiment":"\u6c38\u6052\u5e7d\u5f71 \u8840\u8272\u4e4b\u8863","Stygian Vise":"\u6df1\u6e0a\u8170\u5e26","Quartz Flask":"\u77f3\u82f1\u836f\u5242","Tulborn Spiraled Wand":"\u6258\u6c83\u5d29 \u87ba\u7eb9\u6cd5\u6756","Treasure Hunter":"\u8d4f\u91d1\u730e\u624b","Time-light Scroll":"\u65f6\u5149\u5377\u8f74","Murder Mitts":"\u6697\u5f71\u8005\u62a4\u624b","Infested Sniper":"\u53d7\u75ab\u8718\u86db","Siege Axe":"\u7834\u57ce\u65a7","Lioneye\'s Glare Imperial Bow":"\u72ee\u773c\u7684\u6218\u5f13 \u5e1d\u56fd\u4e4b\u5f13","Malformation Map":"\u7578\u5f62\u4ea1\u57df","Cartographer\'s Incubator":"\u5236\u56fe\u5e08\u7684\u5b55\u80b2\u77f3","The Mayor":"\u5e84\u56ed\u4e3b","Thicket Map":"\u60ca\u60e7\u6811\u4e1b","Barbute Helmet":"\u8f7b\u9a91\u76d4","Bubonic Trail Murder Boots":"\u9f20\u75ab\u4e4b\u6e90 \u6697\u5f71\u8005\u957f\u9774","Divine Blessing Support":"\u5723\u795d\uff08\u8f85\uff09(\u6301\u7eed)","Maligaro\'s Restraint Chain Belt":"\u9a6c\u96f7\u683c\u7f57\u7684\u67d3\u8840\u4e4b\u73af \u6263\u94fe\u8170\u5e26","Rusted Hatchet":"\u9508\u65a7","Draped in Dreams":"\u68a6\u4e4b\u6d9f\u6f2a","Polished Divination Scarab":"\u95ea\u8000\u7684\u795e\u6069\u5723\u7532\u866b","Aukuna\'s Will Clasped Mitts":"\u5965\u5e93\u5a1c\u7684\u610f\u5fd7 \u73af\u5e26\u62a4\u624b","Core Map (The Awakening)":"\u6838\u5fc3(\u89c9\u9192)","First Piece of Time Cloth Belt Piece":"\u65f6\u7a7a\u5148\u9a71\u8005\u788e\u7247I \u9970\u5e03\u8170\u5e26","Mutewind Lynx":"\u54d1\u98ce\u5c71\u732b","Orb of Augmentation":"\u589e\u5e45\u77f3","Flickerflame Blade":"\u706b\u7130\u5200","Regal Shard":"\u5bcc\u8c6a\u77f3\u788e\u7247","Endothermic Buckler":"\u5438\u70ed\u578b\u8f7b\u76fe","Sigil of Power":"\u5a01\u80fd\u6cd5\u5370","Greater Life Flask":"\u826f\u8d28\u751f\u547d\u836f\u5242","Pneumatic Dagger":"\u6c14\u52a8\u5315\u9996","Blessed Orb":"\u795d\u798f\u77f3","Nubuck Gloves":"\u7802\u5f71\u624b\u5957","Summon Chaos Golem":"\u53ec\u5524\u6df7\u6c8c\u9b54\u50cf","Vaal Temple Map":"\u74e6\u5c14\u5bc6\u6bbf","Fingerless Silk Gloves":"\u4e1d\u7ef8\u624b\u5957","Sacrificial Heart Paua Amulet":"\u796d\u7940\u4e4b\u5fc3 \u6d77\u7075\u62a4\u8eab\u7b26","Hollowpoint Dagger":"\u6298\u53e0\u5315\u9996","Skean":"\u53cc\u5203\u5315","Stiletto":"\u9510\u5229\u523a\u5315","Sunken City Map":"\u6c89\u6ca6\u4e4b\u57ce","Altered Distant Memory Siege Map":"\u6539\u53d8\u7684\u9065\u8fdc\u56de\u5fc6 \u56f4\u57ce","Ezomyte Dagger":"\u827e\u5179\u9ea6\u4e4b\u5315","Ambusher":"\u4f0f\u51fb\u523a\u5203","Slaughter Knife":"\u730e\u8005\u4e4b\u5203","Bitterbind Point Titanium Spirit Shield":"\u82e6\u75db\u4e4b\u5904 \u5de8\u4eba\u9b54\u76fe","Empower Support":"\u8d4b\u4e88","Boot Blade":"\u7a83\u8005\u77ed\u5315","Arcanist Gloves":"\u79d8\u672f\u624b\u5957","Poignard":"\u593a\u547d\u523a","Butcher Knife":"\u5c60\u517d\u5229\u5203","Ashcaller Quartz Wand":"\u7070\u70ec\u884c\u8005 \u77f3\u82f1\u6cd5\u6756","Twin Claw":"\u91cd\u5203\u722a","Frost Shield":"\u51b0\u971c\u62a4\u76fe","Berek\'s Respite Two-Stone Ring":"\u8d1d\u96f7\u514b\u7684\u706b\u4e0e\u96f7\u4e4b\u4e50 \u53cc\u7389\u6212\u6307","Fenumus, First of the Night":"\u6697\u591c\u521d\u5b50 \u8d39\u52aa\u59c6\u65af","Saintly Chainmail":"\u5723\u6d01\u9501\u7532","The Lunaris Priestess":"\u6708\u5f71\u5973\u796d\u53f8","Three Voices":"\u4e09\u9b54\u97f3","Captured Soul of Drek, Apex Hunter":"\u5df2\u6355\u83b7\u7684\u6743\u5229\u730e\u4eba\u5fb7\u91cc\u514b","Sparkling Claw":"\u7729\u76ee\u722a\u5203","Replica Volkuur\'s Guidance Zealot Gloves":"\u798f\u5e93\u5c14\u7684\u624b\u3010\u4eff\u54c1\u3011 \u72c2\u70ed\u8005\u624b\u5957","Timeworn Claw":"\u8fdc\u53e4\u6218\u722a","Alchemy Shard":"\u70b9\u91d1\u77f3\u788e\u7247","Studded Belt":"\u6263\u9489\u8170\u5e26","Terror Claw":"\u6050\u60e7\u4e4b\u7259","Lysah\'s Respite":"\u8389\u838e\u4e4b\u606f","Growing Agony Viridian Jewel":"\u8301\u58ee\u82e6\u75db \u7fe0\u7eff\u73e0\u5b9d","Fragment of the Hydra":"\u8bb0\u5fc6\u788e\u7247","The Dragon\'s Heart":"\u9f99\u4e4b\u5fc3","Sharktooth Claw":"\u9ca8\u989a\u722a","Femurs of the Saints Primordial Staff":"\u5723\u5f92\u80eb\u9aa8 \u53f2\u5178\u957f\u6756","Void Fangs":"\u865a\u7a7a\u4e4b\u7259","The Golden Era":"\u9ec4\u91d1\u7eaa\u5143","Lantador\'s Lost Love":"\u5170\u5854\u6735\u8ff7\u60d8\u4e4b\u7231","Slivers of Providence Serrated Arrow Quiver":"\u767d\u94f6\u6069\u5178 \u952f\u9f7f\u7bad\u888b","Lava Chamber Map (Legacy)":"\u7194\u5ca9\u4e4b\u6bbf(\u9057\u4ea7)","Eye Gouger":"\u523a\u773c\u94a9","Ahn\'s Heritage Colossal Tower Shield":"\u6c49\u6069\u7684\u9057\u4ea7 \u5de8\u578b\u5854\u76fe","Shagreen Tower Shield":"\u7c97\u9769\u5854\u76fe","Storm Prison Carved Wand":"\u7981\u9522\u66b4\u98ce \u7c97\u7eb9\u6cd5\u6756","Throat Stabber":"\u523a\u5589\u5203","Shiversting Bastard Sword":"\u5bd2\u5149\u5251 \u91cd\u5251","Screaming Essence of Dread":"\u5fcc\u60ee\u4e4b\u5486\u54ee\u7cbe\u534e","Bloodbond Bone Armour":"\u8840\u8109\u76f8\u8fde \u9aa8\u5236\u6218\u7532","Bazaar Map (The Awakening)":"\u8fdc\u53e4\u5e02\u96c6(\u89c9\u9192)","Nailed Fist":"\u62f3\u9489","The Sacrifice":"\u727a\u7272","The Lord in Black":"\u6697\u9ed1\u4e4b\u738b","Xirgil\'s Crank Coiled Staff":"\u820d\u5409\u7684\u624b\u67c4 \u5f3a\u5316\u957f\u6756","Yriel\'s Key":"\u4e9a\u745e\u5c14\u4e4b\u94a5[\u53f3\u4e0b]","Static Electricity Viridian Jewel":"\u9759\u7535\u4e4b\u6e90 \u7fe0\u7eff\u73e0\u5b9d","Grand Mana Flask":"\u4f18\u8d28\u9b54\u529b\u836f\u5242","The Wretched":"\u6b7b\u7075\u9057\u7269","Hyrri\'s Truth Jade Amulet":"\u897f\u91cc\u7684\u771f\u76f8 \u7fe0\u7389\u62a4\u8eab\u7b26","Fragment of the Minotaur":"\u8bb0\u5fc6\u788e\u7247","The Blessing of Moosh":"\u7a46\u5e0c\u4fdd\u4f51","Bisco\'s Collar Gold Amulet":"\u6bd4\u65af\u514b\u7684\u9879\u5708 \u5e1d\u91d1\u62a4\u8eab\u7b26","Rain of Arrows":"\u7bad\u96e8","Essence Burner":"\u7cbe\u534e\u7076\u53f0","Orb of Alchemy":"\u70b9\u91d1\u77f3","Matua Tupuna Tarnished Spirit Shield":"\u8fdc\u7956\u4e4b\u9885 \u73af\u5f62\u9b54\u76fe","Exceptional Black Scythe Artifact":"\u5353\u8d8a\u9ed1\u9570\u795e\u5668","Windripper Imperial Bow":"\u88c2\u98ce \u5e1d\u56fd\u4e4b\u5f13","Vulconus Demon Dagger":"\u706b\u795e\u953b\u53f0 \u9b54\u7075\u77ed\u5315","Vessel of Vinktar Topaz Flask":"\u7ef4\u514b\u5854\u8840\u5668 \u9ec4\u7389\u836f\u5242","Small Hybrid Flask":"\u5c0f\u578b\u590d\u5408\u836f\u5242","Voltaxic Rift Spine Bow":"\u9b54\u66b4\u4e4b\u75d5 \u810a\u5f13","Dream Fragments Sapphire Ring":"\u68a6\u8bed\u4e4b\u75d5 \u84dd\u7389\u6212\u6307","Voidhome Dread Maul":"\u901d\u7a7a\u4e4b\u9524 \u5a01\u6743\u5de8\u9524","Dendrobate Sentinel Jacket":"\u7bad\u4e3d\u6bd2\u86d9 \u54e8\u5175\u4e4b\u8863","Wailing Essence of Rage":"\u8086\u8650\u4e4b\u54c0\u568e\u7cbe\u534e","Regal Orb":"\u5bcc\u8c6a\u77f3","Cameria\'s Cut":"\u5361\u6885\u8389\u4e9a\u7684\u56de\u62a5","Immortal Call":"\u4e0d\u673d\u6012\u568e","Golden Buckler":"\u91d1\u9633\u8f7b\u76fe","Strand Map (Atlas of Worlds)":"\u81f4\u547d\u5ca9\u6ee9(\u5f02\u754c\u56fe\u9274)","Silken Wrap":"\u4e1d\u7ed2\u80cc\u5fc3","The Insatiable":"\u6c38\u4e0d\u6ee1\u8db3","Infernal Mantle Widowsilk Robe":"\u70bc\u72f1\u4e4b\u5fc3 \u6bd2\u86db\u4e1d\u4e4b\u888d","Kaom\'s Heart War Plate":"\u5188\u59c6\u7684\u58ee\u5fd7 \u6218\u4e89\u4e4b\u94e0","Aetherwind Gloves":"\u7075\u98ce\u624b\u5957","Architect\'s Hand Strapped Mitts":"\u5efa\u7b51\u5e08\u4e4b\u624b \u6263\u73af\u62a4\u624b","Maloney\'s Mechanism Ornate Quiver":"\u9a6c\u6d1b\u5c3c\u7684\u6280\u5de7 \u534e\u7f8e\u7bad\u888b","Varunastra Vaal Blade":"\u9ed1\u9ca8 \u74e6\u5c14\u519b\u5203","Iron Hat":"\u7c97\u94c1\u76d4","Lithe Blade":"\u7ec6\u5203","United in Dream Cutlass":"\u5408\u6d41\u68a6\u5bd0 \u519b\u7528\u957f\u5203","Varnished Coat":"\u6620\u5f69\u5916\u5957","The Wolven King\'s Bite":"\u72fc\u738b\u4e4b\u5f26","Blood Rage":"\u9c9c\u8840\u72c2\u6012","Touch of Anguish Imperial Claw":"\u75db\u82e6\u4e4b\u89e6 \u5e1d\u56fd\u6218\u722a","Zodiac Leather":"\u661f\u8fb0\u76ae\u7532","Thunder of the Dawn Corroded Blade":"\u66d9\u96f7 \u9508\u6591\u5de8\u5251","Eternal Sword":"\u6c38\u6052\u4e4b\u5251","Might in All Forms Crimson Jewel":"\u5353\u7edd\u4e4b\u529b \u8d64\u7ea2\u73e0\u5b9d","The Yielding Mortality Imperial Staff":"\u6b7b\u4ea1\u5c48\u670d \u5e1d\u56fd\u957f\u6756","Temple Map (Legacy)":"\u593a\u9b42\u4e4b\u6bbf(\u9057\u4ea7)","The Body":"\u8840\u8089\u4e4b\u8eaf","Terror of the Infinite Drifts":"\u6f02\u6cca\u754f\u7075","Shaped Coves Map (Atlas of Worlds)":"\u75be\u98ce\u5ce1\u6e7e(\u5851)(\u5f02\u754c\u56fe\u9274)","Shaped Racecourse Map (Atlas of Worlds)":"\u5de8\u578b\u7ade\u6280\u573a(\u5851)(\u5f02\u754c\u56fe\u9274)","The Stormwall Royal Staff":"\u98ce\u66b4\u575a\u58c1 \u7687\u5bb6\u957f\u6756","Cemetery Map (Atlas of Worlds)":"\u6668\u66e6\u5893\u5730(\u5f02\u754c\u56fe\u9274)","Hill Devil":"\u5c71\u5cad\u6076\u9b54","Soldier Gloves":"\u6218\u58eb\u624b\u5957","Deerskin Boots":"\u9e7f\u76ae\u77ed\u9774","Buried Treasure":"\u57cb\u846c\u7684\u5b9d\u85cf","The Covenant Spidersilk Robe":"\u8840\u8a93 \u86db\u4e1d\u4e4b\u888d","Sacred Hybrid Flask":"\u5723\u8bed\u590d\u5408\u836f\u5242","Winds of Change Ancient Gauntlets":"\u5347\u534e\u4e4b\u98ce \u8fdc\u53e4\u62a4\u624b","The Screaming Eagle Jade Hatchet":"\u9e70\u5578 \u788e\u7389\u65a7","Wealth and Power":"\u94b1\u4e0e\u6743","Grave Knowledge":"\u4ea1\u7075\u667a\u6167","Eber\'s Unification Hubris Circlet":"\u5e0c\u4f2f\u7684\u9738\u6743 \u7075\u4e3b\u4e4b\u73af","Wurm\'s Molt Leather Belt":"\u9f99\u8715\u4e4b\u5e26 \u76ae\u9769\u8170\u5e26","Berserk":"\u76db\u6012","The Inoculated":"\u79fb\u82b1\u63a5\u6728","The Rippling Thoughts Legion Sword":"\u79d8\u6cd5\u541b\u4e34 \u519b\u56e2\u957f\u5251","The Cartographer":"\u5236\u56fe\u5e08","The Iron Mass Gladius":"\u94a2\u94c1\u8d28\u91cf \u6597\u58eb\u957f\u5251","Hydrosphere":"\u6c34\u6e90\u6cd5\u7403","The Hidden Blade Ambusher":"\u9690\u533f\u4e4b\u5203 \u4f0f\u51fb\u523a\u5203","The Harvest Jasper Chopper":"\u6536\u5272\u8005 \u7075\u7389\u5de8\u65a7","Fragile Bloom Crimson Jewel":"\u8106\u5f31\u7684\u7e41\u534e \u8d64\u7ea2\u73e0\u5b9d","The Endless Darkness":"\u65e0\u5c3d\u9ed1\u6697","Greedtrap Velvet Slippers":"\u8d2a\u6b32\u4e4b\u8bf1 \u4e1d\u7ed2\u4fbf\u978b","The Gryphon Jade Hatchet":"\u72ee\u9e6b \u788e\u7389\u65a7","Reach of the Council Spine Bow":"\u8bae\u4f1a\u4e4b\u89e6 \u810a\u5f13","Malachai\'s Vision Praetor Crown":"\u739b\u62c9\u51ef\u7684\u8fdc\u89c1 \u9886\u4e3b\u6218\u51a0","Searing Bond":"\u707c\u70ed\u8fde\u63a5","Medium Life Flask":"\u4e2d\u578b\u751f\u547d\u836f\u5242","Mesh Gloves":"\u7f51\u773c\u624b\u5957","Creeping Frost":"\u7535\u5149\u5bd2\u971c","The Enmity Divine Imperial Staff":"\u5723\u6076\u4e4b\u55bb \u5e1d\u56fd\u957f\u6756","The Dark Seer Shadow Sceptre":"\u9eef\u9ed1\u8d24\u8005 \u5f71\u8bed\u77ed\u6756","Misery in Darkness":"\u9ed1\u6697\u4e4b\u82e6","Reaver Axe":"\u6b8b\u66b4\u4e4b\u65a7","Vial of the Ritual":"\u4eea\u796d\u9b54\u74f6","Ramparts Map":"\u5947\u8ff9\u4e4b\u5899","The Cauteriser Woodsplitter":"\u70e7\u707c\u5668 \u67f4\u65a7","Clasped Boots":"\u73af\u5e26\u957f\u9774","The Blood Reaper Headsman Axe":"\u7aed\u8840\u4e4b\u9570 \u884c\u5211\u5de8\u65a7","The Black Cane Royal Sceptre":"\u6f06\u9ed1\u85e4\u6756 \u7687\u5bb6\u77ed\u6756","Ice Trap":"\u51b0\u51bb\u9677\u9631","Taryn\'s Shiver Maelstr\xf6m Staff":"\u5854\u6797\u7684\u98a4\u6817\u4e4b\u8bed \u98ce\u66b4\u957f\u6756","Taproot Ambusher":"\u7825\u783a\u6df1\u6839 \u4f0f\u51fb\u523a\u5203","Fortify Support":"\u62a4\u4f53","Bazaar Map (Atlas of Worlds)":"\u8fdc\u53e4\u5e02\u96c6(\u5f02\u754c\u56fe\u9274)","Spitting Parasite":"\u55b7\u5410\u5bc4\u751f\u866b","Artillery Ballista":"\u706b\u529b\u5f29\u70ae","Olof, Son of the Headsman":"\u730e\u5934\u8005\u6b27\u62c9\u592b","Blackgleam Cured Quiver":"\u4f4d\u7f6e\u6570\u636e \u706b\u7130\u7bad\u888b","Promenade Map":"\u6708\u8272\u56de\u5eca","Ruthless Support":"\u65e0\u60c5","Storm Cloud Long Bow":"\u66b4\u96e8\u4e4b\u5f26 \u957f\u5f13","Spine of the First Claimant Iron Sceptre":"\u5148\u9a71\u4e4b\u810a \u51b7\u94c1\u77ed\u6756","Lightning Warp":"\u95ea\u7535\u4f20\u9001","The Red Trail Titan Greaves":"\u8d64\u7ea2\u8e2a\u8ff9 \u5de8\u4eba\u80eb\u7532","Volcano Map":"\u706b\u5c71\u708e\u57df","Chayula\'s Flawless Breachstone":"\u590f\u4e4c\u62c9\u7684\u65e0\u6687\u88c2\u9699\u77f3","Corrupting Fever":"\u8150\u707c\u70ed\u761f","Earthbreaker Support":"\u88c2\u5730\u4e4b\u7075\uff08\u8f85\uff09","Turbulent Catalyst":"\u731b\u70c8\u50ac\u5316\u5242","Song of the Sirens Fishing Rod":"\u6d77\u5996\u9b45\u66f2 \u9c7c\u7aff","Slivertongue Harbinger Bow":"\u767d\u94f6\u4e4b\u820c \u5148\u9a71\u8005\u4e4b\u5f13","Sign of the Sin Eater Tyrant\'s Sekhem":"\u7f6a\u6076\u541e\u566c\u8005\u7684\u53f9\u606f \u66b4\u541b\u4e4b\u7edf","Whispering Essence of Greed":"\u8d2a\u5a6a\u4e4b\u4f4e\u8bed\u7cbe\u534e","Visored Sallet":"\u6e05\u89c6\u62a4\u76d4","Gut Ripper":"\u88c2\u810f\u94a9","Winterheart Gold Amulet":"\u51ac\u4e4b\u5fc3 \u5e1d\u91d1\u62a4\u8eab\u7b26","Forbidden Power":"\u7981\u5fcc\u4e4b\u529b","Shimmeron Tornado Wand":"\u4f4e\u4f0f\u6697\u5149 \u72c2\u98ce\u6cd5\u6756","Shade of Solaris Sage Wand":"\u65e5\u8000\u4e4b\u5f71 \u8d24\u8005\u6cd5\u6756","Severed in Sleep Cutlass":"\u79bb\u5f02\u68a6\u5bd0 \u519b\u7528\u957f\u5203","Scaeva Gladius":"\u98df\u869c \u6597\u58eb\u957f\u5251","Stealth Gloves":"\u533f\u8e2a\u624b\u5957","The Surveyor":"\u52d8\u67e5\u5458","Nightblade Support":"\u591c\u5203\uff08\u8f85\uff09","Arid Lake Map (The Awakening)":"\u8352\u829c\u6e56\u57df(\u89c9\u9192)","Golden Grotesque":"\u91d1\u8272\u5c0f\u4e11","Aegis Aurora Champion Kite Shield":"\u5e7b\u8292\u5723\u76fe \u6597\u58eb\u9e22\u76fe","Kingmaker Despot Axe":"\u738b\u8005\u4e4b\u5203 \u9738\u4e3b\u5de8\u65a7","Bated Breath Chain Belt":"\u51dd\u606f \u6263\u94fe\u8170\u5e26","The Wrath":"\u6028\u5fff","Atziri\'s Disfavour Vaal Axe":"\u963f\u5179\u91cc\u7684\u5211\u5203 \u74e6\u5c14\u5de8\u65a7","Rock Breaker":"\u7834\u5ca9\u9524","Chronicle of Atzoatl":"\u963f\u4f50\u4e9a\u7279\u7f16\u5e74\u53f2","Deicide Mask":"\u5f11\u795e\u4e4b\u9762","Black Zenith Fingerless Silk Gloves":"\u6f06\u9ed1\u5929\u9876 \u4e1d\u7ef8\u624b\u5957","Replica Tempestuous Steel War Sword":"\u66b4\u98ce\u4e4b\u94a2\u3010\u4eff\u54c1\u3011 \u5f81\u6218\u4e4b\u5251","Replica Soul Taker Siege Axe":"\u5f00\u819b\u65a7\u3010\u4eff\u54c1\u3011 \u7834\u57ce\u65a7","The Highwayman Gold Ring":"\u7eff\u6797\u8c6a\u4fa0 \u91d1\u5149\u6212\u6307","Replica Quill Rain Short Bow":"\u9aa4\u96e8\u4e4b\u5f26\u3010\u4eff\u54c1\u3011 \u77ed\u5f13","Replica Midnight Bargain Engraved Wand":"\u51a5\u7ea6\u3010\u4eff\u54c1\u3011 \u7b26\u6587\u6cd5\u6756","Replica Last Resort Nailed Fist":"\u7ec8\u606f\u3010\u4eff\u54c1\u3011 \u62f3\u9489","Malevolence":"\u6028\u6bd2\u5149\u73af","The Valley of Steel Boxes":"\u91d1\u5c5e\u76d2\u5b50","Astrolabe Amulet":"\u661f\u76d8\u9879\u94fe","Replica Iron Commander Death Bow":"\u94a2\u94c1\u6307\u6325\u3010\u4eff\u54c1\u3011 \u6b7b\u4ea1\u4e4b\u5f13","Alpine Devil":"\u5c16\u89d2\u7f8a\u4eba","The Gull Raven Mask":"\u9e25\u5599 \u7978\u9e26\u4e4b\u9762","Devout Chainmail":"\u8654\u8bda\u94fe\u7532","Armoursmith\'s Delirium Orb":"\u94f8\u7532\u5e08\u7684\u96fe\u9b47\u5b9d\u73e0","Driftwood Wand":"\u673d\u6728\u6cd5\u6756","Shadow of the Vaal":"\u74e6\u5c14\u4e4b\u5f71","Immolate Support":"\u732e\u796d","Cospri\'s Will Assassin\'s Garb":"\u5361\u65af\u666e\u91cc\u610f\u5fd7 \u6697\u5f71\u4e4b\u88c5","The Pack Leader":"\u7fa4\u805a\u4e4b\u9996","Rusted Legion Scarab":"\u9508\u8680\u7684\u519b\u56e2\u5723\u7532\u866b","Golden Bracers":"\u9ec4\u91d1\u81c2\u7532","Replica Frostbreath Ornate Mace":"\u971c\u606f\u3010\u4eff\u54c1\u3011 \u534e\u4e3d\u4e4b\u9524","Shaped Vaal Pyramid Map (Atlas of Worlds)":"\u74e6\u5c14\u91d1\u5b57\u5854(\u5851)(\u5f02\u754c\u56fe\u9274)","Aboriginal Chieftain":"\u5143\u7075\u914b\u957f","Unrequited Love":"\u4e00\u53a2\u60c5\u613f","Replica Cold Iron Point Ezomyte Dagger":"\u5bd2\u94c1\u5203\u3010\u4eff\u54c1\u3011 \u827e\u5179\u9ea6\u4e4b\u5315","Runic Sabatons":"\u7b26\u6587\u6218\u9774","Brute Force Solution Cobalt Jewel":"\u86ee\u529b\u51b2\u649e \u94b4\u84dd\u73e0\u5b9d","Grand Life Flask":"\u4f18\u8d28\u751f\u547d\u836f\u5242","Wyrmscale Gauntlets":"\u876e\u9cde\u624b\u5957","Ahn\'s Contempt Praetor Crown":"\u6c49\u6069\u7684\u8511\u89c6 \u9886\u4e3b\u6218\u51a0","Replica Victario\'s Charity Laminated Kite Shield":"\u7ef4\u591a\u91cc\u5965\u7684\u8d21\u732e\u3010\u4eff\u54c1\u3011 \u5408\u677f\u9e22\u76fe","Full Scale Armour":"\u8fde\u8eab\u9cde\u7532","The Ruthless Ceinture":"\u6b8b\u9177\u4e4b\u73af","Compound Bow":"\u590d\u5408\u5f13","Relentless Fury Decorative Axe":"\u65e0\u5c3d\u6124\u6012 \u5bcc\u8d35\u4e4b\u65a7","Light and Truth":"\u5149\u4e0e\u771f\u5b9e","Legion Gloves":"\u519b\u56e2\u624b\u5957","Barrage Support":"\u5f39\u5e55\uff08\u8f85\uff09","Waterways Map":"\u5371\u673a\u6c34\u9053","Abyssal Incubator":"\u6df1\u6e0a\u5b55\u80b2\u77f3","Potent Chaotic Resonator":"\u5f3a\u80fd\u6df7\u4e71\u5171\u632f\u5668","Izaro\'s Turmoil Crimson Jewel":"\u4f0a\u6cfd\u6d1b\u4e4b\u4e71 \u8d64\u7ea2\u73e0\u5b9d","Boundless Realms":"\u65e0\u5c3d\u4e4b\u57df","Rusted Divination Scarab":"\u9508\u8680\u7684\u795e\u6069\u5723\u7532\u866b","The Bargain":"\u4ea4\u6613","Warped Timepiece Turquoise Amulet":"\u65f6\u7a7a\u626d\u66f2 \u9752\u7389\u62a4\u8eab\u7b26","Razor of the Seventh Sun Midnight Blade":"\u4e03\u65e5\u950b \u591c\u8bed\u957f\u5251","Harmony of Souls":"\u9b42\u4e4b\u548c\u8c10","Magmatic Tower Shield":"\u7194\u5ca9\u5854\u76fe","Duality":"\u4e8c\u5200\u6d41","Stranglegasp Onyx Amulet":"\u7ede\u6740\u4e4b\u606f \u9ed1\u66dc\u62a4\u8eab\u7b26","Vanity":"\u865a\u8363","Deafening Essence of Sorrow":"\u54c0\u60dc\u4e4b\u7834\u7a7a\u7cbe\u534e","Burnished Spiked Shield":"\u51b7\u8292\u523a\u76fe","The Primal One":"\u5de8\u733f\u539f\u7956","Doedre\'s Elixir Greater Mana Flask":"\u5fb7\u745e\u7684\u5999\u836f \u826f\u8d28\u9b54\u529b\u836f\u5242","Pillar of the Caged God Iron Staff":"\u56da\u795e\u6775 \u94c1\u953b\u957f\u6756","Craicic Chimeral":"\u6df1\u6d77\u5947\u7f8e\u62c9","Golden Slave Idol":"\u91d1\u8272\u5974\u96b6\u5851\u50cf","Arachnid Nest Map (The Awakening)":"\u5f02\u86db\u5de2\u7a74(\u89c9\u9192)","Ice Shot":"\u51b0\u971c\u5c04\u51fb","Oro\'s Sacrifice Infernal Sword":"\u6b27\u7f57\u7684\u8d21\u54c1 \u72f1\u708e\u91cd\u5251","Iron Will Support":"\u94a2\u94c1\u610f\u5fd7","Desecrate":"\u4eb5\u6e0e","Obliteration Demon\'s Horn":"\u62b9\u706d \u9b54\u89d2\u6cd5\u6756","Charged Mines Support":"\u5145\u80fd\u5730\u96f7\uff08\u8f85\uff09","Blacksmith\'s Delirium Orb":"\u94c1\u5320\u7684\u96fe\u9b47\u5b9d\u73e0","Hallowed Ground Unset Ring":"\u9b54\u8bc5\u4e4b\u57df \u6f5c\u80fd\u4e4b\u6212","Forbidden Shako Great Crown":"\u7981\u65ad\u7684\u519b\u5e3d \u5f3a\u5316\u5de8\u76d4","Null\'s Inclination Ranger Bow":"\u865a\u65e0\u4e4b\u503e \u6e38\u4fa0\u5f13","Twig Spirit Shield":"\u6b8b\u679d\u9b54\u76fe","Twisted Distant Memory Park Map":"\u626d\u66f2\u7684\u9065\u8fdc\u56de\u5fc6 \u5bc2\u591c\u6797\u82d1","The Gemcutter":"\u73e0\u5b9d\u5320","Hand of the Fervent Zealot Gloves":"\u70ed\u8bda\u4e4b\u624b \u72c2\u70ed\u8005\u624b\u5957","The Fox in the Brambles":"\u8346\u6797\u4e4b\u72d0","Hunter\'s Reward":"\u730e\u4eba\u7684\u5956\u8d4f","Ashen Wood Map":"\u65f1\u6728\u6797\u5730","Assailum Sinner Tricorne":"\u5343\u91cc\u72d9\u654c \u7f6a\u8005\u4e4b\u5e3d","Apep\'s Rage Opal Wand":"\u827e\u666e\u4e4b\u6012 \u7075\u77f3\u6cd5\u6756","Geomancer\'s Incubator":"\u5360\u5730\u8005\u7684\u5b55\u80b2\u77f3","Admiral Proclar\'s Pipe":"\u6ce2\u514b\u83b1\u4e0a\u5c06\u7684\u70df\u6597","Agnerod South Imperial Staff":"\u5357\u65b9\u96f7\u9706\u5723\u6756 \u5e1d\u56fd\u957f\u6756","The Forsaken":"\u9057\u5f03\u4e4b\u7269","Goblinedge Ambusher":"\u5730\u7cbe\u8fb9\u7f18 \u4f0f\u51fb\u523a\u5203","Shaped Academy Map (Atlas of Worlds)":"\u6076\u7075\u5b66\u9662(\u5851)(\u5f02\u754c\u56fe\u9274)","Heatshiver Leather Hood":"\u5bd2\u7130 \u9769\u515c","Cloak of Tawm\'r Isley Savant\'s Robe":"\u5854\u6e29\u7684\u62ab\u98ce \u667a\u8005\u4e4b\u888d","Prosperity":"\u5174\u76db","Mightflay Flaying Knife":"\u529b\u91cf\u730e\u5203 \u6b8b\u4f53\u5229\u5203","Marohi Erqi Karui Maul":"\u5c14\u5947\u7684\u5de8\u7075\u4e4b\u9524 \u5361\u9c81\u91cd\u9524","Mark of the Doubting Knight Platinum Kris":"\u8ff7\u832b\u5e7b\u7b26 \u767d\u91d1\u6ce2\u5203","Colossal Tower Shield":"\u5de8\u578b\u5854\u76fe","Soul Catcher Quartz Flask":"\u6355\u9b42\u8005 \u77f3\u82f1\u836f\u5242","Crusader Gloves":"\u5723\u6218\u624b\u5957","Sambodhi\'s Vow":"\u8428\u535a\u8f9b\u7684\u8a93\u8a00","Law of the Wilds Hellion\'s Paw":"\u8352\u91ce\u4e4b\u5f8b \u9b54\u722a\u5203","Rima, Deep Temptress":"\u6df1\u6e0a\u9b45\u5f71\u8389\u739b","Lakishu\'s Blade Elegant Sword":"\u62c9\u5947\u8bb8\u4e4b\u5203 \u8d35\u65cf\u4e4b\u5251","Callous Mask Piece":"\u65e0\u60c5\u4e4b\u9762","Kongor\'s Undying Rage Terror Maul":"\u5eb7\u6208\u7684\u6218\u708e \u60e7\u7075\u91cd\u9524","Kitava\'s Feast Void Axe":"\u5947\u5854\u5f17\u4e4b\u76db\u5bb4 \u865a\u5f71\u5de8\u65a7","Jorrhast\'s Blacksteel Steelhead":"\u4e54\u8d6b\u9ed1\u94a2 \u6c89\u94a2\u91cd\u9524","The Nomad Studded Belt":"\u6e38\u7267\u4e4b\u73af \u6263\u9489\u8170\u5e26","Spider Lair Map (Legacy)":"\u5de8\u86db\u5de2\u7a74(\u9057\u4ea7)","Engineer\'s Shard":"\u5236\u7bb1\u5ca9\u788e\u7247","Winged Legion Scarab":"\u6709\u7ffc\u7684\u519b\u56e2\u5723\u7532\u866b","Powerlessness Cobalt Jewel":"\u65e0\u529b \u94b4\u84dd\u73e0\u5b9d","Cinderswallow Urn Silver Flask":"\u7070\u70ec\u4e4b\u74ee \u771f\u94f6\u836f\u5242","Scale Doublet":"\u5408\u8eab\u9cde\u7532","Darkwood Sceptre":"\u4e4c\u6728\u77ed\u6756","Blood Raiment":"\u8840\u8272\u4e4b\u8863","Thicket Map (Atlas of Worlds)":"\u60ca\u60e7\u6811\u4e1b(\u5f02\u754c\u56fe\u9274)","The Sigil":"\u9b54\u7b26","Humility":"\u8c26\u900a","Splendid Round Shield":"\u5149\u8f89\u5706\u76fe","Lioneye\'s Fall Viridian Jewel":"\u72ee\u773c\u7684\u9668\u843d \u7fe0\u7eff\u73e0\u5b9d","Efficacy Support":"\u6548\u80fd","Ichimonji Corsair Sword":"\u4e00\u6587\u5b57 \u6d77\u8d3c\u957f\u5200","Spiked Round Shield":"\u5c16\u523a\u5706\u76fe","Mitts":"\u9732\u6307\u624b\u5957","Hubris":"\u72c2\u5984","Slower Projectiles Support":"\u6295\u5c04\u7269\u51cf\u901f","Coves Map":"\u75be\u98ce\u5ce1\u6e7e","The Puzzle":"\u8c1c\u56e2","Hezmana\'s Bloodlust Vaal Axe":"\u55dc\u8840\u9ed1\u5179\u739b\u5a1c \u74e6\u5c14\u5de8\u65a7","Chainmail Doublet":"\u62a4\u4f53\u9501\u7532","Heartbreaker Royal Skean":"\u88c2\u5fc3\u5203 \u7687\u5bb6\u77ed\u5315","Hand of Thought and Motion Blinder":"\u601d\u52a8\u4e4b\u624b \u88ad\u773c\u94a9","The Blazing Fire":"\u707c\u70ed\u4e4b\u706b","Hypnotic Eye Jewel":"\u5b89\u7761\u4e4b\u51dd\u73e0\u5b9d","Goredrill Skinning Knife":"\u8840\u51ff \u5265\u76ae\u5200","The Lord of Celebration":"\u6b22\u5e86\u9886\u4e3b","Karui Charge Jade Amulet":"\u5361\u9c81\u5145\u80fd \u7fe0\u7389\u62a4\u8eab\u7b26","Wailing Essence of Woe":"\u60b2\u75db\u4e4b\u54c0\u568e\u7cbe\u534e","Gold Flask":"\u9ec4\u91d1\u836f\u5242","Survival Secrets Cobalt Jewel":"\u751f\u5b58\u79d8\u6280 \u94b4\u84dd\u73e0\u5b9d","Third Piece of Focus Archon Kite Shield Piece":"\u4e0d\u5c48\u5148\u9a71\u8005III \u5a01\u80fd\u9e22\u76fe","Geofri\'s Devotion Brass Maul":"\u5409\u5c14\u83f2\u7684\u5949\u732e\u4e4b\u9524 \u94dc\u5f71\u5de8\u9524","Angler\'s Plait Unset Ring":"\u6e14\u592b\u4e4b\u8fab \u6f5c\u80fd\u4e4b\u6212","Frostbreath Ornate Mace":"\u971c\u606f \u534e\u4e3d\u4e4b\u9524","The Fulcrum Ezomyte Staff":"\u652f\u70b9 \u827e\u5179\u9ea6\u957f\u6756","Fragment of Eternity Glass Shank":"\u4e98\u53e4\u4e4b\u7075 \u73bb\u7483\u5229\u7247","Fidelitas\' Spike Jagged Foil":"\u8d39\u5fb7\u5229\u5854\u65af\u4e4b\u950b \u952f\u72b6\u8584\u5203","Soulwrest Ezomyte Staff":"\u626d\u9b42\u8005 \u827e\u5179\u9ea6\u957f\u6756","Voll\'s Vision Praetor Crown":"\u798f\u5c14\u7684\u8fdc\u89c1 \u9886\u4e3b\u6218\u51a0","Vaal Cyclone":"\u74e6\u5c14\uff1a\u65cb\u98ce\u65a9","Voidbringer Conjurer Gloves":"\u865a\u7a7a\u4e4b\u529b \u5492\u8005\u624b\u5957","Awakened Controlled Destruction Support":"\u7cbe\u51c6\u7834\u574f\uff08\u5f3a\u8f85\uff09","Dying Anguish":"\u6d88\u901d\u4e4b\u6012","Harlequin Mask":"\u9e70\u5599\u4e4b\u9762","Essentia Sanguis Vaal Claw":"\u7cbe\u534e\u6536\u5272\u5668 \u74e6\u5c14\u6218\u722a","Duskwalk Slippers":"\u8e0f\u66ae\u4e4b\u978b","Essentia Sanguis Eye Gouger":"\u7cbe\u534e\u6536\u5272\u5668 \u523a\u773c\u94a9","Ephemeral Edge Dusk Blade":"\u5f71\u6b92 \u66ae\u8272\u4e4b\u5203","Shaped Flooded Mine Map (Atlas of Worlds)":"\u79ef\u6c34\u77ff\u5751(\u5851)(\u5f02\u754c\u56fe\u9274)","Edge of Madness Etched Greatsword":"\u75af\u72c2\u8fb9\u754c \u672f\u96d5\u5de8\u5251","Hexblast":"\u9b54\u86ca\u7206\u70b8","Apparitions Viridian Jewel":"\u6620\u50cf \u7fe0\u7eff\u73e0\u5b9d","Fenumus\' Weave Carnal Mitts":"\u6697\u591c\u7ec7\u793c \u7981\u793c\u62a4\u624b","Dying Breath Iron Staff":"\u5e7d\u9b42\u4e4b\u606f \u94c1\u953b\u957f\u6756","Desecrated Virtue":"\u88ab\u4eb5\u6e0e\u7684\u7f8e\u5fb7","Hellbringer Conjurer Gloves":"\u865a\u7a7a\u4e4b\u529b","Ringmail Coat":"\u73af\u7532\u5916\u5957","Duskblight Leatherscale Boots":"\u5e7d\u6697\u51cb\u96f6 \u7c97\u9cde\u76ae\u9774","Arena Map (Atlas of Worlds)":"\u7ade\u6280\u573a(\u5f02\u754c\u56fe\u9274)","Duskdawn Maelstr\xf6m Staff":"\u5bb5\u6653 \u98ce\u66b4\u957f\u6756","Realm Ender Iron Staff":"\u9b42\u754c\u7ec8\u7ed3 \u94c1\u953b\u957f\u6756","Spirit Offering":"\u7075\u9b42\u5949\u732e","Natural Hierarchy Rotfeather Talisman":"\u81ea\u7136\u7ec4\u7ec7 \u6b7b\u7fbd\u9b54\u7b26","Primordial Harmony Cobalt Jewel":"\u8d77\u6e90\u548c\u8c10 \u94b4\u84dd\u73e0\u5b9d","Kaltenhalt Painted Buckler":"\u51b0\u971c\u4e4b\u955c \u5f69\u7ed8\u8f7b\u76fe","Dreadbeak Rusted Sword":"\u6050\u60e7\u5229\u5203 \u9508\u5251","Dreadarc Cleaver":"\u6050\u60e7\u4e4b\u9570 \u5207\u5272\u8005","Dominating Blow":"\u9738\u6c14\u4e4b\u51fb","Tainted Armourer\'s Scrap":"\u6c61\u79fd\u62a4\u7532\u7247","Spreading Rot Cobalt Jewel":"\u8150\u70c2\u6269\u6563 \u94b4\u84dd\u73e0\u5b9d","Doomfletch Royal Bow":"\u706d\u4e16 \u7687\u5bb6\u730e\u5f13","Oba\'s Cursed Trove Underground Sea Map":"\u6b27\u9738\u7684\u5492\u6028\u5b9d\u5e93 \u6ee8\u6d77\u5e7d\u7a74","Command of the Pit Riveted Gloves":"\u5de8\u5751\u4e4b\u4ee4 \u4eea\u5f0f\u624b\u5957","Replica Loreweave Elegant Ringmail":"\u6ee1\u6ea2\u4e4b\u7532\u3010\u4eff\u54c1\u3011 \u6743\u8d35\u73af\u7532","Demigod\'s Authority Golden Blade":"\u534a\u795e\u7684\u6743\u5a01 \u91d1\u8272\u4e4b\u5203","Wasteland Map (The Awakening)":"\u8352\u5730(\u89c9\u9192)","Replica Eternity Shroud Blood Raiment":"\u6c38\u6052\u5e7d\u5f71\u3010\u4eff\u54c1\u3011 \u8840\u8272\u4e4b\u8863","The Lion":"\u96c4\u72ee","Death\'s Opus Death Bow":"\u6b7b\u4ea1\u4e4b\u4f5c \u6b7b\u4ea1\u4e4b\u5f13","Battered Helm":"\u6b8b\u7834\u4e4b\u76d4","Cane of Kulemak Serpentine Staff":"\u5e93\u52d2\u9a6c\u514b\u85e4\u6756 \u86c7\u7eb9\u957f\u6756","Mosaic Kite Shield":"\u539a\u88c5\u9e22\u76fe","Chober Chaber Great Mallet":"\u5fe0\u8bda\u4e4b\u9524 \u521a\u731b\u5de8\u9524","Kaom\'s Sign Coral Ring":"\u5188\u59c6\u7684\u8fdc\u89c1 \u73ca\u745a\u6212\u6307","Colossus Crusher":"\u5de8\u5927\u7f8a\u9b54","Full Dragonscale":"\u8fde\u8eab\u9f99\u9cde\u94e0","Cerberus Limb Blood Sceptre":"\u51a5\u72ac\u6b8b\u80a2 \u8840\u8272\u77ed\u6756","The Soul":"\u7075\u9b42","Replica Stampede Assassin\'s Boots":"\u6e83\u8d25\u3010\u4eff\u54c1\u3011 \u6697\u5f71\u4e4b\u9774","Cameria\'s Maul Gavel":"\u5361\u7f8e\u5229\u4e9a\u4e4b\u9524 \u575a\u9524","Callinellus Malleus Auric Mace":"\u575a\u5b9a\u4e4b\u5203 \u5723\u7ea6\u4e4b\u9524","Simple Iron Net":"\u666e\u901a\u7684\u953b\u94c1\u730e\u9b54\u5939","Brightbeak War Hammer":"\u5149\u8000\u4e4b\u9524 \u6218\u9524","Breath of the Council Carnal Sceptre":"\u8bae\u4f1a\u4e4b\u606f \u7981\u793c\u77ed\u6756","Vaal Blade Vortex":"\u74e6\u5c14\uff1a\u98de\u5203\u98ce\u66b4","Demigod\'s Bounty Golden Obi":"\u5347\u534e\u73cd\u5b9d \u91d1\u7fbd\u8170\u5e26","Replica Blood Sacrifice Crimson Jewel":"\u8840\u727a\u3010\u4eff\u54c1\u3011 \u8d64\u7ea2\u73e0\u5b9d","Brain Rattler Meatgrinder":"\u8111\u4e71\u8005 \u622e\u9b42\u91cd\u9524","Bloodseeker Hellion\'s Paw":"\u55dc\u8840\u4e4b\u722a \u9b54\u722a\u5203","Destiny Leather":"\u547d\u8fd0\u76ae\u7532","Multiple Traps Support":"\u591a\u91cd\u9677\u9631","Demigod\'s Stride Golden Caligae":"\u5347\u534e\u4e4b\u9014 \u9ec4\u91d1\u7f20\u978b","Muttering Essence of Torment":"\u6298\u78e8\u4e4b\u5462\u5583\u7cbe\u534e","Luminous Trove":"\u9503\u4eae\u7684\u5b9d\u7bb1","Rotblood Promise Unset Ring":"\u8150\u8840\u7684\u627f\u8bfa \u6f5c\u80fd\u4e4b\u6212","Mutated Ursa":"\u5815\u843d\u5e7c\u722a","Deafening Essence of Fear":"\u6050\u60e7\u4e4b\u7834\u7a7a\u7cbe\u534e","Unchained":"\u7834\u9664\u67b7\u9501","The Arena Champion":"\u7ade\u6280\u573a\u51a0\u519b","Screaming Essence of Wrath":"\u96f7\u9706\u4e4b\u5486\u54ee\u7cbe\u534e","Winged Reliquary Scarab":"\u6709\u7ffc\u7684\u9057\u7269\u5385\u5723\u7532\u866b","Augyre Void Sceptre":"\u5360\u661f \u865a\u5f71\u77ed\u6756","Vial of Fate":"\u547d\u8fd0\u9b54\u74f6","Ashes of the Sun Driftwood Club":"\u70ec\u6775 \u673d\u6728\u4e4b\u68d2","Al Dhih Timeworn Claw":"\u9b23\u72ac\u4e4b\u7259 \u8fdc\u53e4\u6218\u722a","Overwhelming Odds Crimson Jewel":"\u538b\u5012\u6027 \u8d64\u7ea2\u73e0\u5b9d","Tribal Circlet":"\u796d\u4eea\u4e4b\u51a0","Ahn\'s Might Midnight Blade":"\u6c49\u6069\u7684\u529b\u91cf \u591c\u8bed\u957f\u5251","Imperial Buckler":"\u5e1d\u56fd\u8f7b\u76fe","Vaal Mask":"\u74e6\u5c14\u4e4b\u9762","Abberath\'s Horn Goat\'s Horn":"\u827e\u8d1d\u62c9\u65af\u4e4b\u89d2 \u7f8a\u89d2\u6cd5\u6756","Inscribed Ultimatum":"\u8d2a\u5a6a\u6218\u4e66","Haste":"\u8fc5\u6377","Pulverise Support":"\u7c89\u788e\uff08\u8f85\uff09","The Offering":"\u5949\u732e","Gilded Reliquary Scarab":"\u9540\u91d1\u7684\u9057\u7269\u5385\u5723\u7532\u866b","Vaal Ground Slam":"\u74e6\u5c14\uff1a\u88c2\u5730\u4e4b\u51fb","Rebuke of the Vaal Vaal Blade":"\u74e6\u5c14\u6218\u5203 \u74e6\u5c14\u519b\u5203","The Artist":"\u827a\u8005","Zealot Helmet":"\u70ed\u6218\u4e4b\u76d4","Willowgift Jade Amulet":"\u67f3\u6811\u4e4b\u8d50 \u7fe0\u7389\u62a4\u8eab\u7b26","Shaped Phantasmagoria Map (Atlas of Worlds)":"\u9b54\u7075\u5e7b\u72f1(\u5851)(\u5f02\u754c\u56fe\u9274)","Uzaza\'s Mountain Sapphire Ring":"\u4e4c\u624e\u8428\u7684\u9ad8\u5c71 \u84dd\u7389\u6212\u6307","Costly Curio":"\u65e0\u4ef7\u4e4b\u5b9d","Gilded Sulphite Scarab":"\u9540\u91d1\u7684\u4e9a\u786b\u9178\u5723\u7532\u866b","The Hoarder":"\u5b9d\u7bb1","The Archmage\'s Right Hand":"\u5927\u6cd5\u5e08\u7684\u53f3\u624b","Self-Flagellation Viridian Jewel":"\u6b8b\u8650\u4e4b\u6b22\u6109 \u7fe0\u7eff\u73e0\u5b9d","Polished Ambush Scarab":"\u95ea\u8000\u7684\u5f3a\u88ad\u5723\u7532\u866b","Shaped Crystal Ore Map (Atlas of Worlds)":"\u51b0\u51b7\u901a\u9053(\u5851)(\u5f02\u754c\u56fe\u9274)","Gilded Shaper Scarab":"\u9540\u91d1\u7684\u5851\u754c\u8005\u5723\u7532\u866b","Topaz Ring":"\u9ec4\u7389\u6212\u6307","Mutated Maw":"\u7a81\u53d8\u7684\u88c2\u9f7f\u517d","Polished Expedition Scarab":"\u95ea\u8000\u7684\u5148\u7956\u79d8\u85cf\u5723\u7532\u866b","Rusted Expedition Scarab":"\u9508\u8680\u7684\u5148\u7956\u79d8\u85cf\u5723\u7532\u866b","Winged Metamorph Scarab":"\u6709\u7ffc\u7684\u707e\u53d8\u5723\u7532\u866b","Spider Lair Map (The Awakening)":"\u5de8\u86db\u5de2\u7a74(\u89c9\u9192)","Doryani\'s Catalyst Vaal Sceptre":"\u591a\u91cc\u4e9a\u5c3c\u7684\u5e7b\u5316\u4e4b\u6756 \u74e6\u5c14\u77ed\u6756","Bone Circlet":"\u7075\u9aa8\u4e4b\u51a0","Polished Cartography Scarab":"\u95ea\u8000\u7684\u5236\u56fe\u8005\u5723\u7532\u866b","Clutching Talisman":"\u5492\u7b8d\u9b54\u7b26","Triumvirate Authority Unset Ring":"\u4e09\u5934\u5a01\u4eea \u6f5c\u80fd\u4e4b\u6212","Yaomac\'s Accord Vaal Sceptre":"\u592d\u9a6c\u514b\u7684\u534f\u5b9a \u74e6\u5c14\u77ed\u6756","Enfeeble":"\u8870\u5f31","Fenumal Scorpion":"\u6697\u591c\u6bd2\u874e","Grotto Map":"\u5e7d\u6697\u5730\u7a74","Mao Kun Reef Map (Atlas of Worlds)":"\u8d3c\u7a9d \u5371\u673a\u6d77\u7901(\u5f02\u754c\u56fe\u9274)","Gilded Harbinger Scarab":"\u9540\u91d1\u7684\u5148\u9a71\u5723\u7532\u866b","The Ephemeral Bond Lapis Amulet":"\u77ed\u6682\u7f81\u7eca \u6d77\u7389\u62a4\u8eab\u7b26","Awakened Multistrike Support":"\u591a\u91cd\u6253\u51fb\uff08\u5f3a\u8f85\uff09","Alleyways Map":"\u5371\u57ce\u5df7\u5f04","Deadhand Talisman":"\u4ea1\u624b\u9b54\u7b26","Siege Map":"\u56f4\u57ce","Velvet Gloves":"\u4e1d\u7ed2\u624b\u5957","Vaal Impurity of Fire":"\u74e6\u5c14\uff1a\u4e0d\u51c0\u4e4b\u706b","Ahkeli\'s Mountain Ruby Ring":"\u963f\u514b\u83b1\u7684\u9ad8\u5c71 \u7ea2\u7389\u6212\u6307","Arsenal Map (Atlas of Worlds)":"\u53e4\u5175\u5de5\u5382(\u5f02\u754c\u56fe\u9274)","Rusted Blight Scarab":"\u9508\u8680\u7684\u83cc\u6f6e\u5723\u7532\u866b","Eelskin Boots":"\u9cd7\u76ae\u77ed\u9774","Shadows and Dust Clasped Mitts":"\u6c99\u5c18\u4e4b\u5f71 \u73af\u5e26\u62a4\u624b","Craicic Lure":"\u6df1\u6d77\u4e4b\u8bf1","Screaming Essence of Greed":"\u8d2a\u5a6a\u4e4b\u5486\u54ee\u7cbe\u534e","Plaza Map (The Awakening)":"\u5e7f\u573a(\u89c9\u9192)","Circle of Guilt Iron Ring":"\u7f6a\u6076\u4e4b\u73af \u953b\u94c1\u6212\u6307","Fenumal Lure":"\u6697\u591c\u4e4b\u8bf1","Hall of Grandmasters Promenade Map":"\u5143\u5e05\u6bbf\u5802 \u6708\u8272\u56de\u5eca","Farric Lure":"\u5927\u5730\u4e4b\u8bf1","Majestic Plate":"\u5e84\u4e25\u4e4b\u94e0","Intimidating Cry":"\u5a01\u5413\u6218\u543c","Doryani\'s Prototype Saint\'s Hauberk":"\u591a\u91cc\u4e9a\u5c3c\u7684\u8bd5\u4f5c\u7532 \u5723\u8005\u94fe\u7532","Oba\'s Cursed Trove Primordial Blocks Map (Atlas of Worlds)":"\u6b27\u9738\u7684\u5492\u6028\u5b9d\u5e93 \u8fdc\u53e4\u8857\u533a(\u5f02\u754c\u56fe\u9274)","Polished Bestiary Scarab":"\u95ea\u8000\u7684\u730e\u9b54\u5723\u7532\u866b","Beltimber Blade Eternal Sword":"\u82af\u6728\u8170\u5200 \u6c38\u6052\u4e4b\u5251","Gilded Abyss Scarab":"\u9540\u91d1\u7684\u6df1\u6e0a\u5723\u7532\u866b","The Warden\'s Brand Iron Ring":"\u5b88\u536b\u4e4b\u94ed \u953b\u94c1\u6212\u6307","Castle Ruins Map (The Awakening)":"\u5e7d\u5f71\u9057\u5740(\u89c9\u9192)","Writhing Invitation":"\u8815\u52a8\u7684\u9080\u8bf7","Essence Worm Unset Ring":"\u83c1\u534e\u8815\u866b \u6f5c\u80fd\u4e4b\u6212","Precursor\'s Emblem Sapphire Ring":"\u5148\u9a71\u7684\u7eb9\u7ae0 \u84dd\u7389\u6212\u6307","Museum Map (Legacy)":"\u53e4\u535a\u7269\u9986(\u9057\u4ea7)","Precinct Map (Legacy)":"\u82e6\u884c\u4e4b\u57df(\u9057\u4ea7)","The Eternal War":"\u6c38\u6052\u4e4b\u6218","Righteous Fire":"\u6b63\u4e49\u4e4b\u706b","Exotic Coinage":"\u5f02\u57df\u94f8\u5e01","Shaped Arena Map (Atlas of Worlds)":"\u7ade\u6280\u573a(\u5851)(\u5f02\u754c\u56fe\u9274)","Victario\'s Acuity Turquoise Amulet":"\u7ef4\u591a\u91cc\u5965\u7684\u6377\u601d \u9752\u7389\u62a4\u8eab\u7b26","Prismatic Catalyst":"\u68f1\u5149\u50ac\u5316\u5242","Fated End Paua Ring":"\u547d\u4e2d\u6ce8\u5b9a \u6d77\u7075\u6212\u6307","Crystal Belt":"\u6c34\u6676\u8170\u5e26","Shaper\'s Seed Agate Amulet":"\u5851\u754c\u8005\u4e4b\u7c7d \u739b\u7459\u62a4\u8eab\u7b26","Sorcerer Gloves":"\u672f\u58eb\u624b\u5957","Apex Cleaver":"\u950b\u9510\u780d\u5200","Geodesic Ring":"\u5730\u7ebf\u6212\u6307","Orb of Conflict":"\u51b2\u7a81\u77f3","Sacrifice at Midnight":"\u5348\u591c\u7684\u5949\u732e[\u53f3\u4e0a]","The Inventor":"\u53d1\u660e\u5bb6","Fragment of Terror":"\u6050\u6016\u788e\u7247","Shipyard Map (The Awakening)":"\u70bd\u708e\u8239\u575e(\u89c9\u9192)","Al-Hezmin\'s Crest":"\u963f\u5c14\u8d6b\u5179\u654f\u4e4b\u51a0","Rainbowstride Conjurer Boots":"\u8679\u5e55 \u5492\u8005\u957f\u9774","The Admiral Varnished Coat":"\u6d77\u519b\u4e0a\u5c06 \u6620\u5f69\u5916\u5957","Vaal Ice Nova":"\u74e6\u5c14\uff1a\u51b0\u971c\u65b0\u661f","War Banner":"\u6218\u65d7","Orchard Map (Atlas of Worlds)":"\u5bc6\u6797\u679c\u56ed(\u5f02\u754c\u56fe\u9274)","Cerulean Ring":"\u5929\u84dd\u4e4b\u6212","Scholar Boots":"\u5b66\u8005\u957f\u9774","Maelstr\xf6m of Chaos Atoll Map (Legacy)":"\u6df7\u6c8c\u4e4b\u6e0a \u6ee8\u6d77\u5c71\u4e18(\u9057\u4ea7)","Ironscale Boots":"\u94c1\u5f71\u957f\u9774","The Greatest Intentions":"\u81f3\u9ad8\u4e4b\u613f","Vaal Pyramid Map (Atlas of Worlds)":"\u74e6\u5c14\u91d1\u5b57\u5854(\u5f02\u754c\u56fe\u9274)","Greed\'s Embrace Golden Plate":"\u8d2a\u5a6a\u4e4b\u62e5 \u91d1\u8000\u4e4b\u94e0","The Realm":"\u5bb6\u7684\u6377\u5f84","Graveyard Map (The Awakening)":"\u5815\u5f71\u5893\u573a(\u89c9\u9192)","Summon Stone Golem":"\u53ec\u5524\u5de8\u77f3\u9b54\u50cf","Two-Point Arrow Quiver":"\u53cc\u950b\u7bad\u888b","Cogwork Ring":"\u9f7f\u8f6e\u6212\u6307","Mirrored Spiked Shield":"\u94a2\u955c\u523a\u76fe","The Astromancer":"\u661f\u8c61\u5b66\u5bb6","Wilorin Demontamer":"\u6076\u9b54\u9a6f\u670d\u8005\u7ef4\u6d1b\u96f6","Wyrmbone Rapier":"\u9f99\u9aa8\u7ec6\u5251","Vaal Fireball":"\u74e6\u5c14\uff1a\u706b\u7403","Sovereign Spiked Shield":"\u738b\u6743\u523a\u76fe","Increased Duration Support":"\u6301\u7eed\u65f6\u95f4\u5ef6\u957f","Timeless Templar Emblem":"\u6c38\u6052\u5723\u5802\u5370\u8bb0","Bloodlines Leaguestone":"\u8840\u65cf\u8d5b\u5b63\u77f3","Timeless Maraketh Emblem":"\u6c38\u6052\u9a6c\u62c9\u514b\u65af\u5370\u8bb0","Stormblast Mine":"\u96f7\u66b4\u5730\u96f7","Sacred Blossom":"\u795e\u5723\u4e4b\u82b1","Southbound Soldier Gloves":"\u5357\u65b9 \u6218\u58eb\u624b\u5957","Fragment of Purification":"\u6e05\u7b97\u788e\u7247[\u5de6\u4e0a]","Fragment of Constriction":"\u538b\u8feb\u788e\u7247[\u5de6\u4e0b]","Volatile Power":"\u4e0d\u7a33\u5b9a\u7684\u529b\u91cf","Fragment of Eradication":"\u706d\u7edd\u788e\u7247[\u53f3\u4e0b]","Shattering Steel":"\u7834\u788e\u94c1\u5203","Tainted Blacksmith\'s Whetstone":"\u6c61\u79fd\u78e8\u5200\u77f3","Uul-Netol\'s Enriched Breachstone":"\u4e4c\u5c14\u5c3c\u591a\u7684\u5f3a\u5316\u88c2\u9699\u4e4b\u77f3","Hinekora\'s Sight Onyx Amulet":"\u8f9b\u683c\u62c9\u7684\u51dd\u89c6 \u9ed1\u66dc\u62a4\u8eab\u7b26","Seaglass Amulet":"\u6d77\u6676\u62a4\u7b26","Uul-Netol\'s Charged Breachstone":"\u4e4c\u5c14\u5c3c\u591a\u7684\u5145\u80fd\u88c2\u9699\u4e4b\u77f3","Underground Forest":"\u5730\u4e0b\u68ee\u6797","Replica Allelopathy Sorcerer Gloves":"\u76f8\u751f\u76f8\u514b\u3010\u4eff\u54c1\u3011 \u672f\u58eb\u624b\u5957","Forbidden Rite":"\u7981\u65ad\u5178\u4eea","The Garish Power":"\u70ab\u8000\u4e4b\u529b","Blade Flurry":"\u5200\u5203\u4e71\u821e","Esh\'s Pure Breachstone":"\u827e\u8bb8\u7684\u7eaf\u51c0\u88c2\u9699\u4e4b\u77f3","Driftwood Spiked Shield":"\u673d\u6728\u523a\u76fe","Sepia Oil":"\u58a8\u8272\u5723\u6cb9","Solaris Lorica Copper Plate":"\u70c8\u9633\u94e0 \u94dc\u953b\u677f\u7532","Tul\'s Pure Breachstone":"\u6258\u6c83\u7684\u7eaf\u51c0\u88c2\u9699\u4e4b\u77f3","Forking River Map":"\u5206\u53c9\u4e4b\u6cb3","Obsidian Sharpening Stone":"\u9ed1\u66dc\u78e8\u5200\u77f3","Tul\'s Charged Breachstone":"\u6258\u6c83\u7684\u5145\u80fd\u88c2\u9699\u4e4b\u77f3","Chayula\'s Enriched Breachstone":"\u590f\u4e4c\u62c9\u7684\u5f3a\u5316\u88c2\u9699\u4e4b\u77f3","The Last One Standing":"\u5c79\u7acb\u4e0d\u8d25\u4e4b\u4eba","Kaom\'s Heart Glorious Plate":"\u5188\u59c6\u7684\u58ee\u5fd7 \u8363\u8000\u6218\u94e0","Rumi\'s Concoction Granite Flask":"\u9c81\u7c73\u7684\u7075\u836f \u575a\u5ca9\u836f\u5242","Infused Incubator":"\u704c\u6ce8\u5b55\u80b2\u77f3","Nightgrip Runic Gages":"\u6697\u591c\u4e4b\u63e1 \u7b26\u6587\u7b3c\u624b","Oriath\'s Vigil":"\u5965\u745e\u4e9a\u7684\u5821\u5792","Glacier Map (Legacy)":"\u51b0\u5ddd(\u9057\u4ea7)","Peninsula Map (Legacy)":"\u5e72\u6f6e\u6797\u5730(\u9057\u4ea7)","Harbinger\'s Orb":"\u5148\u9a71\u77f3","Flooded Mine Map (Legacy)":"\u79ef\u6c34\u77ff\u5751(\u9057\u4ea7)","Voltaxic Burst":"\u96f7\u7535\u9b54\u7206","Titucus Span Reinforced Tower Shield":"\u63d0\u56fe\u5e93\u65af\u575a\u76fe \u5f3a\u5316\u5854\u76fe","Bone Spirit Shield":"\u9aa8\u5236\u9b54\u76fe","The Void":"\u865a\u7a7a","Primitive Chaotic Resonator":"\u539f\u59cb\u6df7\u4e71\u5171\u632f\u5668","The Cache":"\u5bc6\u85cf","Annulment Shard":"\u5265\u79bb\u77f3\u788e\u7247","Headsman Axe":"\u884c\u5211\u5de8\u65a7","Craiceann\'s Pincers Titan Gauntlets":"\u6df1\u6d77\u9b54\u94b3 \u5de8\u4eba\u62a4\u624b","Gift of Asenath":"\u5b89\u8d5b\u5a1c\u4e1d\u7684\u9988\u8d60","Atoll Map (Legacy)":"\u6ee8\u6d77\u5c71\u4e18(\u9057\u4ea7)","Forbidden Lamp":"\u7981\u65ad\u706f","Gisale, Thought Thief":"\u601d\u60f3\u7a83\u8d3c\u5409\u585e\u5c14","Olroth\'s Charge Runic Sollerets":"\u6b27\u7f57\u4ec0\u7684\u6307\u63a7 \u7b26\u6587\u62a4\u817f","Palace Map (Legacy)":"\u795e\u57df\u4e4b\u6bbf(\u9057\u4ea7)","Legacy of Fury Wyrmscale Boots":"\u6124\u6068\u9057\u4ea7 \u5730\u876e\u9cde\u957f\u9774","Dungeon Map (Legacy)":"\u7981\u9b42\u708e\u72f1(\u9057\u4ea7)","Rolling Flames Cobalt Jewel":"\u6eda\u52a8\u70c8\u7130 \u94b4\u84dd\u73e0\u5b9d","Hunter\'s Exalted Orb":"\u730e\u4eba\u7684\u5d07\u9ad8\u77f3","Increased Critical Damage Support":"\u63d0\u9ad8\u66b4\u51fb\u4f24\u5bb3","Imperial Claw":"\u5e1d\u56fd\u6218\u722a","Orb of Chance":"\u673a\u4f1a\u77f3","Divine Justice":"\u795e\u5723\u7684\u6b63\u4e49","Shaped Courtyard Map (Atlas of Worlds)":"\u5947\u672f\u4e4b\u5ead(\u5851)(\u5f02\u754c\u56fe\u9274)","Cursed Crypt Map (Legacy)":"\u5492\u6028\u9675\u5893(\u9057\u4ea7)","Necropolis Map (Legacy)":"\u9b54\u5f71\u5893\u573a(\u9057\u4ea7)","Silver Oil":"\u767d\u94f6\u5723\u6cb9","Crusader Helmet":"\u5723\u6218\u4e4b\u76d4","The Scales of Justice Chiming Spirit Shield":"\u6b63\u4e49\u4e4b\u9cde \u9b42\u76f8\u9b54\u76fe","Whakawairua Tuahu Strand Map (Legacy)":"\u7981\u95ed\u796d\u575b \u81f4\u547d\u5ca9\u6ee9(\u9057\u4ea7)","Poorjoy\'s Asylum Temple Map (Legacy)":"\u6c89\u6ca6\u4e4b\u95f4 \u593a\u9b42\u4e4b\u6bbf(\u9057\u4ea7)","Great Old One\'s Ward Corrugated Buckler":"\u90aa\u795e\u5e87\u62a4 \u6ce2\u7eb9\u8f7b\u76fe","Olmec\'s Sanctum Bone Crypt Map (Atlas of Worlds)":"\u8fdc\u53e4\u4e4b\u5370 \u53e4\u77f3\u9675\u5893(\u5f02\u754c\u56fe\u9274)","Overgrown Ruin Map (Atlas of Worlds)":"\u957f\u8349\u9057\u8ff9(\u5f02\u754c\u56fe\u9274)","Time-Lost Incubator":"\u5931\u843d\u7684\u5b55\u80b2\u77f3","Waxed Garb":"\u8721\u5c01\u675f\u8863","Vessider, The Unrivaled":"\u86ee\u4eba\u51e1\u745f\u5fb7","Runic Crown":"\u7b26\u6587\u738b\u51a0","Portal":"\u65f6\u7a7a\u4e4b\u95e8","The Long Watch":"\u6f2b\u957f\u5b88\u671b","The Coward\'s Trial Cursed Crypt Map (The Awakening)":"\u61e6\u8005\u7684\u8bd5\u9a8c \u5492\u6028\u9675\u5893(\u89c9\u9192)","Primordial Blocks Map (The Awakening)":"\u8fdc\u53e4\u8857\u533a(\u89c9\u9192)","Sapphire Ring":"\u84dd\u7389\u6212\u6307","Rawhide Tower Shield":"\u751f\u76ae\u5854\u76fe","Arid Lake Map":"\u8352\u829c\u6e56\u57df","Chalice of Horrors War Buckler":"\u6050\u60e7\u4e4b\u7f36 \u6218\u4e89\u8f7b\u76fe","Impossible Crystal":"\u7f55\u89c1\u6c34\u6676","Coves Map (The Awakening)":"\u75be\u98ce\u5ce1\u6e7e(\u89c9\u9192)","Fugitive Boots":"\u9003\u4ea1\u4e4b\u9774","Bog Map (The Awakening)":"\u7634\u6c14\u6ce5\u6cbc(\u89c9\u9192)","Mesa Map (Atlas of Worlds)":"\u8d64\u7ea2\u5c71\u5730(\u5f02\u754c\u56fe\u9274)","Promenade Map (The Awakening)":"\u6708\u8272\u56de\u5eca(\u89c9\u9192)","Nubuck Boots":"\u7802\u5f71\u77ed\u9774","Maelstr\xf6m Staff":"\u98ce\u66b4\u957f\u6756","Loyalty":"\u5fe0\u8bda","Crushing Force Magnifier":"\u7834\u574f\u4e4b\u529b\u653e\u5927\u5668","Leatherscale Boots":"\u7c97\u9cde\u76ae\u9774","Vaal Pyramid Map (The Awakening)":"\u74e6\u5c14\u91d1\u5b57\u5854(\u89c9\u9192)","Demigod\'s Touch Golden Bracers":"\u5347\u534e\u4e4b\u6307 \u9ec4\u91d1\u81c2\u7532","Melee Physical Damage Support":"\u8fd1\u6218\u7269\u7406\u4f24\u5bb3","Engineer\'s Orb":"\u5236\u7bb1\u5ca9","Pit Map (The Awakening)":"\u5de8\u5751(\u89c9\u9192)","Replica Lavianga\'s Spirit Sanctified Mana Flask":"\u62c9\u7ef4\u5b89\u52a0\u4e4b\u6cc9\u3010\u4eff\u54c1\u3011 \u5723\u5316\u9b54\u529b\u836f\u5242","Excavation Map (The Awakening)":"\u6316\u6398\u573a(\u89c9\u9192)","Pewterfang":"\u8ff7\u96fe\u5203\u7259","Winged Harbinger Scarab":"\u6709\u7ffc\u7684\u5148\u9a71\u8005\u5723\u7532\u866b","Mesa Map":"\u8d64\u7ea2\u5c71\u5730","Fungal Hollow Map (The Awakening)":"\u5b62\u5b50\u7a7a\u8c37(\u89c9\u9192)","Precinct Map (The Awakening)":"\u82e6\u884c\u4e4b\u57df(\u89c9\u9192)","Chateau Map (The Awakening)":"\u53e4\u5821(\u89c9\u9192)","Broken Faith Archon Kite Shield":"\u7834\u788e\u4fe1\u5ff5 \u5a01\u80fd\u9e22\u76fe","Cast on Death Support":"\u6b7b\u4ea1\u65f6\u65bd\u653e","Mao Kun Reef Map (The Awakening)":"\u8d3c\u7a9d \u5371\u673a\u6d77\u7901(\u89c9\u9192)","Dunes Map (Legacy)":"\u66ae\u8272\u6c99\u4e18(\u9057\u4ea7)","Deafening Essence of Rage":"\u8086\u8650\u4e4b\u7834\u7a7a\u7cbe\u534e","Belt of the Deceiver Heavy Belt":"\u72e1\u5f92\u675f\u8170 \u91cd\u9769\u8170\u5e26","Hall of Grandmasters Promenade Map (The Awakening)":"\u5143\u5e05\u6bbf\u5802 \u6708\u8272\u56de\u5eca(\u89c9\u9192)","Death and Taxes Necropolis Map (The Awakening)":"\u4ea1\u8005\u4e4b\u8d22 \u9b54\u5f71\u5893\u573a(\u89c9\u9192)","Raihara, Tukohama\'s Loyal":"\u56fe\u514b\u54c8\u739b\u7684\u9e70\u72ac\u83b1\u54c8\u62c9","Point Blank Support":"\u96f6\u70b9\u5c04\u51fb","Shaped Wharf Map (Atlas of Worlds)":"\u6bd2\u7259\u6d77\u6e2f(\u5851)(\u5f02\u754c\u56fe\u9274)","Yew Spirit Shield":"\u7d2b\u886b\u9b54\u76fe","Buckskin Tower Shield":"\u9e7f\u76ae\u5854\u76fe","Steelpoint the Avenger":"\u590d\u4ec7\u8005\u94a2\u950b","Venopuncture Iron Ring":"\u9759\u8109\u7a7f\u523a \u953b\u94c1\u6212\u6307","The Adventuring Spirit":"\u5192\u9669\u7cbe\u795e","Wildwrap Strapped Leather":"\u8352\u91ce\u4e4b\u7ed5 \u6263\u73af\u76ae\u7532","Assassin\'s Mitts":"\u6697\u5f71\u62a4\u624b","Underground Sea Map (Atlas of Worlds)":"\u6ee8\u6d77\u5e7d\u7a74(\u5f02\u754c\u56fe\u9274)","Cloth Belt Piece":"\u9970\u5e03\u8170\u5e26","Shaped Underground River Map (Atlas of Worlds)":"\u5730\u5e95\u4e4b\u6cb3(\u5851)(\u5f02\u754c\u56fe\u9274)","Shaped Thicket Map (Atlas of Worlds)":"\u60ca\u60e7\u6811\u4e1b(\u5851)(\u5f02\u754c\u56fe\u9274)","Engraved Hatchet":"\u96d5\u6587\u6218\u65a7","Shaped Gardens Map (Atlas of Worlds)":"\u82b1\u56ed\u8ff7\u5bab(\u5851)(\u5f02\u754c\u56fe\u9274)","Mysterious Incubator":"\u795e\u79d8\u5b55\u80b2\u77f3","Voll\'s Devotion Agate Amulet":"\u798f\u5c14\u7684\u5fe0\u8bda\u4e4b\u7b26 \u739b\u7459\u62a4\u8eab\u7b26","Oiled Vest":"\u9632\u6c34\u80cc\u5fc3","Rigwald\'s Crest Two-Stone Ring":"\u745e\u4f5b\u4e4b\u51a0 \u53cc\u7389\u6212\u6307","Celestial Armoursmith\'s Incubator":"\u4f17\u661f\u94f8\u7532\u5320\u7684\u5b55\u80b2\u77f3","Fork Support":"\u5206\u88c2","Volatile Dead":"\u7075\u4f53\u706b\u7403","Leyline Map (Atlas of Worlds)":"\u8352\u51c9\u539f\u91ce(\u5f02\u754c\u56fe\u9274)","Vaal Reliquary Key":"\u74e6\u5c14\u5723\u7269\u5385\u94a5\u5319","Chain Belt":"\u6263\u94fe\u8170\u5e26","Tropical Island Map":"\u6674\u7a7a\u5e7d\u5c9b","Rejuvenation Totem":"\u56de\u6625\u56fe\u817e","Ancient Skull Bone Helmet":"\u4e0a\u53e4\u4e4b\u9885 \u5524\u9aa8\u5934\u76d4","Port Map (Atlas of Worlds)":"\u4e2d\u8f6c\u7801\u5934(\u5f02\u754c\u56fe\u9274)","Shaped Geode Map (Atlas of Worlds)":"\u6c34\u6676\u6d1e\u7a74(\u5851)(\u5f02\u754c\u56fe\u9274)","Prometheus\' Armoury":"\u666e\u7f57\u7c73\u4fee\u65af\u4e4b\u5907","Keeper\'s Corruption":"\u5b88\u62a4\u8005\u4e4b\u8150","Staff of the first Sin Eater":"\u7f6a\u6076\u541e\u566c\u8005\u4e4b\u6756","Glitterdisc Burnished Spiked Shield":"\u4e03\u5f69\u789f \u51b7\u8292\u523a\u76fe","Dragonscale Gauntlets":"\u9f99\u9cde\u624b\u5957","Pier Map (Atlas of Worlds)":"\u6012\u6d6a\u4e4b\u6e2f(\u5f02\u754c\u56fe\u9274)","Samite Slippers":"\u7ee3\u5e03\u4fbf\u978b","Forge of the Phoenix Map (Atlas of Worlds)":"\u4e0d\u6b7b\u9e1f\u953b\u53f0(\u5f02\u754c\u56fe\u9274)","Palace Map (Atlas of Worlds)":"\u795e\u57df\u4e4b\u6bbf(\u5f02\u754c\u56fe\u9274)","Ming\'s Heart Amethyst Ring":"\u660e\u6069\u7684\u6167\u5fc3 \u7d2b\u6676\u6212\u6307","Moonbender\'s Wing Jade Hatchet":"\u6708\u5c9a \u788e\u7389\u65a7","Esh\'s Visage Vaal Spirit Shield":"\u827e\u8bb8\u4e4b\u9762 \u74e6\u5c14\u9b54\u76fe","Replica Grip of the Council Arcanist Gloves":"\u8bae\u4f1a\u4e4b\u63e1\u3010\u4eff\u54c1\u3011 \u79d8\u672f\u624b\u5957","The Signal Fire Blazing Arrow Quiver":"\u72fc\u70df \u71c3\u77e2\u7bad\u888b","Branded Kite Shield":"\u5723\u8bb0\u9e22\u76fe","Profane Proxy Unset Ring":"\u6e0e\u795e\u4ee3\u7406 \u6f5c\u80fd\u4e4b\u6212","Frostbite":"\u51bb\u4f24","Shrieking Essence of Rage":"\u8086\u8650\u4e4b\u5c16\u5578\u7cbe\u534e","Brinerot Flag Tarnished Spirit Shield":"\u5e03\u7433\u6d1b\u7279\u4e4b\u65d7 \u73af\u5f62\u9b54\u76fe","Battle Hammer":"\u5f3a\u5316\u6218\u9524","Mineral Pools Map (Atlas of Worlds)":"\u5e9f\u5f03\u77ff\u5c71(\u5f02\u754c\u56fe\u9274)","Silk Gloves":"\u4e1d\u7ef8\u624b\u5957","Influenced Scouting Report":"\u5f71\u54cd\u4fa6\u5bdf\u62a5\u544a","Lion\'s Roar Granite Flask":"\u72ee\u543c\u7cbe\u534e \u575a\u5ca9\u836f\u5242","Replica Farrul\'s Fur Triumphant Lamellar":"\u5927\u5730\u4e4b\u62a4\u3010\u4eff\u54c1\u3011 \u80dc\u5229\u76d4\u7532","Torture Cage":"\u5211\u7f5a\u5934\u7b3c","Shaped Malformation Map (Atlas of Worlds)":"\u7578\u5f62\u4ea1\u57df(\u5851)(\u5f02\u754c\u56fe\u9274)","Wailing Essence of Loathing":"\u538c\u6076\u4e4b\u54c0\u568e\u7cbe\u534e","Careful Planning Viridian Jewel":"\u5ba1\u614e\u8ba1\u5212 \u7fe0\u7eff\u73e0\u5b9d","Assassin\'s Mark":"\u6697\u5f71\u5370\u8bb0","Full Ringmail":"\u8fde\u8eab\u73af\u7532","Blessing of God":"\u795e\u4f51","Crimson Oil":"\u7eef\u7ea2\u5723\u6cb9","Cartographer\'s Chisel":"\u5236\u56fe\u9489","Siegebreaker Heavy Belt":"\u7a81\u56f4\u8005 \u91cd\u9769\u8170\u5e26","Shrieking Essence of Anguish":"\u714e\u71ac\u4e4b\u5c16\u5578\u7cbe\u534e","Graveyard Map (Atlas of Worlds)":"\u5815\u5f71\u5893\u573a(\u5f02\u754c\u56fe\u9274)","Ghetto Map (Atlas of Worlds)":"\u8d64\u8d2b\u5c45\u6240(\u5f02\u754c\u56fe\u9274)","Cherrubim\'s Maleficence Triumphant Lamellar":"\u859b\u9c81\u5bbe\u7684\u6076\u4f5c\u5267 \u80dc\u5229\u76d4\u7532","Cells Map":"\u5e7d\u9b42\u76d1\u7262","Excavation Map (Atlas of Worlds)":"\u6316\u6398\u573a(\u5f02\u754c\u56fe\u9274)","Might of the Meek Crimson Jewel":"\u6e29\u67d4\u4e4b\u529b \u8d64\u7ea2\u73e0\u5b9d","Shaped Arcade Map (Atlas of Worlds)":"\u5d29\u574f\u957f\u5eca(\u5851)(\u5f02\u754c\u56fe\u9274)","Dunes Map (Atlas of Worlds)":"\u66ae\u8272\u6c99\u4e18(\u5f02\u754c\u56fe\u9274)","First Piece of Storms Callous Mask Piece":"\u51b0\u96f7\u5148\u9a71\u8005I \u65e0\u60c5\u4e4b\u9762","Determination":"\u575a\u5b9a","Mesh Boots":"\u7f51\u773c\u957f\u9774","Tainted Orb of Fusing":"\u6c61\u79fd\u94fe\u63a5\u77f3","Shaped Peninsula Map (Atlas of Worlds)":"\u5e72\u6f6e\u6797\u5730(\u5851)(\u5f02\u754c\u56fe\u9274)","Peninsula Map (Atlas of Worlds)":"\u5e72\u6f6e\u6797\u5730(\u5f02\u754c\u56fe\u9274)","Dark Forest Map (Atlas of Worlds)":"\u591c\u8bed\u5e7d\u6797(\u5f02\u754c\u56fe\u9274)","Cowl of the Ceraunophile Solaris Circlet":"\u55dc\u96f7\u4e4b\u51a0 \u65e5\u8000\u4e4b\u51a0","The Dapper Prodigy":"\u6781\u81f4\u4e0d\u51e1","Leadership\'s Price Onyx Amulet":"\u9886\u8896\u7684\u4ee3\u4ef7 \u9ed1\u66dc\u62a4\u8eab\u7b26","Weeping Essence of Woe":"\u60b2\u75db\u4e4b\u557c\u6ce3\u7cbe\u534e","cards":"\u5361\u7247","Devoto\'s Devotion Nightmare Bascinet":"\u5fb7\u6c83\u6258\u7684\u4fe1\u5ff5\u4e4b\u76d4 \u68a6\u9b47\u6218\u76d4","Call to the First Ones":"\u8fdc\u53e4\u53ec\u5524","Lava Chamber Map (Atlas of Worlds)":"\u7194\u5ca9\u4e4b\u6bbf(\u5f02\u754c\u56fe\u9274)","Inpulsa\'s Broken Heart Sadist Garb":"\u901f\u5ea6\u4e4b\u529b \u72c2\u8650\u8005\u675f\u8863","The Eye of the Dragon":"\u9f99\u4e4b\u773c","Crescent Staff":"\u65b0\u6708\u957f\u6756","The Shortcut":"\u6377\u5f84","Hope":"\u5e0c\u671b","Colonnade Map (Atlas of Worlds)":"\u6fc0\u6218\u67f1\u5eca(\u5f02\u754c\u56fe\u9274)","The Breach":"\u88c2\u9699","Deafening Essence of Wrath":"\u96f7\u9706\u4e4b\u7834\u7a7a\u7cbe\u534e","Vaal Temple Map (Atlas of Worlds)":"\u74e6\u5c14\u5bc6\u6bbf(\u5f02\u754c\u56fe\u9274)","Second Piece of the Arcane Legion Sword Piece":"\u79d8\u6cd5\u5148\u9a71\u8005\u788e\u7247II \u519b\u56e2\u957f\u5251","Fate of the Vaal Gemstone Sword":"\u74e6\u5c14\u547d\u8fd0 \u5b9d\u77f3\u4e4b\u5251","Cells Map (Atlas of Worlds)":"\u5e7d\u9b42\u76d1\u7262(\u5f02\u754c\u56fe\u9274)","Cast while Channelling Support":"\u541f\u5531\u65f6\u65bd\u653e","Lacquered Buckler":"\u6f06\u5f69\u8f7b\u76fe","Shaped Bone Crypt Map (Atlas of Worlds)":"\u53e4\u77f3\u9675\u5893(\u5851)(\u5f02\u754c\u56fe\u9274)","Timeless Templar Splinter":"\u6c38\u6052\u5723\u5802\u88c2\u7247","Canyon Map (Atlas of Worlds)":"\u7099\u9633\u5ce1\u8c37(\u5f02\u754c\u56fe\u9274)","Beach Map (Atlas of Worlds)":"\u5371\u5ca9\u6d77\u6ee9(\u5f02\u754c\u56fe\u9274)","The Immortal":"\u6c38\u6052\u4e0d\u673d","Etched in Blood":"\u4ee5\u8840\u954c\u523b","Angelic Kite Shield":"\u5929\u4f7f\u9e22\u76fe","Shaped Barrows Map (Atlas of Worlds)":"\u5c71\u6797\u79d8\u7a74(\u5851)(\u5f02\u754c\u56fe\u9274)","Third Piece of Storms Callous Mask Piece":"\u51b0\u96f7\u5148\u9a71\u8005III \u65e0\u60c5\u4e4b\u9762","Steppan Eard Sorcerer Boots":"\u7edd\u5730\u9b54\u5c65 \u672f\u58eb\u957f\u9774","Atoll Map (Atlas of Worlds)":"\u6ee8\u6d77\u5c71\u4e18(\u5f02\u754c\u56fe\u9274)","Grand Spectrum Crimson Jewel":"\u805a\u5149\u4e4b\u77f3 \u8d64\u7ea2\u73e0\u5b9d","Shaped Arid Lake Map (Atlas of Worlds)":"\u8352\u829c\u6e56\u57df(\u5851)(\u5f02\u754c\u56fe\u9274)","Replica Headhunter Leather Belt":"\u730e\u9996\u3010\u4eff\u54c1\u3011 \u76ae\u9769\u8170\u5e26","Arid Lake Map (Atlas of Worlds)":"\u8352\u829c\u6e56\u57df(\u5f02\u754c\u56fe\u9274)","Fossilised Incubator":"\u5316\u77f3\u5b55\u80b2\u77f3","Adolescent Rhex":"\u5e7c\u9e1f","Arachnid Nest Map (Atlas of Worlds)":"\u5f02\u86db\u5de2\u7a74(\u5f02\u754c\u56fe\u9274)","Primordial Eminence Viridian Jewel":"\u8d77\u6e90\u5353\u8d8a \u7fe0\u7eff\u73e0\u5b9d","Qotra\'s Regulator Sovereign Spiked Shield":"\u79d1\u5854\u62c9\u7684\u8c03\u8282\u5668 \u738b\u6743\u523a\u76fe","Awakened Chain Support":"\u8fde\u9501\uff08\u5f3a\u8f85\uff09","Behead Support":"\u65a9\u9996\uff08\u8f85\uff09","Maw of Conquest Steel Circlet":"\u5f81\u670d\u4e4b\u53e3 \u51b7\u94a2\u4e4b\u51a0","Saqawine Vulture":"\u82cd\u7a7a\u79c3\u9e70","The Beachhead Harbinger Map (Atlas of Worlds)":"\u964d\u4e34\u4e4b\u5730 \u5148\u9a71\u8005\u5730\u56fe(\u5f02\u754c\u56fe\u9274)","Guardian\'s Challenge":"\u5b88\u536b\u7684\u6311\u6218","Swift Assembly Support":"\u8fc5\u6574\uff08\u8f85\uff09","Cutthroat\'s Garb":"\u6b7b\u795e\u4e4b\u88c5","Ritual Vessel":"\u9a71\u7075\u6cd5\u5668","Unshaping Orb":"\u88c2\u754c\u4e4b\u7389","Cold-attuned Buckler":"\u9002\u5bd2\u578b\u8f7b\u76fe","Ungil\'s Harmony Turquoise Amulet":"\u6069\u5409\u5c14\u7684\u548c\u8c10 \u9752\u7389\u62a4\u8eab\u7b26","Waste Pool Map":"\u6b7b\u5bc2\u6ce5\u6c9f","The Siren":"\u6d77\u5996","Canyon Map (The Awakening)":"\u7099\u9633\u5ce1\u8c37(\u89c9\u9192)","Rebirth":"\u91cd\u751f","Toxic Sewer Map":"\u5267\u6bd2\u6c34\u9053","Primordial Blocks Map":"\u8fdc\u53e4\u8857\u533a","Aetheric Fossil":"\u4ee5\u592a\u5316\u77f3","Synthesised Map":"\u5bfb\u68a6\u8ffd\u5fc6","Seal of Solaris":"\u65e5\u8000\u4e4b\u5370","Triad Grip Mesh Gloves":"\u4e09\u91cd\u6263 \u7f51\u773c\u624b\u5957","Summit Map":"\u5bd2\u9876\u4e4b\u5dc5","Ice Bite Support":"\u971c\u54ac","Mandible Talisman":"\u5de8\u989a\u9b54\u7b26","Bronze Sceptre":"\u94dc\u953b\u77ed\u6756","Relic Chambers Map":"\u53e4\u85cf\u5bc6\u5ba4","Variscite Blade":"\u78a7\u94dc\u77ed\u5251","Saqawal\'s Talons Hydrascale Boots":"\u82cd\u7a7a\u4e4b\u722a \u706b\u876e\u9cde\u957f\u9774","The Sustenance":"\u7ed9\u517b","Infernal Mantle Occultist\'s Vestment":"\u70bc\u72f1\u4e4b\u5fc3 \u79d8\u672f\u957f\u8863","Daresso\'s Defiance Full Dragonscale":"\u5fb7\u745e\u7d22\u7684\u536b\u8863 \u8fde\u8eab\u9f99\u9cde\u94e0","Aurseize Fishscale Gauntlets":"\u5bcc\u8d35\u4e4b\u8fd0 \u9c7c\u9cde\u624b\u5957","Museum Map":"\u53e4\u535a\u7269\u9986","Mud Geyser Map":"\u9634\u6666\u6ce5\u6ee9","Marble Amulet":"\u5927\u7406\u77f3\u62a4\u8eab\u7b26","Wailing Essence of Greed":"\u8d2a\u5a6a\u4e4b\u54c0\u568e\u7cbe\u534e","Ringmail Boots":"\u73af\u7532\u7b52\u9774","Lava Chamber Map":"\u7194\u5ca9\u4e4b\u6bbf","Ivory Temple Map":"\u767d\u7389\u795e\u5e99","Left to Fate":"\u542c\u5929\u7531\u547d","Abhorrent Interrogation Ambush Mitts":"\u6c34\u706b\u4e0d\u5bb9 \u4f0f\u51fb\u62a4\u624b","Cartographer\'s Delight":"\u5236\u56fe\u8005\u7684\u9752\u7750","Golden Obi":"\u91d1\u7fbd\u8170\u5e26","Zeel\'s Amplifier Polished Spiked Shield":"\u6cfd\u5c14\u7684\u653e\u5927\u5668 \u5149\u8f89\u523a\u76fe","Peninsula Map":"\u5e72\u6f6e\u6797\u5730","Uul-Netol\'s Vow Unset Amulet":"\u4e4c\u5c14\u5c3c\u591a\u4e4b\u8a93 \u6f5c\u80fd\u9879\u94fe","Essence of Delirium":"\u8c35\u5984\u7cbe\u534e","The One That Got Away":"\u79bb\u5f00\u7684\u4eba\u662f\u4f60","Buckskin Tunic":"\u9e7f\u76ae\u5916\u5957","Temple Map (The Awakening)":"\u593a\u9b42\u4e4b\u6bbf(\u89c9\u9192)","Pure Talent Viridian Jewel":"\u7eaf\u624d \u7fe0\u7eff\u73e0\u5b9d","Courtyard Map":"\u5947\u672f\u4e4b\u5ead","Fragment of the Phoenix":"\u8bb0\u5fc6\u788e\u7247","Thirst for Knowledge":"\u6c42\u77e5\u82e5\u6e34","Core Map":"\u6838\u5fc3","Cospri\'s Malice Jewelled Foil":"\u5361\u65af\u666e\u91cc\u6028\u6068 \u5b9d\u9970\u7ec6\u5251","Pit of the Chimera Map":"\u5947\u7f8e\u62c9\u9886\u57df","Sleek Coat":"\u6ed1\u5e03\u5916\u5957","Factory Map (Atlas of Worlds)":"\u5de5\u5382\u9057\u8ff9(\u5f02\u754c\u56fe\u9274)","Castle Ruins Map":"\u5e7d\u5f71\u9057\u5740","Bramble Valley Map":"\u9ed1\u68d8\u8c37\u5730","Atziri\'s Mirror Golden Buckler":"\u963f\u5179\u91cc\u4e4b\u955c \u91d1\u9633\u8f7b\u76fe","Bog Map":"\u7634\u6c14\u6ce5\u6cbc","Kitava\'s Thirst Zealot Helmet":"\u5947\u5854\u5f17\u4e4b\u6e34\u671b \u70ed\u6218\u4e4b\u76d4","Barrows Map":"\u5c71\u6797\u79d8\u7a74","Arsenal Map":"\u53e4\u5175\u5de5\u5382","Asenath\'s Chant Iron Circlet":"\u5b89\u8d5b\u5a1c\u4e1d\u7684\u4f18\u96c5\u4e4b\u6b4c \u94c1\u953b\u4e4b\u51a0","Redwood Spiked Shield":"\u7ea2\u6728\u523a\u76fe","Acid Caverns Map":"\u5f3a\u9178\u6d1e\u7a74","Goathide Gloves":"\u7f8a\u76ae\u624b\u5957","Citrine Amulet":"\u9ec4\u6676\u62a4\u8eab\u7b26","The Survivalist":"\u6c42\u751f\u4e13\u5bb6","Ancient Greaves":"\u8fdc\u53e4\u80eb\u7532","Quartz Wand":"\u77f3\u82f1\u6cd5\u6756","Quarterstaff":"\u7ec6\u67c4\u957f\u6756","The Perandus Manor Chateau Map":"\u666e\u5170\u5fb7\u65af\u5e84\u56ed \u53e4\u5821","Surgebinders Dragonscale Gauntlets":"\u6d6a\u6d8c\u7f1a\u8005 \u9f99\u9cde\u624b\u5957","Polar Buckler":"\u6781\u5730\u8f7b\u76fe","Vaal Regalia":"\u74e6\u5c14\u6cd5\u8863","Facebreaker Strapped Mitts":"\u6bc1\u9762\u8005 \u6263\u73af\u62a4\u624b","Golden Hoop":"\u91d1\u73af","Mao Kun Shore Map":"\u8d3c\u7a9d \u66ae\u5149\u6d77\u6ee9","The Effigon Gold Amulet":"\u8000\u9633\u5fbd\u8bb0 \u5e1d\u91d1\u62a4\u8eab\u7b26","The Tumbleweed":"\u98ce\u6eda\u8349","The Jinxed Juju Citrine Amulet":"\u5384\u8fd0\u62a4\u7b26 \u9ec4\u6676\u62a4\u8eab\u7b26","Struck by Lightning":"\u96f7\u5288","Fenumus\' Spinnerets Assassin\'s Boots":"\u6697\u591c\u523a\u8db3 \u6697\u5f71\u4e4b\u9774","Cortex Relic Chambers Map":"\u8111\u5c42 \u53e4\u85cf\u5bc6\u5ba4","Reckless Defence Lacquered Garb":"\u9c81\u83bd\u9632\u5fa1 \u6f06\u5f69\u675f\u8863","Light Brigandine":"\u8f7b\u9501\u7532","Forbidden Flesh Cobalt Jewel":"\u7981\u65ad\u4e4b\u8089 \u94b4\u84dd\u73e0\u5b9d","The Awakened":"\u89c9\u9192","The Flora\'s Gift":"\u8299\u52b3\u62c9\u7684\u8d60\u793c","Arakaali\'s Daughter":"\u963f\u62c9\u5361\u529b\u7684\u5973\u513f","Murderous Eye Jewel":"\u51f6\u6b8b\u4e4b\u51dd\u73e0\u5b9d","Silken Garb":"\u4e1d\u7ef8\u4e4b\u8863","Transcendent Spirit Viridian Jewel":"\u5347\u534e\u4e4b\u9b42 \u7fe0\u7eff\u73e0\u5b9d","Transcendent Mind Cobalt Jewel":"\u5347\u534e\u4e4b\u5fc3 \u94b4\u84dd\u73e0\u5b9d","Earthquake":"\u9707\u5730","Ink Spinner":"\u55b7\u58a8\u5de8\u86db","The Green Nightmare Viridian Jewel":"\u9752\u5f71\u68a6\u9b47 \u7fe0\u7eff\u73e0\u5b9d","Murder Boots":"\u6697\u5f71\u8005\u957f\u9774","Lachrymal Necrosis":"\u6cea\u817a\u574f\u6b7b","Astramentis Onyx Amulet":"\u5747\u8861\u4e4b\u7b26 \u9ed1\u66dc\u62a4\u8eab\u7b26","The Blue Nightmare Cobalt Jewel":"\u78a7\u5f71\u68a6\u9b47 \u94b4\u84dd\u73e0\u5b9d","Survival Skills Crimson Jewel":"\u751f\u5b58\u6280\u5de7 \u8d64\u7ea2\u73e0\u5b9d","Starlight Chalice Iron Flask":"\u661f\u5149\u5723\u676f \u575a\u94c1\u836f\u5242","Ignite Proliferation Support":"\u70b9\u71c3\u6269\u6563","Spider Forest Map (Legacy)":"\u5de8\u86db\u4e4b\u6797(\u9057\u4ea7)","Shaped Armoury Map (Atlas of Worlds)":"\u88c5\u5907\u5e93(\u5851)(\u5f02\u754c\u56fe\u9274)","Whispering Essence of Woe":"\u60b2\u75db\u4e4b\u4f4e\u8bed\u7cbe\u534e","Doomsower Lion Sword":"\u7ec8\u672b\u4e4b\u59cb \u72ee\u722a\u5de8\u5251","Split Personality Crimson Jewel":"\u4eba\u683c\u5206\u88c2 \u8d64\u7ea2\u73e0\u5b9d","Screaming Essence of Doubt":"\u7591\u60d1\u4e4b\u5486\u54ee\u7cbe\u534e","The Peregrine Visored Sallet":"\u75be\u98ce\u7684\u6c89\u601d \u6e05\u89c6\u62a4\u76d4","The Web":"\u547d\u8fd0\u4e4b\u7f51","Ogham Candelabra":"\u6b27\u7518\u70db\u53f0","Greatwolf Talisman":"\u72fc\u738b\u9b54\u7b26","Rapid Expansion Crimson Jewel":"\u6025\u901f\u6269\u5f20 \u8d64\u7ea2\u73e0\u5b9d","Pitch Darkness Viridian Jewel":"\u9eef\u9ed1\u4e4b\u8c03 \u7fe0\u7eff\u73e0\u5b9d","Blessing of Tul":"\u6258\u6c83\u7684\u795d\u798f","Grand Eldritch Ichor":"\u4e0a\u7ea7\u53e4\u7075\u6eb6\u6db2","Arcanist Slippers":"\u79d8\u672f\u4fbf\u978b","Flame Wall":"\u70c8\u7130\u4e4b\u5899","Palace Map":"\u795e\u57df\u4e4b\u6bbf","Dying Breath Coiled Staff":"\u5e7d\u9b42\u4e4b\u606f \u5f3a\u5316\u957f\u6756","Nadir Mode Cobalt Jewel":"\u4f4e\u8c37\u72b6\u6001 \u94b4\u84dd\u73e0\u5b9d","Might and Influence Viridian Jewel":"\u86ee\u529b\u4e0e\u5f71\u54cd \u7fe0\u7eff\u73e0\u5b9d","Replica Inya\'s Epiphany Arcanist Slippers":"\u8335\u96c5\u7684\u542f\u8499\u3010\u4eff\u54c1\u3011 \u79d8\u672f\u4fbf\u978b","Martial Artistry Crimson Jewel":"\u6b66\u827a\u4e4b\u76f8 \u8d64\u7ea2\u73e0\u5b9d","Mantra of Flames Crimson Jewel":"\u70c8\u708e\u4e4b\u5146 \u8d64\u7ea2\u73e0\u5b9d","Boon of Justice":"\u53f8\u6cd5\u7684\u6069\u8d50","Ventor\'s Gamble Gold Ring":"\u8d4c\u795e\u82ac\u591a \u91d1\u5149\u6212\u6307","Hidden Potential Viridian Jewel":"\u6df1\u85cf\u7684\u6f5c\u80fd \u7fe0\u7eff\u73e0\u5b9d","Rigwald\'s Curse Wereclaw Talisman":"\u745e\u4f5b\u8bc5\u5492 \u4ea1\u722a\u9b54\u7b26","Vaal Buckler":"\u74e6\u5c14\u8f7b\u76fe","Grand Spectrum Viridian Jewel":"\u805a\u5149\u4e4b\u77f3 \u7fe0\u7eff\u73e0\u5b9d","The Red Dream Crimson Jewel":"\u8d64\u5f71\u68a6\u5883 \u8d64\u7ea2\u73e0\u5b9d","Geofri\'s Crest Great Crown":"\u5409\u5c14\u83f2\u7684\u8363\u5149 \u5f3a\u5316\u5de8\u76d4","Glorious Vanity Timeless Jewel":"\u5149\u5f69\u593a\u76ee \u6c38\u6052\u73e0\u5b9d","Fragility Crimson Jewel":"\u8106\u5f31 \u8d64\u7ea2\u73e0\u5b9d","Kalisa\'s Grace Samite Gloves":"\u5361\u8389\u838e\u7684\u4f18\u96c5\u4e4b\u5f71 \u7ee3\u5e03\u624b\u5957","Steelscale Boots":"\u94a2\u5f71\u957f\u9774","Courtesan Sword":"\u82b1\u9b41\u4e4b\u5251","Chill of Corruption Viridian Jewel":"\u8150\u5316\u5bd2\u606f \u7fe0\u7eff\u73e0\u5b9d","Raise Spectre":"\u53ec\u5524\u7075\u4f53","Void Manipulation Support":"\u865a\u7a7a\u64cd\u7eb5","Vile Toxins Support":"\u731b\u6bd2","Swiftbrand Support":"\u8fc5\u731b\u70d9\u5370\uff08\u8f85\uff09","The Avenger":"\u590d\u4ec7\u8005","Rough Sharpening Stone":"\u7c97\u7cd9\u78e8\u5200\u77f3","Infused Channelling Support":"\u704c\u80fd\u541f\u5531","Awakened Elemental Focus Support":"\u5143\u7d20\u96c6\u4e2d\uff08\u5f3a\u8f85\uff09","Carnal Boots":"\u7981\u793c\u4e4b\u9774","Crusader Buckler":"\u5723\u6218\u8f7b\u76fe","Cleave":"\u5288\u780d","Celestial Jeweller\'s Incubator":"\u4f17\u661f\u73e0\u5b9d\u5320\u7684\u5b55\u80b2\u77f3","The Bones":"\u9ab8\u9aa8","Fevered Mind Cobalt Jewel":"\u72c2\u70ed\u4e4b\u5fc3 \u94b4\u84dd\u73e0\u5b9d","Pinpoint Support":"\u4f1a\u5fc3\u4e00\u51fb\uff08\u8f85\uff09","Hydrascale Boots":"\u706b\u876e\u9cde\u957f\u9774","Berek\'s Pass Two-Stone Ring":"\u8d1d\u96f7\u514b\u7684\u51b0\u4e0e\u706b\u4e4b\u6b4c \u53cc\u7389\u6212\u6307","Physical to Lightning Support":"\u7269\u7406\u8f6c\u95ea\u7535","Presence of Chayula Onyx Amulet":"\u590f\u4e4c\u62c9\u4e4b\u5370 \u9ed1\u66dc\u62a4\u8eab\u7b26","Muttering Essence of Woe":"\u60b2\u75db\u4e4b\u5462\u5583\u7cbe\u534e","Saemus\' Gift Feathered Arrow Quiver":"\u52c7\u8005\u4e4b\u793c \u98de\u7fbd\u7bad\u888b","The Cheater":"\u51fa\u8001\u5343","Plateau Map (The Awakening)":"\u6d77\u98ce\u9ad8\u539f(\u89c9\u9192)","Grotto Map (Legacy)":"\u5e7d\u6697\u5730\u7a74(\u9057\u4ea7)","Blacksmith\'s Whetstone":"\u78e8\u5200\u77f3","Bladefall":"\u865a\u7a7a\u5200\u96e8","Rogue\'s Marker":"\u8d4f\u91d1\u730e\u4eba\u5370\u8bb0","Combustion Support":"\u51e0\u7387\u70b9\u71c3","Death\'s Oath Astral Plate":"\u51a5\u4f7f\u4e4b\u4f53 \u661f\u8292\u6218\u94e0","Knockback Support":"\u51fb\u9000","Tempering Orb":"\u56de\u706b\u77f3","Unleash Support":"\u91ca\u51fa\uff08\u8f85\uff09","Bones of Ullr Silk Slippers":"\u7075\u9ab8\u4e4b\u5c65 \u4e1d\u7ef8\u4fbf\u978b","Summon Holy Relic":"\u53ec\u5524\u5723\u7269","Silence and Frost":"\u6b7b\u5bc2\u4e25\u51ac","Inti of the Blood Moon":"\u8840\u6708\u4e4b\u7075\u5370\u63d0","Colossal Mana Flask":"\u9ad8\u9636\u9b54\u529b\u836f\u5242","Artillery Quiver":"\u706b\u70ae\u7bad\u888b","Bino\'s Kitchen Knife Slaughter Knife":"\u6bd4\u8bfa\u7684\u53a8\u5200 \u730e\u8005\u4e4b\u5203","The Magnate Studded Belt":"\u575a\u6bc5\u4e4b\u73af \u6263\u9489\u8170\u5e26","The Messenger":"\u4fe1\u4f7f","Awakened Deadly Ailments Support":"\u81f4\u547d\u5f02\u5e38\u72b6\u6001\uff08\u5f3a\u8f85\uff09","Aberrant Fossil":"\u7578\u53d8\u5316\u77f3","Architect\'s Hand Ambush Mitts":"\u5efa\u7b51\u5e08\u4e4b\u624b \u4f0f\u51fb\u62a4\u624b","Singular Delirium Orb":"\u5355\u72ec\u7684\u96fe\u9b47\u5b9d\u73e0","Simple Sextant":"\u7b80\u6613\u516d\u5206\u4eea","Awakened Cast While Channelling Support":"\u541f\u5531\u65f6\u65bd\u653e\uff08\u5f3a\u8f85\uff09","The Ivory Tower Saint\'s Hauberk":"\u8c61\u7259\u4e4b\u5854 \u5723\u8005\u94fe\u7532","Bonechill Support":"\u5f7b\u9aa8\uff08\u8f85\uff09","Awakened Arrow Nova Support":"\u7bad\u4e4b\u65b0\u661f\uff08\u5f3a\u8f85\uff09","Widowsilk Robe":"\u6bd2\u86db\u4e1d\u4e4b\u888d","Added Lightning Damage Support":"\u9644\u52a0\u95ea\u7535\u4f24\u5bb3","Cedar Tower Shield":"\u677e\u6728\u5854\u76fe","Jasper Axe":"\u7075\u7389\u65a7","Withering Step":"\u51cb\u96f6\u6b65","The Hive of Knowledge":"\u77e5\u8bc6\u4e4b\u5de2","Replica Bated Breath Chain Belt":"\u51dd\u606f\u3010\u4eff\u54c1\u3011 \u6263\u94fe\u8170\u5e26","Vaal Rain of Arrows":"\u74e6\u5c14\uff1a\u7bad\u96e8","The Wilted Rose":"\u67af\u840e\u73ab\u7470","Azurite Flashpowder":"\u84dd\u6676\u95ea\u5149\u7c89","Vaal Glacial Hammer":"\u74e6\u5c14\uff1a\u51b0\u971c\u4e4b\u9524","Esh\'s Breachstone":"\u827e\u8bb8\u88c2\u9699\u77f3","The Twins":"\u5b6a\u751f","Mark On Hit Support":"\u51fb\u4e2d\u9644\u52a0\u8bc5\u5492\uff08\u8f85\uff09(\u5370\u8bb0)","Imprint":"\u5370\u8bb0","accessories":"\u9644\u4ef6","Splinter of Xoph":"\u88c2\u9699\u788e\u7247","Blueprint: Repository":"\u84dd\u56fe\uff1a\u50a8\u85cf\u5e93","Foreboding Incubator":"\u9884\u5146\u5b55\u80b2\u77f3","Drillneck Penetrating Arrow Quiver":"\u7a7f\u5fc3 \u7a7f\u5c04\u7bad\u888b","Earthshatter":"\u5c16\u523a\u6218\u543c","Atziri\'s Arsenal":"\u963f\u5179\u91cc\u7684\u6b66\u5668\u5e93","Tectonic Slam":"\u7834\u91dc\u4e00\u51fb","Underground Sea Map":"\u6ee8\u6d77\u5e7d\u7a74","Shavronne\'s Pace Scholar Boots":"\u859b\u6717\u7684\u79d8\u672f\u957f\u9774 \u5b66\u8005\u957f\u9774","Sweep":"\u6a2a\u626b","Flesh Offering":"\u8840\u8089\u5949\u732e","Sin Trek Stealth Boots":"\u654f\u9510\u601d\u7ef4 \u533f\u8e2a\u77ed\u9774","The Chains that Bind":"\u675f\u7f1a\u4e4b\u70bc","Blackflame Amethyst Ring":"\u9ed1\u7130 \u7d2b\u6676\u6212\u6307","Frost Blades":"\u51b0\u971c\u4e4b\u5203","Cold Snap":"\u971c\u66b4","Belfry Map":"\u949f\u697c","The Blue Dream Cobalt Jewel":"\u78a7\u5f71\u68a6\u5883 \u94b4\u84dd\u73e0\u5b9d","Kiara\'s Determination Silver Flask":"\u5947\u4e9a\u62c9\u7684\u51b3\u5fc3 \u771f\u94f6\u836f\u5242","Augmented Distant Memory Synthesised Map":"\u589e\u5f3a\u7684\u9065\u8fdc\u56de\u5fc6 \u5bfb\u68a6\u8ffd\u5fc6","Smoke Mine":"\u70df\u96fe\u5730\u96f7","Jack in the Box":"\u60ca\u559c\u76d2","Double Strike":"\u53cc\u91cd\u6253\u51fb","Siege Ballista":"\u653b\u57ce\u70ae\u53f0","Wharf Map (The Awakening)":"\u6bd2\u7259\u6d77\u6e2f(\u89c9\u9192)","Shield Charge":"\u91cd\u76fe\u51b2\u950b","Golden Caligae":"\u9ec4\u91d1\u7f20\u978b","Raise Zombie":"\u9b54\u536b\u590d\u82cf","Sniper\'s Mark":"\u72d9\u51fb\u4e4b\u5370","The Encroaching Darkness":"\u9ed1\u6697\u6765\u72af","The Thaumaturgist":"\u5927\u5947\u672f\u5e08","Power Siphon":"\u529b\u91cf\u62bd\u53d6","Plague Bearer":"\u761f\u75ab\u4f7f\u5f92","The Scout":"\u65a5\u5019","Purity of Lightning":"\u95ea\u7535\u51c0\u5316","Awakened Unleash Support":"\u91ca\u51fa\uff08\u5f3a\u8f85\uff09","Bestiary Orb":"\u5c01\u9b54\u4e4b\u7389","Araku Tiki Coral Amulet":"\u9690\u7075\u4e4b\u7b26 \u73ca\u745a\u62a4\u8eab\u7b26","Herald of Ice":"\u5bd2\u51b0\u4e4b\u6377","Brinerot Whalers Trapper Boots":"\u5e03\u7433\u6d1b\u7279\u5cb8\u884c\u8005 \u730e\u4eba\u4e4b\u9774","Atonement Mask":"\u8d4e\u7f6a\u9762\u5177","Freezing Pulse":"\u51b0\u971c\u8109\u51b2","Sunder":"\u5927\u5730\u9707\u51fb","Flesh and Stone":"\u8840\u8089\u4e0e\u5ca9\u77f3","The Fledgling Lacquered Helmet":"\u96cf\u9e1f \u6f06\u5f69\u4e4b\u76d4","Doedre\'s Tenure Velvet Gloves":"\u5fb7\u745e\u7684\u7cbe\u795e\u624b\u5957 \u4e1d\u7ed2\u624b\u5957","Lucky Deck":"\u547d\u8fd0\u5782\u9752","Defiance Banner":"\u6297\u4e89\u4e4b\u65d7","Coveted Possession":"\u9965\u6e34\u4e4b\u5360","Consecrated Path":"\u5949\u732e\u4e4b\u8def","Legion Sword Piece":"\u519b\u56e2\u957f\u5251","Blood and Sand":"\u8840\u4e0e\u6c99","Sacred Mana Flask":"\u5723\u8bed\u9b54\u529b\u836f\u5242","Plated Gauntlets":"\u575a\u94c1\u62a4\u624b","Large Hybrid Flask":"\u5927\u578b\u590d\u5408\u836f\u5242","Ngamahu\'s Sign Ruby Ring":"\u52aa\u845b\u739b\u547c\u4e4b\u5370 \u7ea2\u7389\u6212\u6307","Charged Dash":"\u84c4\u529b\u75be\u98ce\u95ea","Blunt Arrow Quiver Piece":"\u949d\u77e2\u7bad\u888b","Replica Allure Vaal Claw":"\u9b45\u60d1\u3010\u4eff\u54c1\u3011 \u74e6\u5c14\u6218\u722a","Pig-Faced Bascinet":"\u732a\u9762\u5934\u76d4","Villa Map (Legacy)":"\u9b45\u5f71\u522b\u5885(\u9057\u4ea7)","Windscream Reinforced Greaves":"\u6076\u98ce\u8db3\u8ff9 \u5f3a\u5316\u80eb\u7532","Disdain":"\u8511\u89c6","Runic Gages":"\u7b26\u6587\u7b3c\u624b","Infested Tunnelfiend":"\u53d7\u75ab\u5730\u4e0b\u90aa\u517d","Heavy Belt":"\u91cd\u9769\u8170\u5e26","Deidbell Gilded Sallet":"\u4e27\u949f \u91d1\u9762\u62a4\u76d4","The Endurance":"\u8010\u4e45\u8005","Carnal Mitts":"\u7981\u793c\u62a4\u624b","Rustic Sash":"\u7d20\u5e03\u8170\u5e26","Oozeback Bloom":"\u8150\u751f\u6050\u5599\u9e1f","Craiceann\'s Chitin Magistrate Crown":"\u6df1\u6d77\u9b54\u89d2 \u884c\u653f\u8005\u6218\u51a0","Mortal Grief":"\u51e1\u4eba\u7684\u54c0\u4f24[\u5de6\u4e0a]","Wrapped Boots":"\u88f9\u8dbe\u51c9\u978b","Shrieking Essence of Woe":"\u60b2\u75db\u4e4b\u5c16\u5578\u7cbe\u534e","Intrinsic Catalyst":"\u5185\u5728\u50ac\u5316\u5242","Polished Harbinger Scarab":"\u95ea\u8000\u7684\u7684\u5148\u9a71\u5723\u7532\u866b","Triumphant Lamellar":"\u80dc\u5229\u76d4\u7532","Dyadian Dawn Heavy Belt":"\u6234\u4e9a\u8fea\u5b89\u7684\u6668\u66e6 \u91cd\u9769\u8170\u5e26","Tainted Jeweller\'s Orb":"\u6c61\u79fd\u5de5\u5320\u77f3","Tainted Chromatic Orb":"\u6c61\u79fd\u5e7b\u8272\u77f3","Gilded Bestiary Scarab":"\u9540\u91d1\u7684\u730e\u9b54\u5723\u7532\u866b","Chaotic Disposition":"\u6d51\u6c8c\u6027\u60c5","Wailing Essence of Spite":"\u523b\u6bd2\u4e4b\u54c0\u568e\u7cbe\u534e","Spinefuse Talisman":"\u6f5c\u80fd\u9b54\u7b26","Saqawal\'s Winds Soldier Gloves":"\u82cd\u7a7a\u4e4b\u7ffc \u6218\u58eb\u624b\u5957","Aurseize Steelscale Gauntlets":"\u5bcc\u8d35\u4e4b\u8fd0 \u94a2\u5f71\u62a4\u624b","The Last Supper":"\u6700\u540e\u7684\u665a\u9910","Chainmail Vest":"\u9501\u94fe\u80cc\u5fc3","Shattershard Crimson Round Shield":"\u7834\u88c2\u788e\u7247 \u7eef\u7ea2\u5706\u76fe","Splinter of Chayula":"\u88c2\u9699\u788e\u7247","Perquil\'s Toe Gold Amulet":"\u73c0\u594e\u5c14\u4e4b\u8dbe \u5e1d\u91d1\u62a4\u8eab\u7b26","Q\'uru":"\u5e93\u9c81","Awakened Melee Physical Damage Support":"\u8fd1\u6218\u7269\u7406\u4f24\u5bb3\uff08\u5f3a\u8f85\uff09","Tainted Exalted Orb":"\u6c61\u79fd\u5d07\u9ad8\u77f3","Leaping Spider":"\u8dc3\u5f71\u5de8\u86db","Lair of the Hydra Map":"\u4e5d\u5934\u86c7\u5de2\u7a74","The Blood Dance Sharkskin Boots":"\u8840\u5f71 \u9ca8\u76ae\u77ed\u9774","Blessing of Esh":"\u827e\u8bb8\u7684\u795d\u798f","The Carrion Crow":"\u98df\u8150\u63a0\u9e26","prophecies":"\u9884\u8a00","watchstones":"\u5b88\u671b\u77f3","sentinel":"\u54e8\u5175","Call of the Void Sapphire Ring":"\u865a\u7a7a\u53ec\u5524 \u84dd\u7389\u6212\u6307","The Twisted Trinity Cosmic Apex Sentinel":"\u626d\u66f2\u4e09\u4f4d\u4e00\u4f53 \u5b87\u5b99\u5dc5\u5cf0\u8fd1\u536b","The Burden of Truth Crystal Belt":"\u771f\u76f8\u4e4b\u62c5 \u6c34\u6676\u8170\u5e26","The Eternal Struggle Onyx Amulet":"\u6c38\u6052\u4e4b\u6218 \u9ed1\u66dc\u62a4\u8eab\u7b26","Echoes of Creation Royal Burgonet":"\u521b\u9020\u56de\u58f0 \u7687\u5ba4\u575a\u76d4","A Fate Worse Than Death":"\u6bd4\u6b7b\u4ea1\u66f4\u60b2\u60e8\u7684\u547d\u8fd0","Altered Perception":"\u6539\u53d8\u77e5\u89c9","Darker Half":"\u9ed1\u6697\u534a\u9762","From Bone to Ashes":"\u4ece\u9aa8\u5230\u7070","Further Invention":"\u66f4\u65b0\u53d1\u660e","Home":"\u5bb6\u56ed","Rebirth and Renewal":"\u91cd\u751f\u4e0e\u65b0\u751f","The Apothecary":"\u836f\u5242\u5e08","The Brawny Battle Mage":"\u5f3a\u58ee\u7684\u6218\u6597\u6cd5\u5e08","The Destination":"\u76ee\u7684\u5730","The Dungeon Master":"\u5730\u4e0b\u57ce\u5927\u5e08","The Forward Gaze":"\u653e\u8fdc\u76ee\u5149","Augmenting Power Core":"\u589e\u5f3a\u529b\u91cf\u6838\u5fc3","Armour Recombinator":"\u62a4\u7532\u91cd\u7ec4\u5668","Power Core":"\u529b\u91cf\u6838\u5fc3","Jewellery Recombinator":"\u73e0\u5b9d\u91cd\u7ec4\u5668","Transforming Power Core":"\u53d8\u6362\u529b\u91cf\u6838\u5fc3","Amplifying Power Core":"\u653e\u5927\u529b\u91cf\u6838\u5fc3","Weapon Recombinator":"\u6b66\u5668\u91cd\u7ec4\u5668","Captured Soul of Armala, the Widow":"\u5df2\u6355\u83b7\u7075\u9b42\uff1a\u5be1\u5987\u5236\u9020\u8005\u963f\u739b\u62c9","Captured Soul of Captain Clayborne, The Accursed":"\u5df2\u6355\u83b7\u7075\u9b42\uff1a\u88ab\u8bc5\u5492\u7684\u514b\u83b1\u5954\u8239\u957f","Captured Soul of Varhesh, Shimmering Aberration":"\u5df2\u6355\u83b7\u7075\u9b42\uff1a\u5fae\u5149\u5de8\u4f8d\u6cd5\u8d6b\u897f","Captured Soul of The Hallowed Husk":"\u5df2\u6355\u83b7\u7075\u9b42\uff1a\u8d85\u7075\u4e4b\u4f53","Awakened Empower Support":"\u8d4b\u80fd\uff08\u5f3a\u8f85\uff09","Awakened Enhance Support":"\u5f3a\u5316\uff08\u5f3a\u8f85\uff09","Awakened Enlighten Support":"\u542f\u8499\uff08\u5f3a\u8f85\uff09","Impossible Escape Viridian Jewel":"\u65e0\u6240\u9041\u5f62 \u7fe0\u7eff\u73e0\u5b9d","Sublime Vision Prismatic Jewel":"\u5d07\u9ad8\u613f\u666f \u4e09\u76f8\u73e0\u5b9d","Windripper Long Bow":"\u88c2\u98ce \u957f\u5f13(\u4e0d\u53ef\u7528)","Escalation Brimstone Stalker Sentinel":"\u5347\u7ea7 \u786b\u77f3\u8ffd\u730e\u62a4\u536b","Insomnia Cosmic Apex Sentinel":"\u4e0d\u7720 \u5b87\u5b99\u5dc5\u5cf0\u8fd1\u536b","The Ancient Angler Emberstone Apex Sentinel":"\u8fdc\u53e4\u9493\u8005 \u4f59\u70ec\u5dc5\u5cf0\u62a4\u536b","The Angel of Vengeance Cosmic Apex Sentinel":"\u590d\u4ec7\u5929\u4f7f \u5b87\u5b99\u5dc5\u5cf0\u8fd1\u536b","The Arbiter Brimstone Pandemonium Sentinel":"\u4ef2\u88c1\u8005 \u786b\u77f3\u9b54\u57df\u62a4\u536b","The Basilisk Emberstone Pandemonium Sentinel":"\u86c7\u602a \u4f59\u70ec\u9b54\u57df\u62a4\u536b","The Benefactor Cobalt Stalker Sentinel":"\u6350\u52a9\u8005 \u94b4\u84dd\u8ffd\u730e\u62a4\u536b","The Depraved Cosmic Apex Sentinel":"\u5815\u843d \u5b87\u5b99\u5dc5\u5cf0\u8fd1\u536b","The Epiphany Cosmic Apex Sentinel":"\u542f\u8499 \u5b87\u5b99\u5dc5\u5cf0\u8fd1\u536b","The Hollow-Eyed Skull Emberstone Stalker Sentinel":"\u7a7a\u773c\u4e4b\u9885 \u4f59\u70ec\u8ffd\u730e\u62a4\u536b","The Infested Obsidian Stalker Sentinel":"\u67d3\u75ab\u8005 \u9ed1\u66dc\u8ffd\u730e\u62a4\u536b","The Megalomaniac Bronze Stalker Sentinel":"\u5984\u60f3\u75c7 \u9752\u94dc\u8ffd\u730e\u62a4\u536b","The Narcissist Cosmic Apex Sentinel":"\u81ea\u604b \u5b87\u5b99\u5dc5\u5cf0\u8fd1\u536b","The Raging Inferno Cosmic Apex Sentinel":"\u5929\u706b \u5b87\u5b99\u5dc5\u5cf0\u8fd1\u536b"," The Torturer Obsidian Pandemonium Sentinel":"\u6298\u78e8\u8005 \u9ed1\u66dc\u9b54\u57df\u62a4\u536b","The Unbridled Tempest Cosmic Apex Sentinel":"\u8086\u8650\u66b4\u98ce \u5b87\u5b99\u5dc5\u5cf0\u8fd1\u536b","Rusted Stalker Sentinel":"\u9508\u8ff9\u8ffd\u730e\u62a4\u536b","Bronze Stalker Sentinel":"\u9752\u94dc\u8ffd\u730e\u62a4\u536b","Cobalt Stalker Sentinel":"\u94b4\u84dd\u8ffd\u730e\u62a4\u536b","Brimstone Stalker Sentinel":"\u786b\u77f3\u8ffd\u730e\u62a4\u536b","Emberstone Stalker Sentinel":"\u4f59\u70ec\u8ffd\u730e\u62a4\u536b","Obsidian Stalker Sentinel":"\u9ed1\u66dc\u8ffd\u730e\u62a4\u536b","Bronze Pandemonium Sentinel":"\u9752\u94dc\u9b54\u57df\u62a4\u536b","Cobalt Pandemonium Sentinel":"\u94b4\u84dd\u9b54\u57df\u62a4\u536b","Brimstone Pandemonium Sentinel":"\u786b\u77f3\u9b54\u57df\u62a4\u536b","Emberstone Pandemonium Sentinel":"\u4f59\u70ec\u9b54\u57df\u62a4\u536b","Obsidian Pandemonium Sentinel":"\u9ed1\u66dc\u9b54\u57df\u62a4\u536b","Bronze Apex Sentinel":"\u9752\u94dc\u5dc5\u5cf0\u62a4\u536b","Cobalt Apex Sentinel":"\u94b4\u84dd\u5dc5\u5cf0\u62a4\u536b","Brimstone Apex Sentinel":"\u786b\u77f3\u5dc5\u5cf0\u62a4\u536b","Emberstone Apex Sentinel":"\u4f59\u70ec\u5dc5\u5cf0\u62a4\u536b","Obsidian Apex Sentinel":"\u9ed1\u66dc\u5dc5\u5cf0\u62a4\u536b","Cryptic Stalker Sentinel":"\u795e\u79d8\u8ffd\u730e\u62a4\u536b","Primeval Stalker Sentinel":"\u539f\u59cb\u8ffd\u730e\u62a4\u536b","Ancient Stalker Sentinel":"\u8fdc\u53e4\u8ffd\u730e\u62a4\u536b","Cryptic Pandemonium Sentinel":"\u795e\u79d8\u9b54\u57df\u62a4\u536b","Primeval Pandemonium Sentinel":"\u539f\u59cb\u9b54\u57df\u62a4\u536b","Ancient Pandemonium Sentinel":"\u8fdc\u53e4\u9b54\u57df\u62a4\u536b","Cryptic Apex Sentinel":"\u795e\u79d8\u5dc5\u5cf0\u62a4\u536b","Primeval Apex Sentinel":"\u539f\u59cb\u5dc5\u5cf0\u62a4\u536b","Ancient Apex Sentinel":"\u8fdc\u53e4\u5dc5\u5cf0\u62a4\u536b","Cosmic Apex Sentinel":"\u5b87\u5b99\u5dc5\u5cf0\u8fd1\u536b","Kalandra\'s Touch Ring":"\u5361\u5170\u5fb7\u4e4b\u89e6","Ring":"\u6212\u6307\uff1a","Bone Ring":"\u9aa8\u73af","Dusk Ring":"\u6212\u6307\uff1a\u66ae\u8272","Penumbra Ring":"\u6212\u6307\uff1a\u534a\u5f71","Gloam Ring":"\u6212\u6307\uff1a\u8584\u66ae","Tenebrous Ring":"\u6212\u6307\uff1a\u6697\u9ed1","Shadowed Ring":"\u6212\u6307\uff1a\u6697\u5f71","Allelopathy Satin Gloves":"\u76f8\u751f\u76f8\u514b \u7f0e\u5e03\u624b\u5957","Briskwrap Sun Leather":"\u8352\u9014 \u6263\u73af\u76ae\u7532","Demon Stitcher Satin Gloves":"\u6076\u9b54\u7f1d\u8865\u8005 \u7f0e\u5e03\u624b\u5957","Elevore Wolf Pelt":"\u827e\u5c14\u5f17\u96f7 \u72fc\u9996\u76ae\u76d4","Ghostwrithe Silken Vest":"\u4ee3\u7b14\u4eba \u7ef8\u7f0e\u80cc\u5fc3","Kaom\'s Spirit Titan Gauntlets":"\u5188\u59c6\u7684\u7cbe\u795e \u5de8\u4eba\u62a4\u624b","Kongming\'s Stratagem Ancient Spirit Shield":"\u5b54\u660e\u7684\u795e\u7b97 \u8c61\u7259\u9b54\u76fe","Manastorm Lacewood Spirit Shield":"\u9b54\u529b\u98ce\u66b4 \u77f3\u5316\u9b54\u76fe","Replica Allelopathy Satin Gloves":"\u76f8\u751f\u76f8\u514b\u3010\u4eff\u54c1\u3011 \u7f0e\u5e03\u624b\u5957","Soul Ascension Carnal Mitts":"\u7075\u9b42\u98de\u5347 \u7981\u793c\u62a4\u624b","The Poised Prism Primal Arrow Quiver":"\u5e73\u8861\u68f1\u955c \u539f\u77e2\u7bad\u888b","Thrillsteel Barbute Helmet":"\u60ca\u9669\u523a\u6fc0 \u8f7b\u9a91\u76d4","Astral Protection":"\u661f\u754c\u9632\u62a4","Azure Rage":"\u5929\u84dd\u4e4b\u6012","Broken Truce":"\u7834\u788e\u4f11\u6218","Checkmate":"\u632b\u8d25","Choking Guilt":"\u7a92\u606f\u6127\u759a","Doryani\'s Epiphany":"\u591a\u91cc\u4e9a\u5c3c\u7684\u542f\u8499","Endless Night":"\u65e0\u5c3d\u591c\u665a","Gemcutter\'s Mercy":"\u5b9d\u77f3\u5320\u7684\u4ec1\u6148","Lethean Temptation":"\u9057\u5fd8\u8bf1\u60d1","Something Dark":"\u9ed1\u6697\u4e4b\u7269","The Enforcer":"\u6267\u884c\u5b98","The Leviathan":"\u6d77\u602a","The Price of Devotion":"\u8654\u8bda\u7684\u4ee3\u4ef7","The Shepherd\'s Sandals":"\u7267\u7f8a\u4eba\u7684\u51c9\u978b","The Shieldbearer":"\u6301\u76fe\u4eba","Deadly End Ultimatum Aspect":"\u65e0\u8def\u53ef\u8d70 \u81f4\u547d\u8d2a\u5a6a\u4e4b\u76f8","Ignominious Fate Ultimatum Aspect":"\u53ef\u803b\u7684\u547d\u8fd0 \u81f4\u547d\u8d2a\u5a6a\u4e4b\u76f8","Victorious Fate Ultimatum Aspect":"\u80dc\u5229\u7684\u547d\u8fd0 \u81f4\u547d\u8d2a\u5a6a\u4e4b\u76f8","Will of Chaos Ultimatum Aspect":"\u6df7\u4e71\u7684\u610f\u5fd7 \u81f4\u547d\u8d2a\u5a6a\u4e4b\u76f8","Primal Crystallised Lifeforce":"\u539f\u59cb\u7d2b\u6676\u547d\u80fd","Sacred Crystallised Lifeforce":"\u795e\u5723\u7d2b\u6676\u547d\u80fd","Vivid Crystallised Lifeforce":"\u6d3b\u6027\u7d2b\u6676\u547d\u80fd","Wild Crystallised Lifeforce":"\u72c2\u91ce\u7d2b\u6676\u547d\u80fd","Reflective Oil":"\u53cd\u5149\u5723\u6cb9","Captured Soul of Void Anomaly":"\u5df2\u6355\u83b7\u7684\u865a\u7a7a\u4e4b\u5f02\u4e4b\u9b42","Captured Soul of Ara, Sister of Light":"\u5df2\u6355\u83b7\u7684\u5149\u660e\u59d0\u59b9\u5a25\u62c9\u4e4b\u9b42","Captured Soul of Visceris":"\u5df2\u6355\u83b7\u7684\u74e6\u745f\u745e\u65af\u4e4b\u9b42","Captured Soul of Burtok, Conjurer of Bones":"\u5df2\u6355\u83b7\u7684\u9aa8\u6cd5\u5e08\u4f2f\u6258\u514b\u4e4b\u9b42","Captured Soul of The Sanguine Siren":"\u5df2\u6355\u83b7\u7684\u73ab\u7ea2\u5973\u5996\u4e4b\u9b42","Ultimatum Aspect":"\u81f4\u547d\u8d2a\u5a6a\u4e4b\u76f8","Alchemist\'s Mark":"\u70bc\u91d1\u5e08\u4e4b\u5370","Galvanic Field":"\u7535\u6d41\u573a","Lightning Conduit":"\u95ea\u7535\u901a\u9053","Overcharge Support":"\u5145\u80fd\u652f\u67b6","The Tower of Ordeals Engraved Ultimatum":"\u6298\u78e8\u4e4b\u5854 \u7b26\u6587\u81f4\u547d\u8d2a\u5a6a","Engraved Ultimatum":"\u7b26\u6587\u81f4\u547d\u8d2a\u5a6a","Shaped Arachnid Nest Map (Atlas of Worlds)":"\u5f02\u86db\u5de2\u7a74(\u5851)(\u5f02\u754c\u56fe\u9274)","Mirrored Tablet":"\u955c\u50cf\u684c\u53f0","Visceral Reliquary Key":"\u5723\u7269\u5385\u94a5\u5319\uff1a\u5185\u810f","Shiny Reliquary Key":"\u5723\u7269\u5385\u94a5\u5319\uff1a\u95ea\u4eae","Archive Reliquary Key":"\u5723\u7269\u5385\u94a5\u5319\uff1a\u4e66\u5e93","Cosmic Reliquary Key":"\u5723\u7269\u5385\u94a5\u5319\uff1a\u5b87\u5b99","Oubliette Reliquary Key":"\u5723\u7269\u5385\u94a5\u5319\uff1a\u5730\u7262","Decaying Reliquary Key":"\u5723\u7269\u5385\u94a5\u5319\uff1a\u8150\u8680","Forgotten Reliquary Key":"\u5723\u7269\u5385\u94a5\u5319\uff1a\u5fd8\u5374","Calling Wand":"\u53ec\u5524\u6cd5\u6756","Convening Wand":"\u53ec\u96c6\u6cd5\u6756","The Torturer Obsidian Pandemonium Sentinel":"\u5211\u7f5a\u8005 \u9ed1\u66dc\u9b54\u57df\u62a4\u536b","Alva\'s Memory":"\u963f\u5c14\u74e6\u7684\u56de\u5fc6","Einhar\'s Memory":"\u4f0a\u6069\u54c8\u5c14\u7684\u56de\u5fc6","Kirac\'s Memory":"\u5947\u62c9\u514b\u7684\u56de\u5fc6","Niko\'s Memory":"\u5c3c\u514b\u7684\u56de\u5fc6"}'); }, function(module) { module.exports = JSON.parse('{"Critical Strike Chance":" \u66b4\u51fb\u7387","Effectiveness of Added Damage":" \u4f24\u5bb3\u6548\u7528","Bow":" \u5f13","Rune ":" \u7b26\u6587","Claw":" \u722a","Dagger":" \u5315\u9996","Warstaff":" \u6218\u6756","Staff":" \u957f\u6756","Axe":" \u65a7","Two Handed ":" \u53cc\u624b","One Handed ":" \u5355\u624b","Mace":" \u9524","Sword":" \u5251","Wand":" \u6cd5\u6756","Fishing Rod":" \u9c7c\u7aff","Abyss":" \u6df1\u6e0a","Client":" \u5ba2\u6237","Alert Level Reduction":" \u8b66\u62a5\u7b49\u7ea7\u8870\u51cf","Time Before Lockdown":" \u5c01\u9501\u524d\u7684\u65f6\u95f4","This item can be equipped by":" \u8be5\u7269\u54c1\u53ef\u4ee5\u88c5\u5907\u7ed9","Any Heist member can equip this item.":" \u4efb\u4f55\u8d4f\u91d1\u730e\u4eba\u90fd\u53ef\u4ee5\u88c5\u5907\u8be5\u7269\u54c1\u3002","Sceptre":" \u77ed\u6756","Weapon Range":" \u6b66\u5668\u8303\u56f4","Attack":" \u653b\u51fb","Melee":" \u8fd1\u6218","Strike":" \u6253\u51fb","Slam":" \u731b\u51fb","Warcry":" \u6218\u543c","Spell":" \u6cd5\u672f","Arcane":" \u5965\u672f","Brand":" \u70d9\u5370","Orb":" \u6cd5\u7403","Nova":" \u65b0\u661f","Channelling":" \u6301\u7eed\u541f\u5531","Physical":" \u7269\u7406","Fire":" \u706b\u7130","Cold":" \u51b0\u971c","Lightning":" \u95ea\u7535","Chaos":" \u6df7\u6c8c","Projectile":" \u6295\u5c04\u7269","Chaining":" \u8fde\u9501","Prismatic":" \u8679\u5149","Minion":" \u53ec\u5524\u751f\u7269","Mine":" \u5730\u96f7","Trap":" \u9677\u9631","Golem":" \u56fe\u817e","Aura":" \u5149\u73af","Herald":" \u6377","Stance":" \u59ff\u6001","Guard":" \u62a4\u536b","Totem":" \u56fe\u817e","Movement":" \u4f4d\u79fb","Travel":" \u65c5\u884c","Blink":" \u95ea\u73b0","Curse":" \u8bc5\u5492","Hex":" \u9b54\u86ca","Mark":" \u5492\u5370","AoE":" \u6548\u679c\u533a\u57df","Duration":" \u6301\u7eed\u65f6\u95f4","Vaal":" \u74e6\u5c14","Trigger":" \u89e6\u53d1","Critical":" \u66b4\u51fb","Link":" \u7f81\u7eca","Mana":" \u9b54\u529b"," Damage":" \u4f24\u5bb3"," Speed":" \u901f\u5ea6","of base":" \u57fa\u7840","Cost & Reservation Multiplier":" \u6d88\u8017\u53ca\u4fdd\u7559\u52a0\u6210","Cost":" \u6d88\u8017","Cast":" \u65bd\u653e","Reservation":" \u4fdd\u7559","Time":" \u65f6\u95f4","Cooldown":" \u51b7\u5374","per ":" \u6bcf","Seconds":" \u79d2","Second":" \u79d2","second":" \u79d2","sec":" \u79d2","Max":" \u6700\u9ad8\u7b49\u7ea7","Instant":" \u77ac\u53d1","Alternate Quality":" \u66ff\u6362\u54c1\u8d28","Cooldown Time":" \u51b7\u5374\u65f6\u95f4","Souls Per Use":" \u6bcf\u6b21\u65bd\u653e\u6240\u9700\u7075\u9b42","Can Store":" \u53ef\u50a8\u5b58","Soul Gain Prevention":" \u9677\u9631\u6301\u7eed","Karst, the Lockpick":"\u89e3\u5bc6\u5e08\u5361\u65af\u7279","Huck, the Soldier":"\u519b\u58eb\u54c8\u514b","Niles, the Interrogator":"\u5ba1\u8baf\u5e08\u5948\u5c14\u65af","Vinderi, the Dismantler":"\u7206\u7834\u5e08\u6e29\u5fb7\u5229","Gianna, the Master of Disguise":"\u6613\u5bb9\u5927\u5e08\u5409\u5b89\u5a1c","Tibbs, the Giant":"\u5de8\u6c49\u7279\u535c\u65af","Tullina, the Catburglar":"\u6f5c\u884c\u8005\u56fe\u6797\u5a1c","Nenet, the Scout":"\u65a5\u5019\u5948\u5c3c\u7279","Isla, the Engineer":"\u5de5\u7a0b\u5e08\u4f0a\u65af\u62c9","Atlas Region":" \u5f02\u754c\u5730\u533a","Haewark Hamlet":" \u6d77\u6c83\u514b\u6751","Lira Arthain":" \u5229\u62c9\u4e9a\u68ee","Valdos Rest":" \u74e6\u5c14\u591a\u4e4b\u606f","Glennach Cairns":" \u683c\u4f26\u7eb3\u8d6b\u77f3\u51a2","Limited to":" \u4ec5\u9650","Radius":" \u8303\u56f4","Variable":" \u53d8\u91cf","Medium":" \u4e2d","Small":" \u5c0f","Survival":" \u5e78\u5b58","Lasts":" \u6301\u7eed","Large":" \u5927","Consumes":" \u6bcf\u6b21\u4f7f\u7528"," of ":" \u4ece"," on use":" \u4e2d\u6d88\u8017","Currently has":" \u76ee\u524d\u6709","Charges":" \u5145\u80fd\u6b21\u6570","Recovers":" \u56de\u590d","Historic":" \u53f2\u5b9e","Life":" \u751f\u547d"," over":" \u7528\u65f6","Genus":" \u5c5e\u7c7b","Group":" \u7ec4\u522b","Family":" \u79d1\u76ee","Uses":" \u4f7f\u7528","Use":" \u4f7f\u7528","Requires":" \u9700\u8981","Support":" \u8f85\u52a9","Socketed Fossils":" \u4e2a\u5df2\u9576\u5d4c\u7684\u5316\u77f3","Socketed Fossil":" \u4e2a\u5df2\u9576\u5d4c\u7684\u5316\u77f3"}'); }, function(module) { module.exports = JSON.parse('{"Witch":"\u5973\u5deb","Templar":"\u5723\u5802\u6b66\u50e7","Scion":"\u8d35\u65cf","Shadow":"\u6697\u5f71\u523a\u5ba2","Marauder":"\u91ce\u86ee\u4eba","Ranger":"\u6e38\u4fa0","Duelist":"\u51b3\u6597\u8005","Corrupted":"\u5df2\u6c61\u67d3","Unidentified":"\u672a\u9274\u5b9a","Stack Size":"\u5806\u53e0\u6570\u91cf","Slayer":"\u5904\u5211\u8005","Gladiator":"\u536b\u58eb","Champion":"\u51a0\u519b","Assassin":"\u523a\u5ba2","Saboteur":"\u7834\u574f\u8005","Trickster":"\u8bc8\u6b3a\u5e08","Juggernaut":"\u52c7\u58eb","Berserker":"\u66b4\u5f92","Chieftain":"\u914b\u957f","Necromancer":"\u6b7b\u7075\u5e08","Occultist":"\u79d8\u672f\u5bb6","Elementalist":"\u5143\u7d20\u4f7f","Deadeye":"\u9510\u773c","Raider":"\u4fa0\u5ba2","Pathfinder":"\u8ffd\u730e\u8005","Inquisitor":"\u5224\u5b98","Hierophant":"\u5723\u5b97","Guardian":"\u5b88\u62a4\u8005","Ascendant":"\u5347\u534e\u4f7f\u5f92","None":"\u65e0","and":"\u548c","Add Stat Filter":"\u589e\u52a0\u72b6\u6001\u8fc7\u6ee4\u5668","Add Stat Group Filter":"\u589e\u52a0\u72b6\u6001\u7ec4\u8fc7\u6ee4\u5668","Stat Groups":"\u72b6\u6001\u7ec4","No Price Set":"\u672a\u5b9a\u4ef7","Search Items...":"\u67e5\u627e\u7269\u54c1...","Highlight Items...":"\u9ad8\u4eae\u7269\u54c1...","Filter Items...":"\u7b5b\u9009\u7269\u54c1...","Any":"\u4efb\u4f55","Online In League":"\u4ec5\u8d5b\u5b63\u5728\u7ebf","Online Only":"\u4ec5\u5728\u7ebf","Listed by":"\u4e0a\u67b6\u8005","Stat Filters":"\u72b6\u6001\u8fc7\u6ee4","And":"\u548c","Not":"\u975e","If":"\u5982\u679c","Count":"\u6570\u91cf","Weighted Sum":"\u52a0\u6743\u6c42\u548c","{i} results":"{i}\u4e2a\u7ed3\u679c","Show my Status":"\u663e\u793a\u6211\u7684\u72b6\u6001","Show my Status on All Leagues":"\u663e\u793a\u6240\u6709\u533a\u72b6\u6001","Appear Offline":"\u9690\u8eab","Fetching...":"\u83b7\u53d6\u4e2d...","Type Filters":"\u7c7b\u578b\u8fc7\u6ee4\u5668","Item Category":"\u7269\u54c1\u7c7b\u578b","Item Rarity":"\u7269\u54c1\u7a00\u6709\u5ea6","Any Weapon":"\u4efb\u4f55\u6b66\u5668","One-Handed Weapon":"\u5355\u624b\u6b66\u5668","One-Handed Melee Weapon":"\u5355\u624b\u8fd1\u6218\u6b66\u5668","Two-Handed Melee Weapon":"\u53cc\u624b\u8fd1\u6218\u6b66\u5668","Bow":"\u5f13","Claw":"\u722a","Dagger":"\u5315\u9996","One-Handed Axe":"\u5355\u624b\u65a7","One-Handed Mace":"\u5355\u624b\u9524","One-Handed Sword":"\u5355\u624b\u5251","Sceptre":"\u77ed\u6756","Two-Handed Axe":"\u53cc\u624b\u65a7","Two-Handed Mace":"\u53cc\u624b\u9524","Two-Handed Sword":"\u53cc\u624b\u5251","Wand":"\u6cd5\u6756","Fishing Rod":"\u9c7c\u7aff","Body Armour":"\u80f8\u7532","Boots":"\u978b\u5b50","Gloves":"\u624b\u5957","Helmet":"\u5934\u90e8","Shield":"\u76fe","Quiver":"\u7bad\u888b","Amulet":"\u9879\u94fe","Belt":"\u8170\u5e26","Ring":"\u6212\u6307","Gem":"\u6280\u80fd\u5b9d\u77f3","Abyss Jewel":"\u6df1\u6e0a\u73e0\u5b9d","Jewel":"\u73e0\u5b9d","Flask":"\u836f\u5242","Map":"\u5730\u56fe","Leaguestone":"\u8d5b\u5b63\u77f3","Divination Card":"\u547d\u8fd0\u5361","Captured Beast":"\u5df2\u6355\u9b54\u7269","Metamorph Sample":"\u707e\u53d8\u6837\u672c","Normal":"\u4e00\u822c","Magic":"\u9b54\u6cd5\u7684","Rare":"\u7a00\u6709\u7684","Unique":"\u4f20\u5947\u7684","Unique (Relic)":"\u4f20\u5947(\u9057\u4ea7)","Weapon Filters":"\u6b66\u5668\u8fc7\u6ee4","Damage":"\u4f24\u5bb3","APS":"\u6bcf\u79d2\u653b\u51fb\u6b21\u6570","Attacks per Second":"\u6bcf\u79d2\u653b\u51fb\u6b21\u6570","Critical Chance":"\u66b4\u51fb\u51e0\u7387","Damage per Second":"\u6bcf\u79d2\u4f24\u5bb3","pDPS":"\u6bcf\u79d2\u7269\u7406\u4f24\u5bb3","Physical DPS":"\u6bcf\u79d2\u7269\u7406\u4f24\u5bb3","Elemental DPS":"\u6bcf\u79d2\u5143\u7d20\u4f24\u5bb3","Armour Filters":"\u62a4\u7532\u8fc7\u6ee4","Armour":"\u62a4\u7532","Evasion":"\u95ea\u907f","Energy Shield":"\u80fd\u91cf\u62a4\u76fe","Block":"\u683c\u6321","Ward":"\u7ed3\u754c","Base Percentile":"\u57fa\u7840\u767e\u5206\u6bd4","Includes base value, local modifiers, and maximum quality":"\u5305\u62ec\u57fa\u7840\u6570\u503c\u3001\u672c\u5730\u8bcd\u7f00\u3001\u6700\u5927\u54c1\u8d28","Includes base value and local modifiers":"\u5305\u62ec\u57fa\u7840\u6570\u503c\u548c\u672c\u5730\u8bcd\u7f00","The percentile of all base defence rolls, averaged (0-100%)":"\u6240\u6709\u57fa\u7840\u9632\u5fa1\u7684\u767e\u5206\u6570\uff0c\u5e73\u5747\uff080-100%\uff09","Socket Filters":"\u63d2\u69fd\u8fc7\u6ee4","Sockets":"\u63d2\u69fd","Links":"\u8fde\u63a5","R":"\u7ea2","G":"\u7eff","B":"\u84dd","W":"\u767d","Requirements":"\u9700\u6c42","Level":"\u7b49\u7ea7","Strength":"\u529b\u91cf","Dexterity":"\u654f\u6377","Intelligence":"\u667a\u6167","Character Class":"\u57fa\u7840\u804c\u4e1a","Miscellaneous":"\u5176\u4ed6","Quality":"\u54c1\u8d28","Item Level":"\u7269\u54c1\u7b49\u7ea7","Map Filters":"\u5730\u56fe\u8fc7\u6ee4\u5668","Map Tier":"\u5730\u56fe\u7b49\u7ea7","Map Packsize":"\u5730\u56fe\u5305","Map IIQ":"\u5730\u56fe\u7269\u54c1\u6389\u843d\u6570\u91cf","Map IIR":"\u5730\u56fe\u7269\u54c1\u7a00\u6709\u5ea6","Map Series":"\u5730\u56fe\u7cfb\u5217","Current":"\u5f53\u524d","Scourge":"\u5f02\u5ea6\u5929\u707e","Expedition":"\u5148\u7956\u79d8\u85cf","Ritual":"\u9a71\u7075\u4eea\u5f0f","Heist":"\u593a\u5b9d\u5947\u5175","Harvest":"\u5e84\u56ed","Delirium":"\u60ca\u60b8\u8ff7\u96fe","Metamorph":"\u707e\u53d8","Blight":"\u83cc\u6f6e","Legion":"\u519b\u56e2","Synthesis":"\u865a\u7a7a\u5e7b\u5883","Betrayal":"\u80cc\u53db\u8005","War for the Atlas":"\u5f02\u754c\u4e89\u593a\u6218","Atlas of Worlds":"\u5f02\u754c\u56fe\u9274","The Awakening":"\u5927\u89c9\u9192","Legacy":"\u9057\u4ea7","Shaped Map":"\u5851\u754c\u8005\u5730\u56fe","Elder Map":"\u88c2\u754c\u8005\u5730\u56fe","Blighted Map":"\u83cc\u6f6e\u5730\u56fe","Gem Level":"\u6280\u80fd\u5b9d\u77f3\u7b49\u7ea7","Gem Experience %":"\u5b9d\u77f3\u7ecf\u9a8c %","Shaper Item":"\u5851\u754c\u8005\u7269\u54c1","Elder Item":"\u88c2\u754c\u8005\u7269\u54c1","Talisman Tier":"\u9b54\u7b26\u7b49\u7ea7","Stored Experience":"\u5b58\u50a8\u7684\u7ecf\u9a8c","Durability":"\u8010\u4e45\u5ea6","Alternate Art":"\u7279\u6548","Identified":"\u5df2\u9274\u5b9a","Crafted":"\u5de5\u827a\u7684","Enchanted":"\u9644\u9b54\u7684","Trade Filters":"\u4ea4\u6613\u8fc7\u6ee4","Seller Filters":"\u5356\u5bb6\u8fc7\u6ee4","Minimum Stock":"\u6700\u5c0f\u5b58\u91cf","Seller Account":"\u5356\u5bb6\u5e10\u53f7","Collapse Listings by Account":"\u6309\u8d26\u53f7\u6536\u8d77\u5217\u8868","Enter account name...":"\u8f93\u5165\u8d26\u53f7\u540d","Sale Type":"\u4ea4\u6613\u7c7b\u578b","Buyout or Fixed Price":"\u4e00\u53e3\u4ef7","No Listed Price":"\u65e0\u5b9a\u4ef7","Buyout Price":"\u4e00\u53e3\u4ef7","Orb of Alteration":"\u6539\u9020\u77f3","Orb of Fusing":"\u94fe\u63a5\u77f3","Orb of Alchemy":"\u70b9\u91d1\u77f3","Chaos Orb Equivalent":"\u6df7\u6c8c\u77f3 \u540c\u7b49\u4ef7\u503c","Chaos Orb":"\u6df7\u6c8c\u77f3","Gemcutter\'s Prism":"\u73e0\u5b9d\u5320\u7684\u68f1\u955c","Exalted Orb":"\u5d07\u9ad8\u77f3","Chromatic Orb":"\u5e7b\u8272\u77f3","Jeweller\'s Orb":"\u5de5\u5320\u77f3","Orb of Chance":"\u673a\u4f1a\u77f3","Cartographer\'s Chisel":"\u5236\u56fe\u9489","Orb of Scouring":"\u91cd\u94f8\u77f3","Blessed Orb":"\u795d\u798f\u77f3","Orb of Regret":"\u540e\u6094\u77f3","Regal Orb":"\u5bcc\u8c6a\u77f3","Divine Orb":"\u795e\u5723\u77f3","Vaal Orb":"\u74e6\u5c14\u5b9d\u73e0","Unknown":"\u672a\u77e5","Copied!":"\u5df2\u590d\u5236!","Added {PLAYER} to your ignore list":"\u5c06{PLAYER}\u52a0\u5165\u5ffd\u7565\u540d\u5355","Removed {PLAYER} from your ignore list":"\u5c06{PLAYER}\u4ece\u4f60\u7684\u5ffd\u7565\u5217\u8868\u79fb\u9664","Exact Price:":"\u4e00\u53e3\u4ef7:","Asking Price:":"\u8be2\u4ef7:","Current Offer:":"\u5f53\u524d\u7ade\u6807:","Item no longer available":"\u9053\u5177\u4e0d\u53ef\u7528","Ignore Player":"\u5ffd\u7565\u73a9\u5bb6","Unignore Player":"\u53d6\u6d88\u5ffd\u7565\u73a9\u5bb6","min":"\u6700\u5c0f\u503c","max":"\u6700\u5927\u503c","weight":"\u6743\u91cd","Items I Want":"\u9700\u6c42\u7269\u54c1","Items I Have":"\u5df2\u6709\u7269\u54c1","Add Want Entry":"\u8f93\u5165\u9700\u6c42","Add Have Entry":"\u8f93\u5165\u5df2\u6709","Swap Want/Have":"\u5207\u6362\u9700\u6c42/\u5df2\u6709","Add Stat Group":"\u589e\u52a0\u72b6\u6001\u7ec4","Load More":"\u52a0\u8f7d\u66f4\u591a","Activate Live Search":"\u6fc0\u6d3b\u5b9e\u65f6\u641c\u7d22","Deactivate Live Search":"\u53d6\u6d88\u5b9e\u65f6\u641c\u7d22","Show Filters":"\u663e\u793a\u8fc7\u6ee4\u5668","Hide Filters":"\u9690\u85cf\u8fc7\u6ee4\u5668","Clear":"\u6e05\u9664","Account Settings":"\u5e10\u53f7\u8bbe\u7f6e","Online Status":"\u5728\u7ebf\u72b6\u6001","Search Settings":"\u641c\u7d22\u8bbe\u7f6e","Treat DND Players as Offline":"DND\u73a9\u5bb6\u4f5c\u4e3a\u79bb\u7ebf","Treat AFK Players as Offline":"AFK\u73a9\u5bb6\u4f5c\u4e3a\u79bb\u7ebf","Track Online Status for Live Search":"\u8ddf\u8e2a\u5b9e\u65f6\u641c\u7d22\u5728\u7ebf\u72b6\u6001","Notification Sound":"\u63d0\u793a\u97f3","Notification Volume":"\u63d0\u793a\u97f3\u91cf","Cache Settings":"\u7f13\u5b58\u8bbe\u7f6e","Cached Data":"\u7f13\u5b58","Clear Cached Data":"\u6e05\u7406\u7f13\u5b58","Ignore List":"\u5ffd\u7565\u5217\u8868","Page {PAGE} of {PAGEMAX}":"\u9875 {PAGE} \u7684 {PAGEMAX}","Remove All":"\u79fb\u9664\u6240\u6709","Item is outdated":"\u7269\u54c1\u5df2\u8fc7\u671f","Unavailable Stat":"\u4e0d\u53ef\u7528\u72b6\u6001","Failed to fetch the next set of trade items.":"\u83b7\u53d6\u4e0b\u4e00\u7ec4\u4ea4\u6613\u7269\u54c1\u5931\u8d25\u3002","Could not refresh trade item.":"\u65e0\u6cd5\u5237\u65b0\u4ea4\u6613\u7269\u54c1\u3002","Search form cleared!":"\u641c\u7d22\u6761\u4ef6\u5df2\u6e05\u7406\uff01","Currency":"\u901a\u8d27","Leaguestones":"\u8d5b\u5b63\u77f3","Essences":"\u7cbe\u534e","Maps":"\u5730\u56fe","Divination Cards":"\u547d\u8fd0\u5361","Showing 1 result":"\u663e\u793a1\u4e2a\u7ed3\u679c","Showing {i} results":"\u6b63\u5728\u5c55\u793a{i}\u4e2a\u7ed3\u679c","{i} matched":"{i}\u4e2a\u5339\u914d\u9879","Your live search is being rate-limited.":"\u641c\u7d22\u9891\u7387\u53d7\u5230\u9650\u5236\u3002","Live Search: ":"\u5b9e\u65f6\u641c\u7d22:","Search":"\u641c\u7d22","Select Items To Exchange":"\u8bf7\u9009\u62e9\u8981\u4ea4\u6362\u7684\u7269\u54c1","Custom: {sound}":"\u81ea\u5b9a\u4e49:{sound}","Custom...":"\u81ea\u5b9a\u4e49...","The selected file was not recognized as an audio file":"\u6240\u9009\u6587\u4ef6\u975e\u97f3\u9891\u6587\u4ef6","An error occurred while loading the selected sound":"\u52a0\u8f7d\u97f3\u6548\u5931\u8d25\u3002","Account status updated!":"\u5e10\u53f7\u72b6\u6001\u5df2\u66f4\u65b0\u3002","Failed to update account status.":"\u5e10\u53f7\u72b6\u6001\u66f4\u65b0\u5931\u8d25\u3002","Reloading Page...":"\u52a0\u8f7d\u9875\u9762...","Failed to clear ignore list.":"\u6e05\u7406\u5ffd\u7565\u5217\u8868\u5931\u8d25","Failed to retrieve ignore list.":"\u6062\u590d\u5ffd\u7565\u5217\u8868\u5931\u8d25","listed":"\u4e0a\u67b6","just now":"\u73b0\u5728","Search Listed Items":"\u641c\u7d22\u7269\u54c1","Item Exchange":"\u7269\u54c1\u4ea4\u6362","Gong":"\u9523\u58f0","Any Dagger":"\u4efb\u4f55\u5315\u9996","Any Staff":"\u4efb\u4f55\u957f\u6756","Any Armour":"\u4efb\u4f55\u62a4\u7532","Any Accessory":"\u4efb\u4f55\u9970\u54c1","Any Non-Unique":"\u4efb\u4f55\u975e\u4f20\u5947","No elements found. Consider changing the search query.":"\u672a\u627e\u5230\uff0c\u8bf7\u4fee\u6539\u641c\u7d22\u3002","No matches.":"\u4e0d\u5339\u914d\u3002","{i} selected":"\u5df2\u9009\u62e9{i}","Listed Item Searching":"\u641c\u7d22\u7269\u54c1","This website allows you to search through items listed for sale in Shop Forums as well as those listed using Public Premium Stash Tabs in-game.":"\u5728\u6b64\u9875\u9762\u4e0a\uff0c\u4f60\u53ef\u4ee5\u641c\u7d22\u5230\u6e38\u620f\u5185\u5e02\u96c6\u4e0a\u67b6\u7684\u7269\u54c1\u3002 \u786e\u4fdd\u7269\u54c1\u53ef\u4ee5\u88ab\u641c\u5230\uff0c\u4f60\u9700\u8981\u786e\u5b9a\u7269\u54c1\u6240\u5728\u5e02\u96c6\u9875\u662f\u672a\u8fc7\u671f\u72b6\u6001\u3002","You can search by an item\'s name or an item\'s base type using the \\"Search Items\\" field.":"\u4f60\u53ef\u4ee5\u901a\u8fc7 \\"\u67e5\u627e\u7269\u54c1\\"\u6765\u641c\u7d22\u4e00\u4e2a\u7269\u54c1\u7684\u540d\u79f0\u6216\u8005\u57fa\u7840\u7c7b\u578b\u3002","Players will have their Online/Offline status updated every minute.":"\u73a9\u5bb6\u7684\u5728\u7ebf/\u79bb\u7ebf\u72b6\u6001\u6bcf\u5206\u949f\u5237\u65b0\u4e00\u6b21\u3002","While searching is easy, you will still have to contact the player selling the item in order to complete the trade.":"\u5728\u5b8c\u6210\u641c\u7d22\u540e\uff0c\u4f60\u9700\u8981\u5728\u6e38\u620f\u5185\u8054\u7cfb\u73a9\u5bb6\uff0c\u6216\u8005\u5230\u6e38\u620f\u5e02\u96c6\u641c\u7d22\u6b64\u7269\u54c1\uff0c \u6700\u7ec8\u5728\u6e38\u620f\u5185\u5b8c\u6210\u4ea4\u6613\u3002","We provide an easy copy-pasteable message to whisper the player with, as well as a link to PM the player on the main Path of Exile website.":"\u5728\u9875\u9762\u4e0a\uff0c\u53ef\u4ee5\u901a\u8fc7\u79c1\u804a\u6309\u94ae\u6765\u83b7\u5f97\u7269\u54c1\u4fe1\u606f\uff0c\u5728\u6e38\u620f\u804a\u5929\u6846\u5185\u7c98\u8d34\u5373\u53ef\u4e0e\u5356\u5bb6\u6c9f\u901a\u3002 \u540c\u65f6\uff0c\u53ef\u4ee5\u901a\u8fc7\u79c1\u4fe1\u6309\u94ae\u6765\u4e0e\u5356\u5bb6\u8fdb\u884c\u8bba\u575b\u79c1\u4fe1\u6c9f\u901a\u3002","Please note: The whisper message will be translated into the seller\'s local language.":"\u6ce8\u610f\uff1a\u79c1\u804a\u5185\u5bb9\u5c06\u81ea\u52a8\u8f6c\u5316\u4e3a\u5356\u5bb6\u672c\u5730\u8bed\u8a00\u663e\u793a ","If for any reason you no longer wish to view a certain player\'s listings, you can use the \\"Ignore Player\\" button to remove their listings from your search results.":"\u5982\u679c\u4e0d\u5e0c\u671b\u67e5\u770b\u67d0\u4e2a\u73a9\u5bb6\u7684\u4e0a\u67b6\u7269\u54c1\uff0c\u53ef\u4ee5\u4f7f\u7528\\"\u5ffd\u7565\u73a9\u5bb6\\"\u6309\u94ae\u6765\u5c06 \u5176\u4e0a\u67b6\u7684\u7269\u54c1\u4ece\u641c\u7d22\u5217\u8868\u4e2d\u79fb\u9664 ","Please note: This feature requires you to be logged in with your Path of Exile account. Additionally, this ignore list is not tied to your in-game ignore list in any way, and may be managed in the settings panel right here on the trade site.":"\u6ce8\u610f\uff1a\u5728\u4f7f\u7528\u79c1\u4fe1\u6c9f\u901a\u65f6\uff0c \u9700\u8981\u767b\u5f55\u6e38\u620f\u5e10\u53f7\uff0c\u4ee5\u4fbf\u6c9f\u901a\u3002 \u53e6\u5916\uff0c\u9875\u9762\u5e02\u96c6\u7684\u5ffd\u7565\u540d\u5355\u4e0e\u6e38\u620f\u5185\u7684\u5ffd\u7565\u540d\u5355\u65e0\u5173\uff0c \u9875\u9762\u5e02\u96c6\u7684\u5ffd\u7565\u540d\u5355\u53ef\u4ee5\u5728\u9875\u9762\u4e0a\u5355\u72ec\u8bbe\u7f6e\u3002 ","We also allow you to perform a \\"Live Search\\" where you will be notified when a new item matching your search criteria is listed or updated.":"\u540c\u65f6\uff0c\u5728\u6709\u4e00\u4e2a\u7b26\u5408\u641c\u7d22\u6761\u4ef6\u7684\u65b0\u7269\u54c1\u4e0a\u67b6\u6216\u8005\u66f4\u65b0\u65f6\uff0c \u53ef\u4ee5\u4f7f\u7528 \\"\u5b9e\u65f6\u641c\u7d22\\"\u6765\u83b7\u5f97\u65b0\u7269\u54c1\u63d0\u9192","Please note: The search only runs while you keep your browser tab or window open (in the background is okay).":"\u6ce8\u610f\uff1a\u641c\u7d22\u53ea\u53ef\u8fd0\u884c\u4e8e\u6d4f\u89c8\u5668\u548c\u7a97\u53e3\u5f00\u542f\u65f6(\u53ef\u5728\u540e\u53f0\u8fd0\u884c).","Settings":"\u8bbe\u5b9a","About":"\u5173\u4e8e","When logged into this site, you may also choose how your in-game status is used for trade-related searches.":"\u5728\u767b\u5f55\u5e02\u96c6\u9875\u9762\u65f6\uff0c\u53ef\u4ee5\u8bbe\u7f6e\u6e38\u620f\u5185\u72b6\u6001\uff0c \u6b64\u72b6\u6001\u53ef\u4ee5\u7528\u4f5c\u4ea4\u6613\u76f8\u5173\u7684\u641c\u7d22\u3002","By default, your status will show for items you have listed in the league that you are currently playing in.":"\u9ed8\u8ba4\u60c5\u51b5\u4e0b\uff0c \u5f53\u524d\u89d2\u8272\u6b63\u5728\u6e38\u620f\u7684\u533a\u5185\u7269\u54c1\u4f1a\u663e\u793a\u5f53\u524d\u7684\u5728\u7ebf\u72b6\u6001\u3002 ","You may opt to show your status regardless of what league you are playing if you so choose.":"\u4f60\u4e5f\u53ef\u4ee5\u9009\u62e9\u4e0d\u4ec5\u5728\u6e38\u620f\u6240\u5728\u533a\u5185\u663e\u793a\u72b6\u6001\u3002 ","Please note: Players using the Do Not Disturb feature in-game will be treated as Offline for the purposes of this site.":"\u6ce8\u610f\uff1a\u5982\u679c\u6e38\u620f\u5185\u8bbe\u7f6e\u4e86\u514d\u6253\u6270\uff0c\u90a3\u4e48\u5728\u5e02\u96c6\u9875\u9762\u4e0a\u5c06\u88ab\u89c6\u4f5c\u79bb\u7ebf\u3002 ","Bulk Item Exchange":"\u6563\u8d27\u4ea4\u6362","Certain items may be listed for bulk sale (listed below).":"\u67d0\u4e9b\u7269\u54c1\u4f1a\u4ee5\u6279\u91cf\u5f62\u5f0f\u4e0a\u67b6\uff08\u5982\u4e0b\uff09","Your eligible items will be grouped together under one price, with the total amount of items presented as \\"stock\\".":"\u7b26\u5408\u6761\u4ef6\u7684\u7269\u54c1\u4f1a\u4ee5\u540c\u4e00\u4ef7\u683c\u7ec4\u5408\u5230\u4e00\u8d77\uff0c \u6240\u6709\u7269\u54c1\u4ee5 \\"\u5e93\u5b58\\"\u7684\u5f62\u5f0f\u5c55\u793a\u3002","In order to list exchange entries, either in-game or on the forum, use the ratio format on the item you wish to offer for the type of item you would like in return.":"\u4e3a\u4e86\u5c55\u793a\u4ea4\u6613\u9879\uff0c\u5728\u6e38\u620f\u548c\u9875\u9762\u4e0a\uff0c\u4f7f\u7528\u4ea4\u6613\u6bd4\u4f8b\u7684\u683c\u5f0f\u6765\u5c55\u793a\u5e0c\u671b\u51fa\u552e\u548c\u83b7\u5f97\u7684\u7269\u54c1","For example:":"\u4f8b\u5982:","will list your intent to buy 3 Orbs of Fusing for 1 Chaos Orb each.":"\u8868\u793a\u5e0c\u671b3\u4e2a\u70b9\u91d1\u77f3\uff0c\u4ef7\u683c\u4e3a\u6bcf\u4e2a1\u6df7\u6c8c\u77f3","Alternatively:":"\u6216\u8005","will list your intent to buy 2 Orbs of Chaos for 35 Chromatic Orbs each. This is technically equivalent to selling 17.5 Chromatic Orbs per Chaos Orb, however pricing this way is more appropriate for bulk sets of items.":"\u8868\u793a\u5e0c\u671b\u8d2d\u4e702\u4e2a\u6df7\u6c8c\u77f3\uff0c\u4ef7\u683c\u4e3a\u6bcf\u4e2a35\u5e7b\u8272\u77f3\uff0c \u7406\u8bba\u4e0a,\u8fd9\u4e2a\u7b49\u4e8e\u6bcf\u4e2a\u6df7\u6c8c\u77f317.5\u5e7b\u8272\u77f3\u7684\u4ef7\u683c\u3002 \u8fd9\u79cd\u51fa\u4ef7\u65b9\u5f0f\u66f4\u52a0\u9002\u5408\u6279\u91cf\u7269\u54c1\u3002","Please note: Stock includes all of the items of that type that are publicly listed (priced or not).":"\u6ce8\u610f\uff1a\u4ed3\u5e93\u5305\u542b\u6240\u6709\u516c\u5f00\u7684\u7269\u54c1 (\u5305\u62ec\u6807\u4ef7\u53ca\u672a\u6807\u4ef7\u7269\u54c1).","Item Tags":"\u7269\u54c1\u6807\u7b7e","is worth":"\u4ef7\u503c","what you get":"\u83b7\u5f97","what you pay":"\u652f\u4ed8","Stock":"\u5e93\u5b58","Not enough stock!":"\u65e0\u8db3\u591f\u5e93\u5b58","pseudo":"\u7efc\u5408","scourge":"\u5929\u707e","delve":"\u5730\u5fc3","explicit":"\u5916\u5ef6","implicit":"\u57fa\u5e95","enchant":"\u9644\u9b54","crafted":"\u5de5\u827a","monster":"\u602a\u7269","ultimatum":"\u81f4\u547d\u8d2a\u5a6a","Mirrored":"\u5df2\u590d\u5236","Listed":"\u5df2\u4e0a\u67b6","Any Time":"\u4efb\u4f55\u65f6\u95f4","Up to a Day Ago":"\u4e00\u65e5\u524d","Up to 3 Days Ago":"3\u65e5\u524d","Up to a Week Ago":"\u4e00\u5468\u524d","Up to 2 Weeks Ago":"\u4e24\u5468\u524d","Up to 1 Month Ago":"\u4e00\u6708\u524d","Up to 2 Months Ago":"\u4e24\u6708\u524d","{RANGE1} to {RANGE2}":"{RANGE1} \u5230 {RANGE2}","Item stats have been added to your stat filters.":"\u7269\u54c1\u72b6\u6001\u5df2\u6dfb\u52a0\u81f3\u8fc7\u6ee4\u5668\u3002","Whisper message copied.":"\u79c1\u4fe1\u5df2\u590d\u5236\u3002","Item text copied.":"\u7269\u54c1\u4fe1\u606f\u5df2\u590d\u5236\u3002","Last Client Language (Default)":"\u5ba2\u6237\u7aef\u8bed\u8a00(\u9ed8\u8ba4)","English":"\u82f1\u8bed","Brazilian Portuguese":"\u5df4\u897f\u8bed","Russian":"\u4fc4\u8bed","Thai":"\u6cf0\u8bed","German":"\u5fb7\u8bed","French":"\u6cd5\u8bed","Spanish":"\u897f\u73ed\u7259\u8bed","Japanese":"\u65e5\u8bed","Korean":"\u97e9\u8bed","Any Gem":"\u4efb\u4f55\u5b9d\u77f3","Skill Gem":"\u6280\u80fd\u5b9d\u77f3","Support Gem":"\u8f85\u52a9\u5b9d\u77f3","Any Jewel":"\u4efb\u4f55\u73e0\u5b9d","Any Expedition Logbook":"\u4efb\u4f55\u5148\u7956\u79d8\u85cf\u65e5\u5fd7","Any Currency":"\u4efb\u4f55\u901a\u8d27","Unique Fragment":"\u4efb\u4f55\u788e\u7247","Resonator":"\u5171\u632f\u5668","Fossil":"\u5316\u77f3","Whisper Language":"\u79c1\u804a\u8bed\u8a00","Veiled":"\u5f71\u533f","Scarabs":"\u5723\u7532\u866b","fractured":"\u5206\u88c2\u7684","Fractured Item":"\u5206\u88c2\u4e4b\u7269","Synthesised Item":"\u5fc6\u5883\u7269\u54c1","Can Fulfil Trade":"\u53ef\u5b8c\u6210\u4ea4\u6613","Organization":"\u7ec4\u7ec7","Out Of Stock":"\u7f3a\u8d27","Resend":"\u91cd\u53d1","Backend Message: ":"\u540e\u53f0\u6d88\u606f:","Invalid character name.":"\u65e0\u6548\u89d2\u8272\u540d","Submit an account name to search.":"\u8f93\u5165\u641c\u7d22\u7684\u8d26\u53f7\u540d","An error occurred.":"\u53d1\u751f\u9519\u8bef","You must be logged in to use the Live Search feature.":"\u767b\u5f55\u540e\u53ef\u4f7f\u7528\u5b9e\u65f6\u641c\u7d22","New live search results!":"\u65b0\u7684\u5b9e\u65f6\u641c\u7d22\u7ed3\u679c\uff01","1 new item has matched your search.":"\u641c\u5230\u4e00\u4e2a\u7b26\u5408\u6761\u4ef6\u7684\u65b0\u7269\u54c1","{i} new items have matched your search.":"\u641c\u5230{i}\u4e2a\u7b26\u5408\u6761\u4ef6\u7684\u65b0\u7269\u54c1","Please select a valid league to search in.":"\u8bf7\u9009\u62e9\u53ef\u7528\u533a\u641c\u7d22","limit reached!":"\u5230\u8fbe\u9650\u5236!","max: {MAX}":"\u6700\u5927: {MAX}","Dashboard":"\u9762\u677f","Purchase":"\u8d2d\u4e70","Hide":"\u9690\u85cf","Show":"\u663e\u793a","Rune Dagger":"\u7b26\u6587\u5315\u9996","Warstaff":"\u6218\u4e89\u957f\u6756","Incubator":"\u5b55\u80b2\u77f3","Heist Target":"\u52ab\u76d7\u76ee\u6807","Oils":"\u5723\u6cb9","Awakened Support Gem":"\u5f3a\u5316\u8f85\u52a9\u5b9d\u77f3","Map Fragment":"\u5730\u56fe\u788e\u7247","Maven\'s Invitation":"\u8d24\u4e3b\u4e4b\u9080","Scarab":"\u5723\u7532\u866b","Watchstone":"\u5b88\u671b\u77f3","Live Search error":"\u5b9e\u65f6\u641c\u7d22\u9519\u8bef","An error occurred while connecting":"\u8fde\u63a5\u65f6\u62a5\u9519","Live Search retry limit exceeded":"\u8fbe\u5230\u641c\u7d22\u91cd\u8bd5\u4e0a\u9650","Please refresh the page and try again":"\u8bf7\u5237\u65b0\u9875\u9762\u540e\u518d\u6b21\u5c1d\u8bd5","Cluster Jewel":"\u661f\u56e2\u73e0\u5b9d","Now":"\u73b0\u5728","Stash":"\u4ed3\u5e93","Inventory":"\u80cc\u5305","Role":"\u89d2\u8272","Go to Line":"\u524d\u5f80\u884c\u6578","Pulse":"\u8109\u51b2","Piano":"\u94a2\u7434","Chime":"\u949f\u58f0","Base Jewel":"\u666e\u901a\u73e0\u5b9d","Base Dagger":"\u57fa\u7840\u5315\u9996","Base Staff":"\u57fa\u7840\u957f\u6756","Trinket":"\u9970\u54c1","Any Heist Equipment":"\u4efb\u4f55\u8d4f\u91d1\u7269\u54c1","Heist Gear":"\u8d4f\u91d1\u730e\u4eba\u88c5\u5907","Heist Tool":"\u8d4f\u91d1\u730e\u4eba\u5de5\u5177","Heist Cloak":"\u8d4f\u91d1\u730e\u4eba\u62ab\u98ce","Heist Brooch":"\u8d4f\u91d1\u730e\u4eba\u80f8\u9488","Any Heist Mission":"\u8d4f\u91d1\u4efb\u52a1","Heist Contract":"\u8d4f\u91d1\u5951\u7ea6","Heist Blueprint":"\u8d4f\u91d1\u84dd\u56fe","Heist Filters":"\u593a\u5b9d\u73a9\u6cd5\u8fc7\u6ee4","Wings Revealed":"\u53d1\u73b0\u7684\u4fa7\u5385","Total Wings":"\u603b\u4fa7\u5385","Escape Routes Revealed":"\u53d1\u73b0\u9003\u4ea1\u8def\u7ebf","Total Escape Routes":"\u603b\u9003\u4ea1\u8def\u7ebf","Reward Rooms Revealed":"\u7834\u89e3\u7684\u5956\u52b1\u5ba4","Total Reward Rooms":"\u603b\u5956\u52b1\u5ba4","Area Level":"\u533a\u57df\u7b49\u7ea7","Contract Objective Value":"\u5951\u7ea6\u76ee\u6807\u4ef7\u503c","Moderate Value":"\u4ef7\u503c\u4e2d\u7b49","High Value":"\u4ef7\u503c\u5f88\u9ad8","Precious":"\u73cd\u60dc\u4e4b\u7269","Priceless":"\u65e0\u4ef7\u4e4b\u5b9d","Lockpicking Level":"\u89e3\u5bc6\u672f\u7b49\u7ea7","Brute Force Level":"\u51f6\u86ee\u4e4b\u529b\u7b49\u7ea7","Perception Level":"\u6d1e\u5bdf\u7b49\u7ea7","Demolition Level":"\u7206\u7834\u7b49\u7ea7","Counter-Thaum. Level":"\u9006\u5411\u5947\u672f\u7b49\u7ea7","Trap Disarmament Level":"\u89e3\u9664\u9677\u9631\u7b49\u7ea7","Agility Level":"\u7075\u654f\u7b49\u7ea7","Deception Level":"\u6b3a\u8bc8\u7b49\u7ea7","Engineering Level":"\u5de5\u7a0b\u5b66\u7b49\u7ea7","Gem Quality Type":"\u5b9d\u77f3\u54c1\u8d28\u7c7b\u578b","Superior (Default)":"\u7cbe\u826f\u7684\uff08\u9ed8\u8ba4\uff09","Any Alternate":"\u4efb\u4f55\u66ff\u6362","Anomalous":"\u5f02\u5e38","Divergent":"\u5206\u6b67","Phantasmal":"\u9b45\u5f71","Highlight Items":"\u9ad8\u4eae\u7269\u54c1...","Ultimatum Filters":"\u81f4\u547d\u8d2a\u5a6a \u8fc7\u6ee4","Challenge Type":"\u6311\u6218\u7c7b\u578b","Defeat Waves of Enemies":"\u51fb\u6740\u7279\u5b9a\u6570\u91cf\u602a\u7269","Stand in the Stone Circles":"\u5728\u8303\u56f4\u5185\u51fb\u8d25\u5c0f\u5934\u76ee","Survive":"\u5b58\u6d3b\u4e00\u6bb5\u65f6\u95f4","Protect the Altar":"\u4fdd\u62a4\u796d\u575b\u4e0d\u88ab\u6467\u6bc1","Reward Type":"\u5956\u52b1\u7c7b\u578b","Mirrored Rare Item":"\u590d\u5236\u54c1","Unique Item":"\u4f20\u5947\u7269\u54c1","Required Item":"\u6240\u9700\u7269\u54c1?","Reward Unique":"\u5956\u52b1\u4f20\u5947?","Price with Note":"\u5907\u6ce8\u6807\u4ef7","Price with Note:":"\u5907\u6ce8\u6807\u4ef7\uff1a","Search Bar Layout":"\u641c\u7d22\u680f\u5e03\u5c40","Controls at Bottom (Default)":"\u5e95\u90e8\u63a7\u5236\uff08\u9ed8\u8ba4\uff09","Controls on Top and Bottom":"\u5e95\u90e8\u548c\u9876\u90e8\u63a7\u5236","Muted":"\u9759\u97f3","Default":"\u9ed8\u8ba4","Split":"\u5206\u88c2","No":"\u5426","Yes":"\u662f","General":"\u901a\u7528","Breach":"\u6df1\u6e0a","Scourge Tier":"\u5929\u707e\u5c42\u6570","Blight-ravaged Map":"\u83cc\u6f6e\u706d\u7edd\u5730\u56fe","Eater of Worlds Item":"\u706d\u754c\u8005\u7269\u54c1","Searing Exarch Item":"\u711a\u754c\u8005\u7269\u54c1","No results found":"\u67e5\u65e0\u7ed3\u679c","Searching...":"\u641c\u7d22\u4e2d...","Loading...":"\u52a0\u8f7d\u4e2d...","Online":"\u5728\u7ebf","Offline":"\u79bb\u7ebf","PM":"\u79c1\u4fe1","Whisper":"\u79c1\u804a","Contact...":"\u8be6\u7ec6","Select Items to Exchange":"\u9009\u62e9\u8981\u4ea4\u6362\u7684\u7269\u54c1","Item not found":"\u672a\u627e\u5230\u7269\u54c1","Clear Filter Group":"\u6e05\u7406\u8fc7\u6ee4\u5668\u7ec4","Verified":"\u5df2\u9a8c\u8bc1","Refresh":"\u5237\u65b0","Copy Item":"\u590d\u5236\u7269\u54c1\u4fe1\u606f","Filter by Item Stats":"\u6309\u7269\u54c1\u4fe1\u606f\u8fc7\u6ee4","Ignore list cleared.":"\u6e05\u9664\u5ffd\u7565\u5217\u8868\u3002","Close":"\u53d6\u6d88","Max":"\u590d\u5236","\u7ed3\u5c3e":""}'); }, function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: !0 }), exports.HttpHeaders = exports.Http = void 0; var Logger_1 = __webpack_require__(0), Common_1 = __webpack_require__(24), Config_1 = __webpack_require__(3), Http = function() { function Http() {} return Http.ajax = function(option) { var _a, _b, head = new HttpHeaders; head["User-Agent"] = null !== (_a = unsafeWindow.window.navigator.userAgent) && void 0 !== _a ? _a : "Mozilla/4.0 (compatible) Greasemonkey", head.Accept = "application/atom+xml,application/xml,text/xml", option.url.indexOf("shuma") > -1 && (head.Author = null !== (_b = Config_1.Config.env.script.author) && void 0 !== _b ? _b : "shuma", head.Version = Config_1.Config.env.script.version), option.headers || (option.headers = head); try { GM_xmlhttpRequest(option); } catch (e) { Logger_1.Logger.error(e); } }, Http.getFormData = function(data) { if (data instanceof Map) { var fd_1 = new FormData; data.forEach((function(v, k) { var _v; _v = "string" == typeof v ? v.toString() : JSON.stringify(v), fd_1.append(k, _v); })), data = fd_1; } return data; }, Http._getData = function(data, contentType) { if (void 0 === contentType && (contentType = "json"), data instanceof Map) { var fd_2 = new FormData; data.forEach((function(v, k) { fd_2.append(k, v); })), data = fd_2; } var res = ""; if ("json" == contentType) { var obj_1 = Object.create(null); data.forEach((function(k, v) { obj_1[v] = k; })), res = JSON.stringify(obj_1); } else data.forEach((function(k, v) { res += v + "=" + encodeURIComponent(k.toString()) + "&"; })), res = Common_1.Common.trim(res, "&"); return res; }, Http.post = function(url, data, contentType, timeOut) { void 0 === contentType && (contentType = "json"), void 0 === timeOut && (timeOut = 120); var _data = ""; return _data = "json" == contentType ? JSON.stringify(data) : Http.getFormData(data), new Promise((function(resolve, reject) { Http.ajax({ url: url, method: "POST", data: _data, timeout: 1e3 * timeOut, onload: function(response) { var _a; try { var res = null !== (_a = JSON.parse(response.responseText)) && void 0 !== _a ? _a : response.responseText; resolve(res); } catch (error) { Logger_1.Logger.debug(error), reject(); } }, onerror: function(response) { reject(response); }, ontimeout: function() { reject("\u8bf7\u6c42\u8d85\u65f6"); } }); })); }, Http.get = function(url, data, time_out) { return void 0 === data && (data = new Map), void 0 === time_out && (time_out = 120), new Promise((function(resolve, reject) { Http.ajax({ url: url, method: "GET", timeout: 1e3 * time_out, onload: function(response) { var _a; try { var res = null !== (_a = JSON.parse(response.responseText)) && void 0 !== _a ? _a : response.responseText; resolve(res); } catch (error) { Logger_1.Logger.debug(error), reject(); } }, onerror: function(response) { reject(response); }, ontimeout: function() { reject("\u8bf7\u6c42\u8d85\u65f6"); } }); })); }, Http; }(); exports.Http = Http; var HttpHeaders = function() {}; exports.HttpHeaders = HttpHeaders; }, function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: !0 }), exports.Common = void 0; var Common = function() { function Common() {} return Common.randStr = function(len) { void 0 === len && (len = 4); for (var $chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", pwd = "", i = 0; i < len; i++) pwd += $chars.charAt(Math.floor(62 * Math.random())); return pwd; }, Common.humanSize = function(fileSize) { return fileSize < 1024 ? fileSize + "B" : fileSize < 1048576 ? (fileSize / 1024).toFixed(2) + "KB" : fileSize < 1073741824 ? (fileSize / 1048576).toFixed(2) + "MB" : (fileSize / 1073741824).toFixed(2) + "GB"; }, Common.trim = function(source, char) { return source.replace(new RegExp("^\\" + char + "+|\\" + char + "+$", "g"), ""); }, Common.getCookie = function(key) { for (var arr = document.cookie.replace(/\s/g, "").split(";"), i = 0, l = arr.length; i < l; i++) { var tempArr = arr[i].split("="); if (tempArr[0] == key) return decodeURIComponent(tempArr[1]); } return ""; }, Common; }(); exports.Common = Common; }, function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: !0 }), exports.Toast = void 0; var Toast = function() { function Toast() {} return Toast.success = function(msg, time) { void 0 === time && (time = 1), SemiUI.Toast.success({ content: msg, duration: time }); }, Toast.warning = function(msg, time) { void 0 === time && (time = 1), SemiUI.Toast.warning({ content: msg, duration: time }); }, Toast.error = function(msg, time) { void 0 === time && (time = 1), SemiUI.Toast.error({ content: msg, duration: time }); }, Toast; }(); exports.Toast = Toast; }, function(module, exports, __webpack_require__) { "use strict"; var extendStatics, __extends = this && this.__extends || (extendStatics = function(d, b) { return extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d, b) { d.__proto__ = b; } || function(d, b) { for (var p in b) b.hasOwnProperty(p) && (d[p] = b[p]); }, extendStatics(d, b); }, function(d, b) { function __() { this.constructor = d; } extendStatics(d, b), d.prototype = null === b ? Object.create(b) : (__.prototype = b.prototype, new __); }), __importDefault = this && this.__importDefault || function(mod) { return mod && mod.__esModule ? mod : { default: mod }; }; Object.defineProperty(exports, "__esModule", { value: !0 }), exports.SettingApp = void 0; var AppBase_1 = __webpack_require__(5), SiteEnum_1 = __webpack_require__(2), react_1 = __importDefault(__webpack_require__(8)), Core_1 = __webpack_require__(1), Setting_1 = __webpack_require__(27), SettingApp = function(_super) { function SettingApp() { var _this = null !== _super && _super.apply(this, arguments) || this; return _this.rules = new Map([ [ SiteEnum_1.SiteEnum.POETrade, /pathofexile\.com\/trade\/search/i ] ]), _this.appName = "\u914d\u7f6e\u4e2d\u5fc3", _this._unique = !1, _this; } return __extends(SettingApp, _super), SettingApp.prototype.loader = function() {}, SettingApp.prototype.run = function() { var that = this; GM_registerMenuCommand("\u914d\u7f6e\u4e2d\u5fc3", (function() { that.setting(); })); }, SettingApp.prototype.setting = function() { Core_1.Core.Render(react_1.default.createElement(Setting_1.SettingUI, { key: (new Date).getTime() }), "SettingApp"); }, SettingApp; }(AppBase_1.AppBase); exports.SettingApp = SettingApp; }, function(module, exports, __webpack_require__) { "use strict"; var extendStatics, __extends = this && this.__extends || (extendStatics = function(d, b) { return extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d, b) { d.__proto__ = b; } || function(d, b) { for (var p in b) b.hasOwnProperty(p) && (d[p] = b[p]); }, extendStatics(d, b); }, function(d, b) { function __() { this.constructor = d; } extendStatics(d, b), d.prototype = null === b ? Object.create(b) : (__.prototype = b.prototype, new __); }), __importDefault = this && this.__importDefault || function(mod) { return mod && mod.__esModule ? mod : { default: mod }; }; Object.defineProperty(exports, "__esModule", { value: !0 }), exports.SettingUI = void 0; var react_1 = __importDefault(__webpack_require__(8)), semi_ui_1 = __webpack_require__(7), Config_1 = __webpack_require__(3), SettingItem_1 = __webpack_require__(6), Logger_1 = __webpack_require__(0), SettingUI = function(_super) { function SettingUI(props) { var _this = _super.call(this, props) || this; return _this.state = { visible: !0, source: Config_1.Config.get(SettingItem_1.SettingItem.DataSource, "https://cdn.jsdelivr.net/gh/") }, _this.showDialog = _this.showDialog.bind(_this), _this.handleOk = _this.handleOk.bind(_this), _this.handleCancel = _this.handleCancel.bind(_this), _this.getFormApi = _this.getFormApi.bind(_this), _this; } return __extends(SettingUI, _super), SettingUI.prototype.showDialog = function() { this.setState({ visible: !0 }); }, SettingUI.prototype.handleOk = function() { var _this = this; this.formApi.validate().then((function(values) { Config_1.Config.set(SettingItem_1.SettingItem.DataSource, values.source), SemiUI.Toast.success({ content: "\u4fdd\u5b58\u6210\u529f,\u8bf7\u5237\u65b0\u7f51\u9875\u5e94\u7528\u8bbe\u7f6e", duration: 1 }), _this.setState({ visible: !1 }); })).catch((function(errors) {})); }, SettingUI.prototype.handleCancel = function() { this.setState({ visible: !1 }); }, SettingUI.prototype.getFormApi = function(formApi) { this.formApi = formApi; }, SettingUI.prototype.showTips = function(values) { var str = ""; switch (values.source) { case "https://cdn.jsdelivr.net/gh/": str = "https://cdn.jsdelivr.net"; break; case "https://github.com/": str = "https://github.com"; } return str ? [ "\u6570\u636e\u6e90 - ", react_1.default.createElement(semi_ui_1.Typography.Text, { type: "tertiary", link: { href: str, target: "_blank" }, style: { marginRight: 8 } }, str) ] : "\u6570\u636e\u6e90(\u9009\u62e9\u6570\u636e\u6e90\u540e\u8bf7\u70b9\u51fb\u94fe\u63a5\u5c1d\u8bd5\u662f\u5426\u80fd\u6b63\u5e38\u6253\u5f00)"; }, SettingUI.prototype.render = function() { var _this = this, _a = this.state, visible = _a.visible, source = _a.source, initV = { source: source }; return Logger_1.Logger.info("[SettingUI] visible: " + visible + ", source: " + source), react_1.default.createElement(react_1.default.Fragment, null, react_1.default.createElement(semi_ui_1.Modal, { title: "\u7cfb\u7edf\u914d\u7f6e", visible: visible, onOk: this.handleOk, style: { width: 600 }, onCancel: this.handleCancel }, react_1.default.createElement(semi_ui_1.Form, { getFormApi: this.getFormApi, initValues: initV }, (function(_a) { _a.formState; var values = _a.values; _a.formApi; return react_1.default.createElement(semi_ui_1.Row, null, react_1.default.createElement(semi_ui_1.Form.Select, { field: "source", label: _this.showTips(values), placeholder: "\u8bf7\u9009\u62e9\u6570\u636e\u6e90", style: { width: "100%" }, rules: [ { required: !0, message: "\u8bf7\u9009\u62e9\u6570\u636e\u6e90" } ] }, react_1.default.createElement(semi_ui_1.Form.Select.Option, { key: "https:://cdn.jsdelivr.net/gh/", value: "https://cdn.jsdelivr.net/gh/" }, "jsdelivr"), react_1.default.createElement(semi_ui_1.Form.Select.Option, { value: "https://github.com/" }, "github"))); })))); }, SettingUI; }(react_1.default.Component); exports.SettingUI = SettingUI; } ]); }));