Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- MuchaNFT
- Optimization enabled
- true
- Compiler version
- v0.8.17+commit.8df45f5f
- Optimization runs
- 1000
- EVM Version
- default
- Verified at
- 2024-09-26T15:33:12.084720Z
Contract source code
// SPDX-License-Identifier: GPL
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
}
abstract contract Ownable is Context {
address internal _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
constructor() {
_transferOwnership(_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 {
_transferOwnership(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");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
abstract contract MinterRole is Ownable {
event SetMinterRole(address minter, bool status);
mapping (address => bool) public minter_role;
function setMinterRole(address _who, bool _status) public onlyOwner
{
minter_role[_who] = _status;
emit SetMinterRole(_who, _status);
}
modifier onlyMinter
{
require(minter_role[msg.sender], "Minter role required");
_;
}
}
//https://github.com/willitscale/solidity-util/blob/000a42d4d7c1491cde4381c29d4b775fa7e99aac/lib/Strings.sol#L317-L336
/**
* Strings Library
*
* In summary this is a simple library of string functions which make simple
* string operations less tedious in solidity.
*
* Please be aware these functions can be quite gas heavy so use them only when
* necessary not to clog the blockchain with expensive transactions.
*
* @author James Lockhart <[email protected]>
*/
library Strings {
/**
* Concat (High gas cost)
*
* Appends two strings together and returns a new value
*
* @param _base When being used for a data type this is the extended object
* otherwise this is the string which will be the concatenated
* prefix
* @param _value The value to be the concatenated suffix
* @return string The resulting string from combinging the base and value
*/
function concat(string memory _base, string memory _value)
internal
pure
returns (string memory) {
bytes memory _baseBytes = bytes(_base);
bytes memory _valueBytes = bytes(_value);
assert(_valueBytes.length > 0);
string memory _tmpValue = new string(_baseBytes.length +
_valueBytes.length);
bytes memory _newValue = bytes(_tmpValue);
uint i;
uint j;
for (i = 0; i < _baseBytes.length; i++) {
_newValue[j++] = _baseBytes[i];
}
for (i = 0; i < _valueBytes.length; i++) {
_newValue[j++] = _valueBytes[i];
}
return string(_newValue);
}
/**
* Index Of
*
* Locates and returns the position of a character within a string
*
* @param _base When being used for a data type this is the extended object
* otherwise this is the string acting as the haystack to be
* searched
* @param _value The needle to search for, at present this is currently
* limited to one character
* @return int The position of the needle starting from 0 and returning -1
* in the case of no matches found
*/
function indexOf(string memory _base, string memory _value)
internal
pure
returns (int) {
return _indexOf(_base, _value, 0);
}
/**
* Index Of
*
* Locates and returns the position of a character within a string starting
* from a defined offset
*
* @param _base When being used for a data type this is the extended object
* otherwise this is the string acting as the haystack to be
* searched
* @param _value The needle to search for, at present this is currently
* limited to one character
* @param _offset The starting point to start searching from which can start
* from 0, but must not exceed the length of the string
* @return int The position of the needle starting from 0 and returning -1
* in the case of no matches found
*/
function _indexOf(string memory _base, string memory _value, uint _offset)
internal
pure
returns (int) {
bytes memory _baseBytes = bytes(_base);
bytes memory _valueBytes = bytes(_value);
assert(_valueBytes.length == 1);
for (uint i = _offset; i < _baseBytes.length; i++) {
if (_baseBytes[i] == _valueBytes[0]) {
return int(i);
}
}
return -1;
}
/**
* Length
*
* Returns the length of the specified string
*
* @param _base When being used for a data type this is the extended object
* otherwise this is the string to be measured
* @return uint The length of the passed string
*/
function length(string memory _base)
internal
pure
returns (uint) {
bytes memory _baseBytes = bytes(_base);
return _baseBytes.length;
}
/**
* Sub String
*
* Extracts the beginning part of a string based on the desired length
*
* @param _base When being used for a data type this is the extended object
* otherwise this is the string that will be used for
* extracting the sub string from
* @param _length The length of the sub string to be extracted from the base
* @return string The extracted sub string
*/
function substring(string memory _base, int _length)
internal
pure
returns (string memory) {
return _substring(_base, _length, 0);
}
/**
* Sub String
*
* Extracts the part of a string based on the desired length and offset. The
* offset and length must not exceed the lenth of the base string.
*
* @param _base When being used for a data type this is the extended object
* otherwise this is the string that will be used for
* extracting the sub string from
* @param _length The length of the sub string to be extracted from the base
* @param _offset The starting point to extract the sub string from
* @return string The extracted sub string
*/
function _substring(string memory _base, int _length, int _offset)
internal
pure
returns (string memory) {
bytes memory _baseBytes = bytes(_base);
assert(uint(_offset + _length) <= _baseBytes.length);
string memory _tmp = new string(uint(_length));
bytes memory _tmpBytes = bytes(_tmp);
uint j = 0;
for (uint i = uint(_offset); i < uint(_offset + _length); i++) {
_tmpBytes[j++] = _baseBytes[i];
}
return string(_tmpBytes);
}
function split(string memory _base, string memory _value)
internal
pure
returns (string[] memory splitArr) {
bytes memory _baseBytes = bytes(_base);
uint _offset = 0;
uint _splitsCount = 1;
while (_offset < _baseBytes.length - 1) {
int _limit = _indexOf(_base, _value, _offset);
if (_limit == -1)
break;
else {
_splitsCount++;
_offset = uint(_limit) + 1;
}
}
splitArr = new string[](_splitsCount);
_offset = 0;
_splitsCount = 0;
while (_offset < _baseBytes.length - 1) {
int _limit = _indexOf(_base, _value, _offset);
if (_limit == - 1) {
_limit = int(_baseBytes.length);
}
string memory _tmp = new string(uint(_limit) - _offset);
bytes memory _tmpBytes = bytes(_tmp);
uint j = 0;
for (uint i = _offset; i < uint(_limit); i++) {
_tmpBytes[j++] = _baseBytes[i];
}
_offset = uint(_limit) + 1;
splitArr[_splitsCount++] = string(_tmpBytes);
}
return splitArr;
}
/**
* Compare To
*
* Compares the characters of two strings, to ensure that they have an
* identical footprint
*
* @param _base When being used for a data type this is the extended object
* otherwise this is the string base to compare against
* @param _value The string the base is being compared to
* @return bool Simply notates if the two string have an equivalent
*/
function compareTo(string memory _base, string memory _value)
internal
pure
returns (bool) {
bytes memory _baseBytes = bytes(_base);
bytes memory _valueBytes = bytes(_value);
if (_baseBytes.length != _valueBytes.length) {
return false;
}
for (uint i = 0; i < _baseBytes.length; i++) {
if (_baseBytes[i] != _valueBytes[i]) {
return false;
}
}
return true;
}
/**
* Compare To Ignore Case (High gas cost)
*
* Compares the characters of two strings, converting them to the same case
* where applicable to alphabetic characters to distinguish if the values
* match.
*
* @param _base When being used for a data type this is the extended object
* otherwise this is the string base to compare against
* @param _value The string the base is being compared to
* @return bool Simply notates if the two string have an equivalent value
* discarding case
*/
function compareToIgnoreCase(string memory _base, string memory _value)
internal
pure
returns (bool) {
bytes memory _baseBytes = bytes(_base);
bytes memory _valueBytes = bytes(_value);
if (_baseBytes.length != _valueBytes.length) {
return false;
}
for (uint i = 0; i < _baseBytes.length; i++) {
if (_baseBytes[i] != _valueBytes[i] &&
_upper(_baseBytes[i]) != _upper(_valueBytes[i])) {
return false;
}
}
return true;
}
/**
* Upper
*
* Converts all the values of a string to their corresponding upper case
* value.
*
* @param _base When being used for a data type this is the extended object
* otherwise this is the string base to convert to upper case
* @return string
*/
function upper(string memory _base)
internal
pure
returns (string memory) {
bytes memory _baseBytes = bytes(_base);
for (uint i = 0; i < _baseBytes.length; i++) {
_baseBytes[i] = _upper(_baseBytes[i]);
}
return string(_baseBytes);
}
/**
* Lower
*
* Converts all the values of a string to their corresponding lower case
* value.
*
* @param _base When being used for a data type this is the extended object
* otherwise this is the string base to convert to lower case
* @return string
*/
function lower(string memory _base)
internal
pure
returns (string memory) {
bytes memory _baseBytes = bytes(_base);
for (uint i = 0; i < _baseBytes.length; i++) {
_baseBytes[i] = _lower(_baseBytes[i]);
}
return string(_baseBytes);
}
/**
* Upper
*
* Convert an alphabetic character to upper case and return the original
* value when not alphabetic
*
* @param _b1 The byte to be converted to upper case
* @return bytes1 The converted value if the passed value was alphabetic
* and in a lower case otherwise returns the original value
*/
function _upper(bytes1 _b1)
private
pure
returns (bytes1) {
if (_b1 >= 0x61 && _b1 <= 0x7A) {
return bytes1(uint8(_b1) - 32);
}
return _b1;
}
/**
* Lower
*
* Convert an alphabetic character to lower case and return the original
* value when not alphabetic
*
* @param _b1 The byte to be converted to lower case
* @return bytes1 The converted value if the passed value was alphabetic
* and in a upper case otherwise returns the original value
*/
function _lower(bytes1 _b1)
private
pure
returns (bytes1) {
if (_b1 >= 0x41 && _b1 <= 0x5A) {
return bytes1(uint8(_b1) + 32);
}
return _b1;
}
}
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* This test is non-exhaustive, and there may be false-negatives: during the
* execution of a contract's constructor, its address will be reported as
* not containing a contract.
*
* > It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*/
function isContract(address account) internal view returns (bool) {
// This method relies in 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;
}
}
interface ICallistoNFT {
event NewBid (uint256 indexed tokenID, uint256 indexed bidAmount, bytes bidData);
event TokenTrade (uint256 indexed tokenID, address indexed new_owner, address indexed previous_owner, uint256 priceInWEI);
event Transfer (address indexed from, address indexed to, uint256 indexed tokenId);
event TransferData (bytes data);
struct Properties {
// In this example properties of the given NFT are stored
// in a dynamically sized array of strings
// properties can be re-defined for any specific info
// that a particular NFT is intended to store.
/* Properties could look like this:
bytes property1;
bytes property2;
address property3;
*/
string[] properties;
}
function name() external view returns (string memory);
function symbol() external view returns (string memory);
function standard() external view returns (string memory);
function balanceOf(address _who) external view returns (uint256);
function ownerOf(uint256 _tokenId) external view returns (address);
function transfer(address _to, uint256 _tokenId, bytes calldata _data) external returns (bool);
function silentTransfer(address _to, uint256 _tokenId) external returns (bool);
function priceOf(uint256 _tokenId) external view returns (uint256);
function bidOf(uint256 _tokenId) external view returns (uint256 price, address payable bidder, uint256 timestamp);
function getTokenProperties(uint256 _tokenId) external view returns (Properties memory);
function setBid(uint256 _tokenId, bytes calldata _data) payable external; // bid amount is defined by msg.value
function setPrice(uint256 _tokenId, uint256 _amountInWEI, bytes calldata _data) external;
function withdrawBid(uint256 _tokenId) external returns (bool);
function getUserContent(uint256 _tokenId) external view returns (string memory _content);
function setUserContent(uint256 _tokenId, string calldata _content) external returns (bool);
}
abstract contract NFTReceiver {
function onERC721Received(address _operator, address _from, uint256 _tokenId, bytes calldata _data) external virtual returns(bytes4);
}
// ExtendedNFT is a version of the CallistoNFT standard token
// that implements a set of function for NFT content management
abstract contract ExtendedNFT is ICallistoNFT, ReentrancyGuard {
using Strings for string;
using Address for address;
mapping (uint256 => Properties) private _tokenProperties;
mapping (uint32 => Fee) public feeLevels; // level # => (fee receiver, fee percentage)
uint256 public bidLock = 1 days; // Time required for a bid to become withdrawable.
struct Bid {
address payable bidder;
uint256 amountInWEI;
uint256 timestamp;
}
struct Fee {
address payable feeReceiver;
uint256 feePercentage; // Will be divided by 100000 during calculations
// feePercentage of 100 means 0.1% fee
// feePercentage of 2500 means 2.5% fee
}
mapping (uint256 => uint256) private _asks; // tokenID => price of this token (in WEI)
mapping (uint256 => Bid) private _bids; // tokenID => price of this token (in WEI)
mapping (uint256 => uint32) internal _tokenFeeLevels; // tokenID => level ID / 0 by default
uint256 public next_mint_id;
// Token name
string internal _name;
// Token symbol
string internal _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) internal _owners;
// Mapping owner address to token count
mapping(address => uint256) internal _balances;
// Reward is always paid based on BID
modifier checkTrade(uint256 _tokenId, bytes memory _data)
{
_;
(uint256 _bid, address payable _bidder,) = bidOf(_tokenId);
if(priceOf(_tokenId) > 0 && priceOf(_tokenId) <= _bid)
{
uint256 _reward = _bid - _claimFee(_bid, _tokenId);
emit TokenTrade(_tokenId, _bidder, ownerOf(_tokenId), _reward);
bool sent = payable(ownerOf(_tokenId)).send(_reward);
//bytes calldata _empty;
delete _bids[_tokenId];
delete _asks[_tokenId];
_transfer(ownerOf(_tokenId), _bidder, _tokenId, _data);
}
}
function standard() public pure override returns (string memory)
{
return "CallistoNFT";
}
function mint() internal returns (uint256 _mintedId)
{
_safeMint(msg.sender, next_mint_id);
_mintedId = next_mint_id;
next_mint_id++;
_configureNFT(_mintedId);
}
function priceOf(uint256 _tokenId) public view override returns (uint256)
{
address owner = _owners[_tokenId];
require(owner != address(0), "NFT: owner query for nonexistent token");
return _asks[_tokenId];
}
function bidOf(uint256 _tokenId) public view override returns (uint256 price, address payable bidder, uint256 timestamp)
{
address owner = _owners[_tokenId];
require(owner != address(0), "NFT: owner query for nonexistent token");
return (_bids[_tokenId].amountInWEI, _bids[_tokenId].bidder, _bids[_tokenId].timestamp);
}
function getTokenProperties(uint256 _tokenId) public view override returns (Properties memory)
{
return _tokenProperties[_tokenId];
}
function getTokenProperty(uint256 _tokenId, uint256 _propertyId) public view returns (string memory)
{
return _tokenProperties[_tokenId].properties[_propertyId];
}
function getUserContent(uint256 _tokenId) public view override returns (string memory _content)
{
return (_tokenProperties[_tokenId].properties[0]);
}
function setUserContent(uint256 _tokenId, string calldata _content) public override returns (bool success)
{
require(msg.sender == ownerOf(_tokenId), "NFT: only owner can change NFT content");
_tokenProperties[_tokenId].properties[0] = _content;
return true;
}
function _addPropertyWithContent(uint256 _tokenId, string calldata _content) internal
{
// Check permission criteria
_tokenProperties[_tokenId].properties.push(_content);
}
function _modifyProperty(uint256 _tokenId, uint256 _propertyId, string calldata _content) internal
{
_tokenProperties[_tokenId].properties[_propertyId] = _content;
}
function _appendProperty(uint256 _tokenId, uint256 _propertyId, string calldata _content) internal
{
_tokenProperties[_tokenId].properties[_propertyId] = _tokenProperties[_tokenId].properties[_propertyId].concat(_content);
}
function balanceOf(address owner) public view override returns (uint256) {
require(owner != address(0), "NFT: balance query for the zero address");
return _balances[owner];
}
function ownerOf(uint256 tokenId) public view override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "NFT: owner query for nonexistent token");
return owner;
}
/*
Price == 0, "NFT not on sale"
Price > 0, "NFT on sale"
*/
function setPrice(uint256 _tokenId, uint256 _amountInWEI, bytes calldata _data) checkTrade(_tokenId, _data) public override nonReentrant {
require(ownerOf(_tokenId) == msg.sender, "Setting asks is only allowed for owned NFTs!");
_asks[_tokenId] = _amountInWEI;
}
function setBid(uint256 _tokenId, bytes calldata _data) payable checkTrade(_tokenId, _data) public override nonReentrant
{
(uint256 _previousBid, address payable _previousBidder, ) = bidOf(_tokenId);
require(msg.value > _previousBid, "New bid must exceed the existing one");
uint256 _bid;
bool sent;
// Return previous bid if the current one exceeds it.
if(_previousBid != 0)
{
sent = _previousBidder.send(_previousBid);
}
// Refund overpaid amount if price is greater than 0
if (priceOf(_tokenId) < msg.value && priceOf(_tokenId) > 0)
{
_bid = priceOf(_tokenId);
}
else
{
_bid = msg.value;
}
_bids[_tokenId].amountInWEI = _bid;
_bids[_tokenId].bidder = payable(msg.sender);
_bids[_tokenId].timestamp = block.timestamp;
emit NewBid(_tokenId, _bid, _data);
// Send back overpaid amount.
// WARNING: Creates possibility for reentrancy.
if (priceOf(_tokenId) < msg.value && priceOf(_tokenId) > 0)
{
sent = payable(msg.sender).send(msg.value - priceOf(_tokenId));
}
}
function withdrawBid(uint256 _tokenId) public override nonReentrant returns (bool)
{
(uint256 _bid, address payable _bidder, uint256 _timestamp) = bidOf(_tokenId);
require(msg.sender == _bidder, "Can not withdraw someone elses bid");
require(block.timestamp > _timestamp + bidLock, "Bid is time-locked");
bool sent = _bidder.send(_bid);
delete _bids[_tokenId];
return true;
}
function name() public view override returns (string memory) {
return _name;
}
function symbol() public view override returns (string memory) {
return _symbol;
}
function transfer(address _to, uint256 _tokenId, bytes memory _data) public override returns (bool)
{
_transfer(msg.sender, _to, _tokenId, _data);
emit TransferData(_data);
return true;
}
function silentTransfer(address _to, uint256 _tokenId) public override returns (bool)
{
require(ExtendedNFT.ownerOf(_tokenId) == msg.sender, "NFT: transfer of token that is not own");
require(_to != address(0), "NFT: transfer to the zero address");
_asks[_tokenId] = 0; // Zero out price on transfer
// When a user transfers the NFT to another user
// it does not automatically mean that the new owner
// would like to sell this NFT at a price
// specified by the previous owner.
// However bids persist regardless of token transfers
// because we assume that the bidder still wants to buy the NFT
// no matter from whom.
_beforeTokenTransfer(msg.sender, _to, _tokenId);
_balances[msg.sender] -= 1;
_balances[_to] += 1;
_owners[_tokenId] = _to;
emit Transfer(msg.sender, _to, _tokenId);
return true;
}
function _exists(uint256 tokenId) internal view returns (bool) {
return _owners[tokenId] != address(0);
}
function _claimFee(uint256 _amountFrom, uint256 _tokenId) internal returns (uint256)
{
uint32 _level = _tokenFeeLevels[_tokenId];
address _feeReceiver = feeLevels[_level].feeReceiver;
uint256 _feePercentage = feeLevels[_level].feePercentage;
uint256 _feeAmount = _amountFrom * _feePercentage / 100000;
bool sent = payable(_feeReceiver).send(_feeAmount);
return _feeAmount;
}
function _safeMint(
address to,
uint256 tokenId
) internal virtual {
_mint(to, tokenId);
}
function _mint(address to, uint256 tokenId) internal {
require(to != address(0), "NFT: mint to the zero address");
require(!_exists(tokenId), "NFT: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
function _burn(uint256 tokenId) internal {
address owner = ExtendedNFT.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
function _transfer(
address from,
address to,
uint256 tokenId,
bytes memory data
) internal {
require(ExtendedNFT.ownerOf(tokenId) == from, "NFT: transfer of token that is not own");
require(to != address(0), "NFT: transfer to the zero address");
_asks[tokenId] = 0; // Zero out price on transfer
// When a user transfers the NFT to another user
// it does not automatically mean that the new owner
// would like to sell this NFT at a price
// specified by the previous owner.
// However bids persist regardless of token transfers
// because we assume that the bidder still wants to buy the NFT
// no matter from whom.
_beforeTokenTransfer(from, to, tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
if(to.isContract())
{
NFTReceiver(to).onERC721Received(msg.sender, from, tokenId, data);
}
emit Transfer(from, to, tokenId);
}
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
function _configureNFT(uint256 _tokenId) internal
{
if(_tokenProperties[_tokenId].properties.length == 0)
{
_tokenProperties[_tokenId].properties.push("");
}
}
}
interface IClassifiedNFT is ICallistoNFT {
function setClassForTokenID(uint256 _tokenID, uint256 _tokenClass) external;
function addNewTokenClass(uint32 _feeLevel, string memory _property) external;
function addTokenClassProperties(uint256 _propertiesCount, uint256 classId) external;
function modifyClassProperty(uint256 _classID, uint256 _propertyID, string memory _content) external;
function getClassProperty(uint256 _classID, uint256 _propertyID) external view returns (string memory);
function addClassProperty(uint256 _classID) external;
function getClassProperties(uint256 _classID) external view returns (string[] memory);
function getClassForTokenID(uint256 _tokenID) external view returns (uint256);
function getClassPropertiesForTokenID(uint256 _tokenID) external view returns (string[] memory);
function getClassPropertyForTokenID(uint256 _tokenID, uint256 _propertyID) external view returns (string memory);
function mintWithClass(uint256 classId) external returns (uint256 _newTokenID);
function appendClassProperty(uint256 _classID, uint256 _propertyID, string memory _content) external;
}
abstract contract ClassifiedNFT is MinterRole, ExtendedNFT, IClassifiedNFT {
using Strings for string;
mapping (uint256 => string[]) public class_properties;
mapping (uint256 => uint32) public class_feeLevel;
mapping (uint256 => uint256) public token_classes;
uint256 public nextClassIndex = 0;
modifier onlyExistingClasses(uint256 classId)
{
require(classId < nextClassIndex, "Queried class does not exist");
_;
}
function setClassForTokenID(uint256 _tokenID, uint256 _tokenClass) public onlyOwner override
{
token_classes[_tokenID] = _tokenClass;
}
function addNewTokenClass(uint32 _feeLevel, string memory _property) public onlyOwner override
{
class_properties[nextClassIndex].push(_property);
class_feeLevel[nextClassIndex] = _feeLevel; // Configures who will receive fees from this class of NFTs
// Zero sets fees to default address and percentage.
nextClassIndex++;
}
function addTokenClassProperties(uint256 _propertiesCount, uint256 classId) public onlyOwner override
{
for (uint i = 0; i < _propertiesCount; i++)
{
class_properties[classId].push("");
}
}
function modifyClassProperty(uint256 _classID, uint256 _propertyID, string memory _content) public onlyOwner onlyExistingClasses(_classID) override
{
class_properties[_classID][_propertyID] = _content;
}
function getClassProperty(uint256 _classID, uint256 _propertyID) public view onlyExistingClasses(_classID) override returns (string memory)
{
return class_properties[_classID][_propertyID];
}
function addClassProperty(uint256 _classID) public onlyOwner onlyExistingClasses(_classID) override
{
class_properties[_classID].push("");
}
function getClassProperties(uint256 _classID) public view onlyExistingClasses(_classID) override returns (string[] memory)
{
return class_properties[_classID];
}
function getClassForTokenID(uint256 _tokenID) public view onlyExistingClasses(token_classes[_tokenID]) override returns (uint256)
{
return token_classes[_tokenID];
}
function getClassPropertiesForTokenID(uint256 _tokenID) public view onlyExistingClasses(token_classes[_tokenID]) override returns (string[] memory)
{
return class_properties[token_classes[_tokenID]];
}
function getClassPropertyForTokenID(uint256 _tokenID, uint256 _propertyID) public view onlyExistingClasses(token_classes[_tokenID]) override returns (string memory)
{
return class_properties[token_classes[_tokenID]][_propertyID];
}
function mintWithClass(uint256 classId) public onlyExistingClasses(classId) onlyMinter override returns (uint256 _newTokenID)
{
//_mint(to, tokenId);
_newTokenID = mint();
token_classes[_newTokenID] = classId;
_tokenFeeLevels[_newTokenID] = class_feeLevel[classId];
}
function appendClassProperty(uint256 _classID, uint256 _propertyID, string memory _content) public onlyOwner onlyExistingClasses(_classID) override
{
class_properties[_classID][_propertyID] = class_properties[_classID][_propertyID].concat(_content);
}
function addClassPropertyWithContent(uint256 _classID, string memory _property) public onlyOwner onlyExistingClasses(_classID)
{
class_properties[_classID].push(_property);
}
}
contract MuchaNFT is ExtendedNFT, ClassifiedNFT {
function initialize(string memory name_, string memory symbol_, uint256 _defaultFee) external {
require(_owner == address(0), "Already initialized");
_owner = msg.sender;
emit OwnershipTransferred(address(0), msg.sender);
bidLock = 1 days;
_name = name_;
_symbol = symbol_;
feeLevels[0].feeReceiver = payable(msg.sender);
feeLevels[0].feePercentage = _defaultFee;
}
function setFeeLevel(uint32 _levelIndex, address _feeReceiver, uint256 _feePercentage) public onlyOwner
{
feeLevels[_levelIndex].feeReceiver = payable(_feeReceiver);
feeLevels[_levelIndex].feePercentage = _feePercentage;
}
function setFeeLevelForToken(uint256 _tokenId, uint32 _feeLevel) public onlyOwner
{
_tokenFeeLevels[_tokenId] = _feeLevel;
}
function modifyClassFeeLevel(uint256 _classId, uint32 _feeLevel) public onlyOwner
{
class_feeLevel[_classId] = _feeLevel;
}
/* onlyOwner or Minter */
function addPropertyWithContent(uint256 _tokenId, string calldata _content) public
{
require(owner() == msg.sender || minter_role[msg.sender], "Ownable: caller is not the owner");
_addPropertyWithContent( _tokenId, _content);
}
function modifyProperty(uint256 _tokenId, uint256 _propertyId, string calldata _content) public onlyOwner
{
_modifyProperty(_tokenId, _propertyId, _content);
}
function appendProperty(uint256 _tokenId, uint256 _propertyId, string calldata _content) public onlyOwner
{
_appendProperty(_tokenId, _propertyId, _content);
}
function tokenURI(uint256 _tokenID) public view onlyExistingClasses(token_classes[_tokenID]) returns (string memory)
{
//Consider that the first (0) property has the same info that a JSON
return class_properties[token_classes[_tokenID]][0];
}
}
Contract ABI
[{"type":"event","name":"NewBid","inputs":[{"type":"uint256","name":"tokenID","internalType":"uint256","indexed":true},{"type":"uint256","name":"bidAmount","internalType":"uint256","indexed":true},{"type":"bytes","name":"bidData","internalType":"bytes","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"SetMinterRole","inputs":[{"type":"address","name":"minter","internalType":"address","indexed":false},{"type":"bool","name":"status","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"TokenTrade","inputs":[{"type":"uint256","name":"tokenID","internalType":"uint256","indexed":true},{"type":"address","name":"new_owner","internalType":"address","indexed":true},{"type":"address","name":"previous_owner","internalType":"address","indexed":true},{"type":"uint256","name":"priceInWEI","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"event","name":"TransferData","inputs":[{"type":"bytes","name":"data","internalType":"bytes","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addClassProperty","inputs":[{"type":"uint256","name":"_classID","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addClassPropertyWithContent","inputs":[{"type":"uint256","name":"_classID","internalType":"uint256"},{"type":"string","name":"_property","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addNewTokenClass","inputs":[{"type":"uint32","name":"_feeLevel","internalType":"uint32"},{"type":"string","name":"_property","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addPropertyWithContent","inputs":[{"type":"uint256","name":"_tokenId","internalType":"uint256"},{"type":"string","name":"_content","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addTokenClassProperties","inputs":[{"type":"uint256","name":"_propertiesCount","internalType":"uint256"},{"type":"uint256","name":"classId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"appendClassProperty","inputs":[{"type":"uint256","name":"_classID","internalType":"uint256"},{"type":"uint256","name":"_propertyID","internalType":"uint256"},{"type":"string","name":"_content","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"appendProperty","inputs":[{"type":"uint256","name":"_tokenId","internalType":"uint256"},{"type":"uint256","name":"_propertyId","internalType":"uint256"},{"type":"string","name":"_content","internalType":"string"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"bidLock","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"price","internalType":"uint256"},{"type":"address","name":"bidder","internalType":"address payable"},{"type":"uint256","name":"timestamp","internalType":"uint256"}],"name":"bidOf","inputs":[{"type":"uint256","name":"_tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint32","name":"","internalType":"uint32"}],"name":"class_feeLevel","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"class_properties","inputs":[{"type":"uint256","name":"","internalType":"uint256"},{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"feeReceiver","internalType":"address payable"},{"type":"uint256","name":"feePercentage","internalType":"uint256"}],"name":"feeLevels","inputs":[{"type":"uint32","name":"","internalType":"uint32"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getClassForTokenID","inputs":[{"type":"uint256","name":"_tokenID","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string[]","name":"","internalType":"string[]"}],"name":"getClassProperties","inputs":[{"type":"uint256","name":"_classID","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string[]","name":"","internalType":"string[]"}],"name":"getClassPropertiesForTokenID","inputs":[{"type":"uint256","name":"_tokenID","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"getClassProperty","inputs":[{"type":"uint256","name":"_classID","internalType":"uint256"},{"type":"uint256","name":"_propertyID","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"getClassPropertyForTokenID","inputs":[{"type":"uint256","name":"_tokenID","internalType":"uint256"},{"type":"uint256","name":"_propertyID","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"tuple","name":"","internalType":"struct ICallistoNFT.Properties","components":[{"type":"string[]","name":"properties","internalType":"string[]"}]}],"name":"getTokenProperties","inputs":[{"type":"uint256","name":"_tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"getTokenProperty","inputs":[{"type":"uint256","name":"_tokenId","internalType":"uint256"},{"type":"uint256","name":"_propertyId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"_content","internalType":"string"}],"name":"getUserContent","inputs":[{"type":"uint256","name":"_tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initialize","inputs":[{"type":"string","name":"name_","internalType":"string"},{"type":"string","name":"symbol_","internalType":"string"},{"type":"uint256","name":"_defaultFee","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"_newTokenID","internalType":"uint256"}],"name":"mintWithClass","inputs":[{"type":"uint256","name":"classId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"minter_role","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"modifyClassFeeLevel","inputs":[{"type":"uint256","name":"_classId","internalType":"uint256"},{"type":"uint32","name":"_feeLevel","internalType":"uint32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"modifyClassProperty","inputs":[{"type":"uint256","name":"_classID","internalType":"uint256"},{"type":"uint256","name":"_propertyID","internalType":"uint256"},{"type":"string","name":"_content","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"modifyProperty","inputs":[{"type":"uint256","name":"_tokenId","internalType":"uint256"},{"type":"uint256","name":"_propertyId","internalType":"uint256"},{"type":"string","name":"_content","internalType":"string"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"nextClassIndex","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"next_mint_id","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"ownerOf","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"priceOf","inputs":[{"type":"uint256","name":"_tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"setBid","inputs":[{"type":"uint256","name":"_tokenId","internalType":"uint256"},{"type":"bytes","name":"_data","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setClassForTokenID","inputs":[{"type":"uint256","name":"_tokenID","internalType":"uint256"},{"type":"uint256","name":"_tokenClass","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setFeeLevel","inputs":[{"type":"uint32","name":"_levelIndex","internalType":"uint32"},{"type":"address","name":"_feeReceiver","internalType":"address"},{"type":"uint256","name":"_feePercentage","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setFeeLevelForToken","inputs":[{"type":"uint256","name":"_tokenId","internalType":"uint256"},{"type":"uint32","name":"_feeLevel","internalType":"uint32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMinterRole","inputs":[{"type":"address","name":"_who","internalType":"address"},{"type":"bool","name":"_status","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setPrice","inputs":[{"type":"uint256","name":"_tokenId","internalType":"uint256"},{"type":"uint256","name":"_amountInWEI","internalType":"uint256"},{"type":"bytes","name":"_data","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"success","internalType":"bool"}],"name":"setUserContent","inputs":[{"type":"uint256","name":"_tokenId","internalType":"uint256"},{"type":"string","name":"_content","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"silentTransfer","inputs":[{"type":"address","name":"_to","internalType":"address"},{"type":"uint256","name":"_tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"pure","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"standard","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"tokenURI","inputs":[{"type":"uint256","name":"_tokenID","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"token_classes","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"_to","internalType":"address"},{"type":"uint256","name":"_tokenId","internalType":"uint256"},{"type":"bytes","name":"_data","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"withdrawBid","inputs":[{"type":"uint256","name":"_tokenId","internalType":"uint256"}]}]
Contract Creation Code
0x608060405262015180600555600060115534801561001c57600080fd5b506001600255613be4806100316000396000f3fe6080604052600436106103135760003560e01c806370a082311161019a578063b9186d7d116100e1578063c98e0c3c1161008a578063e29fb03611610064578063e29fb036146109b4578063e6470059146109ca578063f2fde38b146109ea57600080fd5b8063c98e0c3c1461092c578063cb177b1e1461094c578063d75d1e661461096c57600080fd5b8063be671058116100bb578063be671058146108bf578063c1940f1b146108df578063c87b56dd1461090c57600080fd5b8063b9186d7d1461085f578063bb0537171461087f578063be45fd621461089f57600080fd5b80638da5cb5b1161014357806395d89b411161011d57806395d89b411461080a5780639de4792e1461081f578063b119490e1461083f57600080fd5b80638da5cb5b146107b65780638e39e18c146107d457806391100695146107f457600080fd5b806378317f3f1161017457806378317f3f146107565780637ab56e521461077657806380483a6a1461079657600080fd5b806370a08231146106c457806373baa651146106e457806374c29ce3146106f757600080fd5b80633e0bb7831161025e578063543dc7fa11610207578063648fbe40116101e1578063648fbe4014610641578063649ccc141461066157806369a13712146106a457600080fd5b8063543dc7fa146105a35780635a3b7e42146105c35780636352211e1461060957600080fd5b80634c1720a4116102385780634c1720a4146105265780634edea11114610546578063510910bb1461057357600080fd5b80633e0bb783146104b95780634774d93f146104d95780634bb2ddd4146104f957600080fd5b8063290e008c116102c05780633add5fa11161029a5780633add5fa1146104595780633c65b3eb146104795780633d8073f11461049957600080fd5b8063290e008c146103f95780632a6d3f44146104195780633054d9cb1461043957600080fd5b80631d734c8f116102f15780631d734c8f146103935780631f38e654146103b757806325498c75146103d957600080fd5b806302ff368a1461031857806306fdde031461034e5780630eaaf4c814610363575b600080fd5b34801561032457600080fd5b5061033861033336600461327a565b610a0a565b60405161034591906132d9565b60405180910390f35b34801561035a57600080fd5b50610338610ac4565b34801561036f57600080fd5b5061038361037e36600461327a565b610b56565b6040519015158152602001610345565b34801561039f57600080fd5b506103a960115481565b604051908152602001610345565b3480156103c357600080fd5b506103d76103d23660046132f3565b610d00565b005b3480156103e557600080fd5b506103d76103f43660046133da565b610d5a565b34801561040557600080fd5b506103d7610414366004613471565b610e09565b34801561042557600080fd5b50610383610434366004613471565b610e8a565b34801561044557600080fd5b506103d76104543660046134bd565b610f5e565b34801561046557600080fd5b506103d761047436600461350d565b611026565b34801561048557600080fd5b506103a961049436600461327a565b611080565b3480156104a557600080fd5b506103d76104b436600461350d565b611172565b3480156104c557600080fd5b506103386104d43660046132f3565b6113cc565b3480156104e557600080fd5b506103d76104f43660046134bd565b611485565b34801561050557600080fd5b5061051961051436600461327a565b6115f4565b60405161034591906135b5565b34801561053257600080fd5b506103386105413660046132f3565b611732565b34801561055257600080fd5b5061056661056136600461327a565b611830565b60405161034591906135c8565b34801561057f57600080fd5b5061038361058e366004613602565b60016020526000908152604090205460ff1681565b3480156105af57600080fd5b506103a96105be36600461327a565b611925565b3480156105cf57600080fd5b5060408051808201909152600b81527f43616c6c6973746f4e46540000000000000000000000000000000000000000006020820152610338565b34801561061557600080fd5b5061062961062436600461327a565b611987565b6040516001600160a01b039091168152602001610345565b34801561064d57600080fd5b506103d761065c36600461361d565b611a01565b34801561066d57600080fd5b5061068161067c36600461327a565b611a71565b604080519384526001600160a01b03909216602084015290820152606001610345565b3480156106b057600080fd5b506103d76106bf366004613649565b611b18565b3480156106d057600080fd5b506103a96106df366004613602565b611bc8565b6103d76106f2366004613471565b611c62565b34801561070357600080fd5b5061073761071236600461367a565b600460205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b039093168352602083019190915201610345565b34801561076257600080fd5b506103d761077136600461361d565b611fce565b34801561078257600080fd5b506103386107913660046132f3565b61203e565b3480156107a257600080fd5b506103d76107b136600461327a565b6120fd565b3480156107c257600080fd5b506000546001600160a01b0316610629565b3480156107e057600080fd5b506103d76107ef366004613695565b6121bd565b34801561080057600080fd5b506103a960055481565b34801561081657600080fd5b50610338612240565b34801561082b57600080fd5b5061033861083a3660046132f3565b61224f565b34801561084b57600080fd5b506103d761085a3660046136d1565b6122ce565b34801561086b57600080fd5b506103a961087a36600461327a565b6123e7565b34801561088b57600080fd5b506103d761089a36600461350d565b61246f565b3480156108ab57600080fd5b506103836108ba36600461373e565b6124c3565b3480156108cb57600080fd5b506103d76108da3660046132f3565b612512565b3480156108eb57600080fd5b506103a96108fa36600461327a565b60106020526000908152604090205481565b34801561091857600080fd5b5061033861092736600461327a565b6125b0565b34801561093857600080fd5b5061038361094736600461379f565b6126c9565b34801561095857600080fd5b506103d76109673660046137c9565b61285a565b34801561097857600080fd5b5061099f61098736600461327a565b600f6020526000908152604090205463ffffffff1681565b60405163ffffffff9091168152602001610345565b3480156109c057600080fd5b506103a960095481565b3480156109d657600080fd5b506105196109e536600461327a565b612905565b3480156109f657600080fd5b506103d7610a05366004613602565b612a1c565b6000818152600360205260408120805460609290610a2a57610a2a613805565b906000526020600020018054610a3f9061381b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6b9061381b565b8015610ab85780601f10610a8d57610100808354040283529160200191610ab8565b820191906000526020600020905b815481529060010190602001808311610a9b57829003601f168201915b50505050509050919050565b6060600a8054610ad39061381b565b80601f0160208091040260200160405190810160405280929190818152602001828054610aff9061381b565b8015610b4c5780601f10610b2157610100808354040283529160200191610b4c565b820191906000526020600020905b815481529060010190602001808311610b2f57829003601f168201915b5050505050905090565b60006002805403610bae5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002805560008080610bbf85611a71565b91945092509050336001600160a01b03831614610c445760405162461bcd60e51b815260206004820152602260248201527f43616e206e6f7420776974686472617720736f6d656f6e6520656c736573206260448201527f69640000000000000000000000000000000000000000000000000000000000006064820152608401610ba5565b600554610c519082613865565b4211610c9f5760405162461bcd60e51b815260206004820152601260248201527f4269642069732074696d652d6c6f636b656400000000000000000000000000006044820152606401610ba5565b6040516000906001600160a01b0384169085156108fc0290869084818181858888f150505060009788525050600760205250506040842080546001600160a01b03191681556001808201869055600291820195909555849055509192915050565b6000546001600160a01b03163314610d485760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b60009182526010602052604090912055565b6000546001600160a01b03163314610da25760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b6011546000908152600e6020908152604082208054600181018255908352912001610dcd82826138c6565b50601180546000908152600f60205260408120805463ffffffff191663ffffffff861617905581549190610e0083613986565b91905055505050565b33610e1c6000546001600160a01b031690565b6001600160a01b03161480610e4057503360009081526001602052604090205460ff165b610e7a5760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b610e85838383612aec565b505050565b6000610e9584611987565b6001600160a01b0316336001600160a01b031614610f1b5760405162461bcd60e51b815260206004820152602660248201527f4e46543a206f6e6c79206f776e65722063616e206368616e6765204e4654206360448201527f6f6e74656e7400000000000000000000000000000000000000000000000000006064820152608401610ba5565b600084815260036020526040812080548592859291610f3c57610f3c613805565b906000526020600020019182610f5392919061399f565b506001949350505050565b6000546001600160a01b03163314610fa65760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b826011548110610fe65760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000848152600e6020526040902080548391908590811061100957611009613805565b90600052602060002001908161101f91906138c6565b5050505050565b6000546001600160a01b0316331461106e5760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b61107a84848484612b15565b50505050565b60008160115481106110c25760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b3360009081526001602052604090205460ff166111215760405162461bcd60e51b815260206004820152601460248201527f4d696e74657220726f6c652072657175697265640000000000000000000000006044820152606401610ba5565b611129612b8e565b6000818152601060209081526040808320879055958252600f8152858220548383526008909152949020805463ffffffff191663ffffffff909516949094179093555090919050565b8382828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506002546001190191506111fe90505760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ba5565b600280553361120c87611987565b6001600160a01b0316146112885760405162461bcd60e51b815260206004820152602c60248201527f53657474696e672061736b73206973206f6e6c7920616c6c6f77656420666f7260448201527f206f776e6564204e4654732100000000000000000000000000000000000000006064820152608401610ba5565b60008681526006602052604081208690556001600255806112a884611a71565b509150915060006112b8856123e7565b1180156112cd5750816112ca856123e7565b11155b156113c25760006112de8386612bc0565b6112e89084613a5f565b90506112f385611987565b6001600160a01b0316826001600160a01b0316867fc9b9afd9684b23c6b22a41016c08e8954ac118220c0a52f00b8774c46580e9a38460405161133891815260200190565b60405180910390a4600061134b86611987565b6001600160a01b03166108fc839081150290604051600060405180830381858888f160008b815260076020908152604080832080546001600160a01b031916815560018101849055600201839055600690915281205594506113bf93506113b792508991506119879050565b848888612c47565b50505b5050505050505050565b600e60205281600052604060002081815481106113e857600080fd5b906000526020600020016000915091505080546114049061381b565b80601f01602080910402602001604051908101604052809291908181526020018280546114309061381b565b801561147d5780601f106114525761010080835404028352916020019161147d565b820191906000526020600020905b81548152906001019060200180831161146057829003601f168201915b505050505081565b6000546001600160a01b031633146114cd5760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b82601154811061150d5760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000848152600e6020526040902080546115d49184918690811061153357611533613805565b9060005260206000200180546115489061381b565b80601f01602080910402602001604051908101604052809291908181526020018280546115749061381b565b80156115c15780601f10611596576101008083540402835291602001916115c1565b820191906000526020600020905b8154815290600101906020018083116115a457829003601f168201915b5050505050612e9190919063ffffffff16565b6000858152600e6020526040902080548590811061100957611009613805565b6000818152601060205260409020546011546060919081106116465760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000838152601060209081526040808320548352600e825280832080548251818502810185019093528083529193909284015b828210156117255783829060005260206000200180546116989061381b565b80601f01602080910402602001604051908101604052809291908181526020018280546116c49061381b565b80156117115780601f106116e657610100808354040283529160200191611711565b820191906000526020600020905b8154815290600101906020018083116116f457829003601f168201915b505050505081526020019060010190611679565b5050505091505b50919050565b60608260115481106117745760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000848152600e6020526040902080548490811061179457611794613805565b9060005260206000200180546117a99061381b565b80601f01602080910402602001604051908101604052809291908181526020018280546117d59061381b565b80156118225780601f106117f757610100808354040283529160200191611822565b820191906000526020600020905b81548152906001019060200180831161180557829003601f168201915b505050505091505092915050565b604080516020808201835260608252600084815260038252838120845181548085028201870187529381018481529495909491938593859285015b8282101561191757838290600052602060002001805461188a9061381b565b80601f01602080910402602001604051908101604052809291908181526020018280546118b69061381b565b80156119035780601f106118d857610100808354040283529160200191611903565b820191906000526020600020905b8154815290600101906020018083116118e657829003601f168201915b50505050508152602001906001019061186b565b505050915250909392505050565b60008181526010602052604081205460115481106119735760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b505060009081526010602052604090205490565b6000818152600c60205260408120546001600160a01b0316806119fb5760405162461bcd60e51b815260206004820152602660248201527f4e46543a206f776e657220717565727920666f72206e6f6e6578697374656e74604482015265103a37b5b2b760d11b6064820152608401610ba5565b92915050565b6000546001600160a01b03163314611a495760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b600091825260086020526040909120805463ffffffff191663ffffffff909216919091179055565b6000818152600c6020526040812054819081906001600160a01b031680611ae95760405162461bcd60e51b815260206004820152602660248201527f4e46543a206f776e657220717565727920666f72206e6f6e6578697374656e74604482015265103a37b5b2b760d11b6064820152608401610ba5565b5050506000918252506007602052604090206001810154815460029092015490926001600160a01b0390921691565b6000546001600160a01b03163314611b605760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b816011548110611ba05760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000838152600e602090815260408220805460018101825590835291200161107a83826138c6565b60006001600160a01b038216611c465760405162461bcd60e51b815260206004820152602760248201527f4e46543a2062616c616e636520717565727920666f7220746865207a65726f2060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610ba5565b506001600160a01b03166000908152600d602052604090205490565b8282828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050600254600119019150611cee90505760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ba5565b60028055600080611cfe87611a71565b5091509150813411611d775760405162461bcd60e51b8152602060048201526024808201527f4e657720626964206d7573742065786365656420746865206578697374696e6760448201527f206f6e65000000000000000000000000000000000000000000000000000000006064820152608401610ba5565b6000808315611da7576040516001600160a01b0384169085156108fc029086906000818181858888f19450505050505b34611db18a6123e7565b108015611dc657506000611dc48a6123e7565b115b15611ddb57611dd4896123e7565b9150611ddf565b3491505b600089815260076020526040908190206001810184905580546001600160a01b03191633178155426002909101555182908a907f223d0d5db4846341da7a5cc902b1a7c597e63b6c73b1c6267dc931d290c7affb90611e41908c908c90613a72565b60405180910390a334611e538a6123e7565b108015611e6857506000611e668a6123e7565b115b15611e9d57336108fc611e7a8b6123e7565b611e849034613a5f565b6040518115909202916000818181858888f19450505050505b50506001600255506000905080611eb384611a71565b50915091506000611ec3856123e7565b118015611ed8575081611ed5856123e7565b11155b15611fc5576000611ee98386612bc0565b611ef39084613a5f565b9050611efe85611987565b6001600160a01b0316826001600160a01b0316867fc9b9afd9684b23c6b22a41016c08e8954ac118220c0a52f00b8774c46580e9a384604051611f4391815260200190565b60405180910390a46000611f5686611987565b6001600160a01b03166108fc839081150290604051600060405180830381858888f160008b815260076020908152604080832080546001600160a01b03191681556001810184905560020183905560069091528120559450611fc293506113b792508991506119879050565b50505b50505050505050565b6000546001600160a01b031633146120165760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b6000918252600f6020526040909120805463ffffffff191663ffffffff909216919091179055565b60008281526003602052604090208054606091908390811061206257612062613805565b9060005260206000200180546120779061381b565b80601f01602080910402602001604051908101604052809291908181526020018280546120a39061381b565b80156120f05780601f106120c5576101008083540402835291602001916120f0565b820191906000526020600020905b8154815290600101906020018083116120d357829003601f168201915b5050505050905092915050565b6000546001600160a01b031633146121455760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b8060115481106121855760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000828152600e602090815260408083208054600181018255908452828420825193840190925292825290910190610e8590826138c6565b6000546001600160a01b031633146122055760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b63ffffffff909216600090815260046020526040902080546001600160a01b039092166001600160a01b031990921691909117815560010155565b6060600b8054610ad39061381b565b6000828152601060205260409020546011546060919081106122a15760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000848152601060209081526040808320548352600e909152902080548490811061179457611794613805565b6000546001600160a01b0316156123275760405162461bcd60e51b815260206004820152601360248201527f416c726561647920696e697469616c697a6564000000000000000000000000006044820152606401610ba5565b600080546001600160a01b0319163390811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a362015180600555600a61237984826138c6565b50600b61238683826138c6565b506000805260046020527f17ef568e3e12ab5b9c7254a8d58478811de00f9e6eb34345acd53bf8fd09d3ec80546001600160a01b031916331790557f17ef568e3e12ab5b9c7254a8d58478811de00f9e6eb34345acd53bf8fd09d3ed555050565b6000818152600c60205260408120546001600160a01b03168061245b5760405162461bcd60e51b815260206004820152602660248201527f4e46543a206f776e657220717565727920666f72206e6f6e6578697374656e74604482015265103a37b5b2b760d11b6064820152608401610ba5565b505060009081526006602052604090205490565b6000546001600160a01b031633146124b75760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b61107a84848484613052565b60006124d133858585612c47565b7f3ba9136826ac751de05d770d8d34fa4440ada49a5fb0e9aa1678aece66dad9768260405161250091906132d9565b60405180910390a15060019392505050565b6000546001600160a01b0316331461255a5760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b60005b82811015610e85576000828152600e60209081526040808320805460018101825590845282842082519384019092529282529091019061259d90826138c6565b50806125a881613986565b91505061255d565b6000818152601060205260409020546011546060919081106126025760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000838152601060209081526040808320548352600e9091528120805490919061262e5761262e613805565b9060005260206000200180546126439061381b565b80601f016020809104026020016040519081016040528092919081815260200182805461266f9061381b565b80156126bc5780601f10612691576101008083540402835291602001916126bc565b820191906000526020600020905b81548152906001019060200180831161269f57829003601f168201915b5050505050915050919050565b6000336126d583611987565b6001600160a01b03161461273a5760405162461bcd60e51b815260206004820152602660248201527f4e46543a207472616e73666572206f6620746f6b656e2074686174206973206e60448201526537ba1037bbb760d11b6064820152608401610ba5565b6001600160a01b03831661279a5760405162461bcd60e51b815260206004820152602160248201527f4e46543a207472616e7366657220746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610ba5565b600082815260066020526040812055336000908152600d602052604081208054600192906127c9908490613a5f565b90915550506001600160a01b0383166000908152600d602052604081208054600192906127f7908490613865565b90915550506000828152600c602052604080822080546001600160a01b0319166001600160a01b0387169081179091559051849233917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a450600192915050565b6000546001600160a01b031633146128a25760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b6001600160a01b038216600081815260016020908152604091829020805460ff19168515159081179091558251938452908301527f6b0f890a293c8f56a7635ad061c90250965b8af8e8bdbeb56d434b97281a7462910160405180910390a15050565b60608160115481106129475760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000838152600e6020908152604080832080548251818502810185019093528083529193909284015b8282101561172557838290600052602060002001805461298f9061381b565b80601f01602080910402602001604051908101604052809291908181526020018280546129bb9061381b565b8015612a085780601f106129dd57610100808354040283529160200191612a08565b820191906000526020600020905b8154815290600101906020018083116129eb57829003601f168201915b505050505081526020019060010190612970565b6000546001600160a01b03163314612a645760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b6001600160a01b038116612ae05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ba5565b612ae98161308d565b50565b60008381526003602090815260408220805460018101825590835291200161107a82848361399f565b612b6e82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525089815260036020526040902080549093508892508210905061153357611533613805565b600085815260036020526040902080548590811061100957611009613805565b6000612b9c336009546130dd565b50600980549081906000612baf83613986565b9190505550612bbd816130eb565b90565b60008181526008602090815260408083205463ffffffff168084526004909252822080546001909101546001600160a01b039091169083620186a0612c058389613aa1565b612c0f9190613ab8565b90506000836001600160a01b03166108fc839081150290604051600060405180830381858888f150949b9a5050505050505050505050565b836001600160a01b0316612c5a83611987565b6001600160a01b031614612cbf5760405162461bcd60e51b815260206004820152602660248201527f4e46543a207472616e73666572206f6620746f6b656e2074686174206973206e60448201526537ba1037bbb760d11b6064820152608401610ba5565b6001600160a01b038316612d1f5760405162461bcd60e51b815260206004820152602160248201527f4e46543a207472616e7366657220746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610ba5565b6000828152600660205260408120556001600160a01b0384166000908152600d60205260408120805460019290612d57908490613a5f565b90915550506001600160a01b0383166000908152600d60205260408120805460019290612d85908490613865565b90915550506000828152600c6020526040902080546001600160a01b0319166001600160a01b0385169081179091553b15612e4a576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0384169063150b7a0290612e05903390889087908790600401613ada565b6020604051808303816000875af1158015612e24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e489190613b16565b505b81836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b805160609083908390612ea657612ea6613b58565b600081518351612eb69190613865565b67ffffffffffffffff811115612ece57612ece61332e565b6040519080825280601f01601f191660200182016040528015612ef8576020820181803683370190505b509050806000805b8551821015612fa057858281518110612f1b57612f1b613805565b01602001517fff00000000000000000000000000000000000000000000000000000000000000168382612f4d81613986565b935081518110612f5f57612f5f613805565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535081612f9881613986565b925050612f00565b600091505b845182101561304557848281518110612fc057612fc0613805565b01602001517fff00000000000000000000000000000000000000000000000000000000000000168382612ff281613986565b93508151811061300457613004613805565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508161303d81613986565b925050612fa5565b5090979650505050505050565b60008481526003602052604090208054839183918690811061307657613076613805565b90600052602060002001918261101f92919061399f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6130e78282613138565b5050565b6000818152600360205260408120549003612ae957600081815260036020908152604080832080546001810182559084528284208251938401909252928252909101906130e790826138c6565b6001600160a01b03821661318e5760405162461bcd60e51b815260206004820152601d60248201527f4e46543a206d696e7420746f20746865207a65726f20616464726573730000006044820152606401610ba5565b6000818152600c60205260409020546001600160a01b0316156131f35760405162461bcd60e51b815260206004820152601960248201527f4e46543a20746f6b656e20616c7265616479206d696e746564000000000000006044820152606401610ba5565b6001600160a01b0382166000908152600d6020526040812080546001929061321c908490613865565b90915550506000818152600c602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006020828403121561328c57600080fd5b5035919050565b6000815180845260005b818110156132b95760208185018101518683018201520161329d565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006132ec6020830184613293565b9392505050565b6000806040838503121561330657600080fd5b50508035926020909101359150565b803563ffffffff8116811461332957600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561335f5761335f61332e565b604051601f8501601f19908116603f011681019082821181831017156133875761338761332e565b816040528093508581528686860111156133a057600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126133cb57600080fd5b6132ec83833560208501613344565b600080604083850312156133ed57600080fd5b6133f683613315565b9150602083013567ffffffffffffffff81111561341257600080fd5b61341e858286016133ba565b9150509250929050565b60008083601f84011261343a57600080fd5b50813567ffffffffffffffff81111561345257600080fd5b60208301915083602082850101111561346a57600080fd5b9250929050565b60008060006040848603121561348657600080fd5b83359250602084013567ffffffffffffffff8111156134a457600080fd5b6134b086828701613428565b9497909650939450505050565b6000806000606084860312156134d257600080fd5b8335925060208401359150604084013567ffffffffffffffff8111156134f757600080fd5b613503868287016133ba565b9150509250925092565b6000806000806060858703121561352357600080fd5b8435935060208501359250604085013567ffffffffffffffff81111561354857600080fd5b61355487828801613428565b95989497509550505050565b600081518084526020808501808196508360051b8101915082860160005b858110156135a8578284038952613596848351613293565b9885019893509084019060010161357e565b5091979650505050505050565b6020815260006132ec6020830184613560565b60208152600082516020808401526135e36040840182613560565b949350505050565b80356001600160a01b038116811461332957600080fd5b60006020828403121561361457600080fd5b6132ec826135eb565b6000806040838503121561363057600080fd5b8235915061364060208401613315565b90509250929050565b6000806040838503121561365c57600080fd5b82359150602083013567ffffffffffffffff81111561341257600080fd5b60006020828403121561368c57600080fd5b6132ec82613315565b6000806000606084860312156136aa57600080fd5b6136b384613315565b92506136c1602085016135eb565b9150604084013590509250925092565b6000806000606084860312156136e657600080fd5b833567ffffffffffffffff808211156136fe57600080fd5b61370a878388016133ba565b9450602086013591508082111561372057600080fd5b5061372d868287016133ba565b925050604084013590509250925092565b60008060006060848603121561375357600080fd5b61375c846135eb565b925060208401359150604084013567ffffffffffffffff81111561377f57600080fd5b8401601f8101861361379057600080fd5b61350386823560208401613344565b600080604083850312156137b257600080fd5b6137bb836135eb565b946020939093013593505050565b600080604083850312156137dc57600080fd5b6137e5836135eb565b9150602083013580151581146137fa57600080fd5b809150509250929050565b634e487b7160e01b600052603260045260246000fd5b600181811c9082168061382f57607f821691505b60208210810361172c57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156119fb576119fb61384f565b601f821115610e8557600081815260208120601f850160051c8101602086101561389f5750805b601f850160051c820191505b818110156138be578281556001016138ab565b505050505050565b815167ffffffffffffffff8111156138e0576138e061332e565b6138f4816138ee845461381b565b84613878565b602080601f83116001811461392957600084156139115750858301515b600019600386901b1c1916600185901b1785556138be565b600085815260208120601f198616915b8281101561395857888601518255948401946001909101908401613939565b50858210156139765787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000600182016139985761399861384f565b5060010190565b67ffffffffffffffff8311156139b7576139b761332e565b6139cb836139c5835461381b565b83613878565b6000601f8411600181146139ff57600085156139e75750838201355b600019600387901b1c1916600186901b17835561101f565b600083815260209020601f19861690835b82811015613a305786850135825560209485019460019092019101613a10565b5086821015613a4d5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b818103818111156119fb576119fb61384f565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b80820281158282048414176119fb576119fb61384f565b600082613ad557634e487b7160e01b600052601260045260246000fd5b500490565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613b0c6080830184613293565b9695505050505050565b600060208284031215613b2857600080fd5b81517fffffffff00000000000000000000000000000000000000000000000000000000811681146132ec57600080fd5b634e487b7160e01b600052600160045260246000fdfe5175657269656420636c61737320646f6573206e6f74206578697374000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220e71b199071ad05ebe25cb90e6e27c4bd0ac3383b9e258a07de6fb34c297bf79664736f6c63430008110033
Deployed ByteCode
0x6080604052600436106103135760003560e01c806370a082311161019a578063b9186d7d116100e1578063c98e0c3c1161008a578063e29fb03611610064578063e29fb036146109b4578063e6470059146109ca578063f2fde38b146109ea57600080fd5b8063c98e0c3c1461092c578063cb177b1e1461094c578063d75d1e661461096c57600080fd5b8063be671058116100bb578063be671058146108bf578063c1940f1b146108df578063c87b56dd1461090c57600080fd5b8063b9186d7d1461085f578063bb0537171461087f578063be45fd621461089f57600080fd5b80638da5cb5b1161014357806395d89b411161011d57806395d89b411461080a5780639de4792e1461081f578063b119490e1461083f57600080fd5b80638da5cb5b146107b65780638e39e18c146107d457806391100695146107f457600080fd5b806378317f3f1161017457806378317f3f146107565780637ab56e521461077657806380483a6a1461079657600080fd5b806370a08231146106c457806373baa651146106e457806374c29ce3146106f757600080fd5b80633e0bb7831161025e578063543dc7fa11610207578063648fbe40116101e1578063648fbe4014610641578063649ccc141461066157806369a13712146106a457600080fd5b8063543dc7fa146105a35780635a3b7e42146105c35780636352211e1461060957600080fd5b80634c1720a4116102385780634c1720a4146105265780634edea11114610546578063510910bb1461057357600080fd5b80633e0bb783146104b95780634774d93f146104d95780634bb2ddd4146104f957600080fd5b8063290e008c116102c05780633add5fa11161029a5780633add5fa1146104595780633c65b3eb146104795780633d8073f11461049957600080fd5b8063290e008c146103f95780632a6d3f44146104195780633054d9cb1461043957600080fd5b80631d734c8f116102f15780631d734c8f146103935780631f38e654146103b757806325498c75146103d957600080fd5b806302ff368a1461031857806306fdde031461034e5780630eaaf4c814610363575b600080fd5b34801561032457600080fd5b5061033861033336600461327a565b610a0a565b60405161034591906132d9565b60405180910390f35b34801561035a57600080fd5b50610338610ac4565b34801561036f57600080fd5b5061038361037e36600461327a565b610b56565b6040519015158152602001610345565b34801561039f57600080fd5b506103a960115481565b604051908152602001610345565b3480156103c357600080fd5b506103d76103d23660046132f3565b610d00565b005b3480156103e557600080fd5b506103d76103f43660046133da565b610d5a565b34801561040557600080fd5b506103d7610414366004613471565b610e09565b34801561042557600080fd5b50610383610434366004613471565b610e8a565b34801561044557600080fd5b506103d76104543660046134bd565b610f5e565b34801561046557600080fd5b506103d761047436600461350d565b611026565b34801561048557600080fd5b506103a961049436600461327a565b611080565b3480156104a557600080fd5b506103d76104b436600461350d565b611172565b3480156104c557600080fd5b506103386104d43660046132f3565b6113cc565b3480156104e557600080fd5b506103d76104f43660046134bd565b611485565b34801561050557600080fd5b5061051961051436600461327a565b6115f4565b60405161034591906135b5565b34801561053257600080fd5b506103386105413660046132f3565b611732565b34801561055257600080fd5b5061056661056136600461327a565b611830565b60405161034591906135c8565b34801561057f57600080fd5b5061038361058e366004613602565b60016020526000908152604090205460ff1681565b3480156105af57600080fd5b506103a96105be36600461327a565b611925565b3480156105cf57600080fd5b5060408051808201909152600b81527f43616c6c6973746f4e46540000000000000000000000000000000000000000006020820152610338565b34801561061557600080fd5b5061062961062436600461327a565b611987565b6040516001600160a01b039091168152602001610345565b34801561064d57600080fd5b506103d761065c36600461361d565b611a01565b34801561066d57600080fd5b5061068161067c36600461327a565b611a71565b604080519384526001600160a01b03909216602084015290820152606001610345565b3480156106b057600080fd5b506103d76106bf366004613649565b611b18565b3480156106d057600080fd5b506103a96106df366004613602565b611bc8565b6103d76106f2366004613471565b611c62565b34801561070357600080fd5b5061073761071236600461367a565b600460205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b039093168352602083019190915201610345565b34801561076257600080fd5b506103d761077136600461361d565b611fce565b34801561078257600080fd5b506103386107913660046132f3565b61203e565b3480156107a257600080fd5b506103d76107b136600461327a565b6120fd565b3480156107c257600080fd5b506000546001600160a01b0316610629565b3480156107e057600080fd5b506103d76107ef366004613695565b6121bd565b34801561080057600080fd5b506103a960055481565b34801561081657600080fd5b50610338612240565b34801561082b57600080fd5b5061033861083a3660046132f3565b61224f565b34801561084b57600080fd5b506103d761085a3660046136d1565b6122ce565b34801561086b57600080fd5b506103a961087a36600461327a565b6123e7565b34801561088b57600080fd5b506103d761089a36600461350d565b61246f565b3480156108ab57600080fd5b506103836108ba36600461373e565b6124c3565b3480156108cb57600080fd5b506103d76108da3660046132f3565b612512565b3480156108eb57600080fd5b506103a96108fa36600461327a565b60106020526000908152604090205481565b34801561091857600080fd5b5061033861092736600461327a565b6125b0565b34801561093857600080fd5b5061038361094736600461379f565b6126c9565b34801561095857600080fd5b506103d76109673660046137c9565b61285a565b34801561097857600080fd5b5061099f61098736600461327a565b600f6020526000908152604090205463ffffffff1681565b60405163ffffffff9091168152602001610345565b3480156109c057600080fd5b506103a960095481565b3480156109d657600080fd5b506105196109e536600461327a565b612905565b3480156109f657600080fd5b506103d7610a05366004613602565b612a1c565b6000818152600360205260408120805460609290610a2a57610a2a613805565b906000526020600020018054610a3f9061381b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6b9061381b565b8015610ab85780601f10610a8d57610100808354040283529160200191610ab8565b820191906000526020600020905b815481529060010190602001808311610a9b57829003601f168201915b50505050509050919050565b6060600a8054610ad39061381b565b80601f0160208091040260200160405190810160405280929190818152602001828054610aff9061381b565b8015610b4c5780601f10610b2157610100808354040283529160200191610b4c565b820191906000526020600020905b815481529060010190602001808311610b2f57829003601f168201915b5050505050905090565b60006002805403610bae5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002805560008080610bbf85611a71565b91945092509050336001600160a01b03831614610c445760405162461bcd60e51b815260206004820152602260248201527f43616e206e6f7420776974686472617720736f6d656f6e6520656c736573206260448201527f69640000000000000000000000000000000000000000000000000000000000006064820152608401610ba5565b600554610c519082613865565b4211610c9f5760405162461bcd60e51b815260206004820152601260248201527f4269642069732074696d652d6c6f636b656400000000000000000000000000006044820152606401610ba5565b6040516000906001600160a01b0384169085156108fc0290869084818181858888f150505060009788525050600760205250506040842080546001600160a01b03191681556001808201869055600291820195909555849055509192915050565b6000546001600160a01b03163314610d485760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b60009182526010602052604090912055565b6000546001600160a01b03163314610da25760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b6011546000908152600e6020908152604082208054600181018255908352912001610dcd82826138c6565b50601180546000908152600f60205260408120805463ffffffff191663ffffffff861617905581549190610e0083613986565b91905055505050565b33610e1c6000546001600160a01b031690565b6001600160a01b03161480610e4057503360009081526001602052604090205460ff165b610e7a5760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b610e85838383612aec565b505050565b6000610e9584611987565b6001600160a01b0316336001600160a01b031614610f1b5760405162461bcd60e51b815260206004820152602660248201527f4e46543a206f6e6c79206f776e65722063616e206368616e6765204e4654206360448201527f6f6e74656e7400000000000000000000000000000000000000000000000000006064820152608401610ba5565b600084815260036020526040812080548592859291610f3c57610f3c613805565b906000526020600020019182610f5392919061399f565b506001949350505050565b6000546001600160a01b03163314610fa65760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b826011548110610fe65760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000848152600e6020526040902080548391908590811061100957611009613805565b90600052602060002001908161101f91906138c6565b5050505050565b6000546001600160a01b0316331461106e5760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b61107a84848484612b15565b50505050565b60008160115481106110c25760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b3360009081526001602052604090205460ff166111215760405162461bcd60e51b815260206004820152601460248201527f4d696e74657220726f6c652072657175697265640000000000000000000000006044820152606401610ba5565b611129612b8e565b6000818152601060209081526040808320879055958252600f8152858220548383526008909152949020805463ffffffff191663ffffffff909516949094179093555090919050565b8382828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506002546001190191506111fe90505760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ba5565b600280553361120c87611987565b6001600160a01b0316146112885760405162461bcd60e51b815260206004820152602c60248201527f53657474696e672061736b73206973206f6e6c7920616c6c6f77656420666f7260448201527f206f776e6564204e4654732100000000000000000000000000000000000000006064820152608401610ba5565b60008681526006602052604081208690556001600255806112a884611a71565b509150915060006112b8856123e7565b1180156112cd5750816112ca856123e7565b11155b156113c25760006112de8386612bc0565b6112e89084613a5f565b90506112f385611987565b6001600160a01b0316826001600160a01b0316867fc9b9afd9684b23c6b22a41016c08e8954ac118220c0a52f00b8774c46580e9a38460405161133891815260200190565b60405180910390a4600061134b86611987565b6001600160a01b03166108fc839081150290604051600060405180830381858888f160008b815260076020908152604080832080546001600160a01b031916815560018101849055600201839055600690915281205594506113bf93506113b792508991506119879050565b848888612c47565b50505b5050505050505050565b600e60205281600052604060002081815481106113e857600080fd5b906000526020600020016000915091505080546114049061381b565b80601f01602080910402602001604051908101604052809291908181526020018280546114309061381b565b801561147d5780601f106114525761010080835404028352916020019161147d565b820191906000526020600020905b81548152906001019060200180831161146057829003601f168201915b505050505081565b6000546001600160a01b031633146114cd5760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b82601154811061150d5760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000848152600e6020526040902080546115d49184918690811061153357611533613805565b9060005260206000200180546115489061381b565b80601f01602080910402602001604051908101604052809291908181526020018280546115749061381b565b80156115c15780601f10611596576101008083540402835291602001916115c1565b820191906000526020600020905b8154815290600101906020018083116115a457829003601f168201915b5050505050612e9190919063ffffffff16565b6000858152600e6020526040902080548590811061100957611009613805565b6000818152601060205260409020546011546060919081106116465760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000838152601060209081526040808320548352600e825280832080548251818502810185019093528083529193909284015b828210156117255783829060005260206000200180546116989061381b565b80601f01602080910402602001604051908101604052809291908181526020018280546116c49061381b565b80156117115780601f106116e657610100808354040283529160200191611711565b820191906000526020600020905b8154815290600101906020018083116116f457829003601f168201915b505050505081526020019060010190611679565b5050505091505b50919050565b60608260115481106117745760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000848152600e6020526040902080548490811061179457611794613805565b9060005260206000200180546117a99061381b565b80601f01602080910402602001604051908101604052809291908181526020018280546117d59061381b565b80156118225780601f106117f757610100808354040283529160200191611822565b820191906000526020600020905b81548152906001019060200180831161180557829003601f168201915b505050505091505092915050565b604080516020808201835260608252600084815260038252838120845181548085028201870187529381018481529495909491938593859285015b8282101561191757838290600052602060002001805461188a9061381b565b80601f01602080910402602001604051908101604052809291908181526020018280546118b69061381b565b80156119035780601f106118d857610100808354040283529160200191611903565b820191906000526020600020905b8154815290600101906020018083116118e657829003601f168201915b50505050508152602001906001019061186b565b505050915250909392505050565b60008181526010602052604081205460115481106119735760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b505060009081526010602052604090205490565b6000818152600c60205260408120546001600160a01b0316806119fb5760405162461bcd60e51b815260206004820152602660248201527f4e46543a206f776e657220717565727920666f72206e6f6e6578697374656e74604482015265103a37b5b2b760d11b6064820152608401610ba5565b92915050565b6000546001600160a01b03163314611a495760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b600091825260086020526040909120805463ffffffff191663ffffffff909216919091179055565b6000818152600c6020526040812054819081906001600160a01b031680611ae95760405162461bcd60e51b815260206004820152602660248201527f4e46543a206f776e657220717565727920666f72206e6f6e6578697374656e74604482015265103a37b5b2b760d11b6064820152608401610ba5565b5050506000918252506007602052604090206001810154815460029092015490926001600160a01b0390921691565b6000546001600160a01b03163314611b605760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b816011548110611ba05760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000838152600e602090815260408220805460018101825590835291200161107a83826138c6565b60006001600160a01b038216611c465760405162461bcd60e51b815260206004820152602760248201527f4e46543a2062616c616e636520717565727920666f7220746865207a65726f2060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610ba5565b506001600160a01b03166000908152600d602052604090205490565b8282828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050600254600119019150611cee90505760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ba5565b60028055600080611cfe87611a71565b5091509150813411611d775760405162461bcd60e51b8152602060048201526024808201527f4e657720626964206d7573742065786365656420746865206578697374696e6760448201527f206f6e65000000000000000000000000000000000000000000000000000000006064820152608401610ba5565b6000808315611da7576040516001600160a01b0384169085156108fc029086906000818181858888f19450505050505b34611db18a6123e7565b108015611dc657506000611dc48a6123e7565b115b15611ddb57611dd4896123e7565b9150611ddf565b3491505b600089815260076020526040908190206001810184905580546001600160a01b03191633178155426002909101555182908a907f223d0d5db4846341da7a5cc902b1a7c597e63b6c73b1c6267dc931d290c7affb90611e41908c908c90613a72565b60405180910390a334611e538a6123e7565b108015611e6857506000611e668a6123e7565b115b15611e9d57336108fc611e7a8b6123e7565b611e849034613a5f565b6040518115909202916000818181858888f19450505050505b50506001600255506000905080611eb384611a71565b50915091506000611ec3856123e7565b118015611ed8575081611ed5856123e7565b11155b15611fc5576000611ee98386612bc0565b611ef39084613a5f565b9050611efe85611987565b6001600160a01b0316826001600160a01b0316867fc9b9afd9684b23c6b22a41016c08e8954ac118220c0a52f00b8774c46580e9a384604051611f4391815260200190565b60405180910390a46000611f5686611987565b6001600160a01b03166108fc839081150290604051600060405180830381858888f160008b815260076020908152604080832080546001600160a01b03191681556001810184905560020183905560069091528120559450611fc293506113b792508991506119879050565b50505b50505050505050565b6000546001600160a01b031633146120165760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b6000918252600f6020526040909120805463ffffffff191663ffffffff909216919091179055565b60008281526003602052604090208054606091908390811061206257612062613805565b9060005260206000200180546120779061381b565b80601f01602080910402602001604051908101604052809291908181526020018280546120a39061381b565b80156120f05780601f106120c5576101008083540402835291602001916120f0565b820191906000526020600020905b8154815290600101906020018083116120d357829003601f168201915b5050505050905092915050565b6000546001600160a01b031633146121455760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b8060115481106121855760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000828152600e602090815260408083208054600181018255908452828420825193840190925292825290910190610e8590826138c6565b6000546001600160a01b031633146122055760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b63ffffffff909216600090815260046020526040902080546001600160a01b039092166001600160a01b031990921691909117815560010155565b6060600b8054610ad39061381b565b6000828152601060205260409020546011546060919081106122a15760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000848152601060209081526040808320548352600e909152902080548490811061179457611794613805565b6000546001600160a01b0316156123275760405162461bcd60e51b815260206004820152601360248201527f416c726561647920696e697469616c697a6564000000000000000000000000006044820152606401610ba5565b600080546001600160a01b0319163390811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a362015180600555600a61237984826138c6565b50600b61238683826138c6565b506000805260046020527f17ef568e3e12ab5b9c7254a8d58478811de00f9e6eb34345acd53bf8fd09d3ec80546001600160a01b031916331790557f17ef568e3e12ab5b9c7254a8d58478811de00f9e6eb34345acd53bf8fd09d3ed555050565b6000818152600c60205260408120546001600160a01b03168061245b5760405162461bcd60e51b815260206004820152602660248201527f4e46543a206f776e657220717565727920666f72206e6f6e6578697374656e74604482015265103a37b5b2b760d11b6064820152608401610ba5565b505060009081526006602052604090205490565b6000546001600160a01b031633146124b75760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b61107a84848484613052565b60006124d133858585612c47565b7f3ba9136826ac751de05d770d8d34fa4440ada49a5fb0e9aa1678aece66dad9768260405161250091906132d9565b60405180910390a15060019392505050565b6000546001600160a01b0316331461255a5760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b60005b82811015610e85576000828152600e60209081526040808320805460018101825590845282842082519384019092529282529091019061259d90826138c6565b50806125a881613986565b91505061255d565b6000818152601060205260409020546011546060919081106126025760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000838152601060209081526040808320548352600e9091528120805490919061262e5761262e613805565b9060005260206000200180546126439061381b565b80601f016020809104026020016040519081016040528092919081815260200182805461266f9061381b565b80156126bc5780601f10612691576101008083540402835291602001916126bc565b820191906000526020600020905b81548152906001019060200180831161269f57829003601f168201915b5050505050915050919050565b6000336126d583611987565b6001600160a01b03161461273a5760405162461bcd60e51b815260206004820152602660248201527f4e46543a207472616e73666572206f6620746f6b656e2074686174206973206e60448201526537ba1037bbb760d11b6064820152608401610ba5565b6001600160a01b03831661279a5760405162461bcd60e51b815260206004820152602160248201527f4e46543a207472616e7366657220746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610ba5565b600082815260066020526040812055336000908152600d602052604081208054600192906127c9908490613a5f565b90915550506001600160a01b0383166000908152600d602052604081208054600192906127f7908490613865565b90915550506000828152600c602052604080822080546001600160a01b0319166001600160a01b0387169081179091559051849233917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a450600192915050565b6000546001600160a01b031633146128a25760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b6001600160a01b038216600081815260016020908152604091829020805460ff19168515159081179091558251938452908301527f6b0f890a293c8f56a7635ad061c90250965b8af8e8bdbeb56d434b97281a7462910160405180910390a15050565b60608160115481106129475760405162461bcd60e51b815260206004820152601c6024820152600080516020613b6f8339815191526044820152606401610ba5565b6000838152600e6020908152604080832080548251818502810185019093528083529193909284015b8282101561172557838290600052602060002001805461298f9061381b565b80601f01602080910402602001604051908101604052809291908181526020018280546129bb9061381b565b8015612a085780601f106129dd57610100808354040283529160200191612a08565b820191906000526020600020905b8154815290600101906020018083116129eb57829003601f168201915b505050505081526020019060010190612970565b6000546001600160a01b03163314612a645760405162461bcd60e51b81526020600482018190526024820152600080516020613b8f8339815191526044820152606401610ba5565b6001600160a01b038116612ae05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ba5565b612ae98161308d565b50565b60008381526003602090815260408220805460018101825590835291200161107a82848361399f565b612b6e82828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525089815260036020526040902080549093508892508210905061153357611533613805565b600085815260036020526040902080548590811061100957611009613805565b6000612b9c336009546130dd565b50600980549081906000612baf83613986565b9190505550612bbd816130eb565b90565b60008181526008602090815260408083205463ffffffff168084526004909252822080546001909101546001600160a01b039091169083620186a0612c058389613aa1565b612c0f9190613ab8565b90506000836001600160a01b03166108fc839081150290604051600060405180830381858888f150949b9a5050505050505050505050565b836001600160a01b0316612c5a83611987565b6001600160a01b031614612cbf5760405162461bcd60e51b815260206004820152602660248201527f4e46543a207472616e73666572206f6620746f6b656e2074686174206973206e60448201526537ba1037bbb760d11b6064820152608401610ba5565b6001600160a01b038316612d1f5760405162461bcd60e51b815260206004820152602160248201527f4e46543a207472616e7366657220746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610ba5565b6000828152600660205260408120556001600160a01b0384166000908152600d60205260408120805460019290612d57908490613a5f565b90915550506001600160a01b0383166000908152600d60205260408120805460019290612d85908490613865565b90915550506000828152600c6020526040902080546001600160a01b0319166001600160a01b0385169081179091553b15612e4a576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0384169063150b7a0290612e05903390889087908790600401613ada565b6020604051808303816000875af1158015612e24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e489190613b16565b505b81836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b805160609083908390612ea657612ea6613b58565b600081518351612eb69190613865565b67ffffffffffffffff811115612ece57612ece61332e565b6040519080825280601f01601f191660200182016040528015612ef8576020820181803683370190505b509050806000805b8551821015612fa057858281518110612f1b57612f1b613805565b01602001517fff00000000000000000000000000000000000000000000000000000000000000168382612f4d81613986565b935081518110612f5f57612f5f613805565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535081612f9881613986565b925050612f00565b600091505b845182101561304557848281518110612fc057612fc0613805565b01602001517fff00000000000000000000000000000000000000000000000000000000000000168382612ff281613986565b93508151811061300457613004613805565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508161303d81613986565b925050612fa5565b5090979650505050505050565b60008481526003602052604090208054839183918690811061307657613076613805565b90600052602060002001918261101f92919061399f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6130e78282613138565b5050565b6000818152600360205260408120549003612ae957600081815260036020908152604080832080546001810182559084528284208251938401909252928252909101906130e790826138c6565b6001600160a01b03821661318e5760405162461bcd60e51b815260206004820152601d60248201527f4e46543a206d696e7420746f20746865207a65726f20616464726573730000006044820152606401610ba5565b6000818152600c60205260409020546001600160a01b0316156131f35760405162461bcd60e51b815260206004820152601960248201527f4e46543a20746f6b656e20616c7265616479206d696e746564000000000000006044820152606401610ba5565b6001600160a01b0382166000908152600d6020526040812080546001929061321c908490613865565b90915550506000818152600c602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006020828403121561328c57600080fd5b5035919050565b6000815180845260005b818110156132b95760208185018101518683018201520161329d565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006132ec6020830184613293565b9392505050565b6000806040838503121561330657600080fd5b50508035926020909101359150565b803563ffffffff8116811461332957600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561335f5761335f61332e565b604051601f8501601f19908116603f011681019082821181831017156133875761338761332e565b816040528093508581528686860111156133a057600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126133cb57600080fd5b6132ec83833560208501613344565b600080604083850312156133ed57600080fd5b6133f683613315565b9150602083013567ffffffffffffffff81111561341257600080fd5b61341e858286016133ba565b9150509250929050565b60008083601f84011261343a57600080fd5b50813567ffffffffffffffff81111561345257600080fd5b60208301915083602082850101111561346a57600080fd5b9250929050565b60008060006040848603121561348657600080fd5b83359250602084013567ffffffffffffffff8111156134a457600080fd5b6134b086828701613428565b9497909650939450505050565b6000806000606084860312156134d257600080fd5b8335925060208401359150604084013567ffffffffffffffff8111156134f757600080fd5b613503868287016133ba565b9150509250925092565b6000806000806060858703121561352357600080fd5b8435935060208501359250604085013567ffffffffffffffff81111561354857600080fd5b61355487828801613428565b95989497509550505050565b600081518084526020808501808196508360051b8101915082860160005b858110156135a8578284038952613596848351613293565b9885019893509084019060010161357e565b5091979650505050505050565b6020815260006132ec6020830184613560565b60208152600082516020808401526135e36040840182613560565b949350505050565b80356001600160a01b038116811461332957600080fd5b60006020828403121561361457600080fd5b6132ec826135eb565b6000806040838503121561363057600080fd5b8235915061364060208401613315565b90509250929050565b6000806040838503121561365c57600080fd5b82359150602083013567ffffffffffffffff81111561341257600080fd5b60006020828403121561368c57600080fd5b6132ec82613315565b6000806000606084860312156136aa57600080fd5b6136b384613315565b92506136c1602085016135eb565b9150604084013590509250925092565b6000806000606084860312156136e657600080fd5b833567ffffffffffffffff808211156136fe57600080fd5b61370a878388016133ba565b9450602086013591508082111561372057600080fd5b5061372d868287016133ba565b925050604084013590509250925092565b60008060006060848603121561375357600080fd5b61375c846135eb565b925060208401359150604084013567ffffffffffffffff81111561377f57600080fd5b8401601f8101861361379057600080fd5b61350386823560208401613344565b600080604083850312156137b257600080fd5b6137bb836135eb565b946020939093013593505050565b600080604083850312156137dc57600080fd5b6137e5836135eb565b9150602083013580151581146137fa57600080fd5b809150509250929050565b634e487b7160e01b600052603260045260246000fd5b600181811c9082168061382f57607f821691505b60208210810361172c57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156119fb576119fb61384f565b601f821115610e8557600081815260208120601f850160051c8101602086101561389f5750805b601f850160051c820191505b818110156138be578281556001016138ab565b505050505050565b815167ffffffffffffffff8111156138e0576138e061332e565b6138f4816138ee845461381b565b84613878565b602080601f83116001811461392957600084156139115750858301515b600019600386901b1c1916600185901b1785556138be565b600085815260208120601f198616915b8281101561395857888601518255948401946001909101908401613939565b50858210156139765787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000600182016139985761399861384f565b5060010190565b67ffffffffffffffff8311156139b7576139b761332e565b6139cb836139c5835461381b565b83613878565b6000601f8411600181146139ff57600085156139e75750838201355b600019600387901b1c1916600186901b17835561101f565b600083815260209020601f19861690835b82811015613a305786850135825560209485019460019092019101613a10565b5086821015613a4d5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b818103818111156119fb576119fb61384f565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b80820281158282048414176119fb576119fb61384f565b600082613ad557634e487b7160e01b600052601260045260246000fd5b500490565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613b0c6080830184613293565b9695505050505050565b600060208284031215613b2857600080fd5b81517fffffffff00000000000000000000000000000000000000000000000000000000811681146132ec57600080fd5b634e487b7160e01b600052600160045260246000fdfe5175657269656420636c61737320646f6573206e6f74206578697374000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220e71b199071ad05ebe25cb90e6e27c4bd0ac3383b9e258a07de6fb34c297bf79664736f6c63430008110033