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.15+commit.e14f2714
- Optimization runs
- 200
- EVM Version
- default
- Verified at
- 2024-09-26T15:33:10.021157Z
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);
payable(ownerOf(_tokenId)).transfer(_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;
// Return previous bid if the current one exceeds it.
if(_previousBid != 0)
{
_previousBidder.transfer(_previousBid);
}
// Refund overpaid amount.
if (priceOf(_tokenId) < msg.value)
{
_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.
// WARHNING: Creates possibility for reentrancy.
if (priceOf(_tokenId) < msg.value)
{
payable(msg.sender).transfer(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");
_bidder.transfer(_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;
payable(_feeReceiver).transfer(_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);
}
}
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":"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
0x608060405262015180600555600060115534801561001c57600080fd5b50600160025561355d806100316000396000f3fe6080604052600436106102885760003560e01c806370a082311161015a578063b9186d7d116100c1578063c98e0c3c1161007a578063c98e0c3c1461086f578063cb177b1e1461088f578063d75d1e66146108af578063e29fb036146108f7578063e64700591461090d578063f2fde38b1461092d57600080fd5b8063b9186d7d146107a2578063bb053717146107c2578063be45fd62146107e2578063be67105814610802578063c1940f1b14610822578063c87b56dd1461084f57600080fd5b80638da5cb5b116101135780638da5cb5b146106f95780638e39e18c14610717578063911006951461073757806395d89b411461074d5780639de4792e14610762578063b119490e1461078257600080fd5b806370a082311461060757806373baa6511461062757806374c29ce31461063a57806378317f3f146106995780637ab56e52146106b957806380483a6a146106d957600080fd5b80633d8073f1116101fe578063510910bb116101b7578063510910bb146104e8578063543dc7fa146105185780635a3b7e42146105385780636352211e1461056c578063648fbe40146105a4578063649ccc14146105c457600080fd5b80633d8073f11461040e5780633e0bb7831461042e5780634774d93f1461044e5780634bb2ddd41461046e5780634c1720a41461049b5780634edea111146104bb57600080fd5b806325498c751161025057806325498c751461034e578063290e008c1461036e5780632a6d3f441461038e5780633054d9cb146103ae5780633add5fa1146103ce5780633c65b3eb146103ee57600080fd5b806302ff368a1461028d57806306fdde03146102c35780630eaaf4c8146102d85780631d734c8f146103085780631f38e6541461032c575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612b03565b61094d565b6040516102ba9190612b69565b60405180910390f35b3480156102cf57600080fd5b506102ad610a07565b3480156102e457600080fd5b506102f86102f3366004612b03565b610a99565b60405190151581526020016102ba565b34801561031457600080fd5b5061031e60115481565b6040519081526020016102ba565b34801561033857600080fd5b5061034c610347366004612b83565b610bfe565b005b34801561035a57600080fd5b5061034c610369366004612c6a565b610c3a565b34801561037a57600080fd5b5061034c610389366004612d01565b610ccb565b34801561039a57600080fd5b506102f86103a9366004612d01565b610d2e565b3480156103ba57600080fd5b5061034c6103c9366004612d4d565b610deb565b3480156103da57600080fd5b5061034c6103e9366004612d9d565b610e77565b3480156103fa57600080fd5b5061031e610409366004612b03565b610eb3565b34801561041a57600080fd5b5061034c610429366004612d9d565b610f7e565b34801561043a57600080fd5b506102ad610449366004612b83565b6111a1565b34801561045a57600080fd5b5061034c610469366004612d4d565b61125a565b34801561047a57600080fd5b5061048e610489366004612b03565b61138d565b6040516102ba9190612e35565b3480156104a757600080fd5b506102ad6104b6366004612b83565b6114ad565b3480156104c757600080fd5b506104db6104d6366004612b03565b61158d565b6040516102ba9190612e48565b3480156104f457600080fd5b506102f8610503366004612e82565b60016020526000908152604090205460ff1681565b34801561052457600080fd5b5061031e610533366004612b03565b611682565b34801561054457600080fd5b5060408051808201909152600b81526a10d85b1b1a5cdd1bd3919560aa1b60208201526102ad565b34801561057857600080fd5b5061058c610587366004612b03565b6116c6565b6040516001600160a01b0390911681526020016102ba565b3480156105b057600080fd5b5061034c6105bf366004612e9d565b611701565b3480156105d057600080fd5b506105e46105df366004612b03565b611753565b604080519384526001600160a01b039092166020840152908201526060016102ba565b34801561061357600080fd5b5061031e610622366004612e82565b6117bb565b61034c610635366004612d01565b61183f565b34801561064657600080fd5b5061067a610655366004612ec9565b600460205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b0390931683526020830191909152016102ba565b3480156106a557600080fd5b5061034c6106b4366004612e9d565b611b60565b3480156106c557600080fd5b506102ad6106d4366004612b83565b611bb2565b3480156106e557600080fd5b5061034c6106f4366004612b03565b611c71565b34801561070557600080fd5b506000546001600160a01b031661058c565b34801561072357600080fd5b5061034c610732366004612ee4565b611cf5565b34801561074357600080fd5b5061031e60055481565b34801561075957600080fd5b506102ad611d5a565b34801561076e57600080fd5b506102ad61077d366004612b83565b611d69565b34801561078e57600080fd5b5061034c61079d366004612f20565b611dca565b3480156107ae57600080fd5b5061031e6107bd366004612b03565b611ed9565b3480156107ce57600080fd5b5061034c6107dd366004612d9d565b611f22565b3480156107ee57600080fd5b506102f86107fd366004612f8d565b611f58565b34801561080e57600080fd5b5061034c61081d366004612b83565b611fa7565b34801561082e57600080fd5b5061031e61083d366004612b03565b60106020526000908152604090205481565b34801561085b57600080fd5b506102ad61086a366004612b03565b612027565b34801561087b57600080fd5b506102f861088a366004612fee565b612122565b34801561089b57600080fd5b5061034c6108aa366004613018565b61223a565b3480156108bb57600080fd5b506108e26108ca366004612b03565b600f6020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016102ba565b34801561090357600080fd5b5061031e60095481565b34801561091957600080fd5b5061048e610928366004612b03565b6122c7565b34801561093957600080fd5b5061034c610948366004612e82565b6123c0565b600081815260036020526040812080546060929061096d5761096d613054565b9060005260206000200180546109829061306a565b80601f01602080910402602001604051908101604052809291908181526020018280546109ae9061306a565b80156109fb5780601f106109d0576101008083540402835291602001916109fb565b820191906000526020600020905b8154815290600101906020018083116109de57829003601f168201915b50505050509050919050565b6060600a8054610a169061306a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a429061306a565b8015610a8f5780601f10610a6457610100808354040283529160200191610a8f565b820191906000526020600020905b815481529060010190602001808311610a7257829003601f168201915b5050505050905090565b60006002805403610ac55760405162461bcd60e51b8152600401610abc9061309e565b60405180910390fd5b6002805560008080610ad685611753565b91945092509050336001600160a01b03831614610b405760405162461bcd60e51b815260206004820152602260248201527f43616e206e6f7420776974686472617720736f6d656f6e6520656c73657320626044820152611a5960f21b6064820152608401610abc565b600554610b4d90826130eb565b4211610b905760405162461bcd60e51b8152602060048201526012602482015271109a59081a5cc81d1a5b594b5b1bd8dad95960721b6044820152606401610abc565b6040516001600160a01b0383169084156108fc029085906000818181858888f19350505050158015610bc6573d6000803e3d6000fd5b5050506000928352505060076020526040812080546001600160a01b0319168155600180820183905560029182019290925581905590565b6000546001600160a01b03163314610c285760405162461bcd60e51b8152600401610abc90613103565b60009182526010602052604090912055565b6000546001600160a01b03163314610c645760405162461bcd60e51b8152600401610abc90613103565b6011546000908152600e6020908152604082208054600181018255908352912001610c8f8282613186565b50601180546000908152600f60205260408120805463ffffffff191663ffffffff861617905581549190610cc283613246565b91905055505050565b33610cde6000546001600160a01b031690565b6001600160a01b03161480610d0257503360009081526001602052604090205460ff165b610d1e5760405162461bcd60e51b8152600401610abc90613103565b610d2983838361245b565b505050565b6000610d39846116c6565b6001600160a01b0316336001600160a01b031614610da85760405162461bcd60e51b815260206004820152602660248201527f4e46543a206f6e6c79206f776e65722063616e206368616e6765204e465420636044820152651bdb9d195b9d60d21b6064820152608401610abc565b600084815260036020526040812080548592859291610dc957610dc9613054565b906000526020600020019182610de092919061325f565b506001949350505050565b6000546001600160a01b03163314610e155760405162461bcd60e51b8152600401610abc90613103565b826011548110610e375760405162461bcd60e51b8152600401610abc9061331f565b6000848152600e60205260409020805483919085908110610e5a57610e5a613054565b906000526020600020019081610e709190613186565b5050505050565b6000546001600160a01b03163314610ea15760405162461bcd60e51b8152600401610abc90613103565b610ead84848484612484565b50505050565b6000816011548110610ed75760405162461bcd60e51b8152600401610abc9061331f565b3360009081526001602052604090205460ff16610f2d5760405162461bcd60e51b8152602060048201526014602482015273135a5b9d195c881c9bdb19481c995c5d5a5c995960621b6044820152606401610abc565b610f356124fd565b6000818152601060209081526040808320879055958252600f8152858220548383526008909152949020805463ffffffff191663ffffffff909516949094179093555090919050565b8382828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050600254600119019150610fda90505760405162461bcd60e51b8152600401610abc9061309e565b6002805533610fe8876116c6565b6001600160a01b0316146110535760405162461bcd60e51b815260206004820152602c60248201527f53657474696e672061736b73206973206f6e6c7920616c6c6f77656420666f7260448201526b206f776e6564204e4654732160a01b6064820152608401610abc565b600086815260066020526040812086905560016002558061107384611753565b5091509150600061108385611ed9565b11801561109857508161109585611ed9565b11155b156111975760006110a9838661252f565b6110b39084613356565b90506110be856116c6565b6001600160a01b0316826001600160a01b0316867fc9b9afd9684b23c6b22a41016c08e8954ac118220c0a52f00b8774c46580e9a38460405161110391815260200190565b60405180910390a4611114856116c6565b6001600160a01b03166108fc829081150290604051600060405180830381858888f1935050505015801561114c573d6000803e3d6000fd5b50600085815260076020908152604080832080546001600160a01b031916815560018101849055600201839055600690915281205561119561118d866116c6565b8387876125c2565b505b5050505050505050565b600e60205281600052604060002081815481106111bd57600080fd5b906000526020600020016000915091505080546111d99061306a565b80601f01602080910402602001604051908101604052809291908181526020018280546112059061306a565b80156112525780601f1061122757610100808354040283529160200191611252565b820191906000526020600020905b81548152906001019060200180831161123557829003601f168201915b505050505081565b6000546001600160a01b031633146112845760405162461bcd60e51b8152600401610abc90613103565b8260115481106112a65760405162461bcd60e51b8152600401610abc9061331f565b6000848152600e60205260409020805461136d918491869081106112cc576112cc613054565b9060005260206000200180546112e19061306a565b80601f016020809104026020016040519081016040528092919081815260200182805461130d9061306a565b801561135a5780601f1061132f5761010080835404028352916020019161135a565b820191906000526020600020905b81548152906001019060200180831161133d57829003601f168201915b505050505061277a90919063ffffffff16565b6000858152600e60205260409020805485908110610e5a57610e5a613054565b6000818152601060205260409020546011546060919081106113c15760405162461bcd60e51b8152600401610abc9061331f565b6000838152601060209081526040808320548352600e825280832080548251818502810185019093528083529193909284015b828210156114a05783829060005260206000200180546114139061306a565b80601f016020809104026020016040519081016040528092919081815260200182805461143f9061306a565b801561148c5780601f106114615761010080835404028352916020019161148c565b820191906000526020600020905b81548152906001019060200180831161146f57829003601f168201915b5050505050815260200190600101906113f4565b5050505091505b50919050565b60608260115481106114d15760405162461bcd60e51b8152600401610abc9061331f565b6000848152600e602052604090208054849081106114f1576114f1613054565b9060005260206000200180546115069061306a565b80601f01602080910402602001604051908101604052809291908181526020018280546115329061306a565b801561157f5780601f106115545761010080835404028352916020019161157f565b820191906000526020600020905b81548152906001019060200180831161156257829003601f168201915b505050505091505092915050565b604080516020808201835260608252600084815260038252838120845181548085028201870187529381018481529495909491938593859285015b828210156116745783829060005260206000200180546115e79061306a565b80601f01602080910402602001604051908101604052809291908181526020018280546116139061306a565b80156116605780601f1061163557610100808354040283529160200191611660565b820191906000526020600020905b81548152906001019060200180831161164357829003601f168201915b5050505050815260200190600101906115c8565b505050915250909392505050565b60008181526010602052604081205460115481106116b25760405162461bcd60e51b8152600401610abc9061331f565b505060009081526010602052604090205490565b6000818152600c60205260408120546001600160a01b0316806116fb5760405162461bcd60e51b8152600401610abc9061336d565b92915050565b6000546001600160a01b0316331461172b5760405162461bcd60e51b8152600401610abc90613103565b600091825260086020526040909120805463ffffffff191663ffffffff909216919091179055565b6000818152600c6020526040812054819081906001600160a01b03168061178c5760405162461bcd60e51b8152600401610abc9061336d565b5050506000918252506007602052604090206001810154815460029092015490926001600160a01b0390921691565b60006001600160a01b0382166118235760405162461bcd60e51b815260206004820152602760248201527f4e46543a2062616c616e636520717565727920666f7220746865207a65726f206044820152666164647265737360c81b6064820152608401610abc565b506001600160a01b03166000908152600d602052604090205490565b8282828080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505060025460011901915061189b90505760405162461bcd60e51b8152600401610abc9061309e565b600280556000806118ab87611753565b509150915081341161190b5760405162461bcd60e51b8152602060048201526024808201527f4e657720626964206d7573742065786365656420746865206578697374696e67604482015263206f6e6560e01b6064820152608401610abc565b6000821561194b576040516001600160a01b0383169084156108fc029085906000818181858888f19350505050158015611949573d6000803e3d6000fd5b505b3461195589611ed9565b101561196b5761196488611ed9565b905061196e565b50345b600088815260076020526040908190206001810183905580546001600160a01b031916331781554260029091015551819089907f223d0d5db4846341da7a5cc902b1a7c597e63b6c73b1c6267dc931d290c7affb906119d0908b908b906133b3565b60405180910390a3346119e289611ed9565b1015611a2957336108fc6119f58a611ed9565b6119ff9034613356565b6040518115909202916000818181858888f19350505050158015611a27573d6000803e3d6000fd5b505b5050600160025550600080611a3d84611753565b50915091506000611a4d85611ed9565b118015611a62575081611a5f85611ed9565b11155b15611b57576000611a73838661252f565b611a7d9084613356565b9050611a88856116c6565b6001600160a01b0316826001600160a01b0316867fc9b9afd9684b23c6b22a41016c08e8954ac118220c0a52f00b8774c46580e9a384604051611acd91815260200190565b60405180910390a4611ade856116c6565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015611b16573d6000803e3d6000fd5b50600085815260076020908152604080832080546001600160a01b031916815560018101849055600201839055600690915281205561119761118d866116c6565b50505050505050565b6000546001600160a01b03163314611b8a5760405162461bcd60e51b8152600401610abc90613103565b6000918252600f6020526040909120805463ffffffff191663ffffffff909216919091179055565b600082815260036020526040902080546060919083908110611bd657611bd6613054565b906000526020600020018054611beb9061306a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c179061306a565b8015611c645780601f10611c3957610100808354040283529160200191611c64565b820191906000526020600020905b815481529060010190602001808311611c4757829003601f168201915b5050505050905092915050565b6000546001600160a01b03163314611c9b5760405162461bcd60e51b8152600401610abc90613103565b806011548110611cbd5760405162461bcd60e51b8152600401610abc9061331f565b6000828152600e602090815260408083208054600181018255908452828420825193840190925292825290910190610d299082613186565b6000546001600160a01b03163314611d1f5760405162461bcd60e51b8152600401610abc90613103565b63ffffffff909216600090815260046020526040902080546001600160a01b039092166001600160a01b031990921691909117815560010155565b6060600b8054610a169061306a565b600082815260106020526040902054601154606091908110611d9d5760405162461bcd60e51b8152600401610abc9061331f565b6000848152601060209081526040808320548352600e90915290208054849081106114f1576114f1613054565b6000546001600160a01b031615611e195760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b6044820152606401610abc565b600080546001600160a01b0319163390811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a362015180600555600a611e6b8482613186565b50600b611e788382613186565b506000805260046020527f17ef568e3e12ab5b9c7254a8d58478811de00f9e6eb34345acd53bf8fd09d3ec80546001600160a01b031916331790557f17ef568e3e12ab5b9c7254a8d58478811de00f9e6eb34345acd53bf8fd09d3ed555050565b6000818152600c60205260408120546001600160a01b031680611f0e5760405162461bcd60e51b8152600401610abc9061336d565b505060009081526006602052604090205490565b6000546001600160a01b03163314611f4c5760405162461bcd60e51b8152600401610abc90613103565b610ead848484846128db565b6000611f66338585856125c2565b7f3ba9136826ac751de05d770d8d34fa4440ada49a5fb0e9aa1678aece66dad97682604051611f959190612b69565b60405180910390a15060019392505050565b6000546001600160a01b03163314611fd15760405162461bcd60e51b8152600401610abc90613103565b60005b82811015610d29576000828152600e6020908152604080832080546001810182559084528284208251938401909252928252909101906120149082613186565b508061201f81613246565b915050611fd4565b60008181526010602052604090205460115460609190811061205b5760405162461bcd60e51b8152600401610abc9061331f565b6000838152601060209081526040808320548352600e9091528120805490919061208757612087613054565b90600052602060002001805461209c9061306a565b80601f01602080910402602001604051908101604052809291908181526020018280546120c89061306a565b80156121155780601f106120ea57610100808354040283529160200191612115565b820191906000526020600020905b8154815290600101906020018083116120f857829003601f168201915b5050505050915050919050565b60003361212e836116c6565b6001600160a01b0316146121545760405162461bcd60e51b8152600401610abc906133e2565b6001600160a01b03831661217a5760405162461bcd60e51b8152600401610abc90613428565b600082815260066020526040812055336000908152600d602052604081208054600192906121a9908490613356565b90915550506001600160a01b0383166000908152600d602052604081208054600192906121d79084906130eb565b90915550506000828152600c602052604080822080546001600160a01b0319166001600160a01b0387169081179091559051849233917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a450600192915050565b6000546001600160a01b031633146122645760405162461bcd60e51b8152600401610abc90613103565b6001600160a01b038216600081815260016020908152604091829020805460ff19168515159081179091558251938452908301527f6b0f890a293c8f56a7635ad061c90250965b8af8e8bdbeb56d434b97281a7462910160405180910390a15050565b60608160115481106122eb5760405162461bcd60e51b8152600401610abc9061331f565b6000838152600e6020908152604080832080548251818502810185019093528083529193909284015b828210156114a05783829060005260206000200180546123339061306a565b80601f016020809104026020016040519081016040528092919081815260200182805461235f9061306a565b80156123ac5780601f10612381576101008083540402835291602001916123ac565b820191906000526020600020905b81548152906001019060200180831161238f57829003601f168201915b505050505081526020019060010190612314565b6000546001600160a01b031633146123ea5760405162461bcd60e51b8152600401610abc90613103565b6001600160a01b03811661244f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610abc565b61245881612916565b50565b600083815260036020908152604082208054600181018255908352912001610ead82848361325f565b6124dd82828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052508981526003602052604090208054909350889250821090506112cc576112cc613054565b6000858152600360205260409020805485908110610e5a57610e5a613054565b600061250b33600954612966565b5060098054908190600061251e83613246565b919050555061252c81612974565b90565b60008181526008602090815260408083205463ffffffff168084526004909252822080546001909101546001600160a01b039091169083620186a06125748389613469565b61257e9190613488565b6040519091506001600160a01b0384169082156108fc029083906000818181858888f193505050501580156125b7573d6000803e3d6000fd5b509695505050505050565b836001600160a01b03166125d5836116c6565b6001600160a01b0316146125fb5760405162461bcd60e51b8152600401610abc906133e2565b6001600160a01b0383166126215760405162461bcd60e51b8152600401610abc90613428565b6000828152600660205260408120556001600160a01b0384166000908152600d60205260408120805460019290612659908490613356565b90915550506001600160a01b0383166000908152600d602052604081208054600192906126879084906130eb565b90915550506000828152600c6020526040902080546001600160a01b0319166001600160a01b0385169081179091553b1561273357604051630a85bd0160e11b81526001600160a01b0384169063150b7a02906126ee9033908890879087906004016134aa565b6020604051808303816000875af115801561270d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061273191906134e7565b505b81836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b80516060908390839061278f5761278f613511565b60008151835161279f91906130eb565b67ffffffffffffffff8111156127b7576127b7612bbe565b6040519080825280601f01601f1916602001820160405280156127e1576020820181803683370190505b509050806000805b85518210156128595785828151811061280457612804613054565b01602001516001600160f81b031916838261281e81613246565b93508151811061283057612830613054565b60200101906001600160f81b031916908160001a9053508161285181613246565b9250506127e9565b600091505b84518210156128ce5784828151811061287957612879613054565b01602001516001600160f81b031916838261289381613246565b9350815181106128a5576128a5613054565b60200101906001600160f81b031916908160001a905350816128c681613246565b92505061285e565b5090979650505050505050565b6000848152600360205260409020805483918391869081106128ff576128ff613054565b906000526020600020019182610e7092919061325f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61297082826129c1565b5050565b600081815260036020526040812054900361245857600081815260036020908152604080832080546001810182559084528284208251938401909252928252909101906129709082613186565b6001600160a01b038216612a175760405162461bcd60e51b815260206004820152601d60248201527f4e46543a206d696e7420746f20746865207a65726f20616464726573730000006044820152606401610abc565b6000818152600c60205260409020546001600160a01b031615612a7c5760405162461bcd60e51b815260206004820152601960248201527f4e46543a20746f6b656e20616c7265616479206d696e746564000000000000006044820152606401610abc565b6001600160a01b0382166000908152600d60205260408120805460019290612aa59084906130eb565b90915550506000818152600c602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060208284031215612b1557600080fd5b5035919050565b6000815180845260005b81811015612b4257602081850181015186830182015201612b26565b81811115612b54576000602083870101525b50601f01601f19169290920160200192915050565b602081526000612b7c6020830184612b1c565b9392505050565b60008060408385031215612b9657600080fd5b50508035926020909101359150565b803563ffffffff81168114612bb957600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612bef57612bef612bbe565b604051601f8501601f19908116603f01168101908282118183101715612c1757612c17612bbe565b81604052809350858152868686011115612c3057600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612c5b57600080fd5b612b7c83833560208501612bd4565b60008060408385031215612c7d57600080fd5b612c8683612ba5565b9150602083013567ffffffffffffffff811115612ca257600080fd5b612cae85828601612c4a565b9150509250929050565b60008083601f840112612cca57600080fd5b50813567ffffffffffffffff811115612ce257600080fd5b602083019150836020828501011115612cfa57600080fd5b9250929050565b600080600060408486031215612d1657600080fd5b83359250602084013567ffffffffffffffff811115612d3457600080fd5b612d4086828701612cb8565b9497909650939450505050565b600080600060608486031215612d6257600080fd5b8335925060208401359150604084013567ffffffffffffffff811115612d8757600080fd5b612d9386828701612c4a565b9150509250925092565b60008060008060608587031215612db357600080fd5b8435935060208501359250604085013567ffffffffffffffff811115612dd857600080fd5b612de487828801612cb8565b95989497509550505050565b6000815180845260208085019450848260051b860182860160005b858110156128ce578383038952612e23838351612b1c565b98850198925090840190600101612e0b565b602081526000612b7c6020830184612df0565b6020815260008251602080840152612e636040840182612df0565b949350505050565b80356001600160a01b0381168114612bb957600080fd5b600060208284031215612e9457600080fd5b612b7c82612e6b565b60008060408385031215612eb057600080fd5b82359150612ec060208401612ba5565b90509250929050565b600060208284031215612edb57600080fd5b612b7c82612ba5565b600080600060608486031215612ef957600080fd5b612f0284612ba5565b9250612f1060208501612e6b565b9150604084013590509250925092565b600080600060608486031215612f3557600080fd5b833567ffffffffffffffff80821115612f4d57600080fd5b612f5987838801612c4a565b94506020860135915080821115612f6f57600080fd5b50612f7c86828701612c4a565b925050604084013590509250925092565b600080600060608486031215612fa257600080fd5b612fab84612e6b565b925060208401359150604084013567ffffffffffffffff811115612fce57600080fd5b8401601f81018613612fdf57600080fd5b612d9386823560208401612bd4565b6000806040838503121561300157600080fd5b61300a83612e6b565b946020939093013593505050565b6000806040838503121561302b57600080fd5b61303483612e6b565b91506020830135801515811461304957600080fd5b809150509250929050565b634e487b7160e01b600052603260045260246000fd5b600181811c9082168061307e57607f821691505b6020821081036114a757634e487b7160e01b600052602260045260246000fd5b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156130fe576130fe6130d5565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610d2957600081815260208120601f850160051c8101602086101561315f5750805b601f850160051c820191505b8181101561317e5782815560010161316b565b505050505050565b815167ffffffffffffffff8111156131a0576131a0612bbe565b6131b4816131ae845461306a565b84613138565b602080601f8311600181146131e957600084156131d15750858301515b600019600386901b1c1916600185901b17855561317e565b600085815260208120601f198616915b82811015613218578886015182559484019460019091019084016131f9565b50858210156132365787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060018201613258576132586130d5565b5060010190565b67ffffffffffffffff83111561327757613277612bbe565b61328b83613285835461306a565b83613138565b6000601f8411600181146132bf57600085156132a75750838201355b600019600387901b1c1916600186901b178355610e70565b600083815260209020601f19861690835b828110156132f057868501358255602094850194600190920191016132d0565b508682101561330d5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252601c908201527f5175657269656420636c61737320646f6573206e6f7420657869737400000000604082015260600190565b600082821015613368576133686130d5565b500390565b60208082526026908201527f4e46543a206f776e657220717565727920666f72206e6f6e6578697374656e74604082015265103a37b5b2b760d11b606082015260800190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208082526026908201527f4e46543a207472616e73666572206f6620746f6b656e2074686174206973206e60408201526537ba1037bbb760d11b606082015260800190565b60208082526021908201527f4e46543a207472616e7366657220746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6000816000190483118215151615613483576134836130d5565b500290565b6000826134a557634e487b7160e01b600052601260045260246000fd5b500490565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134dd90830184612b1c565b9695505050505050565b6000602082840312156134f957600080fd5b81516001600160e01b031981168114612b7c57600080fd5b634e487b7160e01b600052600160045260246000fdfea2646970667358221220165d5fce947fa06f9b816b2cf779f3ae316e67056035adcb2cd2848c296c4eb364736f6c634300080f0033
Deployed ByteCode
0x6080604052600436106102885760003560e01c806370a082311161015a578063b9186d7d116100c1578063c98e0c3c1161007a578063c98e0c3c1461086f578063cb177b1e1461088f578063d75d1e66146108af578063e29fb036146108f7578063e64700591461090d578063f2fde38b1461092d57600080fd5b8063b9186d7d146107a2578063bb053717146107c2578063be45fd62146107e2578063be67105814610802578063c1940f1b14610822578063c87b56dd1461084f57600080fd5b80638da5cb5b116101135780638da5cb5b146106f95780638e39e18c14610717578063911006951461073757806395d89b411461074d5780639de4792e14610762578063b119490e1461078257600080fd5b806370a082311461060757806373baa6511461062757806374c29ce31461063a57806378317f3f146106995780637ab56e52146106b957806380483a6a146106d957600080fd5b80633d8073f1116101fe578063510910bb116101b7578063510910bb146104e8578063543dc7fa146105185780635a3b7e42146105385780636352211e1461056c578063648fbe40146105a4578063649ccc14146105c457600080fd5b80633d8073f11461040e5780633e0bb7831461042e5780634774d93f1461044e5780634bb2ddd41461046e5780634c1720a41461049b5780634edea111146104bb57600080fd5b806325498c751161025057806325498c751461034e578063290e008c1461036e5780632a6d3f441461038e5780633054d9cb146103ae5780633add5fa1146103ce5780633c65b3eb146103ee57600080fd5b806302ff368a1461028d57806306fdde03146102c35780630eaaf4c8146102d85780631d734c8f146103085780631f38e6541461032c575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612b03565b61094d565b6040516102ba9190612b69565b60405180910390f35b3480156102cf57600080fd5b506102ad610a07565b3480156102e457600080fd5b506102f86102f3366004612b03565b610a99565b60405190151581526020016102ba565b34801561031457600080fd5b5061031e60115481565b6040519081526020016102ba565b34801561033857600080fd5b5061034c610347366004612b83565b610bfe565b005b34801561035a57600080fd5b5061034c610369366004612c6a565b610c3a565b34801561037a57600080fd5b5061034c610389366004612d01565b610ccb565b34801561039a57600080fd5b506102f86103a9366004612d01565b610d2e565b3480156103ba57600080fd5b5061034c6103c9366004612d4d565b610deb565b3480156103da57600080fd5b5061034c6103e9366004612d9d565b610e77565b3480156103fa57600080fd5b5061031e610409366004612b03565b610eb3565b34801561041a57600080fd5b5061034c610429366004612d9d565b610f7e565b34801561043a57600080fd5b506102ad610449366004612b83565b6111a1565b34801561045a57600080fd5b5061034c610469366004612d4d565b61125a565b34801561047a57600080fd5b5061048e610489366004612b03565b61138d565b6040516102ba9190612e35565b3480156104a757600080fd5b506102ad6104b6366004612b83565b6114ad565b3480156104c757600080fd5b506104db6104d6366004612b03565b61158d565b6040516102ba9190612e48565b3480156104f457600080fd5b506102f8610503366004612e82565b60016020526000908152604090205460ff1681565b34801561052457600080fd5b5061031e610533366004612b03565b611682565b34801561054457600080fd5b5060408051808201909152600b81526a10d85b1b1a5cdd1bd3919560aa1b60208201526102ad565b34801561057857600080fd5b5061058c610587366004612b03565b6116c6565b6040516001600160a01b0390911681526020016102ba565b3480156105b057600080fd5b5061034c6105bf366004612e9d565b611701565b3480156105d057600080fd5b506105e46105df366004612b03565b611753565b604080519384526001600160a01b039092166020840152908201526060016102ba565b34801561061357600080fd5b5061031e610622366004612e82565b6117bb565b61034c610635366004612d01565b61183f565b34801561064657600080fd5b5061067a610655366004612ec9565b600460205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b0390931683526020830191909152016102ba565b3480156106a557600080fd5b5061034c6106b4366004612e9d565b611b60565b3480156106c557600080fd5b506102ad6106d4366004612b83565b611bb2565b3480156106e557600080fd5b5061034c6106f4366004612b03565b611c71565b34801561070557600080fd5b506000546001600160a01b031661058c565b34801561072357600080fd5b5061034c610732366004612ee4565b611cf5565b34801561074357600080fd5b5061031e60055481565b34801561075957600080fd5b506102ad611d5a565b34801561076e57600080fd5b506102ad61077d366004612b83565b611d69565b34801561078e57600080fd5b5061034c61079d366004612f20565b611dca565b3480156107ae57600080fd5b5061031e6107bd366004612b03565b611ed9565b3480156107ce57600080fd5b5061034c6107dd366004612d9d565b611f22565b3480156107ee57600080fd5b506102f86107fd366004612f8d565b611f58565b34801561080e57600080fd5b5061034c61081d366004612b83565b611fa7565b34801561082e57600080fd5b5061031e61083d366004612b03565b60106020526000908152604090205481565b34801561085b57600080fd5b506102ad61086a366004612b03565b612027565b34801561087b57600080fd5b506102f861088a366004612fee565b612122565b34801561089b57600080fd5b5061034c6108aa366004613018565b61223a565b3480156108bb57600080fd5b506108e26108ca366004612b03565b600f6020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016102ba565b34801561090357600080fd5b5061031e60095481565b34801561091957600080fd5b5061048e610928366004612b03565b6122c7565b34801561093957600080fd5b5061034c610948366004612e82565b6123c0565b600081815260036020526040812080546060929061096d5761096d613054565b9060005260206000200180546109829061306a565b80601f01602080910402602001604051908101604052809291908181526020018280546109ae9061306a565b80156109fb5780601f106109d0576101008083540402835291602001916109fb565b820191906000526020600020905b8154815290600101906020018083116109de57829003601f168201915b50505050509050919050565b6060600a8054610a169061306a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a429061306a565b8015610a8f5780601f10610a6457610100808354040283529160200191610a8f565b820191906000526020600020905b815481529060010190602001808311610a7257829003601f168201915b5050505050905090565b60006002805403610ac55760405162461bcd60e51b8152600401610abc9061309e565b60405180910390fd5b6002805560008080610ad685611753565b91945092509050336001600160a01b03831614610b405760405162461bcd60e51b815260206004820152602260248201527f43616e206e6f7420776974686472617720736f6d656f6e6520656c73657320626044820152611a5960f21b6064820152608401610abc565b600554610b4d90826130eb565b4211610b905760405162461bcd60e51b8152602060048201526012602482015271109a59081a5cc81d1a5b594b5b1bd8dad95960721b6044820152606401610abc565b6040516001600160a01b0383169084156108fc029085906000818181858888f19350505050158015610bc6573d6000803e3d6000fd5b5050506000928352505060076020526040812080546001600160a01b0319168155600180820183905560029182019290925581905590565b6000546001600160a01b03163314610c285760405162461bcd60e51b8152600401610abc90613103565b60009182526010602052604090912055565b6000546001600160a01b03163314610c645760405162461bcd60e51b8152600401610abc90613103565b6011546000908152600e6020908152604082208054600181018255908352912001610c8f8282613186565b50601180546000908152600f60205260408120805463ffffffff191663ffffffff861617905581549190610cc283613246565b91905055505050565b33610cde6000546001600160a01b031690565b6001600160a01b03161480610d0257503360009081526001602052604090205460ff165b610d1e5760405162461bcd60e51b8152600401610abc90613103565b610d2983838361245b565b505050565b6000610d39846116c6565b6001600160a01b0316336001600160a01b031614610da85760405162461bcd60e51b815260206004820152602660248201527f4e46543a206f6e6c79206f776e65722063616e206368616e6765204e465420636044820152651bdb9d195b9d60d21b6064820152608401610abc565b600084815260036020526040812080548592859291610dc957610dc9613054565b906000526020600020019182610de092919061325f565b506001949350505050565b6000546001600160a01b03163314610e155760405162461bcd60e51b8152600401610abc90613103565b826011548110610e375760405162461bcd60e51b8152600401610abc9061331f565b6000848152600e60205260409020805483919085908110610e5a57610e5a613054565b906000526020600020019081610e709190613186565b5050505050565b6000546001600160a01b03163314610ea15760405162461bcd60e51b8152600401610abc90613103565b610ead84848484612484565b50505050565b6000816011548110610ed75760405162461bcd60e51b8152600401610abc9061331f565b3360009081526001602052604090205460ff16610f2d5760405162461bcd60e51b8152602060048201526014602482015273135a5b9d195c881c9bdb19481c995c5d5a5c995960621b6044820152606401610abc565b610f356124fd565b6000818152601060209081526040808320879055958252600f8152858220548383526008909152949020805463ffffffff191663ffffffff909516949094179093555090919050565b8382828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050600254600119019150610fda90505760405162461bcd60e51b8152600401610abc9061309e565b6002805533610fe8876116c6565b6001600160a01b0316146110535760405162461bcd60e51b815260206004820152602c60248201527f53657474696e672061736b73206973206f6e6c7920616c6c6f77656420666f7260448201526b206f776e6564204e4654732160a01b6064820152608401610abc565b600086815260066020526040812086905560016002558061107384611753565b5091509150600061108385611ed9565b11801561109857508161109585611ed9565b11155b156111975760006110a9838661252f565b6110b39084613356565b90506110be856116c6565b6001600160a01b0316826001600160a01b0316867fc9b9afd9684b23c6b22a41016c08e8954ac118220c0a52f00b8774c46580e9a38460405161110391815260200190565b60405180910390a4611114856116c6565b6001600160a01b03166108fc829081150290604051600060405180830381858888f1935050505015801561114c573d6000803e3d6000fd5b50600085815260076020908152604080832080546001600160a01b031916815560018101849055600201839055600690915281205561119561118d866116c6565b8387876125c2565b505b5050505050505050565b600e60205281600052604060002081815481106111bd57600080fd5b906000526020600020016000915091505080546111d99061306a565b80601f01602080910402602001604051908101604052809291908181526020018280546112059061306a565b80156112525780601f1061122757610100808354040283529160200191611252565b820191906000526020600020905b81548152906001019060200180831161123557829003601f168201915b505050505081565b6000546001600160a01b031633146112845760405162461bcd60e51b8152600401610abc90613103565b8260115481106112a65760405162461bcd60e51b8152600401610abc9061331f565b6000848152600e60205260409020805461136d918491869081106112cc576112cc613054565b9060005260206000200180546112e19061306a565b80601f016020809104026020016040519081016040528092919081815260200182805461130d9061306a565b801561135a5780601f1061132f5761010080835404028352916020019161135a565b820191906000526020600020905b81548152906001019060200180831161133d57829003601f168201915b505050505061277a90919063ffffffff16565b6000858152600e60205260409020805485908110610e5a57610e5a613054565b6000818152601060205260409020546011546060919081106113c15760405162461bcd60e51b8152600401610abc9061331f565b6000838152601060209081526040808320548352600e825280832080548251818502810185019093528083529193909284015b828210156114a05783829060005260206000200180546114139061306a565b80601f016020809104026020016040519081016040528092919081815260200182805461143f9061306a565b801561148c5780601f106114615761010080835404028352916020019161148c565b820191906000526020600020905b81548152906001019060200180831161146f57829003601f168201915b5050505050815260200190600101906113f4565b5050505091505b50919050565b60608260115481106114d15760405162461bcd60e51b8152600401610abc9061331f565b6000848152600e602052604090208054849081106114f1576114f1613054565b9060005260206000200180546115069061306a565b80601f01602080910402602001604051908101604052809291908181526020018280546115329061306a565b801561157f5780601f106115545761010080835404028352916020019161157f565b820191906000526020600020905b81548152906001019060200180831161156257829003601f168201915b505050505091505092915050565b604080516020808201835260608252600084815260038252838120845181548085028201870187529381018481529495909491938593859285015b828210156116745783829060005260206000200180546115e79061306a565b80601f01602080910402602001604051908101604052809291908181526020018280546116139061306a565b80156116605780601f1061163557610100808354040283529160200191611660565b820191906000526020600020905b81548152906001019060200180831161164357829003601f168201915b5050505050815260200190600101906115c8565b505050915250909392505050565b60008181526010602052604081205460115481106116b25760405162461bcd60e51b8152600401610abc9061331f565b505060009081526010602052604090205490565b6000818152600c60205260408120546001600160a01b0316806116fb5760405162461bcd60e51b8152600401610abc9061336d565b92915050565b6000546001600160a01b0316331461172b5760405162461bcd60e51b8152600401610abc90613103565b600091825260086020526040909120805463ffffffff191663ffffffff909216919091179055565b6000818152600c6020526040812054819081906001600160a01b03168061178c5760405162461bcd60e51b8152600401610abc9061336d565b5050506000918252506007602052604090206001810154815460029092015490926001600160a01b0390921691565b60006001600160a01b0382166118235760405162461bcd60e51b815260206004820152602760248201527f4e46543a2062616c616e636520717565727920666f7220746865207a65726f206044820152666164647265737360c81b6064820152608401610abc565b506001600160a01b03166000908152600d602052604090205490565b8282828080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505060025460011901915061189b90505760405162461bcd60e51b8152600401610abc9061309e565b600280556000806118ab87611753565b509150915081341161190b5760405162461bcd60e51b8152602060048201526024808201527f4e657720626964206d7573742065786365656420746865206578697374696e67604482015263206f6e6560e01b6064820152608401610abc565b6000821561194b576040516001600160a01b0383169084156108fc029085906000818181858888f19350505050158015611949573d6000803e3d6000fd5b505b3461195589611ed9565b101561196b5761196488611ed9565b905061196e565b50345b600088815260076020526040908190206001810183905580546001600160a01b031916331781554260029091015551819089907f223d0d5db4846341da7a5cc902b1a7c597e63b6c73b1c6267dc931d290c7affb906119d0908b908b906133b3565b60405180910390a3346119e289611ed9565b1015611a2957336108fc6119f58a611ed9565b6119ff9034613356565b6040518115909202916000818181858888f19350505050158015611a27573d6000803e3d6000fd5b505b5050600160025550600080611a3d84611753565b50915091506000611a4d85611ed9565b118015611a62575081611a5f85611ed9565b11155b15611b57576000611a73838661252f565b611a7d9084613356565b9050611a88856116c6565b6001600160a01b0316826001600160a01b0316867fc9b9afd9684b23c6b22a41016c08e8954ac118220c0a52f00b8774c46580e9a384604051611acd91815260200190565b60405180910390a4611ade856116c6565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015611b16573d6000803e3d6000fd5b50600085815260076020908152604080832080546001600160a01b031916815560018101849055600201839055600690915281205561119761118d866116c6565b50505050505050565b6000546001600160a01b03163314611b8a5760405162461bcd60e51b8152600401610abc90613103565b6000918252600f6020526040909120805463ffffffff191663ffffffff909216919091179055565b600082815260036020526040902080546060919083908110611bd657611bd6613054565b906000526020600020018054611beb9061306a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c179061306a565b8015611c645780601f10611c3957610100808354040283529160200191611c64565b820191906000526020600020905b815481529060010190602001808311611c4757829003601f168201915b5050505050905092915050565b6000546001600160a01b03163314611c9b5760405162461bcd60e51b8152600401610abc90613103565b806011548110611cbd5760405162461bcd60e51b8152600401610abc9061331f565b6000828152600e602090815260408083208054600181018255908452828420825193840190925292825290910190610d299082613186565b6000546001600160a01b03163314611d1f5760405162461bcd60e51b8152600401610abc90613103565b63ffffffff909216600090815260046020526040902080546001600160a01b039092166001600160a01b031990921691909117815560010155565b6060600b8054610a169061306a565b600082815260106020526040902054601154606091908110611d9d5760405162461bcd60e51b8152600401610abc9061331f565b6000848152601060209081526040808320548352600e90915290208054849081106114f1576114f1613054565b6000546001600160a01b031615611e195760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b6044820152606401610abc565b600080546001600160a01b0319163390811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a362015180600555600a611e6b8482613186565b50600b611e788382613186565b506000805260046020527f17ef568e3e12ab5b9c7254a8d58478811de00f9e6eb34345acd53bf8fd09d3ec80546001600160a01b031916331790557f17ef568e3e12ab5b9c7254a8d58478811de00f9e6eb34345acd53bf8fd09d3ed555050565b6000818152600c60205260408120546001600160a01b031680611f0e5760405162461bcd60e51b8152600401610abc9061336d565b505060009081526006602052604090205490565b6000546001600160a01b03163314611f4c5760405162461bcd60e51b8152600401610abc90613103565b610ead848484846128db565b6000611f66338585856125c2565b7f3ba9136826ac751de05d770d8d34fa4440ada49a5fb0e9aa1678aece66dad97682604051611f959190612b69565b60405180910390a15060019392505050565b6000546001600160a01b03163314611fd15760405162461bcd60e51b8152600401610abc90613103565b60005b82811015610d29576000828152600e6020908152604080832080546001810182559084528284208251938401909252928252909101906120149082613186565b508061201f81613246565b915050611fd4565b60008181526010602052604090205460115460609190811061205b5760405162461bcd60e51b8152600401610abc9061331f565b6000838152601060209081526040808320548352600e9091528120805490919061208757612087613054565b90600052602060002001805461209c9061306a565b80601f01602080910402602001604051908101604052809291908181526020018280546120c89061306a565b80156121155780601f106120ea57610100808354040283529160200191612115565b820191906000526020600020905b8154815290600101906020018083116120f857829003601f168201915b5050505050915050919050565b60003361212e836116c6565b6001600160a01b0316146121545760405162461bcd60e51b8152600401610abc906133e2565b6001600160a01b03831661217a5760405162461bcd60e51b8152600401610abc90613428565b600082815260066020526040812055336000908152600d602052604081208054600192906121a9908490613356565b90915550506001600160a01b0383166000908152600d602052604081208054600192906121d79084906130eb565b90915550506000828152600c602052604080822080546001600160a01b0319166001600160a01b0387169081179091559051849233917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a450600192915050565b6000546001600160a01b031633146122645760405162461bcd60e51b8152600401610abc90613103565b6001600160a01b038216600081815260016020908152604091829020805460ff19168515159081179091558251938452908301527f6b0f890a293c8f56a7635ad061c90250965b8af8e8bdbeb56d434b97281a7462910160405180910390a15050565b60608160115481106122eb5760405162461bcd60e51b8152600401610abc9061331f565b6000838152600e6020908152604080832080548251818502810185019093528083529193909284015b828210156114a05783829060005260206000200180546123339061306a565b80601f016020809104026020016040519081016040528092919081815260200182805461235f9061306a565b80156123ac5780601f10612381576101008083540402835291602001916123ac565b820191906000526020600020905b81548152906001019060200180831161238f57829003601f168201915b505050505081526020019060010190612314565b6000546001600160a01b031633146123ea5760405162461bcd60e51b8152600401610abc90613103565b6001600160a01b03811661244f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610abc565b61245881612916565b50565b600083815260036020908152604082208054600181018255908352912001610ead82848361325f565b6124dd82828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052508981526003602052604090208054909350889250821090506112cc576112cc613054565b6000858152600360205260409020805485908110610e5a57610e5a613054565b600061250b33600954612966565b5060098054908190600061251e83613246565b919050555061252c81612974565b90565b60008181526008602090815260408083205463ffffffff168084526004909252822080546001909101546001600160a01b039091169083620186a06125748389613469565b61257e9190613488565b6040519091506001600160a01b0384169082156108fc029083906000818181858888f193505050501580156125b7573d6000803e3d6000fd5b509695505050505050565b836001600160a01b03166125d5836116c6565b6001600160a01b0316146125fb5760405162461bcd60e51b8152600401610abc906133e2565b6001600160a01b0383166126215760405162461bcd60e51b8152600401610abc90613428565b6000828152600660205260408120556001600160a01b0384166000908152600d60205260408120805460019290612659908490613356565b90915550506001600160a01b0383166000908152600d602052604081208054600192906126879084906130eb565b90915550506000828152600c6020526040902080546001600160a01b0319166001600160a01b0385169081179091553b1561273357604051630a85bd0160e11b81526001600160a01b0384169063150b7a02906126ee9033908890879087906004016134aa565b6020604051808303816000875af115801561270d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061273191906134e7565b505b81836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b80516060908390839061278f5761278f613511565b60008151835161279f91906130eb565b67ffffffffffffffff8111156127b7576127b7612bbe565b6040519080825280601f01601f1916602001820160405280156127e1576020820181803683370190505b509050806000805b85518210156128595785828151811061280457612804613054565b01602001516001600160f81b031916838261281e81613246565b93508151811061283057612830613054565b60200101906001600160f81b031916908160001a9053508161285181613246565b9250506127e9565b600091505b84518210156128ce5784828151811061287957612879613054565b01602001516001600160f81b031916838261289381613246565b9350815181106128a5576128a5613054565b60200101906001600160f81b031916908160001a905350816128c681613246565b92505061285e565b5090979650505050505050565b6000848152600360205260409020805483918391869081106128ff576128ff613054565b906000526020600020019182610e7092919061325f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61297082826129c1565b5050565b600081815260036020526040812054900361245857600081815260036020908152604080832080546001810182559084528284208251938401909252928252909101906129709082613186565b6001600160a01b038216612a175760405162461bcd60e51b815260206004820152601d60248201527f4e46543a206d696e7420746f20746865207a65726f20616464726573730000006044820152606401610abc565b6000818152600c60205260409020546001600160a01b031615612a7c5760405162461bcd60e51b815260206004820152601960248201527f4e46543a20746f6b656e20616c7265616479206d696e746564000000000000006044820152606401610abc565b6001600160a01b0382166000908152600d60205260408120805460019290612aa59084906130eb565b90915550506000818152600c602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060208284031215612b1557600080fd5b5035919050565b6000815180845260005b81811015612b4257602081850181015186830182015201612b26565b81811115612b54576000602083870101525b50601f01601f19169290920160200192915050565b602081526000612b7c6020830184612b1c565b9392505050565b60008060408385031215612b9657600080fd5b50508035926020909101359150565b803563ffffffff81168114612bb957600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612bef57612bef612bbe565b604051601f8501601f19908116603f01168101908282118183101715612c1757612c17612bbe565b81604052809350858152868686011115612c3057600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612c5b57600080fd5b612b7c83833560208501612bd4565b60008060408385031215612c7d57600080fd5b612c8683612ba5565b9150602083013567ffffffffffffffff811115612ca257600080fd5b612cae85828601612c4a565b9150509250929050565b60008083601f840112612cca57600080fd5b50813567ffffffffffffffff811115612ce257600080fd5b602083019150836020828501011115612cfa57600080fd5b9250929050565b600080600060408486031215612d1657600080fd5b83359250602084013567ffffffffffffffff811115612d3457600080fd5b612d4086828701612cb8565b9497909650939450505050565b600080600060608486031215612d6257600080fd5b8335925060208401359150604084013567ffffffffffffffff811115612d8757600080fd5b612d9386828701612c4a565b9150509250925092565b60008060008060608587031215612db357600080fd5b8435935060208501359250604085013567ffffffffffffffff811115612dd857600080fd5b612de487828801612cb8565b95989497509550505050565b6000815180845260208085019450848260051b860182860160005b858110156128ce578383038952612e23838351612b1c565b98850198925090840190600101612e0b565b602081526000612b7c6020830184612df0565b6020815260008251602080840152612e636040840182612df0565b949350505050565b80356001600160a01b0381168114612bb957600080fd5b600060208284031215612e9457600080fd5b612b7c82612e6b565b60008060408385031215612eb057600080fd5b82359150612ec060208401612ba5565b90509250929050565b600060208284031215612edb57600080fd5b612b7c82612ba5565b600080600060608486031215612ef957600080fd5b612f0284612ba5565b9250612f1060208501612e6b565b9150604084013590509250925092565b600080600060608486031215612f3557600080fd5b833567ffffffffffffffff80821115612f4d57600080fd5b612f5987838801612c4a565b94506020860135915080821115612f6f57600080fd5b50612f7c86828701612c4a565b925050604084013590509250925092565b600080600060608486031215612fa257600080fd5b612fab84612e6b565b925060208401359150604084013567ffffffffffffffff811115612fce57600080fd5b8401601f81018613612fdf57600080fd5b612d9386823560208401612bd4565b6000806040838503121561300157600080fd5b61300a83612e6b565b946020939093013593505050565b6000806040838503121561302b57600080fd5b61303483612e6b565b91506020830135801515811461304957600080fd5b809150509250929050565b634e487b7160e01b600052603260045260246000fd5b600181811c9082168061307e57607f821691505b6020821081036114a757634e487b7160e01b600052602260045260246000fd5b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156130fe576130fe6130d5565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610d2957600081815260208120601f850160051c8101602086101561315f5750805b601f850160051c820191505b8181101561317e5782815560010161316b565b505050505050565b815167ffffffffffffffff8111156131a0576131a0612bbe565b6131b4816131ae845461306a565b84613138565b602080601f8311600181146131e957600084156131d15750858301515b600019600386901b1c1916600185901b17855561317e565b600085815260208120601f198616915b82811015613218578886015182559484019460019091019084016131f9565b50858210156132365787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060018201613258576132586130d5565b5060010190565b67ffffffffffffffff83111561327757613277612bbe565b61328b83613285835461306a565b83613138565b6000601f8411600181146132bf57600085156132a75750838201355b600019600387901b1c1916600186901b178355610e70565b600083815260209020601f19861690835b828110156132f057868501358255602094850194600190920191016132d0565b508682101561330d5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252601c908201527f5175657269656420636c61737320646f6573206e6f7420657869737400000000604082015260600190565b600082821015613368576133686130d5565b500390565b60208082526026908201527f4e46543a206f776e657220717565727920666f72206e6f6e6578697374656e74604082015265103a37b5b2b760d11b606082015260800190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208082526026908201527f4e46543a207472616e73666572206f6620746f6b656e2074686174206973206e60408201526537ba1037bbb760d11b606082015260800190565b60208082526021908201527f4e46543a207472616e7366657220746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6000816000190483118215151615613483576134836130d5565b500290565b6000826134a557634e487b7160e01b600052601260045260246000fd5b500490565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134dd90830184612b1c565b9695505050505050565b6000602082840312156134f957600080fd5b81516001600160e01b031981168114612b7c57600080fd5b634e487b7160e01b600052600160045260246000fdfea2646970667358221220165d5fce947fa06f9b816b2cf779f3ae316e67056035adcb2cd2848c296c4eb364736f6c634300080f0033