Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ERC1155CurioAssetRoles
Compiler Version
v0.7.6+commit.7338295f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma abicoder v2;
import "./ERC1155Base.sol";
import "../whitelist/interfaces/IWlController.sol";
contract ERC1155CurioAssetRoles is ERC1155Base {
/// @notice Whitelist controller
IWlController public wlController;
/// @notice Admins managing minters
mapping(address => bool) public isAdmin;
/// @notice Minters managing mint logic
mapping(address => bool) public isMinter;
event CreateERC1155CurioAssetRoles(address owner, string name, string symbol);
event SetWlController(address indexed wlController);
event SetAdminPermission(address indexed admin, bool permission);
event SetMinterPermission(address indexed minter, bool permission, address indexed admin);
event SetContractURI(string contractURI);
event SetBaseURI(string baseURI);
modifier onlyAdmin {
require(isAdmin[_msgSender()], "ERC1155CurioAssetRoles: caller is not the admin");
_;
}
modifier onlyMinter {
require(isMinter[_msgSender()], "ERC1155CurioAssetRoles: caller is not the minter");
_;
}
function __ERC1155CurioAssetRoles_init(
string memory _name,
string memory _symbol,
string memory baseURI,
string memory contractURI
) external initializer {
__Ownable_init_unchained();
__ERC1155Lazy_init_unchained();
__ERC165_init_unchained();
__Context_init_unchained();
__Mint1155Validator_init_unchained();
__ERC1155_init_unchained("");
__HasContractURI_init_unchained(contractURI);
__ERC1155Burnable_init_unchained();
__RoyaltiesV2Upgradeable_init_unchained();
__ERC1155Base_init_unchained(_name, _symbol);
_setBaseURI(baseURI);
emit CreateERC1155CurioAssetRoles(_msgSender(), _name, _symbol);
}
/**
* @notice Mint new tokens only by Minter role.
*/
function mintAndTransfer(LibERC1155LazyMint.Mint1155Data memory data, address to, uint256 _amount) public override virtual onlyMinter {
super.mintAndTransfer(data, to, _amount);
}
/**
* @notice Mint new token only by Minter role.
*/
function mint(address account, uint256 id, uint256 amount, bytes memory data) external onlyMinter {
ERC1155Upgradeable._mint(account, id, amount, data);
}
/**
* @notice Mint new tokens only by Minter role.
*/
function mintBatch(address account, uint256[] memory ids, uint256[] memory amounts, bytes memory data) external onlyMinter {
ERC1155Upgradeable._mintBatch(account, ids, amounts, data);
}
/**
* @notice Burn tokens only by Minter role.
*/
function burn(address account, uint256 id, uint256 value) public override virtual onlyMinter {
super.burn(account, id, value);
}
/**
* @notice Burn batch of tokens only by Minter role.
*/
function burnBatch(address account, uint256[] memory ids, uint256[] memory values) public override virtual onlyMinter {
super.burnBatch(account, ids, values);
}
/**
* @notice Set a new whitelist controller.
* @param _wlController New whitelist controller.
*/
function setWlController(IWlController _wlController) external onlyOwner {
wlController = _wlController;
emit SetWlController(address(_wlController));
}
/**
* @notice Set an admin permission.
* @param _user Account address.
* @param _permission Is there permission or not.
*/
function setAdminPermission(address _user, bool _permission) external onlyOwner {
isAdmin[_user] = _permission;
emit SetAdminPermission(_user, _permission);
}
/**
* @notice Set a minter permission.
* @param _user Account address.
* @param _permission Is there permission or not.
*/
function setMinterPermission(address _user, bool _permission) external onlyAdmin {
isMinter[_user] = _permission;
emit SetMinterPermission(_user, _permission, _msgSender());
}
/**
* @notice Set contractURI.
* @param _contractURI New contractURI.
*/
function setContractURI(string memory _contractURI) external onlyAdmin {
_setContractURI(_contractURI);
emit SetContractURI(_contractURI);
}
/**
* @notice Set _baseURI.
* @param _baseURI Base URI of all tokens.
*/
function setBaseURI(string memory _baseURI) external onlyMinter {
_setBaseURI(_baseURI);
emit SetBaseURI(_baseURI);
}
/**
* @notice Set URI to target token by tokenId.
* @param _tokenId Target tokenId.
* @param _uri New URI of target tokenId.
*/
function setTokenURI(uint256 _tokenId, string memory _uri) external onlyMinter {
_setTokenURI(_tokenId, _uri);
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*/
function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual override {
super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
// require from and to addresses in whitelist
IWlController controller = wlController;
if (address(controller) != address(0)) {
// check mint case
if (from != address(0)) {
require(
controller.isInvestorAddressActive(from),
"ERC1155CurioAssetRoles: transfer permission denied"
);
}
// check burn case
if (to != address(0)) {
require(
controller.isInvestorAddressActive(to),
"ERC1155CurioAssetRoles: transfer permission denied"
);
}
}
}
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
// solhint-disable-next-line compiler-version
pragma solidity >=0.4.24 <0.8.0;
import "../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
*/
bool private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Modifier to protect an initializer function from being invoked twice.
*/
modifier initializer() {
require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized");
bool isTopLevelCall = !_initializing;
if (isTopLevelCall) {
_initializing = true;
_initialized = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
}
}
/// @dev Returns true if and only if the function is running in the constructor
function _isConstructor() private view returns (bool) {
return !AddressUpgradeable.isContract(address(this));
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
pragma abicoder v2;
import "./LibPart.sol";
interface RoyaltiesV2 {
event RoyaltiesSet(uint256 tokenId, LibPart.Part[] royalties);
function getRoyalties(uint256 id) external view returns (LibPart.Part[] memory);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
library LibRoyaltiesV2 {
/*
* bytes4(keccak256('getRoyalties(LibAsset.AssetType)')) == 0x44c74bcc
*/
bytes4 constant _INTERFACE_ID_ROYALTIES = 0x44c74bcc;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
library LibPart {
bytes32 public constant TYPE_HASH = keccak256("Part(address account,uint96 value)");
struct Part {
address payable account;
uint96 value;
}
function hash(Part memory part) internal pure returns (bytes32) {
return keccak256(abi.encode(TYPE_HASH, part.account, part.value));
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
pragma abicoder v2;
import "@openzeppelin/contracts-upgradeable/introspection/ERC165Upgradeable.sol";
import "@rarible/royalties/contracts/LibRoyaltiesV2.sol";
import "@rarible/royalties/contracts/RoyaltiesV2.sol";
abstract contract RoyaltiesV2Upgradeable is ERC165Upgradeable, RoyaltiesV2 {
function __RoyaltiesV2Upgradeable_init_unchained() internal initializer {
_registerInterface(LibRoyaltiesV2._INTERFACE_ID_ROYALTIES);
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
import "@rarible/royalties/contracts/LibPart.sol";
library LibERC1155LazyMint {
bytes4 constant public ERC1155_LAZY_ASSET_CLASS = bytes4(keccak256("ERC1155_LAZY"));
struct Mint1155Data {
uint tokenId;
string tokenURI;
uint supply;
LibPart.Part[] creators;
LibPart.Part[] royalties;
bytes[] signatures;
}
bytes32 public constant MINT_AND_TRANSFER_TYPEHASH = keccak256("Mint1155(uint256 tokenId,uint256 supply,string tokenURI,Part[] creators,Part[] royalties)Part(address account,uint96 value)");
function hash(Mint1155Data memory data) internal pure returns (bytes32) {
bytes32[] memory royaltiesBytes = new bytes32[](data.royalties.length);
for (uint i = 0; i < data.royalties.length; i++) {
royaltiesBytes[i] = LibPart.hash(data.royalties[i]);
}
bytes32[] memory creatorsBytes = new bytes32[](data.creators.length);
for (uint i = 0; i < data.creators.length; i++) {
creatorsBytes[i] = LibPart.hash(data.creators[i]);
}
return keccak256(abi.encode(
MINT_AND_TRANSFER_TYPEHASH,
data.tokenId,
data.supply,
keccak256(bytes(data.tokenURI)),
keccak256(abi.encodePacked(creatorsBytes)),
keccak256(abi.encodePacked(royaltiesBytes))
));
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
pragma abicoder v2;
import "@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155Upgradeable.sol";
import "./LibERC1155LazyMint.sol";
import "@rarible/royalties/contracts/LibPart.sol";
interface IERC1155LazyMint is IERC1155Upgradeable {
event Supply(
uint256 indexed tokenId,
uint256 value
);
event Creators(
uint256 indexed tokenId,
LibPart.Part[] creators
);
function mintAndTransfer(
LibERC1155LazyMint.Mint1155Data memory data,
address to,
uint256 _amount
) external;
function transferFromOrMint(
LibERC1155LazyMint.Mint1155Data memory data,
address from,
address to,
uint256 amount
) external;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev String operations.
*/
library StringsUpgradeable {
/**
* @dev Converts a `uint256` to its ASCII `string` representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
uint256 index = digits - 1;
temp = value;
while (temp != 0) {
buffer[index--] = bytes1(uint8(48 + temp % 10));
temp /= 10;
}
return string(buffer);
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../proxy/Initializable.sol";
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract ContextUpgradeable is Initializable {
function __Context_init() internal initializer {
__Context_init_unchained();
}
function __Context_init_unchained() internal initializer {
}
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
import "../../introspection/IERC165Upgradeable.sol";
/**
* @dev Required interface of an ERC1155 compliant contract, as defined in the
* https://eips.ethereum.org/EIPS/eip-1155[EIP].
*
* _Available since v3.1._
*/
interface IERC1155Upgradeable is IERC165Upgradeable {
/**
* @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
*/
event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);
/**
* @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
* transfers.
*/
event TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values);
/**
* @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
* `approved`.
*/
event ApprovalForAll(address indexed account, address indexed operator, bool approved);
/**
* @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
*
* If an {URI} event was emitted for `id`, the standard
* https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
* returned by {IERC1155MetadataURI-uri}.
*/
event URI(string value, uint256 indexed id);
/**
* @dev Returns the amount of tokens of token type `id` owned by `account`.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) external view returns (uint256);
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory);
/**
* @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
*
* Emits an {ApprovalForAll} event.
*
* Requirements:
*
* - `operator` cannot be the caller.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address account, address operator) external view returns (bool);
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external;
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function safeBatchTransferFrom(address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data) external;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../../introspection/IERC165Upgradeable.sol";
/**
* _Available since v3.1._
*/
interface IERC1155ReceiverUpgradeable is IERC165Upgradeable {
/**
@dev Handles the receipt of a single ERC1155 token type. This function is
called at the end of a `safeTransferFrom` after the balance has been updated.
To accept the transfer, this must return
`bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
(i.e. 0xf23a6e61, or its own function selector).
@param operator The address which initiated the transfer (i.e. msg.sender)
@param from The address which previously owned the token
@param id The ID of the token being transferred
@param value The amount of tokens being transferred
@param data Additional data with no specified format
@return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
*/
function onERC1155Received(
address operator,
address from,
uint256 id,
uint256 value,
bytes calldata data
)
external
returns(bytes4);
/**
@dev Handles the receipt of a multiple ERC1155 token types. This function
is called at the end of a `safeBatchTransferFrom` after the balances have
been updated. To accept the transfer(s), this must return
`bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
(i.e. 0xbc197c81, or its own function selector).
@param operator The address which initiated the batch transfer (i.e. msg.sender)
@param from The address which previously owned the token
@param ids An array containing ids of each token being transferred (order and length must match values array)
@param values An array containing amounts of each token being transferred (order and length must match ids array)
@param data Additional data with no specified format
@return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
*/
function onERC1155BatchReceived(
address operator,
address from,
uint256[] calldata ids,
uint256[] calldata values,
bytes calldata data
)
external
returns(bytes4);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
import "./IERC1155Upgradeable.sol";
/**
* @dev Interface of the optional ERC1155MetadataExtension interface, as defined
* in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
*
* _Available since v3.1._
*/
interface IERC1155MetadataURIUpgradeable is IERC1155Upgradeable {
/**
* @dev Returns the URI for token type `id`.
*
* If the `\{id\}` substring is present in the URI, it must be replaced by
* clients with the actual token type ID.
*/
function uri(uint256 id) external view returns (string memory);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "./IERC1155Upgradeable.sol";
import "./IERC1155MetadataURIUpgradeable.sol";
import "./IERC1155ReceiverUpgradeable.sol";
import "../../utils/ContextUpgradeable.sol";
import "../../introspection/ERC165Upgradeable.sol";
import "../../math/SafeMathUpgradeable.sol";
import "../../utils/AddressUpgradeable.sol";
import "../../proxy/Initializable.sol";
/**
*
* @dev Implementation of the basic standard multi-token.
* See https://eips.ethereum.org/EIPS/eip-1155
* Originally based on code by Enjin: https://github.com/enjin/erc-1155
*
* _Available since v3.1._
*/
contract ERC1155Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC1155Upgradeable, IERC1155MetadataURIUpgradeable {
using SafeMathUpgradeable for uint256;
using AddressUpgradeable for address;
// Mapping from token ID to account balances
mapping (uint256 => mapping(address => uint256)) private _balances;
// Mapping from account to operator approvals
mapping (address => mapping(address => bool)) private _operatorApprovals;
// Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
string private _uri;
/*
* bytes4(keccak256('balanceOf(address,uint256)')) == 0x00fdd58e
* bytes4(keccak256('balanceOfBatch(address[],uint256[])')) == 0x4e1273f4
* bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
* bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
* bytes4(keccak256('safeTransferFrom(address,address,uint256,uint256,bytes)')) == 0xf242432a
* bytes4(keccak256('safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)')) == 0x2eb2c2d6
*
* => 0x00fdd58e ^ 0x4e1273f4 ^ 0xa22cb465 ^
* 0xe985e9c5 ^ 0xf242432a ^ 0x2eb2c2d6 == 0xd9b67a26
*/
bytes4 private constant _INTERFACE_ID_ERC1155 = 0xd9b67a26;
/*
* bytes4(keccak256('uri(uint256)')) == 0x0e89341c
*/
bytes4 private constant _INTERFACE_ID_ERC1155_METADATA_URI = 0x0e89341c;
/**
* @dev See {_setURI}.
*/
function __ERC1155_init(string memory uri_) internal initializer {
__Context_init_unchained();
__ERC165_init_unchained();
__ERC1155_init_unchained(uri_);
}
function __ERC1155_init_unchained(string memory uri_) internal initializer {
_setURI(uri_);
// register the supported interfaces to conform to ERC1155 via ERC165
_registerInterface(_INTERFACE_ID_ERC1155);
// register the supported interfaces to conform to ERC1155MetadataURI via ERC165
_registerInterface(_INTERFACE_ID_ERC1155_METADATA_URI);
}
/**
* @dev See {IERC1155MetadataURI-uri}.
*
* This implementation returns the same URI for *all* token types. It relies
* on the token type ID substitution mechanism
* https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
*
* Clients calling this function must replace the `\{id\}` substring with the
* actual token type ID.
*/
function uri(uint256) external view virtual override returns (string memory) {
return _uri;
}
/**
* @dev See {IERC1155-balanceOf}.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
require(account != address(0), "ERC1155: balance query for the zero address");
return _balances[id][account];
}
/**
* @dev See {IERC1155-balanceOfBatch}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(
address[] memory accounts,
uint256[] memory ids
)
public
view
virtual
override
returns (uint256[] memory)
{
require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");
uint256[] memory batchBalances = new uint256[](accounts.length);
for (uint256 i = 0; i < accounts.length; ++i) {
batchBalances[i] = balanceOf(accounts[i], ids[i]);
}
return batchBalances;
}
/**
* @dev See {IERC1155-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(_msgSender() != operator, "ERC1155: setting approval status for self");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC1155-isApprovedForAll}.
*/
function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
return _operatorApprovals[account][operator];
}
/**
* @dev See {IERC1155-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
)
public
virtual
override
{
require(to != address(0), "ERC1155: transfer to the zero address");
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not owner nor approved"
);
address operator = _msgSender();
_beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);
_balances[id][from] = _balances[id][from].sub(amount, "ERC1155: insufficient balance for transfer");
_balances[id][to] = _balances[id][to].add(amount);
emit TransferSingle(operator, from, to, id, amount);
_doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
}
/**
* @dev See {IERC1155-safeBatchTransferFrom}.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
)
public
virtual
override
{
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
require(to != address(0), "ERC1155: transfer to the zero address");
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: transfer caller is not owner nor approved"
);
address operator = _msgSender();
_beforeTokenTransfer(operator, from, to, ids, amounts, data);
for (uint256 i = 0; i < ids.length; ++i) {
uint256 id = ids[i];
uint256 amount = amounts[i];
_balances[id][from] = _balances[id][from].sub(
amount,
"ERC1155: insufficient balance for transfer"
);
_balances[id][to] = _balances[id][to].add(amount);
}
emit TransferBatch(operator, from, to, ids, amounts);
_doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
}
/**
* @dev Sets a new URI for all token types, by relying on the token type ID
* substitution mechanism
* https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
*
* By this mechanism, any occurrence of the `\{id\}` substring in either the
* URI or any of the amounts in the JSON file at said URI will be replaced by
* clients with the token type ID.
*
* For example, the `https://token-cdn-domain/\{id\}.json` URI would be
* interpreted by clients as
* `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
* for token type ID 0x4cce0.
*
* See {uri}.
*
* Because these URIs cannot be meaningfully represented by the {URI} event,
* this function emits no events.
*/
function _setURI(string memory newuri) internal virtual {
_uri = newuri;
}
/**
* @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual {
require(account != address(0), "ERC1155: mint to the zero address");
address operator = _msgSender();
_beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);
_balances[id][account] = _balances[id][account].add(amount);
emit TransferSingle(operator, address(0), account, id, amount);
_doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function _mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual {
require(to != address(0), "ERC1155: mint to the zero address");
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
address operator = _msgSender();
_beforeTokenTransfer(operator, address(0), to, ids, amounts, data);
for (uint i = 0; i < ids.length; i++) {
_balances[ids[i]][to] = amounts[i].add(_balances[ids[i]][to]);
}
emit TransferBatch(operator, address(0), to, ids, amounts);
_doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
}
/**
* @dev Destroys `amount` tokens of token type `id` from `account`
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens of token type `id`.
*/
function _burn(address account, uint256 id, uint256 amount) internal virtual {
require(account != address(0), "ERC1155: burn from the zero address");
address operator = _msgSender();
_beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");
_balances[id][account] = _balances[id][account].sub(
amount,
"ERC1155: burn amount exceeds balance"
);
emit TransferSingle(operator, account, address(0), id, amount);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
*/
function _burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) internal virtual {
require(account != address(0), "ERC1155: burn from the zero address");
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
address operator = _msgSender();
_beforeTokenTransfer(operator, account, address(0), ids, amounts, "");
for (uint i = 0; i < ids.length; i++) {
_balances[ids[i]][account] = _balances[ids[i]][account].sub(
amounts[i],
"ERC1155: burn amount exceeds balance"
);
}
emit TransferBatch(operator, account, address(0), ids, amounts);
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning, as well as batched variants.
*
* The same hook is called on both single and batched variants. For single
* transfers, the length of the `id` and `amount` arrays will be 1.
*
* Calling conditions (for each `id` and `amount` pair):
*
* - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* of token type `id` will be transferred to `to`.
* - When `from` is zero, `amount` tokens of token type `id` will be minted
* for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
* will be burned.
* - `from` and `to` are never both zero.
* - `ids` and `amounts` have the same, non-zero length.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
)
internal
virtual
{ }
function _doSafeTransferAcceptanceCheck(
address operator,
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
)
private
{
if (to.isContract()) {
try IERC1155ReceiverUpgradeable(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
if (response != IERC1155ReceiverUpgradeable(to).onERC1155Received.selector) {
revert("ERC1155: ERC1155Receiver rejected tokens");
}
} catch Error(string memory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non ERC1155Receiver implementer");
}
}
}
function _doSafeBatchTransferAcceptanceCheck(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
)
private
{
if (to.isContract()) {
try IERC1155ReceiverUpgradeable(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (bytes4 response) {
if (response != IERC1155ReceiverUpgradeable(to).onERC1155BatchReceived.selector) {
revert("ERC1155: ERC1155Receiver rejected tokens");
}
} catch Error(string memory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non ERC1155Receiver implementer");
}
}
}
function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
uint256[] memory array = new uint256[](1);
array[0] = element;
return array;
}
uint256[47] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "./ERC1155Upgradeable.sol";
import "../../proxy/Initializable.sol";
/**
* @dev Extension of {ERC1155} that allows token holders to destroy both their
* own tokens and those that they have been approved to use.
*
* _Available since v3.1._
*/
abstract contract ERC1155BurnableUpgradeable is Initializable, ERC1155Upgradeable {
function __ERC1155Burnable_init() internal initializer {
__Context_init_unchained();
__ERC165_init_unchained();
__ERC1155Burnable_init_unchained();
}
function __ERC1155Burnable_init_unchained() internal initializer {
}
function burn(address account, uint256 id, uint256 value) public virtual {
require(
account == _msgSender() || isApprovedForAll(account, _msgSender()),
"ERC1155: caller is not owner nor approved"
);
_burn(account, id, value);
}
function burnBatch(address account, uint256[] memory ids, uint256[] memory values) public virtual {
require(
account == _msgSender() || isApprovedForAll(account, _msgSender()),
"ERC1155: caller is not owner nor approved"
);
_burnBatch(account, ids, values);
}
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
import "../LibPart.sol";
abstract contract AbstractRoyalties {
mapping (uint256 => LibPart.Part[]) public royalties;
function _saveRoyalties(uint256 _id, LibPart.Part[] memory _royalties) internal {
for (uint i = 0; i < _royalties.length; i++) {
require(_royalties[i].account != address(0x0), "Recipient should be present");
require(_royalties[i].value != 0, "Royalty value should be positive");
royalties[_id].push(_royalties[i]);
}
_onRoyaltiesSet(_id, _royalties);
}
function _updateAccount(uint256 _id, address _from, address _to) internal {
uint length = royalties[_id].length;
for(uint i = 0; i < length; i++) {
if (royalties[_id][i].account == _from) {
royalties[_id][i].account = address(uint160(_to));
}
}
}
function _onRoyaltiesSet(uint256 _id, LibPart.Part[] memory _royalties) virtual internal;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMathUpgradeable {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b > a) return (false, 0);
return (true, a - b);
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a / b);
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a % b);
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
require(b <= a, "SafeMath: subtraction overflow");
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) return 0;
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
require(b > 0, "SafeMath: division by zero");
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
require(b > 0, "SafeMath: modulo by zero");
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
return a - b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryDiv}.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
return a % b;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165Upgradeable {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "./IERC165Upgradeable.sol";
import "../proxy/Initializable.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts may inherit from this and call {_registerInterface} to declare
* their support of an interface.
*/
abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable {
/*
* bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
*/
bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;
/**
* @dev Mapping of interface ids to whether or not it's supported.
*/
mapping(bytes4 => bool) private _supportedInterfaces;
function __ERC165_init() internal initializer {
__ERC165_init_unchained();
}
function __ERC165_init_unchained() internal initializer {
// Derived contracts need only register support for their own interfaces,
// we register support for ERC165 itself here
_registerInterface(_INTERFACE_ID_ERC165);
}
/**
* @dev See {IERC165-supportsInterface}.
*
* Time complexity O(1), guaranteed to always use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return _supportedInterfaces[interfaceId];
}
/**
* @dev Registers the contract as an implementer of the interface defined by
* `interfaceId`. Support of the actual ERC165 interface is automatic and
* registering its interface id is not required.
*
* See {IERC165-supportsInterface}.
*
* Requirements:
*
* - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
*/
function _registerInterface(bytes4 interfaceId) internal virtual {
require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
_supportedInterfaces[interfaceId] = true;
}
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../proxy/Initializable.sol";
/**
* @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
*
* The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
* thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
* they need in their contracts using a combination of `abi.encode` and `keccak256`.
*
* This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
* ({_hashTypedDataV4}).
*
* The implementation of the domain separator was designed to be as efficient as possible while still properly updating
* the chain id to protect against replay attacks on an eventual fork of the chain.
*
* NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
*
* _Available since v3.4._
*/
abstract contract EIP712Upgradeable is Initializable {
/* solhint-disable var-name-mixedcase */
bytes32 private _HASHED_NAME;
bytes32 private _HASHED_VERSION;
bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
/* solhint-enable var-name-mixedcase */
/**
* @dev Initializes the domain separator and parameter caches.
*
* The meaning of `name` and `version` is specified in
* https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
*
* - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
* - `version`: the current major version of the signing domain.
*
* NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
* contract upgrade].
*/
function __EIP712_init(string memory name, string memory version) internal initializer {
__EIP712_init_unchained(name, version);
}
function __EIP712_init_unchained(string memory name, string memory version) internal initializer {
bytes32 hashedName = keccak256(bytes(name));
bytes32 hashedVersion = keccak256(bytes(version));
_HASHED_NAME = hashedName;
_HASHED_VERSION = hashedVersion;
}
/**
* @dev Returns the domain separator for the current chain.
*/
function _domainSeparatorV4() internal view returns (bytes32) {
return _buildDomainSeparator(_TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash());
}
function _buildDomainSeparator(bytes32 typeHash, bytes32 name, bytes32 version) private view returns (bytes32) {
return keccak256(
abi.encode(
typeHash,
name,
version,
_getChainId(),
address(this)
)
);
}
/**
* @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
* function returns the hash of the fully encoded EIP712 message for this domain.
*
* This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
*
* ```solidity
* bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
* keccak256("Mail(address to,string contents)"),
* mailTo,
* keccak256(bytes(mailContents))
* )));
* address signer = ECDSA.recover(digest, signature);
* ```
*/
function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x01", _domainSeparatorV4(), structHash));
}
function _getChainId() private view returns (uint256 chainId) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
// solhint-disable-next-line no-inline-assembly
assembly {
chainId := chainid()
}
}
/**
* @dev The hash of the name parameter for the EIP712 domain.
*
* NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs
* are a concern.
*/
function _EIP712NameHash() internal virtual view returns (bytes32) {
return _HASHED_NAME;
}
/**
* @dev The hash of the version parameter for the EIP712 domain.
*
* NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs
* are a concern.
*/
function _EIP712VersionHash() internal virtual view returns (bytes32) {
return _HASHED_VERSION;
}
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSAUpgradeable {
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
// Check the signature length
if (signature.length != 65) {
revert("ECDSA: invalid signature length");
}
// Divide the signature in r, s and v variables
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
// solhint-disable-next-line no-inline-assembly
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return recover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover-bytes32-bytes-} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value");
require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
require(signer != address(0), "ECDSA: invalid signature");
return signer;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* replicates the behavior of the
* https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign[`eth_sign`]
* JSON-RPC method.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/Initializable.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal initializer {
__Context_init_unchained();
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal initializer {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
/**
* @dev Interface of Whitelist controller.
*/
interface IWlController {
function isInvestorAddressActive(address account) external view returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
import "./ERC1271.sol";
import "@openzeppelin/contracts-upgradeable/drafts/EIP712Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/cryptography/ECDSAUpgradeable.sol";
abstract contract ERC1271Validator is EIP712Upgradeable {
using AddressUpgradeable for address;
using ECDSAUpgradeable for bytes32;
string constant SIGNATURE_ERROR = "signature verification error";
bytes4 constant internal MAGICVALUE = 0x1626ba7e;
function validate1271(address signer, bytes32 structHash, bytes memory signature) internal view {
bytes32 hash = _hashTypedDataV4(structHash);
if (signer.isContract()) {
require(
ERC1271(signer).isValidSignature(hash, signature) == MAGICVALUE,
SIGNATURE_ERROR
);
} else {
require(
hash.recover(signature) == signer,
SIGNATURE_ERROR
);
}
}
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
abstract contract ERC1271 {
bytes4 constant public ERC1271_INTERFACE_ID = 0xfb855dc9; // this.isValidSignature.selector
bytes4 constant public ERC1271_RETURN_VALID_SIGNATURE = 0x1626ba7e;
bytes4 constant public ERC1271_RETURN_INVALID_SIGNATURE = 0x00000000;
/**
* @dev Function must be implemented by deriving contract
* @param _hash Arbitrary length data signed on the behalf of address(this)
* @param _signature Signature byte array associated with _data
* @return A bytes4 magic value 0x1626ba7e if the signature check passes, 0x00000000 if not
*
* MUST NOT modify state (using STATICCALL for solc < 0.5, view modifier for solc > 0.5)
* MUST allow external calls
*/
function isValidSignature(bytes32 _hash, bytes memory _signature) public virtual view returns (bytes4);
function returnIsValidSignatureMagicNumber(bool isValid) internal pure returns (bytes4) {
return isValid ? ERC1271_RETURN_VALID_SIGNATURE : ERC1271_RETURN_INVALID_SIGNATURE;
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
import "../erc-1271/ERC1271Validator.sol";
import "@rarible/lazy-mint/contracts/erc-1155/LibERC1155LazyMint.sol";
contract Mint1155Validator is ERC1271Validator {
function __Mint1155Validator_init_unchained() internal initializer {
__EIP712_init_unchained("Mint1155", "1");
}
function validate(address account, bytes32 hash, bytes memory signature) internal view {
validate1271(account, hash, signature);
}
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma abicoder v2;
import "@openzeppelin/contracts-upgradeable/token/ERC1155/ERC1155Upgradeable.sol";
import "@rarible/royalties/contracts/impl/RoyaltiesV2Impl.sol";
import "@rarible/royalties-upgradeable/contracts/RoyaltiesV2Upgradeable.sol";
import "@rarible/lazy-mint/contracts/erc-1155/IERC1155LazyMint.sol";
import "./Mint1155Validator.sol";
import "./ERC1155BaseURI.sol";
abstract contract ERC1155Lazy is IERC1155LazyMint, ERC1155BaseURI, Mint1155Validator, RoyaltiesV2Upgradeable, RoyaltiesV2Impl {
using SafeMathUpgradeable for uint;
mapping(uint256 => LibPart.Part[]) public creators;
mapping(uint => uint) private supply;
mapping(uint => uint) private minted;
function __ERC1155Lazy_init_unchained() internal initializer {
_registerInterface(0x6db15a0f);
}
function transferFromOrMint(
LibERC1155LazyMint.Mint1155Data memory data,
address from,
address to,
uint256 amount
) override external {
uint balance = balanceOf(from, data.tokenId);
uint left = amount;
if (balance != 0) {
uint transfer = amount;
if (balance < amount) {
transfer = balance;
}
safeTransferFrom(from, to, data.tokenId, transfer, "");
left = amount - transfer;
}
if (left > 0) {
mintAndTransfer(data, to, left);
}
}
function mintAndTransfer(LibERC1155LazyMint.Mint1155Data memory data, address to, uint256 _amount) public override virtual {
address minter = address(data.tokenId >> 96);
address sender = _msgSender();
require(minter == sender || isApprovedForAll(minter, sender), "ERC1155: transfer caller is not approved");
require(_amount > 0, "amount incorrect");
if (supply[data.tokenId] == 0) {
require(minter == data.creators[0].account, "tokenId incorrect");
require(data.supply > 0, "supply incorrect");
require(data.creators.length == data.signatures.length);
bytes32 hash = LibERC1155LazyMint.hash(data);
for (uint i = 0; i < data.creators.length; i++) {
address creator = data.creators[i].account;
if (creator != sender) {
validate(creator, hash, data.signatures[i]);
}
}
_saveSupply(data.tokenId, data.supply);
_saveRoyalties(data.tokenId, data.royalties);
_saveCreators(data.tokenId, data.creators);
_setTokenURI(data.tokenId, data.tokenURI);
}
_mint(to, data.tokenId, _amount, "");
}
function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual override {
uint newMinted = amount.add(minted[id]);
require(newMinted <= supply[id], "more than supply");
minted[id] = newMinted;
super._mint(account, id, amount, data);
}
function _saveSupply(uint tokenId, uint _supply) internal {
require(supply[tokenId] == 0);
supply[tokenId] = _supply;
emit Supply(tokenId, _supply);
}
function _saveCreators(uint tokenId, LibPart.Part[] memory _creators) internal {
LibPart.Part[] storage creatorsOfToken = creators[tokenId];
uint total = 0;
for (uint i = 0; i < _creators.length; i++) {
require(_creators[i].account != address(0x0), "Account should be present");
require(_creators[i].value != 0, "Creator share should be positive");
creatorsOfToken.push(_creators[i]);
total = total.add(_creators[i].value);
}
require(total == 10000, "total amount of creators share should be 10000");
emit Creators(tokenId, _creators);
}
function updateAccount(uint256 _id, address _from, address _to) external {
require(_msgSender() == _from, "not allowed");
super._updateAccount(_id, _from, _to);
}
function getCreators(uint256 _id) external view returns (LibPart.Part[] memory) {
return creators[_id];
}
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
import "@openzeppelin/contracts-upgradeable/token/ERC1155/ERC1155Upgradeable.sol";
abstract contract ERC1155DefaultApproval is ERC1155Upgradeable {
mapping(address => bool) private defaultApprovals;
event DefaultApproval(address indexed operator, bool hasApproval);
function _setDefaultApproval(address operator, bool hasApproval) internal {
defaultApprovals[operator] = hasApproval;
emit DefaultApproval(operator, hasApproval);
}
function isApprovedForAll(address _owner, address _operator) public virtual override view returns (bool) {
return defaultApprovals[_operator] || super.isApprovedForAll(_owner, _operator);
}
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
pragma abicoder v2;
import "./AbstractRoyalties.sol";
import "../RoyaltiesV2.sol";
contract RoyaltiesV2Impl is AbstractRoyalties, RoyaltiesV2 {
function getRoyalties(uint256 id) override external view returns (LibPart.Part[] memory) {
return royalties[id];
}
function _onRoyaltiesSet(uint256 _id, LibPart.Part[] memory _royalties) override internal {
emit RoyaltiesSet(_id, _royalties);
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC1155/ERC1155Upgradeable.sol";
contract ERC1155BaseURI is ERC1155Upgradeable {
using StringsUpgradeable for uint;
// Optional mapping for token URIs
mapping (uint256 => string) private _tokenURIs;
// Base URI
string private _baseURI;
/**
* @dev Returns the base URI set via {_setBaseURI}. This will be
* automatically added as a prefix in {tokenURI} to each token's URI, or
* to the token ID if no specific URI is set for that token ID.
*/
function baseURI() public view virtual returns (string memory) {
return _baseURI;
}
function uri(uint id) external view override virtual returns (string memory) {
return _tokenURI(id);
}
function _tokenURI(uint256 tokenId) internal view virtual returns (string memory) {
string memory _tokenURI = _tokenURIs[tokenId];
string memory base = baseURI();
// If there is no base URI, return the token URI.
if (bytes(base).length == 0) {
return _tokenURI;
}
// If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
if (bytes(_tokenURI).length > 0) {
return string(abi.encodePacked(base, _tokenURI));
}
// If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
return string(abi.encodePacked(base, tokenId.toString()));
}
/**
* @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _setTokenURI(uint256 tokenId, string memory _uri) internal virtual {
_tokenURIs[tokenId] = _uri;
emit URI(_tokenURI(tokenId), tokenId);
}
/**
* @dev Internal function to set the base URI for all token IDs. It is
* automatically added as a prefix to the value returned in {tokenURI},
* or to the token ID if {tokenURI} is empty.
*/
function _setBaseURI(string memory baseURI_) internal virtual {
_baseURI = baseURI_;
}
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma abicoder v2;
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC1155/ERC1155BurnableUpgradeable.sol";
import "./ERC1155DefaultApproval.sol";
import "./ERC1155Lazy.sol";
import "../HasContractURI.sol";
abstract contract ERC1155Base is OwnableUpgradeable, ERC1155DefaultApproval, ERC1155BurnableUpgradeable, ERC1155Lazy, HasContractURI {
string public name;
string public symbol;
function setDefaultApproval(address operator, bool hasApproval) external onlyOwner {
_setDefaultApproval(operator, hasApproval);
}
function isApprovedForAll(address _owner, address _operator) public override(ERC1155Upgradeable, ERC1155DefaultApproval, IERC1155Upgradeable) view returns (bool) {
return ERC1155DefaultApproval.isApprovedForAll(_owner, _operator);
}
function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual override(ERC1155Upgradeable, ERC1155Lazy) {
ERC1155Lazy._mint(account, id, amount, data);
}
function __ERC1155Base_init_unchained(string memory _name, string memory _symbol) internal initializer {
name = _name;
symbol = _symbol;
}
function uri(uint id) external view override(ERC1155BaseURI, ERC1155Upgradeable) virtual returns (string memory) {
return _tokenURI(id);
}
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
import "@openzeppelin/contracts-upgradeable/introspection/ERC165Upgradeable.sol";
abstract contract HasContractURI is ERC165Upgradeable {
string public contractURI;
/*
* bytes4(keccak256('contractURI()')) == 0xe8a3d485
*/
bytes4 private constant _INTERFACE_ID_CONTRACT_URI = 0xe8a3d485;
function __HasContractURI_init_unchained(string memory _contractURI) internal initializer {
contractURI = _contractURI;
_registerInterface(_INTERFACE_ID_CONTRACT_URI);
}
/**
* @dev Internal function to set the contract URI
* @param _contractURI string URI prefix to assign
*/
function _setContractURI(string memory _contractURI) internal {
contractURI = _contractURI;
}
uint256[49] private __gap;
}{
"remappings": [],
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "istanbul",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"symbol","type":"string"}],"name":"CreateERC1155CurioAssetRoles","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"indexed":false,"internalType":"struct LibPart.Part[]","name":"creators","type":"tuple[]"}],"name":"Creators","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"hasApproval","type":"bool"}],"name":"DefaultApproval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"indexed":false,"internalType":"struct LibPart.Part[]","name":"royalties","type":"tuple[]"}],"name":"RoyaltiesSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"admin","type":"address"},{"indexed":false,"internalType":"bool","name":"permission","type":"bool"}],"name":"SetAdminPermission","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"SetBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"contractURI","type":"string"}],"name":"SetContractURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"bool","name":"permission","type":"bool"},{"indexed":true,"internalType":"address","name":"admin","type":"address"}],"name":"SetMinterPermission","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wlController","type":"address"}],"name":"SetWlController","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Supply","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"contractURI","type":"string"}],"name":"__ERC1155CurioAssetRoles_init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","outputs":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getCreators","outputs":[{"components":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"internalType":"struct LibPart.Part[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getRoyalties","outputs":[{"components":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"internalType":"struct LibPart.Part[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"},{"internalType":"uint256","name":"supply","type":"uint256"},{"components":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"internalType":"struct LibPart.Part[]","name":"creators","type":"tuple[]"},{"components":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"internalType":"struct LibPart.Part[]","name":"royalties","type":"tuple[]"},{"internalType":"bytes[]","name":"signatures","type":"bytes[]"}],"internalType":"struct LibERC1155LazyMint.Mint1155Data","name":"data","type":"tuple"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintAndTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"royalties","outputs":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_permission","type":"bool"}],"name":"setAdminPermission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"hasApproval","type":"bool"}],"name":"setDefaultApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_permission","type":"bool"}],"name":"setMinterPermission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IWlController","name":"_wlController","type":"address"}],"name":"setWlController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"},{"internalType":"uint256","name":"supply","type":"uint256"},{"components":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"internalType":"struct LibPart.Part[]","name":"creators","type":"tuple[]"},{"components":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"internalType":"struct LibPart.Part[]","name":"royalties","type":"tuple[]"},{"internalType":"bytes[]","name":"signatures","type":"bytes[]"}],"internalType":"struct LibERC1155LazyMint.Mint1155Data","name":"data","type":"tuple"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFromOrMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"updateAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlController","outputs":[{"internalType":"contract IWlController","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b5061559c806100206000396000f3fe608060405234801561001057600080fd5b50600436106102265760003560e01c8063891be97411610130578063bb3bafd6116100b8578063e985e9c51161007c578063e985e9c5146104a5578063f242432a146104b8578063f2fde38b146104cb578063f5298aca146104de578063ffc4e0a7146104f157610226565b8063bb3bafd614610451578063ddccf81d14610464578063e07f231914610477578063e71914f61461048a578063e8a3d4851461049d57610226565b8063938e3d7b116100ff578063938e3d7b146103fd57806395d89b411461041057806398d0b4fb14610418578063a22cb4651461042b578063aa271e1a1461043e57610226565b8063891be974146103a15780638924af74146103c15780638da5cb5b146103e25780638f718d87146103ea57610226565b80632eb2c2d6116101b35780636c0360eb116101825780636c0360eb14610356578063715018a61461035e578063731133e91461036657806375f3974b146103795780638600fb9a1461038c57610226565b80632eb2c2d6146102fd5780634e1273f41461031057806355f804b3146103305780636b20c4541461034357610226565b80630eaead67116101fa5780630eaead671461029c578063162094c4146102b157806318054c37146102c45780631f7fdffa146102d757806324d7806c146102ea57610226565b8062fdd58e1461022b57806301ffc9a71461025457806306fdde03146102745780630e89341c14610289575b600080fd5b61023e61023936600461494d565b610504565b60405161024b919061516c565b60405180910390f35b610267610262366004614adb565b610573565b60405161024b9190614e8d565b61027c610596565b60405161024b9190614e98565b61027c610297366004614c74565b610625565b6102af6102aa366004614c1d565b610636565b005b6102af6102bf366004614ccd565b610695565b6102af6102d2366004614920565b6106e9565b6102af6102e536600461488a565b610755565b6102676102f83660046146b5565b6107ad565b6102af61030b366004614709565b6107c3565b61032361031e366004614a00565b610ac1565b60405161024b9190614e49565b6102af61033e366004614b03565b610bac565b6102af610351366004614818565b610c35565b61027c610c86565b6102af610d1e565b6102af6103743660046149ac565b610dca565b6102af610387366004614920565b610e1c565b610394610edf565b60405161024b9190614dca565b6103b46103af366004614c74565b610eef565b60405161024b9190614e36565b6103d46103cf366004614d07565b610f7f565b60405161024b929190614e14565b610394610fc9565b6102af6103f8366004614920565b610fd8565b6102af61040b366004614b03565b611099565b61027c611117565b6103d4610426366004614d07565b611173565b6102af610439366004614920565b611190565b61026761044c3660046146b5565b61127f565b6103b461045f366004614c74565b611295565b6102af6104723660046146b5565b611310565b6102af610485366004614c8c565b6113bd565b6102af610498366004614b3d565b611400565b61027c611554565b6102676104b33660046146d1565b6115b0565b6102af6104c63660046147b2565b6115c3565b6102af6104d93660046146b5565b61178e565b6102af6104ec366004614978565b611891565b6102af6104ff366004614bb6565b6118e2565b60006001600160a01b03831661054b5760405162461bcd60e51b815260040180806020018281038252602b8152602001806152f8602b913960400191505060405180910390fd5b5060009081526097602090815260408083206001600160a01b03949094168352929052205490565b6001600160e01b0319811660009081526065602052604090205460ff165b919050565b610262805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561061d5780601f106105f25761010080835404028352916020019161061d565b820191906000526020600020905b81548152906001019060200180831161060057829003601f168201915b505050505081565b60606106308261193d565b92915050565b6102986000610643611b7a565b6001600160a01b0316815260208101919091526040016000205460ff166106855760405162461bcd60e51b815260040161067c9061501b565b60405180910390fd5b610690838383611b7e565b505050565b61029860006106a2611b7a565b6001600160a01b0316815260208101919091526040016000205460ff166106db5760405162461bcd60e51b815260040161067c9061501b565b6106e58282611d78565b5050565b6106f1611b7a565b6001600160a01b0316610702610fc9565b6001600160a01b03161461074b576040805162461bcd60e51b815260206004820181905260248201526000805160206154ac833981519152604482015290519081900360640190fd5b6106e58282611e3c565b6102986000610762611b7a565b6001600160a01b0316815260208101919091526040016000205460ff1661079b5760405162461bcd60e51b815260040161067c9061501b565b6107a784848484611e9c565b50505050565b6102976020526000908152604090205460ff1681565b81518351146108035760405162461bcd60e51b815260040180806020018281038252602881526020018061551e6028913960400191505060405180910390fd5b6001600160a01b0384166108485760405162461bcd60e51b81526004018080602001828103825260258152602001806153b86025913960400191505060405180910390fd5b610850611b7a565b6001600160a01b0316856001600160a01b031614806108765750610876856104b3611b7a565b6108b15760405162461bcd60e51b81526004018080602001828103825260328152602001806153dd6032913960400191505060405180910390fd5b60006108bb611b7a565b90506108cb8187878787876120ea565b60005b84518110156109d15760008582815181106108e557fe5b6020026020010151905060008583815181106108fd57fe5b6020026020010151905061096a816040518060600160405280602a8152602001615482602a91396097600086815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122629092919063ffffffff16565b60008381526097602090815260408083206001600160a01b038e811685529252808320939093558a16815220546109a190826122f9565b60009283526097602090815260408085206001600160a01b038c16865290915290922091909155506001016108ce565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015610a57578181015183820152602001610a3f565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015610a96578181015183820152602001610a7e565b5050505090500194505050505060405180910390a4610ab9818787878787612353565b505050505050565b60608151835114610b035760405162461bcd60e51b81526004018080602001828103825260298152602001806154f56029913960400191505060405180910390fd5b600083516001600160401b0381118015610b1c57600080fd5b50604051908082528060200260200182016040528015610b46578160200160208202803683370190505b50905060005b8451811015610ba457610b85858281518110610b6457fe5b6020026020010151858381518110610b7857fe5b6020026020010151610504565b828281518110610b9157fe5b6020908102919091010152600101610b4c565b509392505050565b6102986000610bb9611b7a565b6001600160a01b0316815260208101919091526040016000205460ff16610bf25760405162461bcd60e51b815260040161067c9061501b565b610bfb816125c9565b7f23c8c9488efebfd474e85a7956de6f39b17c7ab88502d42a623db2d8e382bbaa81604051610c2a9190614e98565b60405180910390a150565b6102986000610c42611b7a565b6001600160a01b0316815260208101919091526040016000205460ff16610c7b5760405162461bcd60e51b815260040161067c9061501b565b6106908383836125dd565b61012f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d135780601f10610ce857610100808354040283529160200191610d13565b820191906000526020600020905b815481529060010190602001808311610cf657829003601f168201915b505050505090505b90565b610d26611b7a565b6001600160a01b0316610d37610fc9565b6001600160a01b031614610d80576040805162461bcd60e51b815260206004820181905260248201526000805160206154ac833981519152604482015290519081900360640190fd5b6033546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3603380546001600160a01b0319169055565b6102986000610dd7611b7a565b6001600160a01b0316815260208101919091526040016000205460ff16610e105760405162461bcd60e51b815260040161067c9061501b565b6107a784848484612651565b610e24611b7a565b6001600160a01b0316610e35610fc9565b6001600160a01b031614610e7e576040805162461bcd60e51b815260206004820181905260248201526000805160206154ac833981519152604482015290519081900360640190fd5b6001600160a01b0382166000818152610297602052604090819020805460ff1916841515179055517f0e7bea53cb2b3130dd1aac8d56b61cc8da7ebab0432e2d1622513523d848f2e790610ed3908490614e8d565b60405180910390a25050565b610296546001600160a01b031681565b60606101fb6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b82821015610f7457600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b031681830152825260019092019101610f25565b505050509050919050565b6101fa6020528160005260406000208181548110610f9c57600080fd5b6000918252602090912001546001600160a01b0381169250600160a01b90046001600160601b0316905082565b6033546001600160a01b031690565b6102976000610fe5611b7a565b6001600160a01b0316815260208101919091526040016000205460ff1661101e5760405162461bcd60e51b815260040161067c90614f5a565b6001600160a01b038216600090815261029860205260409020805460ff191682151517905561104b611b7a565b6001600160a01b0316826001600160a01b03167fb9597064550b098ddd90b43cfdfe39db20e56496cf1fa934fb9be3d34b2a8a2a8360405161108d9190614e8d565b60405180910390a35050565b61029760006110a6611b7a565b6001600160a01b0316815260208101919091526040016000205460ff166110df5760405162461bcd60e51b815260040161067c90614f5a565b6110e881612752565b7f5ca9f750836b0b7efdace104f07b5c9f0df0650c0fd24f5163e99044ae36ea5281604051610c2a9190614e98565b610263805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561061d5780601f106105f25761010080835404028352916020019161061d565b6101fb6020528160005260406000208181548110610f9c57600080fd5b816001600160a01b03166111a2611b7a565b6001600160a01b031614156111e85760405162461bcd60e51b81526004018080602001828103825260298152602001806154cc6029913960400191505060405180910390fd5b80609860006111f5611b7a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611239611b7a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6102986020526000908152604090205460ff1681565b60008181526101fa60209081526040808320805482518185028101850190935280835260609492939192909184018215610f7457600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b031681830152825260019092019101610f25565b611318611b7a565b6001600160a01b0316611329610fc9565b6001600160a01b031614611372576040805162461bcd60e51b815260206004820181905260248201526000805160206154ac833981519152604482015290519081900360640190fd5b61029680546001600160a01b0319166001600160a01b0383169081179091556040517f410b4f2ad1de2e5a454fb2651597e3b2250c4fbe477414517212e2f45548ea7090600090a250565b816001600160a01b03166113cf611b7a565b6001600160a01b0316146113f55760405162461bcd60e51b815260040161067c90614f35565b610690838383612766565b600054610100900460ff16806114195750611419612812565b80611427575060005460ff16155b6114625760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff1615801561148d576000805460ff1961ff0019909116610100171660011790555b611495612823565b61149d61291d565b6114a56129ce565b6114ad612a6b565b6114b5612b0b565b6114cd60405180602001604052806000815250612bdb565b6114d682612ca6565b6114de612a6b565b6114e6612d58565b6114f08585612df5565b6114f9836125c9565b7fab2ebbf397d7d5ed476fed9236bc84ce59571499b5b3f374ffafdb2ff2044ac9611522611b7a565b868660405161153393929190614dde565b60405180910390a1801561154d576000805461ff00191690555b5050505050565b610230805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561061d5780601f106105f25761010080835404028352916020019161061d565b60006115bc8383612ec2565b9392505050565b6001600160a01b0384166116085760405162461bcd60e51b81526004018080602001828103825260258152602001806153b86025913960400191505060405180910390fd5b611610611b7a565b6001600160a01b0316856001600160a01b031614806116365750611636856104b3611b7a565b6116715760405162461bcd60e51b815260040180806020018281038252602981526020018061536d6029913960400191505060405180910390fd5b600061167b611b7a565b905061169b81878761168c88612eee565b61169588612eee565b876120ea565b6116e2836040518060600160405280602a8152602001615482602a913960008781526097602090815260408083206001600160a01b038d1684529091529020549190612262565b60008581526097602090815260408083206001600160a01b038b8116855292528083209390935587168152205461171990846122f9565b60008581526097602090815260408083206001600160a01b03808b168086529184529382902094909455805188815291820187905280518a8416938616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a4610ab9818787878787612f33565b611796611b7a565b6001600160a01b03166117a7610fc9565b6001600160a01b0316146117f0576040805162461bcd60e51b815260206004820181905260248201526000805160206154ac833981519152604482015290519081900360640190fd5b6001600160a01b0381166118355760405162461bcd60e51b81526004018080602001828103825260268152602001806153236026913960400191505060405180910390fd5b6033546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3603380546001600160a01b0319166001600160a01b0392909216919091179055565b610298600061189e611b7a565b6001600160a01b0316815260208101919091526040016000205460ff166118d75760405162461bcd60e51b815260040161067c9061501b565b6106908383836130a4565b60006118f2848660000151610504565b905081811561192c5782808310156119075750815b6119278686896000015184604051806020016040528060008152506115c3565b830390505b8015610ab957610ab9868583610636565b600081815261012e6020908152604080832080548251601f60026000196101006001861615020190931692909204918201859004850281018501909352808352606094938301828280156119d25780601f106119a7576101008083540402835291602001916119d2565b820191906000526020600020905b8154815290600101906020018083116119b557829003601f168201915b5050505050905060006119e3610c86565b90508051600014156119f757509050610591565b815115611ab85780826040516020018083805190602001908083835b60208310611a325780518252601f199092019160209182019101611a13565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611a7a5780518252601f199092019160209182019101611a5b565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050610591565b80611ac285613118565b6040516020018083805190602001908083835b60208310611af45780518252601f199092019160209182019101611ad5565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611b3c5780518252601f199092019160209182019101611b1d565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b3390565b825160601c6000611b8d611b7a565b9050806001600160a01b0316826001600160a01b03161480611bb45750611bb482826115b0565b611bd05760405162461bcd60e51b815260040161067c90614fd3565b60008311611bf05760405162461bcd60e51b815260040161067c90614fa9565b845160009081526101fc6020526040902054611d59578460600151600081518110611c1757fe5b6020026020010151600001516001600160a01b0316826001600160a01b031614611c535760405162461bcd60e51b815260040161067c90614f0a565b6000856040015111611c775760405162461bcd60e51b815260040161067c90614eab565b8460a001515185606001515114611c8d57600080fd5b6000611c98866131f2565b905060005b866060015151811015611d0e57600087606001518281518110611cbc57fe5b6020026020010151600001519050836001600160a01b0316816001600160a01b031614611d0557611d0581848a60a001518581518110611cf857fe5b6020026020010151613445565b50600101611c9d565b50611d2186600001518760400151613450565b611d33866000015187608001516134ae565b611d4586600001518760600151613634565b611d5786600001518760200151611d78565b505b61154d84866000015185604051806020016040528060008152506137e2565b600082815261012e602090815260409091208251611d9892840190614367565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b611dc48461193d565b6040805160208082528351818301528351919283929083019185019080838360005b83811015611dfe578181015183820152602001611de6565b50505050905090810190601f168015611e2b5780820380516001836020036101000a031916815260200191505b509250505060405180910390a25050565b6001600160a01b038216600081815260c96020908152604091829020805460ff1916851515908117909155825190815291517f270dbb8ba4292910ae92862466486be25c355c837270a3d8824b36a8bc7c653b9281900390910190a25050565b6001600160a01b038416611ee15760405162461bcd60e51b81526004018080602001828103825260218152602001806155466021913960400191505060405180910390fd5b8151835114611f215760405162461bcd60e51b815260040180806020018281038252602881526020018061551e6028913960400191505060405180910390fd5b6000611f2b611b7a565b9050611f3c816000878787876120ea565b60005b845181101561200057611fb760976000878481518110611f5b57fe5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002054858381518110611fa157fe5b60200260200101516122f990919063ffffffff16565b60976000878481518110611fc757fe5b602090810291909101810151825281810192909252604090810160009081206001600160a01b038b168252909252902055600101611f3f565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561208757818101518382015260200161206f565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156120c65781810151838201526020016120ae565b5050505090500194505050505060405180910390a461154d81600087878787612353565b6120f8868686868686610ab9565b610296546001600160a01b03168015612259576001600160a01b038616156121b2576040516359796cd960e01b81526001600160a01b038216906359796cd990612146908990600401614dca565b60206040518083038186803b15801561215e57600080fd5b505afa158015612172573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121969190614abf565b6121b25760405162461bcd60e51b815260040161067c90615095565b6001600160a01b03851615612259576040516359796cd960e01b81526001600160a01b038216906359796cd9906121ed908890600401614dca565b60206040518083038186803b15801561220557600080fd5b505afa158015612219573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061223d9190614abf565b6122595760405162461bcd60e51b815260040161067c90615095565b50505050505050565b600081848411156122f15760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122b657818101518382015260200161229e565b50505050905090810190601f1680156122e35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156115bc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b612365846001600160a01b03166137ee565b15610ab957836001600160a01b031663bc197c8187878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b838110156123f35781810151838201526020016123db565b50505050905001848103835286818151815260200191508051906020019060200280838360005b8381101561243257818101518382015260200161241a565b50505050905001848103825285818151815260200191508051906020019080838360005b8381101561246e578181015183820152602001612456565b50505050905090810190601f16801561249b5780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b1580156124c057600080fd5b505af19250505080156124e557506040513d60208110156124e057600080fd5b505160015b61257a576124f16151d4565b806124fc5750612543565b60405162461bcd60e51b81526020600482018181528351602484015283518493919283926044019190850190808383600083156122b657818101518382015260200161229e565b60405162461bcd60e51b815260040180806020018281038252603481526020018061529c6034913960400191505060405180910390fd5b6001600160e01b0319811663bc197c8160e01b146122595760405162461bcd60e51b81526004018080602001828103825260288152602001806152d06028913960400191505060405180910390fd5b80516106e59061012f906020840190614367565b6125e5611b7a565b6001600160a01b0316836001600160a01b0316148061260b575061260b836104b3611b7a565b6126465760405162461bcd60e51b815260040180806020018281038252602981526020018061536d6029913960400191505060405180910390fd5b6106908383836137f4565b6001600160a01b0384166126965760405162461bcd60e51b81526004018080602001828103825260218152602001806155466021913960400191505060405180910390fd5b60006126a0611b7a565b90506126b28160008761168c88612eee565b60008481526097602090815260408083206001600160a01b03891684529091529020546126df90846122f9565b60008581526097602090815260408083206001600160a01b03808b16808652918452828520959095558151898152928301889052815190948616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a461154d81600087878787612f33565b80516106e590610230906020840190614367565b60008381526101fa6020526040812054905b8181101561154d5760008581526101fa6020526040902080546001600160a01b0386169190839081106127a757fe5b6000918252602090912001546001600160a01b0316141561280a5760008581526101fa602052604090208054849190839081106127e057fe5b600091825260209091200180546001600160a01b0319166001600160a01b03929092169190911790555b600101612778565b600061281d306137ee565b15905090565b600054610100900460ff168061283c575061283c612812565b8061284a575060005460ff16155b6128855760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff161580156128b0576000805460ff1961ff0019909116610100171660011790555b60006128ba611b7a565b603380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350801561291a576000805461ff00191690555b50565b600054610100900460ff16806129365750612936612812565b80612944575060005460ff16155b61297f5760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff161580156129aa576000805460ff1961ff0019909116610100171660011790555b6129ba636db15a0f60e01b613a62565b801561291a576000805461ff001916905550565b600054610100900460ff16806129e757506129e7612812565b806129f5575060005460ff16155b612a305760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff16158015612a5b576000805460ff1961ff0019909116610100171660011790555b6129ba6301ffc9a760e01b613a62565b600054610100900460ff1680612a845750612a84612812565b80612a92575060005460ff16155b612acd5760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff161580156129ba576000805460ff1961ff001990911661010017166001179055801561291a576000805461ff001916905550565b600054610100900460ff1680612b245750612b24612812565b80612b32575060005460ff16155b612b6d5760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff16158015612b98576000805460ff1961ff0019909116610100171660011790555b6129ba604051806040016040528060088152602001674d696e743131353560c01b815250604051806040016040528060018152602001603160f81b815250613ae6565b600054610100900460ff1680612bf45750612bf4612812565b80612c02575060005460ff16155b612c3d5760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff16158015612c68576000805460ff1961ff0019909116610100171660011790555b612c7182613ba8565b612c81636cdb3d1360e11b613a62565b612c916303a24d0760e21b613a62565b80156106e5576000805461ff00191690555050565b600054610100900460ff1680612cbf5750612cbf612812565b80612ccd575060005460ff16155b612d085760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff16158015612d33576000805460ff1961ff0019909116610100171660011790555b8151612d4790610230906020850190614367565b50612c9163e8a3d48560e01b613a62565b600054610100900460ff1680612d715750612d71612812565b80612d7f575060005460ff16155b612dba5760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff16158015612de5576000805460ff1961ff0019909116610100171660011790555b6129ba631131d2f360e21b613a62565b600054610100900460ff1680612e0e5750612e0e612812565b80612e1c575060005460ff16155b612e575760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff16158015612e82576000805460ff1961ff0019909116610100171660011790555b8251612e9690610262906020860190614367565b508151612eab90610263906020850190614367565b508015610690576000805461ff0019169055505050565b6001600160a01b038116600090815260c9602052604081205460ff16806115bc57506115bc8383613bbb565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612f2257fe5b602090810291909101015292915050565b612f45846001600160a01b03166137ee565b15610ab957836001600160a01b031663f23a6e6187878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612fd4578181015183820152602001612fbc565b50505050905090810190601f1680156130015780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561302457600080fd5b505af192505050801561304957506040513d602081101561304457600080fd5b505160015b613055576124f16151d4565b6001600160e01b0319811663f23a6e6160e01b146122595760405162461bcd60e51b81526004018080602001828103825260288152602001806152d06028913960400191505060405180910390fd5b6130ac611b7a565b6001600160a01b0316836001600160a01b031614806130d257506130d2836104b3611b7a565b61310d5760405162461bcd60e51b815260040180806020018281038252602981526020018061536d6029913960400191505060405180910390fd5b610690838383613be9565b60608161313d57506040805180820190915260018152600360fc1b6020820152610591565b8160005b811561315557600101600a82049150613141565b6000816001600160401b038111801561316d57600080fd5b506040519080825280601f01601f191660200182016040528015613198576020820181803683370190505b50859350905060001982015b83156131e957600a840660300160f81b828280600190039350815181106131c757fe5b60200101906001600160f81b031916908160001a905350600a840493506131a4565b50949350505050565b6000808260800151516001600160401b038111801561321057600080fd5b5060405190808252806020026020018201604052801561323a578160200160208202803683370190505b50905060005b83608001515181101561328c5761326d8460800151828151811061326057fe5b6020026020010151613d1c565b82828151811061327957fe5b6020908102919091010152600101613240565b5060008360600151516001600160401b03811180156132aa57600080fd5b506040519080825280602002602001820160405280156132d4578160200160208202803683370190505b50905060005b846060015151811015613319576132fa8560600151828151811061326057fe5b82828151811061330657fe5b60209081029190910101526001016132da565b507ffb988707ebb338694f318760b0fd5cfe756d00a2ade251fda110b80c336a3c7f846000015185604001518660200151805190602001208460405160200180828051906020019060200280838360005b8381101561338257818101518382015260200161336a565b50505050905001915050604051602081830303815290604052805190602001208660405160200180828051906020019060200280838360005b838110156133d35781810151838201526020016133bb565b50505050905001915050604051602081830303815290604052805190602001206040516020018087815260200186815260200185815260200184815260200183815260200182815260200196505050505050506040516020818303038152906040528051906020012092505050919050565b610690838383613d89565b60008281526101fc60205260409020541561346a57600080fd5b60008281526101fc6020526040908190208290555182907f5e2aa66efd74cce82b21852e317e5490d9ecc9e6bb953ae24d90851258cc2f5c90610ed390849061516c565b60005b81518110156136295760006001600160a01b03168282815181106134d157fe5b6020026020010151600001516001600160a01b03161415613539576040805162461bcd60e51b815260206004820152601b60248201527f526563697069656e742073686f756c642062652070726573656e740000000000604482015290519081900360640190fd5b81818151811061354557fe5b6020026020010151602001516001600160601b0316600014156135af576040805162461bcd60e51b815260206004820181905260248201527f526f79616c74792076616c75652073686f756c6420626520706f736974697665604482015290519081900360640190fd5b60008381526101fa6020526040902082518390839081106135cc57fe5b60209081029190910181015182546001818101855560009485529383902082519101805492909301516001600160601b0316600160a01b026001600160a01b039182166001600160a01b03199093169290921716179055016134b1565b506106e58282613fc1565b60008281526101fb6020526040812090805b83518110156137825760006001600160a01b031684828151811061366657fe5b6020026020010151600001516001600160a01b031614156136995760405162461bcd60e51b815260040161067c906150e7565b8381815181106136a557fe5b6020026020010151602001516001600160601b0316600014156136da5760405162461bcd60e51b815260040161067c90614ed5565b828482815181106136e757fe5b602090810291909101810151825460018101845560009384529282902081519301805491909201516001600160601b0316600160a01b026001600160a01b039384166001600160a01b03199092169190911790921691909117905583516137789085908390811061375457fe5b6020026020010151602001516001600160601b0316836122f990919063ffffffff16565b9150600101613646565b5080612710146137a45760405162461bcd60e51b815260040161067c9061511e565b837f841ffb90d4cabdd1f16034f3fa831d79060febbb8167bdd54a49269365bdf78f846040516137d49190614e36565b60405180910390a250505050565b6107a784848484613ffe565b3b151590565b6001600160a01b0383166138395760405162461bcd60e51b815260040180806020018281038252602381526020018061545f6023913960400191505060405180910390fd5b80518251146138795760405162461bcd60e51b815260040180806020018281038252602881526020018061551e6028913960400191505060405180910390fd5b6000613883611b7a565b90506138a3818560008686604051806020016040528060008152506120ea565b60005b8351811015613981576139388382815181106138be57fe5b602002602001015160405180606001604052806024815260200161534960249139609760008886815181106138ef57fe5b602002602001015181526020019081526020016000206000896001600160a01b03166001600160a01b03168152602001908152602001600020546122629092919063ffffffff16565b6097600086848151811061394857fe5b602090810291909101810151825281810192909252604090810160009081206001600160a01b038a1682529092529020556001016138a6565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015613a085781810151838201526020016139f0565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015613a47578181015183820152602001613a2f565b5050505090500194505050505060405180910390a450505050565b6001600160e01b03198082161415613ac1576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152606560205260409020805460ff19166001179055565b600054610100900460ff1680613aff5750613aff612812565b80613b0d575060005460ff16155b613b485760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff16158015613b73576000805460ff1961ff0019909116610100171660011790555b825160208085019190912083519184019190912061016291909155610163558015610690576000805461ff0019169055505050565b80516106e5906099906020840190614367565b6001600160a01b03918216600090815260986020908152604080832093909416825291909152205460ff1690565b6001600160a01b038316613c2e5760405162461bcd60e51b815260040180806020018281038252602381526020018061545f6023913960400191505060405180910390fd5b6000613c38611b7a565b9050613c6881856000613c4a87612eee565b613c5387612eee565b604051806020016040528060008152506120ea565b613caf826040518060600160405280602481526020016153496024913960008681526097602090815260408083206001600160a01b038b1684529091529020549190612262565b60008481526097602090815260408083206001600160a01b03808a16808652918452828520959095558151888152928301879052815193949093908616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a450505050565b8051602091820151604080517f397e04204c1e1a60ee8724b71f8244e10ab5f2e9009854d80f602bda21b59ebb818601526001600160a01b03909316838201526001600160601b039091166060808401919091528151808403909101815260809092019052805191012090565b6000613d9483614069565b9050613da8846001600160a01b03166137ee565b15613f215760408051630b135d3f60e11b808252600482018481526024830193845285516044840152855191936001600160a01b03891693631626ba7e938793899390929091606490910190602085019080838360005b83811015613e17578181015183820152602001613dff565b50505050905090810190601f168015613e445780820380516001836020036101000a031916815260200191505b50935050505060206040518083038186803b158015613e6257600080fd5b505afa158015613e76573d6000803e3d6000fd5b505050506040513d6020811015613e8c57600080fd5b505160408051808201909152601c81527f7369676e617475726520766572696669636174696f6e206572726f72000000006020820152916001600160e01b031990911614613f1b5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156122b657818101518382015260200161229e565b506107a7565b6001600160a01b038416613f3582846140b5565b6001600160a01b0316146040518060400160405280601c81526020017f7369676e617475726520766572696669636174696f6e206572726f72000000008152509061154d5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156122b657818101518382015260200161229e565b7f3fa96d7b6bcbfe71ef171666d84db3cf52fa2d1c8afdb1cc8e486177f208b7df8282604051613ff2929190615175565b60405180910390a15050565b60008381526101fd60205260408120546140199084906122f9565b60008581526101fc602052604090205490915081111561404b5760405162461bcd60e51b815260040161067c9061506b565b60008481526101fd6020526040902081905561154d85858585612651565b6000614073614135565b82604051602001808061190160f01b81525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b6000815160411461410d576040805162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015290519081900360640190fd5b60208201516040830151606084015160001a61412b86828585614175565b9695505050505050565b60006141707f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6141636142f3565b61416b6142fa565b614301565b905090565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156141d65760405162461bcd60e51b81526004018080602001828103825260228152602001806153966022913960400191505060405180910390fd5b8360ff16601b14806141eb57508360ff16601c145b6142265760405162461bcd60e51b815260040180806020018281038252602281526020018061543d6022913960400191505060405180910390fd5b600060018686868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015614282573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166142ea576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b95945050505050565b6101625490565b6101635490565b600083838361430e614363565b3060405160200180868152602001858152602001848152602001838152602001826001600160a01b03168152602001955050505050506040516020818303038152906040528051906020012090509392505050565b4690565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261439d57600085556143e3565b82601f106143b657805160ff19168380011785556143e3565b828001600101855582156143e3579182015b828111156143e35782518255916020019190600101906143c8565b506143ef9291506143f3565b5090565b5b808211156143ef57600081556001016143f4565b600082601f830112614418578081fd5b8135602061442d614428836151b1565b61518e565b82815281810190858301855b8581101561446257614450898684358b0101614584565b84529284019290840190600101614439565b5090979650505050505050565b600082601f83011261447f578081fd5b8135602061448f614428836151b1565b828152818101908583016040808602880185018910156144ad578687fd5b865b8681101561451c5781838b0312156144c5578788fd5b81518281018181106001600160401b03821117156144df57fe5b835283356144ec81615278565b8152838701356001600160601b038116811461450657898afd5b81880152855293850193918101916001016144af565b509198975050505050505050565b600082601f83011261453a578081fd5b8135602061454a614428836151b1565b8281528181019085830183850287018401881015614566578586fd5b855b8581101561446257813584529284019290840190600101614568565b600082601f830112614594578081fd5b81356001600160401b038111156145a757fe5b6145ba601f8201601f191660200161518e565b8181528460208386010111156145ce578283fd5b816020850160208301379081016020019190915292915050565b600060c082840312156145f9578081fd5b61460360c061518e565b90508135815260208201356001600160401b038082111561462357600080fd5b61462f85838601614584565b602084015260408401356040840152606084013591508082111561465257600080fd5b61465e8583860161446f565b6060840152608084013591508082111561467757600080fd5b6146838583860161446f565b608084015260a084013591508082111561469c57600080fd5b506146a984828501614408565b60a08301525092915050565b6000602082840312156146c6578081fd5b81356115bc81615278565b600080604083850312156146e3578081fd5b82356146ee81615278565b915060208301356146fe81615278565b809150509250929050565b600080600080600060a08688031215614720578081fd5b853561472b81615278565b9450602086013561473b81615278565b935060408601356001600160401b0380821115614756578283fd5b61476289838a0161452a565b94506060880135915080821115614777578283fd5b61478389838a0161452a565b93506080880135915080821115614798578283fd5b506147a588828901614584565b9150509295509295909350565b600080600080600060a086880312156147c9578283fd5b85356147d481615278565b945060208601356147e481615278565b9350604086013592506060860135915060808601356001600160401b0381111561480c578182fd5b6147a588828901614584565b60008060006060848603121561482c578081fd5b833561483781615278565b925060208401356001600160401b0380821115614852578283fd5b61485e8783880161452a565b93506040860135915080821115614873578283fd5b506148808682870161452a565b9150509250925092565b6000806000806080858703121561489f578182fd5b84356148aa81615278565b935060208501356001600160401b03808211156148c5578384fd5b6148d18883890161452a565b945060408701359150808211156148e6578384fd5b6148f28883890161452a565b93506060870135915080821115614907578283fd5b5061491487828801614584565b91505092959194509250565b60008060408385031215614932578182fd5b823561493d81615278565b915060208301356146fe8161528d565b6000806040838503121561495f578182fd5b823561496a81615278565b946020939093013593505050565b60008060006060848603121561498c578081fd5b833561499781615278565b95602085013595506040909401359392505050565b600080600080608085870312156149c1578182fd5b84356149cc81615278565b9350602085013592506040850135915060608501356001600160401b038111156149f4578182fd5b61491487828801614584565b60008060408385031215614a12578182fd5b82356001600160401b0380821115614a28578384fd5b818501915085601f830112614a3b578384fd5b81356020614a4b614428836151b1565b82815281810190858301838502870184018b1015614a67578889fd5b8896505b84871015614a92578035614a7e81615278565b835260019690960195918301918301614a6b565b5096505086013592505080821115614aa8578283fd5b50614ab58582860161452a565b9150509250929050565b600060208284031215614ad0578081fd5b81516115bc8161528d565b600060208284031215614aec578081fd5b81356001600160e01b0319811681146115bc578182fd5b600060208284031215614b14578081fd5b81356001600160401b03811115614b29578182fd5b614b3584828501614584565b949350505050565b60008060008060808587031215614b52578182fd5b84356001600160401b0380821115614b68578384fd5b614b7488838901614584565b95506020870135915080821115614b89578384fd5b614b9588838901614584565b94506040870135915080821115614baa578384fd5b6148f288838901614584565b60008060008060808587031215614bcb578182fd5b84356001600160401b03811115614be0578283fd5b614bec878288016145e8565b9450506020850135614bfd81615278565b92506040850135614c0d81615278565b9396929550929360600135925050565b600080600060608486031215614c31578081fd5b83356001600160401b03811115614c46578182fd5b614c52868287016145e8565b9350506020840135614c6381615278565b929592945050506040919091013590565b600060208284031215614c85578081fd5b5035919050565b600080600060608486031215614ca0578081fd5b833592506020840135614cb281615278565b91506040840135614cc281615278565b809150509250925092565b60008060408385031215614cdf578182fd5b8235915060208301356001600160401b03811115614cfb578182fd5b614ab585828601614584565b60008060408385031215614d19578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b83811015614d7457815180516001600160a01b031688528301516001600160601b03168388015260409096019590820190600101614d3b565b509495945050505050565b60008151808452815b81811015614da457602081850181015186830182015201614d88565b81811115614db55782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0384168152606060208201819052600090614e0290830185614d7f565b828103604084015261412b8185614d7f565b6001600160a01b039290921682526001600160601b0316602082015260400190565b6000602082526115bc6020830184614d28565b6020808252825182820181905260009190848201906040850190845b81811015614e8157835183529284019291840191600101614e65565b50909695505050505050565b901515815260200190565b6000602082526115bc6020830184614d7f565b60208082526010908201526f1cdd5c1c1b1e481a5b98dbdc9c9958dd60821b604082015260600190565b6020808252818101527f43726561746f722073686172652073686f756c6420626520706f736974697665604082015260600190565b6020808252601190820152701d1bdad95b9259081a5b98dbdc9c9958dd607a1b604082015260600190565b6020808252600b908201526a1b9bdd08185b1b1bddd95960aa1b604082015260600190565b6020808252602f908201527f45524331313535437572696f4173736574526f6c65733a2063616c6c6572206960408201526e39903737ba103a34329030b236b4b760891b606082015260800190565b60208082526010908201526f185b5bdd5b9d081a5b98dbdc9c9958dd60821b604082015260600190565b60208082526028908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f7420604082015267185c1c1c9bdd995960c21b606082015260800190565b60208082526030908201527f45524331313535437572696f4173736574526f6c65733a2063616c6c6572206960408201526f39903737ba103a34329036b4b73a32b960811b606082015260800190565b60208082526010908201526f6d6f7265207468616e20737570706c7960801b604082015260600190565b60208082526032908201527f45524331313535437572696f4173736574526f6c65733a207472616e73666572604082015271081c195c9b5a5cdcda5bdb8819195b9a595960721b606082015260800190565b60208082526019908201527f4163636f756e742073686f756c642062652070726573656e7400000000000000604082015260600190565b6020808252602e908201527f746f74616c20616d6f756e74206f662063726561746f7273207368617265207360408201526d0686f756c642062652031303030360941b606082015260800190565b90815260200190565b600083825260406020830152614b356040830184614d28565b6040518181016001600160401b03811182821017156151a957fe5b604052919050565b60006001600160401b038211156151c457fe5b5060209081020190565b60e01c90565b600060443d10156151e457610d1b565b600481823e6308c379a06151f882516151ce565b1461520257610d1b565b6040513d600319016004823e80513d6001600160401b0381602484011181841117156152315750505050610d1b565b8284019250825191508082111561524b5750505050610d1b565b503d8301602082840101111561526357505050610d1b565b601f01601f1916810160200160405291505090565b6001600160a01b038116811461291a57600080fd5b801515811461291a57600080fdfe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73455243313135353a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243313135353a206275726e20616d6f756e7420657863656564732062616c616e6365455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656445434453413a20696e76616c6964207369676e6174757265202773272076616c7565455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a656445434453413a20696e76616c6964207369676e6174757265202776272076616c7565455243313135353a206275726e2066726f6d20746865207a65726f2061646472657373455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e736665724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373a2646970667358221220810f273381d359930d36309f04ea87e12446bce8c98505ccf817bb416dd4674564736f6c63430007060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102265760003560e01c8063891be97411610130578063bb3bafd6116100b8578063e985e9c51161007c578063e985e9c5146104a5578063f242432a146104b8578063f2fde38b146104cb578063f5298aca146104de578063ffc4e0a7146104f157610226565b8063bb3bafd614610451578063ddccf81d14610464578063e07f231914610477578063e71914f61461048a578063e8a3d4851461049d57610226565b8063938e3d7b116100ff578063938e3d7b146103fd57806395d89b411461041057806398d0b4fb14610418578063a22cb4651461042b578063aa271e1a1461043e57610226565b8063891be974146103a15780638924af74146103c15780638da5cb5b146103e25780638f718d87146103ea57610226565b80632eb2c2d6116101b35780636c0360eb116101825780636c0360eb14610356578063715018a61461035e578063731133e91461036657806375f3974b146103795780638600fb9a1461038c57610226565b80632eb2c2d6146102fd5780634e1273f41461031057806355f804b3146103305780636b20c4541461034357610226565b80630eaead67116101fa5780630eaead671461029c578063162094c4146102b157806318054c37146102c45780631f7fdffa146102d757806324d7806c146102ea57610226565b8062fdd58e1461022b57806301ffc9a71461025457806306fdde03146102745780630e89341c14610289575b600080fd5b61023e61023936600461494d565b610504565b60405161024b919061516c565b60405180910390f35b610267610262366004614adb565b610573565b60405161024b9190614e8d565b61027c610596565b60405161024b9190614e98565b61027c610297366004614c74565b610625565b6102af6102aa366004614c1d565b610636565b005b6102af6102bf366004614ccd565b610695565b6102af6102d2366004614920565b6106e9565b6102af6102e536600461488a565b610755565b6102676102f83660046146b5565b6107ad565b6102af61030b366004614709565b6107c3565b61032361031e366004614a00565b610ac1565b60405161024b9190614e49565b6102af61033e366004614b03565b610bac565b6102af610351366004614818565b610c35565b61027c610c86565b6102af610d1e565b6102af6103743660046149ac565b610dca565b6102af610387366004614920565b610e1c565b610394610edf565b60405161024b9190614dca565b6103b46103af366004614c74565b610eef565b60405161024b9190614e36565b6103d46103cf366004614d07565b610f7f565b60405161024b929190614e14565b610394610fc9565b6102af6103f8366004614920565b610fd8565b6102af61040b366004614b03565b611099565b61027c611117565b6103d4610426366004614d07565b611173565b6102af610439366004614920565b611190565b61026761044c3660046146b5565b61127f565b6103b461045f366004614c74565b611295565b6102af6104723660046146b5565b611310565b6102af610485366004614c8c565b6113bd565b6102af610498366004614b3d565b611400565b61027c611554565b6102676104b33660046146d1565b6115b0565b6102af6104c63660046147b2565b6115c3565b6102af6104d93660046146b5565b61178e565b6102af6104ec366004614978565b611891565b6102af6104ff366004614bb6565b6118e2565b60006001600160a01b03831661054b5760405162461bcd60e51b815260040180806020018281038252602b8152602001806152f8602b913960400191505060405180910390fd5b5060009081526097602090815260408083206001600160a01b03949094168352929052205490565b6001600160e01b0319811660009081526065602052604090205460ff165b919050565b610262805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561061d5780601f106105f25761010080835404028352916020019161061d565b820191906000526020600020905b81548152906001019060200180831161060057829003601f168201915b505050505081565b60606106308261193d565b92915050565b6102986000610643611b7a565b6001600160a01b0316815260208101919091526040016000205460ff166106855760405162461bcd60e51b815260040161067c9061501b565b60405180910390fd5b610690838383611b7e565b505050565b61029860006106a2611b7a565b6001600160a01b0316815260208101919091526040016000205460ff166106db5760405162461bcd60e51b815260040161067c9061501b565b6106e58282611d78565b5050565b6106f1611b7a565b6001600160a01b0316610702610fc9565b6001600160a01b03161461074b576040805162461bcd60e51b815260206004820181905260248201526000805160206154ac833981519152604482015290519081900360640190fd5b6106e58282611e3c565b6102986000610762611b7a565b6001600160a01b0316815260208101919091526040016000205460ff1661079b5760405162461bcd60e51b815260040161067c9061501b565b6107a784848484611e9c565b50505050565b6102976020526000908152604090205460ff1681565b81518351146108035760405162461bcd60e51b815260040180806020018281038252602881526020018061551e6028913960400191505060405180910390fd5b6001600160a01b0384166108485760405162461bcd60e51b81526004018080602001828103825260258152602001806153b86025913960400191505060405180910390fd5b610850611b7a565b6001600160a01b0316856001600160a01b031614806108765750610876856104b3611b7a565b6108b15760405162461bcd60e51b81526004018080602001828103825260328152602001806153dd6032913960400191505060405180910390fd5b60006108bb611b7a565b90506108cb8187878787876120ea565b60005b84518110156109d15760008582815181106108e557fe5b6020026020010151905060008583815181106108fd57fe5b6020026020010151905061096a816040518060600160405280602a8152602001615482602a91396097600086815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020546122629092919063ffffffff16565b60008381526097602090815260408083206001600160a01b038e811685529252808320939093558a16815220546109a190826122f9565b60009283526097602090815260408085206001600160a01b038c16865290915290922091909155506001016108ce565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015610a57578181015183820152602001610a3f565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015610a96578181015183820152602001610a7e565b5050505090500194505050505060405180910390a4610ab9818787878787612353565b505050505050565b60608151835114610b035760405162461bcd60e51b81526004018080602001828103825260298152602001806154f56029913960400191505060405180910390fd5b600083516001600160401b0381118015610b1c57600080fd5b50604051908082528060200260200182016040528015610b46578160200160208202803683370190505b50905060005b8451811015610ba457610b85858281518110610b6457fe5b6020026020010151858381518110610b7857fe5b6020026020010151610504565b828281518110610b9157fe5b6020908102919091010152600101610b4c565b509392505050565b6102986000610bb9611b7a565b6001600160a01b0316815260208101919091526040016000205460ff16610bf25760405162461bcd60e51b815260040161067c9061501b565b610bfb816125c9565b7f23c8c9488efebfd474e85a7956de6f39b17c7ab88502d42a623db2d8e382bbaa81604051610c2a9190614e98565b60405180910390a150565b6102986000610c42611b7a565b6001600160a01b0316815260208101919091526040016000205460ff16610c7b5760405162461bcd60e51b815260040161067c9061501b565b6106908383836125dd565b61012f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d135780601f10610ce857610100808354040283529160200191610d13565b820191906000526020600020905b815481529060010190602001808311610cf657829003601f168201915b505050505090505b90565b610d26611b7a565b6001600160a01b0316610d37610fc9565b6001600160a01b031614610d80576040805162461bcd60e51b815260206004820181905260248201526000805160206154ac833981519152604482015290519081900360640190fd5b6033546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3603380546001600160a01b0319169055565b6102986000610dd7611b7a565b6001600160a01b0316815260208101919091526040016000205460ff16610e105760405162461bcd60e51b815260040161067c9061501b565b6107a784848484612651565b610e24611b7a565b6001600160a01b0316610e35610fc9565b6001600160a01b031614610e7e576040805162461bcd60e51b815260206004820181905260248201526000805160206154ac833981519152604482015290519081900360640190fd5b6001600160a01b0382166000818152610297602052604090819020805460ff1916841515179055517f0e7bea53cb2b3130dd1aac8d56b61cc8da7ebab0432e2d1622513523d848f2e790610ed3908490614e8d565b60405180910390a25050565b610296546001600160a01b031681565b60606101fb6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b82821015610f7457600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b031681830152825260019092019101610f25565b505050509050919050565b6101fa6020528160005260406000208181548110610f9c57600080fd5b6000918252602090912001546001600160a01b0381169250600160a01b90046001600160601b0316905082565b6033546001600160a01b031690565b6102976000610fe5611b7a565b6001600160a01b0316815260208101919091526040016000205460ff1661101e5760405162461bcd60e51b815260040161067c90614f5a565b6001600160a01b038216600090815261029860205260409020805460ff191682151517905561104b611b7a565b6001600160a01b0316826001600160a01b03167fb9597064550b098ddd90b43cfdfe39db20e56496cf1fa934fb9be3d34b2a8a2a8360405161108d9190614e8d565b60405180910390a35050565b61029760006110a6611b7a565b6001600160a01b0316815260208101919091526040016000205460ff166110df5760405162461bcd60e51b815260040161067c90614f5a565b6110e881612752565b7f5ca9f750836b0b7efdace104f07b5c9f0df0650c0fd24f5163e99044ae36ea5281604051610c2a9190614e98565b610263805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561061d5780601f106105f25761010080835404028352916020019161061d565b6101fb6020528160005260406000208181548110610f9c57600080fd5b816001600160a01b03166111a2611b7a565b6001600160a01b031614156111e85760405162461bcd60e51b81526004018080602001828103825260298152602001806154cc6029913960400191505060405180910390fd5b80609860006111f5611b7a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611239611b7a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b6102986020526000908152604090205460ff1681565b60008181526101fa60209081526040808320805482518185028101850190935280835260609492939192909184018215610f7457600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b031681830152825260019092019101610f25565b611318611b7a565b6001600160a01b0316611329610fc9565b6001600160a01b031614611372576040805162461bcd60e51b815260206004820181905260248201526000805160206154ac833981519152604482015290519081900360640190fd5b61029680546001600160a01b0319166001600160a01b0383169081179091556040517f410b4f2ad1de2e5a454fb2651597e3b2250c4fbe477414517212e2f45548ea7090600090a250565b816001600160a01b03166113cf611b7a565b6001600160a01b0316146113f55760405162461bcd60e51b815260040161067c90614f35565b610690838383612766565b600054610100900460ff16806114195750611419612812565b80611427575060005460ff16155b6114625760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff1615801561148d576000805460ff1961ff0019909116610100171660011790555b611495612823565b61149d61291d565b6114a56129ce565b6114ad612a6b565b6114b5612b0b565b6114cd60405180602001604052806000815250612bdb565b6114d682612ca6565b6114de612a6b565b6114e6612d58565b6114f08585612df5565b6114f9836125c9565b7fab2ebbf397d7d5ed476fed9236bc84ce59571499b5b3f374ffafdb2ff2044ac9611522611b7a565b868660405161153393929190614dde565b60405180910390a1801561154d576000805461ff00191690555b5050505050565b610230805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561061d5780601f106105f25761010080835404028352916020019161061d565b60006115bc8383612ec2565b9392505050565b6001600160a01b0384166116085760405162461bcd60e51b81526004018080602001828103825260258152602001806153b86025913960400191505060405180910390fd5b611610611b7a565b6001600160a01b0316856001600160a01b031614806116365750611636856104b3611b7a565b6116715760405162461bcd60e51b815260040180806020018281038252602981526020018061536d6029913960400191505060405180910390fd5b600061167b611b7a565b905061169b81878761168c88612eee565b61169588612eee565b876120ea565b6116e2836040518060600160405280602a8152602001615482602a913960008781526097602090815260408083206001600160a01b038d1684529091529020549190612262565b60008581526097602090815260408083206001600160a01b038b8116855292528083209390935587168152205461171990846122f9565b60008581526097602090815260408083206001600160a01b03808b168086529184529382902094909455805188815291820187905280518a8416938616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a4610ab9818787878787612f33565b611796611b7a565b6001600160a01b03166117a7610fc9565b6001600160a01b0316146117f0576040805162461bcd60e51b815260206004820181905260248201526000805160206154ac833981519152604482015290519081900360640190fd5b6001600160a01b0381166118355760405162461bcd60e51b81526004018080602001828103825260268152602001806153236026913960400191505060405180910390fd5b6033546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3603380546001600160a01b0319166001600160a01b0392909216919091179055565b610298600061189e611b7a565b6001600160a01b0316815260208101919091526040016000205460ff166118d75760405162461bcd60e51b815260040161067c9061501b565b6106908383836130a4565b60006118f2848660000151610504565b905081811561192c5782808310156119075750815b6119278686896000015184604051806020016040528060008152506115c3565b830390505b8015610ab957610ab9868583610636565b600081815261012e6020908152604080832080548251601f60026000196101006001861615020190931692909204918201859004850281018501909352808352606094938301828280156119d25780601f106119a7576101008083540402835291602001916119d2565b820191906000526020600020905b8154815290600101906020018083116119b557829003601f168201915b5050505050905060006119e3610c86565b90508051600014156119f757509050610591565b815115611ab85780826040516020018083805190602001908083835b60208310611a325780518252601f199092019160209182019101611a13565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611a7a5780518252601f199092019160209182019101611a5b565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050610591565b80611ac285613118565b6040516020018083805190602001908083835b60208310611af45780518252601f199092019160209182019101611ad5565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b60208310611b3c5780518252601f199092019160209182019101611b1d565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b3390565b825160601c6000611b8d611b7a565b9050806001600160a01b0316826001600160a01b03161480611bb45750611bb482826115b0565b611bd05760405162461bcd60e51b815260040161067c90614fd3565b60008311611bf05760405162461bcd60e51b815260040161067c90614fa9565b845160009081526101fc6020526040902054611d59578460600151600081518110611c1757fe5b6020026020010151600001516001600160a01b0316826001600160a01b031614611c535760405162461bcd60e51b815260040161067c90614f0a565b6000856040015111611c775760405162461bcd60e51b815260040161067c90614eab565b8460a001515185606001515114611c8d57600080fd5b6000611c98866131f2565b905060005b866060015151811015611d0e57600087606001518281518110611cbc57fe5b6020026020010151600001519050836001600160a01b0316816001600160a01b031614611d0557611d0581848a60a001518581518110611cf857fe5b6020026020010151613445565b50600101611c9d565b50611d2186600001518760400151613450565b611d33866000015187608001516134ae565b611d4586600001518760600151613634565b611d5786600001518760200151611d78565b505b61154d84866000015185604051806020016040528060008152506137e2565b600082815261012e602090815260409091208251611d9892840190614367565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b611dc48461193d565b6040805160208082528351818301528351919283929083019185019080838360005b83811015611dfe578181015183820152602001611de6565b50505050905090810190601f168015611e2b5780820380516001836020036101000a031916815260200191505b509250505060405180910390a25050565b6001600160a01b038216600081815260c96020908152604091829020805460ff1916851515908117909155825190815291517f270dbb8ba4292910ae92862466486be25c355c837270a3d8824b36a8bc7c653b9281900390910190a25050565b6001600160a01b038416611ee15760405162461bcd60e51b81526004018080602001828103825260218152602001806155466021913960400191505060405180910390fd5b8151835114611f215760405162461bcd60e51b815260040180806020018281038252602881526020018061551e6028913960400191505060405180910390fd5b6000611f2b611b7a565b9050611f3c816000878787876120ea565b60005b845181101561200057611fb760976000878481518110611f5b57fe5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002054858381518110611fa157fe5b60200260200101516122f990919063ffffffff16565b60976000878481518110611fc757fe5b602090810291909101810151825281810192909252604090810160009081206001600160a01b038b168252909252902055600101611f3f565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561208757818101518382015260200161206f565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156120c65781810151838201526020016120ae565b5050505090500194505050505060405180910390a461154d81600087878787612353565b6120f8868686868686610ab9565b610296546001600160a01b03168015612259576001600160a01b038616156121b2576040516359796cd960e01b81526001600160a01b038216906359796cd990612146908990600401614dca565b60206040518083038186803b15801561215e57600080fd5b505afa158015612172573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121969190614abf565b6121b25760405162461bcd60e51b815260040161067c90615095565b6001600160a01b03851615612259576040516359796cd960e01b81526001600160a01b038216906359796cd9906121ed908890600401614dca565b60206040518083038186803b15801561220557600080fd5b505afa158015612219573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061223d9190614abf565b6122595760405162461bcd60e51b815260040161067c90615095565b50505050505050565b600081848411156122f15760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122b657818101518382015260200161229e565b50505050905090810190601f1680156122e35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156115bc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b612365846001600160a01b03166137ee565b15610ab957836001600160a01b031663bc197c8187878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b838110156123f35781810151838201526020016123db565b50505050905001848103835286818151815260200191508051906020019060200280838360005b8381101561243257818101518382015260200161241a565b50505050905001848103825285818151815260200191508051906020019080838360005b8381101561246e578181015183820152602001612456565b50505050905090810190601f16801561249b5780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b1580156124c057600080fd5b505af19250505080156124e557506040513d60208110156124e057600080fd5b505160015b61257a576124f16151d4565b806124fc5750612543565b60405162461bcd60e51b81526020600482018181528351602484015283518493919283926044019190850190808383600083156122b657818101518382015260200161229e565b60405162461bcd60e51b815260040180806020018281038252603481526020018061529c6034913960400191505060405180910390fd5b6001600160e01b0319811663bc197c8160e01b146122595760405162461bcd60e51b81526004018080602001828103825260288152602001806152d06028913960400191505060405180910390fd5b80516106e59061012f906020840190614367565b6125e5611b7a565b6001600160a01b0316836001600160a01b0316148061260b575061260b836104b3611b7a565b6126465760405162461bcd60e51b815260040180806020018281038252602981526020018061536d6029913960400191505060405180910390fd5b6106908383836137f4565b6001600160a01b0384166126965760405162461bcd60e51b81526004018080602001828103825260218152602001806155466021913960400191505060405180910390fd5b60006126a0611b7a565b90506126b28160008761168c88612eee565b60008481526097602090815260408083206001600160a01b03891684529091529020546126df90846122f9565b60008581526097602090815260408083206001600160a01b03808b16808652918452828520959095558151898152928301889052815190948616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a461154d81600087878787612f33565b80516106e590610230906020840190614367565b60008381526101fa6020526040812054905b8181101561154d5760008581526101fa6020526040902080546001600160a01b0386169190839081106127a757fe5b6000918252602090912001546001600160a01b0316141561280a5760008581526101fa602052604090208054849190839081106127e057fe5b600091825260209091200180546001600160a01b0319166001600160a01b03929092169190911790555b600101612778565b600061281d306137ee565b15905090565b600054610100900460ff168061283c575061283c612812565b8061284a575060005460ff16155b6128855760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff161580156128b0576000805460ff1961ff0019909116610100171660011790555b60006128ba611b7a565b603380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350801561291a576000805461ff00191690555b50565b600054610100900460ff16806129365750612936612812565b80612944575060005460ff16155b61297f5760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff161580156129aa576000805460ff1961ff0019909116610100171660011790555b6129ba636db15a0f60e01b613a62565b801561291a576000805461ff001916905550565b600054610100900460ff16806129e757506129e7612812565b806129f5575060005460ff16155b612a305760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff16158015612a5b576000805460ff1961ff0019909116610100171660011790555b6129ba6301ffc9a760e01b613a62565b600054610100900460ff1680612a845750612a84612812565b80612a92575060005460ff16155b612acd5760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff161580156129ba576000805460ff1961ff001990911661010017166001179055801561291a576000805461ff001916905550565b600054610100900460ff1680612b245750612b24612812565b80612b32575060005460ff16155b612b6d5760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff16158015612b98576000805460ff1961ff0019909116610100171660011790555b6129ba604051806040016040528060088152602001674d696e743131353560c01b815250604051806040016040528060018152602001603160f81b815250613ae6565b600054610100900460ff1680612bf45750612bf4612812565b80612c02575060005460ff16155b612c3d5760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff16158015612c68576000805460ff1961ff0019909116610100171660011790555b612c7182613ba8565b612c81636cdb3d1360e11b613a62565b612c916303a24d0760e21b613a62565b80156106e5576000805461ff00191690555050565b600054610100900460ff1680612cbf5750612cbf612812565b80612ccd575060005460ff16155b612d085760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff16158015612d33576000805460ff1961ff0019909116610100171660011790555b8151612d4790610230906020850190614367565b50612c9163e8a3d48560e01b613a62565b600054610100900460ff1680612d715750612d71612812565b80612d7f575060005460ff16155b612dba5760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff16158015612de5576000805460ff1961ff0019909116610100171660011790555b6129ba631131d2f360e21b613a62565b600054610100900460ff1680612e0e5750612e0e612812565b80612e1c575060005460ff16155b612e575760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff16158015612e82576000805460ff1961ff0019909116610100171660011790555b8251612e9690610262906020860190614367565b508151612eab90610263906020850190614367565b508015610690576000805461ff0019169055505050565b6001600160a01b038116600090815260c9602052604081205460ff16806115bc57506115bc8383613bbb565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612f2257fe5b602090810291909101015292915050565b612f45846001600160a01b03166137ee565b15610ab957836001600160a01b031663f23a6e6187878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612fd4578181015183820152602001612fbc565b50505050905090810190601f1680156130015780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561302457600080fd5b505af192505050801561304957506040513d602081101561304457600080fd5b505160015b613055576124f16151d4565b6001600160e01b0319811663f23a6e6160e01b146122595760405162461bcd60e51b81526004018080602001828103825260288152602001806152d06028913960400191505060405180910390fd5b6130ac611b7a565b6001600160a01b0316836001600160a01b031614806130d257506130d2836104b3611b7a565b61310d5760405162461bcd60e51b815260040180806020018281038252602981526020018061536d6029913960400191505060405180910390fd5b610690838383613be9565b60608161313d57506040805180820190915260018152600360fc1b6020820152610591565b8160005b811561315557600101600a82049150613141565b6000816001600160401b038111801561316d57600080fd5b506040519080825280601f01601f191660200182016040528015613198576020820181803683370190505b50859350905060001982015b83156131e957600a840660300160f81b828280600190039350815181106131c757fe5b60200101906001600160f81b031916908160001a905350600a840493506131a4565b50949350505050565b6000808260800151516001600160401b038111801561321057600080fd5b5060405190808252806020026020018201604052801561323a578160200160208202803683370190505b50905060005b83608001515181101561328c5761326d8460800151828151811061326057fe5b6020026020010151613d1c565b82828151811061327957fe5b6020908102919091010152600101613240565b5060008360600151516001600160401b03811180156132aa57600080fd5b506040519080825280602002602001820160405280156132d4578160200160208202803683370190505b50905060005b846060015151811015613319576132fa8560600151828151811061326057fe5b82828151811061330657fe5b60209081029190910101526001016132da565b507ffb988707ebb338694f318760b0fd5cfe756d00a2ade251fda110b80c336a3c7f846000015185604001518660200151805190602001208460405160200180828051906020019060200280838360005b8381101561338257818101518382015260200161336a565b50505050905001915050604051602081830303815290604052805190602001208660405160200180828051906020019060200280838360005b838110156133d35781810151838201526020016133bb565b50505050905001915050604051602081830303815290604052805190602001206040516020018087815260200186815260200185815260200184815260200183815260200182815260200196505050505050506040516020818303038152906040528051906020012092505050919050565b610690838383613d89565b60008281526101fc60205260409020541561346a57600080fd5b60008281526101fc6020526040908190208290555182907f5e2aa66efd74cce82b21852e317e5490d9ecc9e6bb953ae24d90851258cc2f5c90610ed390849061516c565b60005b81518110156136295760006001600160a01b03168282815181106134d157fe5b6020026020010151600001516001600160a01b03161415613539576040805162461bcd60e51b815260206004820152601b60248201527f526563697069656e742073686f756c642062652070726573656e740000000000604482015290519081900360640190fd5b81818151811061354557fe5b6020026020010151602001516001600160601b0316600014156135af576040805162461bcd60e51b815260206004820181905260248201527f526f79616c74792076616c75652073686f756c6420626520706f736974697665604482015290519081900360640190fd5b60008381526101fa6020526040902082518390839081106135cc57fe5b60209081029190910181015182546001818101855560009485529383902082519101805492909301516001600160601b0316600160a01b026001600160a01b039182166001600160a01b03199093169290921716179055016134b1565b506106e58282613fc1565b60008281526101fb6020526040812090805b83518110156137825760006001600160a01b031684828151811061366657fe5b6020026020010151600001516001600160a01b031614156136995760405162461bcd60e51b815260040161067c906150e7565b8381815181106136a557fe5b6020026020010151602001516001600160601b0316600014156136da5760405162461bcd60e51b815260040161067c90614ed5565b828482815181106136e757fe5b602090810291909101810151825460018101845560009384529282902081519301805491909201516001600160601b0316600160a01b026001600160a01b039384166001600160a01b03199092169190911790921691909117905583516137789085908390811061375457fe5b6020026020010151602001516001600160601b0316836122f990919063ffffffff16565b9150600101613646565b5080612710146137a45760405162461bcd60e51b815260040161067c9061511e565b837f841ffb90d4cabdd1f16034f3fa831d79060febbb8167bdd54a49269365bdf78f846040516137d49190614e36565b60405180910390a250505050565b6107a784848484613ffe565b3b151590565b6001600160a01b0383166138395760405162461bcd60e51b815260040180806020018281038252602381526020018061545f6023913960400191505060405180910390fd5b80518251146138795760405162461bcd60e51b815260040180806020018281038252602881526020018061551e6028913960400191505060405180910390fd5b6000613883611b7a565b90506138a3818560008686604051806020016040528060008152506120ea565b60005b8351811015613981576139388382815181106138be57fe5b602002602001015160405180606001604052806024815260200161534960249139609760008886815181106138ef57fe5b602002602001015181526020019081526020016000206000896001600160a01b03166001600160a01b03168152602001908152602001600020546122629092919063ffffffff16565b6097600086848151811061394857fe5b602090810291909101810151825281810192909252604090810160009081206001600160a01b038a1682529092529020556001016138a6565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015613a085781810151838201526020016139f0565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015613a47578181015183820152602001613a2f565b5050505090500194505050505060405180910390a450505050565b6001600160e01b03198082161415613ac1576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152606560205260409020805460ff19166001179055565b600054610100900460ff1680613aff5750613aff612812565b80613b0d575060005460ff16155b613b485760405162461bcd60e51b815260040180806020018281038252602e81526020018061540f602e913960400191505060405180910390fd5b600054610100900460ff16158015613b73576000805460ff1961ff0019909116610100171660011790555b825160208085019190912083519184019190912061016291909155610163558015610690576000805461ff0019169055505050565b80516106e5906099906020840190614367565b6001600160a01b03918216600090815260986020908152604080832093909416825291909152205460ff1690565b6001600160a01b038316613c2e5760405162461bcd60e51b815260040180806020018281038252602381526020018061545f6023913960400191505060405180910390fd5b6000613c38611b7a565b9050613c6881856000613c4a87612eee565b613c5387612eee565b604051806020016040528060008152506120ea565b613caf826040518060600160405280602481526020016153496024913960008681526097602090815260408083206001600160a01b038b1684529091529020549190612262565b60008481526097602090815260408083206001600160a01b03808a16808652918452828520959095558151888152928301879052815193949093908616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a450505050565b8051602091820151604080517f397e04204c1e1a60ee8724b71f8244e10ab5f2e9009854d80f602bda21b59ebb818601526001600160a01b03909316838201526001600160601b039091166060808401919091528151808403909101815260809092019052805191012090565b6000613d9483614069565b9050613da8846001600160a01b03166137ee565b15613f215760408051630b135d3f60e11b808252600482018481526024830193845285516044840152855191936001600160a01b03891693631626ba7e938793899390929091606490910190602085019080838360005b83811015613e17578181015183820152602001613dff565b50505050905090810190601f168015613e445780820380516001836020036101000a031916815260200191505b50935050505060206040518083038186803b158015613e6257600080fd5b505afa158015613e76573d6000803e3d6000fd5b505050506040513d6020811015613e8c57600080fd5b505160408051808201909152601c81527f7369676e617475726520766572696669636174696f6e206572726f72000000006020820152916001600160e01b031990911614613f1b5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156122b657818101518382015260200161229e565b506107a7565b6001600160a01b038416613f3582846140b5565b6001600160a01b0316146040518060400160405280601c81526020017f7369676e617475726520766572696669636174696f6e206572726f72000000008152509061154d5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156122b657818101518382015260200161229e565b7f3fa96d7b6bcbfe71ef171666d84db3cf52fa2d1c8afdb1cc8e486177f208b7df8282604051613ff2929190615175565b60405180910390a15050565b60008381526101fd60205260408120546140199084906122f9565b60008581526101fc602052604090205490915081111561404b5760405162461bcd60e51b815260040161067c9061506b565b60008481526101fd6020526040902081905561154d85858585612651565b6000614073614135565b82604051602001808061190160f01b81525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b6000815160411461410d576040805162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015290519081900360640190fd5b60208201516040830151606084015160001a61412b86828585614175565b9695505050505050565b60006141707f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6141636142f3565b61416b6142fa565b614301565b905090565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156141d65760405162461bcd60e51b81526004018080602001828103825260228152602001806153966022913960400191505060405180910390fd5b8360ff16601b14806141eb57508360ff16601c145b6142265760405162461bcd60e51b815260040180806020018281038252602281526020018061543d6022913960400191505060405180910390fd5b600060018686868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015614282573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166142ea576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b95945050505050565b6101625490565b6101635490565b600083838361430e614363565b3060405160200180868152602001858152602001848152602001838152602001826001600160a01b03168152602001955050505050506040516020818303038152906040528051906020012090509392505050565b4690565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261439d57600085556143e3565b82601f106143b657805160ff19168380011785556143e3565b828001600101855582156143e3579182015b828111156143e35782518255916020019190600101906143c8565b506143ef9291506143f3565b5090565b5b808211156143ef57600081556001016143f4565b600082601f830112614418578081fd5b8135602061442d614428836151b1565b61518e565b82815281810190858301855b8581101561446257614450898684358b0101614584565b84529284019290840190600101614439565b5090979650505050505050565b600082601f83011261447f578081fd5b8135602061448f614428836151b1565b828152818101908583016040808602880185018910156144ad578687fd5b865b8681101561451c5781838b0312156144c5578788fd5b81518281018181106001600160401b03821117156144df57fe5b835283356144ec81615278565b8152838701356001600160601b038116811461450657898afd5b81880152855293850193918101916001016144af565b509198975050505050505050565b600082601f83011261453a578081fd5b8135602061454a614428836151b1565b8281528181019085830183850287018401881015614566578586fd5b855b8581101561446257813584529284019290840190600101614568565b600082601f830112614594578081fd5b81356001600160401b038111156145a757fe5b6145ba601f8201601f191660200161518e565b8181528460208386010111156145ce578283fd5b816020850160208301379081016020019190915292915050565b600060c082840312156145f9578081fd5b61460360c061518e565b90508135815260208201356001600160401b038082111561462357600080fd5b61462f85838601614584565b602084015260408401356040840152606084013591508082111561465257600080fd5b61465e8583860161446f565b6060840152608084013591508082111561467757600080fd5b6146838583860161446f565b608084015260a084013591508082111561469c57600080fd5b506146a984828501614408565b60a08301525092915050565b6000602082840312156146c6578081fd5b81356115bc81615278565b600080604083850312156146e3578081fd5b82356146ee81615278565b915060208301356146fe81615278565b809150509250929050565b600080600080600060a08688031215614720578081fd5b853561472b81615278565b9450602086013561473b81615278565b935060408601356001600160401b0380821115614756578283fd5b61476289838a0161452a565b94506060880135915080821115614777578283fd5b61478389838a0161452a565b93506080880135915080821115614798578283fd5b506147a588828901614584565b9150509295509295909350565b600080600080600060a086880312156147c9578283fd5b85356147d481615278565b945060208601356147e481615278565b9350604086013592506060860135915060808601356001600160401b0381111561480c578182fd5b6147a588828901614584565b60008060006060848603121561482c578081fd5b833561483781615278565b925060208401356001600160401b0380821115614852578283fd5b61485e8783880161452a565b93506040860135915080821115614873578283fd5b506148808682870161452a565b9150509250925092565b6000806000806080858703121561489f578182fd5b84356148aa81615278565b935060208501356001600160401b03808211156148c5578384fd5b6148d18883890161452a565b945060408701359150808211156148e6578384fd5b6148f28883890161452a565b93506060870135915080821115614907578283fd5b5061491487828801614584565b91505092959194509250565b60008060408385031215614932578182fd5b823561493d81615278565b915060208301356146fe8161528d565b6000806040838503121561495f578182fd5b823561496a81615278565b946020939093013593505050565b60008060006060848603121561498c578081fd5b833561499781615278565b95602085013595506040909401359392505050565b600080600080608085870312156149c1578182fd5b84356149cc81615278565b9350602085013592506040850135915060608501356001600160401b038111156149f4578182fd5b61491487828801614584565b60008060408385031215614a12578182fd5b82356001600160401b0380821115614a28578384fd5b818501915085601f830112614a3b578384fd5b81356020614a4b614428836151b1565b82815281810190858301838502870184018b1015614a67578889fd5b8896505b84871015614a92578035614a7e81615278565b835260019690960195918301918301614a6b565b5096505086013592505080821115614aa8578283fd5b50614ab58582860161452a565b9150509250929050565b600060208284031215614ad0578081fd5b81516115bc8161528d565b600060208284031215614aec578081fd5b81356001600160e01b0319811681146115bc578182fd5b600060208284031215614b14578081fd5b81356001600160401b03811115614b29578182fd5b614b3584828501614584565b949350505050565b60008060008060808587031215614b52578182fd5b84356001600160401b0380821115614b68578384fd5b614b7488838901614584565b95506020870135915080821115614b89578384fd5b614b9588838901614584565b94506040870135915080821115614baa578384fd5b6148f288838901614584565b60008060008060808587031215614bcb578182fd5b84356001600160401b03811115614be0578283fd5b614bec878288016145e8565b9450506020850135614bfd81615278565b92506040850135614c0d81615278565b9396929550929360600135925050565b600080600060608486031215614c31578081fd5b83356001600160401b03811115614c46578182fd5b614c52868287016145e8565b9350506020840135614c6381615278565b929592945050506040919091013590565b600060208284031215614c85578081fd5b5035919050565b600080600060608486031215614ca0578081fd5b833592506020840135614cb281615278565b91506040840135614cc281615278565b809150509250925092565b60008060408385031215614cdf578182fd5b8235915060208301356001600160401b03811115614cfb578182fd5b614ab585828601614584565b60008060408385031215614d19578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b83811015614d7457815180516001600160a01b031688528301516001600160601b03168388015260409096019590820190600101614d3b565b509495945050505050565b60008151808452815b81811015614da457602081850181015186830182015201614d88565b81811115614db55782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0384168152606060208201819052600090614e0290830185614d7f565b828103604084015261412b8185614d7f565b6001600160a01b039290921682526001600160601b0316602082015260400190565b6000602082526115bc6020830184614d28565b6020808252825182820181905260009190848201906040850190845b81811015614e8157835183529284019291840191600101614e65565b50909695505050505050565b901515815260200190565b6000602082526115bc6020830184614d7f565b60208082526010908201526f1cdd5c1c1b1e481a5b98dbdc9c9958dd60821b604082015260600190565b6020808252818101527f43726561746f722073686172652073686f756c6420626520706f736974697665604082015260600190565b6020808252601190820152701d1bdad95b9259081a5b98dbdc9c9958dd607a1b604082015260600190565b6020808252600b908201526a1b9bdd08185b1b1bddd95960aa1b604082015260600190565b6020808252602f908201527f45524331313535437572696f4173736574526f6c65733a2063616c6c6572206960408201526e39903737ba103a34329030b236b4b760891b606082015260800190565b60208082526010908201526f185b5bdd5b9d081a5b98dbdc9c9958dd60821b604082015260600190565b60208082526028908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f7420604082015267185c1c1c9bdd995960c21b606082015260800190565b60208082526030908201527f45524331313535437572696f4173736574526f6c65733a2063616c6c6572206960408201526f39903737ba103a34329036b4b73a32b960811b606082015260800190565b60208082526010908201526f6d6f7265207468616e20737570706c7960801b604082015260600190565b60208082526032908201527f45524331313535437572696f4173736574526f6c65733a207472616e73666572604082015271081c195c9b5a5cdcda5bdb8819195b9a595960721b606082015260800190565b60208082526019908201527f4163636f756e742073686f756c642062652070726573656e7400000000000000604082015260600190565b6020808252602e908201527f746f74616c20616d6f756e74206f662063726561746f7273207368617265207360408201526d0686f756c642062652031303030360941b606082015260800190565b90815260200190565b600083825260406020830152614b356040830184614d28565b6040518181016001600160401b03811182821017156151a957fe5b604052919050565b60006001600160401b038211156151c457fe5b5060209081020190565b60e01c90565b600060443d10156151e457610d1b565b600481823e6308c379a06151f882516151ce565b1461520257610d1b565b6040513d600319016004823e80513d6001600160401b0381602484011181841117156152315750505050610d1b565b8284019250825191508082111561524b5750505050610d1b565b503d8301602082840101111561526357505050610d1b565b601f01601f1916810160200160405291505090565b6001600160a01b038116811461291a57600080fd5b801515811461291a57600080fdfe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73455243313135353a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243313135353a206275726e20616d6f756e7420657863656564732062616c616e6365455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656445434453413a20696e76616c6964207369676e6174757265202773272076616c7565455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a656445434453413a20696e76616c6964207369676e6174757265202776272076616c7565455243313135353a206275726e2066726f6d20746865207a65726f2061646472657373455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e736665724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373a2646970667358221220810f273381d359930d36309f04ea87e12446bce8c98505ccf817bb416dd4674564736f6c63430007060033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.