ETH Price: $3,415.75 (-1.15%)
Gas: 10 Gwei

Token

DozerDollV3 (Dozer)
 

Overview

Max Total Supply

336 Dozer

Holders

204

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Dozer
0x226a9db4bd85f1dee006b24c4c278dd281e2aa88
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DozerDollV3

Compiler Version
v0.5.15+commit.6a57276f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-11
*/

// File: @openzeppelin/contracts/GSN/Context.sol

pragma solidity ^0.5.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/introspection/IERC165.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.5.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
contract IERC721 is IERC165 {
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of NFTs in `owner`'s account.
     */
    function balanceOf(address owner) public view returns (uint256 balance);

    /**
     * @dev Returns the owner of the NFT specified by `tokenId`.
     */
    function ownerOf(uint256 tokenId) public view returns (address owner);

    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     *
     *
     * Requirements:
     * - `from`, `to` cannot be zero.
     * - `tokenId` must be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this
     * NFT by either {approve} or {setApprovalForAll}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public;
    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     * Requirements:
     * - If the caller is not `from`, it must be approved to move this NFT by
     * either {approve} or {setApprovalForAll}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public;
    function approve(address to, uint256 tokenId) public;
    function getApproved(uint256 tokenId) public view returns (address operator);

    function setApprovalForAll(address operator, bool _approved) public;
    function isApprovedForAll(address owner, address operator) public view returns (bool);


    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public;
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.5.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
contract IERC721Receiver {
    /**
     * @notice Handle the receipt of an NFT
     * @dev The ERC721 smart contract calls this function on the recipient
     * after a {IERC721-safeTransferFrom}. This function MUST return the function selector,
     * otherwise the caller will revert the transaction. The selector to be
     * returned can be obtained as `this.onERC721Received.selector`. This
     * function MAY throw to revert and reject the transfer.
     * Note: the ERC721 contract address is always the message sender.
     * @param operator The address which called `safeTransferFrom` function
     * @param from The address which previously owned the token
     * @param tokenId The NFT identifier which is being transferred
     * @param data Additional data with no specified format
     * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data)
    public returns (bytes4);
}

// File: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin/contracts/utils/Address.sol

pragma solidity ^0.5.5;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following 
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Converts an `address` into `address payable`. Note that this is
     * simply a type cast: the actual underlying value is not changed.
     *
     * _Available since v2.4.0._
     */
    function toPayable(address account) internal pure returns (address payable) {
        return address(uint160(account));
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     *
     * _Available since v2.4.0._
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-call-value
        (bool success, ) = recipient.call.value(amount)("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}

// File: @openzeppelin/contracts/drafts/Counters.sol

pragma solidity ^0.5.0;


/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath}
 * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never
 * directly accessed.
 */
library Counters {
    using SafeMath for uint256;

    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        // The {SafeMath} overflow check can be skipped here, see the comment at the top
        counter._value += 1;
    }

    function decrement(Counter storage counter) internal {
        counter._value = counter._value.sub(1);
    }
}

// File: @openzeppelin/contracts/introspection/ERC165.sol

pragma solidity ^0.5.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol

pragma solidity ^0.5.0;








/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721 {
    using SafeMath for uint256;
    using Address for address;
    using Counters for Counters.Counter;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from token ID to owner
    mapping (uint256 => address) private _tokenOwner;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to number of owned token
    mapping (address => Counters.Counter) private _ownedTokensCount;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    constructor () public {
        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner address to query the balance of
     * @return uint256 representing the amount owned by the passed address
     */
    function balanceOf(address owner) public view returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");

        return _ownedTokensCount[owner].current();
    }

    /**
     * @dev Gets the owner of the specified token ID.
     * @param tokenId uint256 ID of the token to query the owner of
     * @return address currently marked as the owner of the given token ID
     */
    function ownerOf(uint256 tokenId) public view returns (address) {
        address owner = _tokenOwner[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");

        return owner;
    }

    /**
     * @dev Approves another address to transfer the given token ID
     * The zero address indicates there is no approved address.
     * There can only be one approved address per token at a given time.
     * Can only be called by the token owner or an approved operator.
     * @param to address to be approved for the given token ID
     * @param tokenId uint256 ID of the token to be approved
     */
    function approve(address to, uint256 tokenId) public {
        address owner = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Gets the approved address for a token ID, or zero if no address set
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to query the approval of
     * @return address currently approved for the given token ID
     */
    function getApproved(uint256 tokenId) public view returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Sets or unsets the approval of a given operator
     * An operator is allowed to transfer all tokens of the sender on their behalf.
     * @param to operator address to set the approval
     * @param approved representing the status of the approval to be set
     */
    function setApprovalForAll(address to, bool approved) public {
        require(to != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][to] = approved;
        emit ApprovalForAll(_msgSender(), to, approved);
    }

    /**
     * @dev Tells whether an operator is approved by a given owner.
     * @param owner owner address which you want to query the approval of
     * @param operator operator address which you want to query the approval of
     * @return bool whether the given operator is approved by the given owner
     */
    function isApprovedForAll(address owner, address operator) public view returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Transfers the ownership of a given token ID to another address.
     * Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     * Requires the msg.sender to be the owner, approved, or operator.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function transferFrom(address from, address to, uint256 tokenId) public {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transferFrom(from, to, tokenId);
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received},
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received},
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the _msgSender() to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes data to send along with a safe transfer check
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransferFrom(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes data to send along with a safe transfer check
     */
    function _safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) internal {
        _transferFrom(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether the specified token exists.
     * @param tokenId uint256 ID of the token to query the existence of
     * @return bool whether the token exists
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        address owner = _tokenOwner[tokenId];
        return owner != address(0);
    }

    /**
     * @dev Returns whether the given spender can transfer a given token ID.
     * @param spender address of the spender to query
     * @param tokenId uint256 ID of the token to be transferred
     * @return bool whether the msg.sender is approved for the given token ID,
     * is an operator of the owner, or is the owner of the token
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Internal function to safely mint a new token.
     * Reverts if the given token ID already exists.
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _safeMint(address to, uint256 tokenId) internal {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Internal function to safely mint a new token.
     * Reverts if the given token ID already exists.
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     * @param _data bytes data to send along with a safe transfer check
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _tokenOwner[tokenId] = to;
        _ownedTokensCount[to].increment();

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use {_burn} instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        require(ownerOf(tokenId) == owner, "ERC721: burn of token that is not own");

        _clearApproval(tokenId);

        _ownedTokensCount[owner].decrement();
        _tokenOwner[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(uint256 tokenId) internal {
        _burn(ownerOf(tokenId), tokenId);
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(address from, address to, uint256 tokenId) internal {
        require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _clearApproval(tokenId);

        _ownedTokensCount[from].decrement();
        _ownedTokensCount[to].increment();

        _tokenOwner[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * This is an internal detail of the `ERC721` contract and its use is deprecated.
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        internal returns (bool)
    {
        if (!to.isContract()) {
            return true;
        }
        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = to.call(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ));
        if (!success) {
            if (returndata.length > 0) {
                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert("ERC721: transfer to non ERC721Receiver implementer");
            }
        } else {
            bytes4 retval = abi.decode(returndata, (bytes4));
            return (retval == _ERC721_RECEIVED);
        }
    }

    /**
     * @dev Private function to clear current approval of a given token ID.
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _clearApproval(uint256 tokenId) private {
        if (_tokenApprovals[tokenId] != address(0)) {
            _tokenApprovals[tokenId] = address(0);
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol

pragma solidity ^0.5.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721Enumerable is IERC721 {
    function totalSupply() public view returns (uint256);
    function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId);

    function tokenByIndex(uint256 index) public view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721Enumerable.sol

pragma solidity ^0.5.0;





/**
 * @title ERC-721 Non-Fungible Token with optional enumeration extension logic
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721Enumerable is Context, ERC165, ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => uint256[]) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    /**
     * @dev Constructor function.
     */
    constructor () public {
        // register the supported interface to conform to ERC721Enumerable via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @dev Gets the token ID at a given index of the tokens list of the requested owner.
     * @param owner address owning the tokens list to be accessed
     * @param index uint256 representing the index to be accessed of the requested tokens list
     * @return uint256 token ID at the given index of the tokens list owned by the requested address
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev Gets the total amount of tokens stored by the contract.
     * @return uint256 representing the total amount of tokens
     */
    function totalSupply() public view returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev Gets the token ID at a given index of all the tokens in this contract
     * Reverts if the index is greater or equal to the total number of tokens.
     * @param index uint256 representing the index to be accessed of the tokens list
     * @return uint256 token ID at the given index of the tokens list
     */
    function tokenByIndex(uint256 index) public view returns (uint256) {
        require(index < totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to transferFrom, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(address from, address to, uint256 tokenId) internal {
        super._transferFrom(from, to, tokenId);

        _removeTokenFromOwnerEnumeration(from, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to address the beneficiary that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        super._mint(to, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);

        _addTokenToAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use {ERC721-_burn} instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        _removeTokenFromOwnerEnumeration(owner, tokenId);
        // Since tokenId will be deleted, we can clear its slot in _ownedTokensIndex to trigger a gas refund
        _ownedTokensIndex[tokenId] = 0;

        _removeTokenFromAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Gets the list of token IDs of the requested owner.
     * @param owner address owning the tokens
     * @return uint256[] List of token IDs owned by the requested address
     */
    function _tokensOfOwner(address owner) internal view returns (uint256[] storage) {
        return _ownedTokens[owner];
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        _ownedTokensIndex[tokenId] = _ownedTokens[to].length;
        _ownedTokens[to].push(tokenId);
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _ownedTokens[from].length.sub(1);
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        _ownedTokens[from].length--;

        // Note that _ownedTokensIndex[tokenId] hasn't been cleared: it still points to the old slot (now occupied by
        // lastTokenId, or just over the end of the array if the token was the last one).
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length.sub(1);
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        _allTokens.length--;
        _allTokensIndex[tokenId] = 0;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol

pragma solidity ^0.5.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721Metadata is IERC721 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721Metadata.sol

pragma solidity ^0.5.0;





contract ERC721Metadata is Context, ERC165, ERC721, IERC721Metadata {
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Base URI
    string private _baseURI;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /**
     * @dev Constructor function
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
    }

    /**
     * @dev Gets the token name.
     * @return string representing the token name
     */
    function name() external view returns (string memory) {
        return _name;
    }

    /**
     * @dev Gets the token symbol.
     * @return string representing the token symbol
     */
    function symbol() external view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the URI for a given token ID. May return an empty string.
     *
     * If the token's URI is non-empty and a base URI was set (via
     * {_setBaseURI}), it will be added to the token ID's URI as a prefix.
     *
     * Reverts if the token ID does not exist.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];

        // Even if there is a base URI, it is only appended to non-empty token-specific URIs
        if (bytes(_tokenURI).length == 0) {
            return "";
        } else {
            // abi.encodePacked is being used to concatenate strings
            return string(abi.encodePacked(_baseURI, _tokenURI));
        }
    }

    /**
     * @dev Internal function to set the token URI for a given token.
     *
     * Reverts if the token ID does not exist.
     *
     * TIP: if all token IDs share a prefix (e.g. if your URIs look like
     * `http://api.myproject.com/token/<id>`), use {_setBaseURI} to store
     * it and save gas.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI}.
     *
     * _Available since v2.5.0._
     */
    function _setBaseURI(string memory baseURI) internal {
        _baseURI = baseURI;
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a preffix in {tokenURI} to each token's URI, when
    * they are non-empty.
    *
    * _Available since v2.5.0._
    */
    function baseURI() external view returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned by the msg.sender
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/ERC721Full.sol

pragma solidity ^0.5.0;




/**
 * @title Full ERC721 Token
 * @dev This implementation includes all the required and some optional functionality of the ERC721 standard
 * Moreover, it includes approve all functionality using operator terminology.
 *
 * See https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721Full is ERC721, ERC721Enumerable, ERC721Metadata {
    constructor (string memory name, string memory symbol) public ERC721Metadata(name, symbol) {
        // solhint-disable-previous-line no-empty-blocks
    }
}

// File: @openzeppelin/contracts/access/Roles.sol

pragma solidity ^0.5.0;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

// File: @openzeppelin/contracts/access/roles/MinterRole.sol

pragma solidity ^0.5.0;



contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

// File: @openzeppelin/contracts/token/ERC721/ERC721Mintable.sol

pragma solidity ^0.5.0;



/**
 * @title ERC721Mintable
 * @dev ERC721 minting logic.
 */
contract ERC721Mintable is ERC721, MinterRole {
    /**
     * @dev Function to mint tokens.
     * @param to The address that will receive the minted token.
     * @param tokenId The token id to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(address to, uint256 tokenId) public onlyMinter returns (bool) {
        _mint(to, tokenId);
        return true;
    }

    /**
     * @dev Function to safely mint tokens.
     * @param to The address that will receive the minted token.
     * @param tokenId The token id to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function safeMint(address to, uint256 tokenId) public onlyMinter returns (bool) {
        _safeMint(to, tokenId);
        return true;
    }

    /**
     * @dev Function to safely mint tokens.
     * @param to The address that will receive the minted token.
     * @param tokenId The token id to mint.
     * @param _data bytes data to send along with a safe transfer check.
     * @return A boolean that indicates if the operation was successful.
     */
    function safeMint(address to, uint256 tokenId, bytes memory _data) public onlyMinter returns (bool) {
        _safeMint(to, tokenId, _data);
        return true;
    }
}

// File: @openzeppelin/contracts/token/ERC721/ERC721MetadataMintable.sol

pragma solidity ^0.5.0;




/**
 * @title ERC721MetadataMintable
 * @dev ERC721 minting logic with metadata.
 */
contract ERC721MetadataMintable is ERC721, ERC721Metadata, MinterRole {
    /**
     * @dev Function to mint tokens.
     * @param to The address that will receive the minted tokens.
     * @param tokenId The token id to mint.
     * @param tokenURI The token URI of the minted token.
     * @return A boolean that indicates if the operation was successful.
     */
    function mintWithTokenURI(address to, uint256 tokenId, string memory tokenURI) public onlyMinter returns (bool) {
        _mint(to, tokenId);
        _setTokenURI(tokenId, tokenURI);
        return true;
    }
}

// File: @openzeppelin/contracts/token/ERC721/ERC721Burnable.sol

pragma solidity ^0.5.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns a specific ERC721 token.
     * @param tokenId uint256 id of the ERC721 token to be burned.
     */
    function burn(uint256 tokenId) public {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

// File: @openzeppelin/contracts/ownership/Ownable.sol

pragma solidity ^0.5.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _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 onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/dozerDoll/DozerDollV3.sol

pragma solidity >=0.5.0 <0.6.0;








contract DozerDollV3 is ERC721Full, ERC721Mintable, ERC721MetadataMintable, ERC721Burnable, Ownable {
  using SafeMath for uint256;
  uint256 internal tokenId = 1;

  event DollBurn(address _to, uint256 tokenId);

  constructor (
    string memory _name,
    string memory _symbol,
    string memory _baseURI
  )
    ERC721Mintable()
    ERC721Full(_name, _symbol) public {
    _setBaseURI(_baseURI);
  }


  function dollMint (
    address _to
  ) public {
      _mint(_to, tokenId);
      _setTokenURI(tokenId, uint2str(tokenId));

      tokenId = tokenId.add(1);
  }


  function dollMintMultiple (
    address[] memory _to
  ) public {
    for (uint256 i = 0 ; i < _to.length; i++) {
      dollMint(_to[i]);
    }
  }


  function dollBurn (
    uint256 _tokenId
  ) public {
    burn(_tokenId);

    emit DollBurn(msg.sender, _tokenId);
  }


  function dollBurnMultiple (
    uint256[] memory _tokenId
  ) public {
    for (uint256 i = 0 ; i < _tokenId.length; i++) {
      dollBurn(_tokenId[i]);
    }
  }


  function transfer (
    address _to,
    uint256 _tokenId
  ) public {
    safeTransferFrom(msg.sender, _to, _tokenId);
  }


  function transferMultiple (
    address _to,
    uint256[] memory _tokenId
  ) public {
    for (uint i = 0; i < _tokenId.length; i++) {
      safeTransferFrom(msg.sender, _to, _tokenId[i]);
    }
  }


  function setBaseURI (
    string memory _baseURI
  ) public onlyOwner {
    _setBaseURI(_baseURI);
  }

  function uint2str (
    uint _i
  ) internal pure returns (string memory _uintAsString) {
    if (_i == 0) {
        return "0";
    }
    uint j = _i;
    uint len;
    while (j != 0) {
        len++;
        j /= 10;
    }
    bytes memory bstr = new bytes(len);
    uint k = len - 1;
    while (_i != 0) {
        bstr[k--] = byte(uint8(48 + _i % 10));
        _i /= 10;
    }
    return string(bstr);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseURI","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"DollBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"dollBurn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256[]","name":"_tokenId","type":"uint256[]"}],"name":"dollBurnMultiple","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"dollMint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"dollMintMultiple","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"mintWithTokenURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenId","type":"uint256[]"}],"name":"transferMultiple","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040526001600f553480156200001657600080fd5b50604051620032dd380380620032dd833981810160405260608110156200003c57600080fd5b81019080805160405193929190846401000000008211156200005d57600080fd5b9083019060208201858111156200007357600080fd5b82516401000000008111828201881017156200008e57600080fd5b82525081516020918201929091019080838360005b83811015620000bd578181015183820152602001620000a3565b50505050905090810190601f168015620000eb5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010f57600080fd5b9083019060208201858111156200012557600080fd5b82516401000000008111828201881017156200014057600080fd5b82525081516020918201929091019080838360005b838110156200016f57818101518382015260200162000155565b50505050905090810190601f1680156200019d5780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084640100000000821115620001c157600080fd5b908301906020820185811115620001d757600080fd5b8251640100000000811182820188101715620001f257600080fd5b82525081516020918201929091019080838360005b838110156200022157818101518382015260200162000207565b50505050905090810190601f1680156200024f5780820380516001836020036101000a031916815260200191505b50604052508491508390508181620002776301ffc9a760e01b6001600160e01b036200039b16565b620002926380ac58cd60e01b6001600160e01b036200039b16565b620002ad63780e9d6360e01b6001600160e01b036200039b16565b8151620002c290600990602085019062000586565b508051620002d890600a90602084019062000586565b50620002f4635b5e139f60e01b6001600160e01b036200039b16565b505050506200031b6200030c6200042060201b60201c565b6001600160e01b036200042516565b6000620003306001600160e01b036200042016565b600e80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000392816001600160e01b036200047716565b50505062000628565b6001600160e01b03198082161415620003fb576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b335b90565b6200044081600d6200049060201b6200240a1790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b80516200048c90600b90602084019062000586565b5050565b620004a582826001600160e01b036200051d16565b15620004f8576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620005665760405162461bcd60e51b8152600401808060200182810382526022815260200180620032bb6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005c957805160ff1916838001178555620005f9565b82800160010185558215620005f9579182015b82811115620005f9578251825591602001919060010190620005dc565b50620006079291506200060b565b5090565b6200042291905b8082111562000607576000815560010162000612565b612c8380620006386000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c80636c0360eb1161012557806398650275116100ad578063aa271e1a1161007c578063aa271e1a146109c3578063b88d4fde146109e9578063c87b56dd14610aad578063e985e9c514610aca578063f2fde38b14610af85761021c565b80639865027514610935578063a14481941461093d578063a22cb46514610969578063a9059cbb146109975761021c565b80638da5cb5b116100f45780638da5cb5b146108565780638f32d59b1461085e5780638fa43ac41461086657806395d89b4114610907578063983b2d561461090f5761021c565b80636c0360eb1461076757806370a082311461076f578063715018a6146107955780638832e6e31461079d5761021c565b80632f745c59116101a857806342966c681161017757806342966c68146105b35780634f6ccce7146105d057806350bb4e7f146105ed57806355f804b3146106a65780636352211e1461074a5761021c565b80632f745c59146104ff5780633d15366b1461052b57806340c10f191461055157806342842e0e1461057d5761021c565b8063155111e1116101ef578063155111e11461034057806318160ddd146103e15780631d976e05146103fb57806323b872dd146104ac5780632b5e5d3f146104e25761021c565b806301ffc9a71461022157806306fdde031461025c578063081812fc146102d9578063095ea7b314610312575b600080fd5b6102486004803603602081101561023757600080fd5b50356001600160e01b031916610b1e565b604080519115158252519081900360200190f35b610264610b41565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029e578181015183820152602001610286565b50505050905090810190601f1680156102cb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102f6600480360360208110156102ef57600080fd5b5035610bd8565b604080516001600160a01b039092168252519081900360200190f35b61033e6004803603604081101561032857600080fd5b506001600160a01b038135169060200135610c3a565b005b61033e6004803603602081101561035657600080fd5b810190602081018135600160201b81111561037057600080fd5b82018360208201111561038257600080fd5b803590602001918460208302840111600160201b831117156103a357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610d62945050505050565b6103e9610d96565b60408051918252519081900360200190f35b61033e6004803603604081101561041157600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561043b57600080fd5b82018360208201111561044d57600080fd5b803590602001918460208302840111600160201b8311171561046e57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610d9c945050505050565b61033e600480360360608110156104c257600080fd5b506001600160a01b03813581169160208101359091169060400135610dd3565b61033e600480360360208110156104f857600080fd5b5035610e2a565b6103e96004803603604081101561051557600080fd5b506001600160a01b038135169060200135610e71565b61033e6004803603602081101561054157600080fd5b50356001600160a01b0316610ef0565b6102486004803603604081101561056757600080fd5b506001600160a01b038135169060200135610f2c565b61033e6004803603606081101561059357600080fd5b506001600160a01b03813581169160208101359091169060400135610f8c565b61033e600480360360208110156105c957600080fd5b5035610fa7565b6103e9600480360360208110156105e657600080fd5b5035610ff9565b6102486004803603606081101561060357600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561063257600080fd5b82018360208201111561064457600080fd5b803590602001918460018302840111600160201b8311171561066557600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061105f945050505050565b61033e600480360360208110156106bc57600080fd5b810190602081018135600160201b8111156106d657600080fd5b8201836020820111156106e857600080fd5b803590602001918460018302840111600160201b8311171561070957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506110c5945050505050565b6102f66004803603602081101561076057600080fd5b5035611127565b610264611181565b6103e96004803603602081101561078557600080fd5b50356001600160a01b03166111e2565b61033e61124a565b610248600480360360608110156107b357600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156107e257600080fd5b8201836020820111156107f457600080fd5b803590602001918460018302840111600160201b8311171561081557600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506112ed945050505050565b6102f6611340565b61024861134f565b61033e6004803603602081101561087c57600080fd5b810190602081018135600160201b81111561089657600080fd5b8201836020820111156108a857600080fd5b803590602001918460208302840111600160201b831117156108c957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611375945050505050565b6102646113a5565b61033e6004803603602081101561092557600080fd5b50356001600160a01b0316611406565b61033e611455565b6102486004803603604081101561095357600080fd5b506001600160a01b038135169060200135611467565b61033e6004803603604081101561097f57600080fd5b506001600160a01b03813516906020013515156114b9565b61033e600480360360408110156109ad57600080fd5b506001600160a01b0381351690602001356115be565b610248600480360360208110156109d957600080fd5b50356001600160a01b03166115c9565b61033e600480360360808110156109ff57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610a3957600080fd5b820183602082011115610a4b57600080fd5b803590602001918460018302840111600160201b83111715610a6c57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506115dc945050505050565b61026460048036036020811015610ac357600080fd5b503561163a565b61024860048036036040811015610ae057600080fd5b506001600160a01b0381358116916020013516611806565b61033e60048036036020811015610b0e57600080fd5b50356001600160a01b0316611834565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bcd5780601f10610ba257610100808354040283529160200191610bcd565b820191906000526020600020905b815481529060010190602001808311610bb057829003601f168201915b505050505090505b90565b6000610be382611896565b610c1e5760405162461bcd60e51b815260040180806020018281038252602c815260200180612aaa602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b6000610c4582611127565b9050806001600160a01b0316836001600160a01b03161415610c985760405162461bcd60e51b8152600401808060200182810382526021815260200180612b7c6021913960400191505060405180910390fd5b806001600160a01b0316610caa6118b3565b6001600160a01b03161480610ccb5750610ccb81610cc66118b3565b611806565b610d065760405162461bcd60e51b81526004018080602001828103825260388152602001806129ce6038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60005b8151811015610d9257610d8a828281518110610d7d57fe5b6020026020010151610e2a565b600101610d65565b5050565b60075490565b60005b8151811015610dce57610dc63384848481518110610db957fe5b6020026020010151610f8c565b600101610d9f565b505050565b610de4610dde6118b3565b826118b7565b610e1f5760405162461bcd60e51b8152600401808060200182810382526031815260200180612b9d6031913960400191505060405180910390fd5b610dce83838361195b565b610e3381610fa7565b604080513381526020810183905281517f86406bb1a23a6b7bdae56e2199c3c9094221a32bf67c1cd7cc7826f949b2cf3e929181900390910190a150565b6000610e7c836111e2565b8210610eb95760405162461bcd60e51b815260040180806020018281038252602b8152602001806128fb602b913960400191505060405180910390fd5b6001600160a01b0383166000908152600560205260409020805483908110610edd57fe5b9060005260206000200154905092915050565b610efc81600f5461197a565b610f12600f54610f0d600f54611997565b611a58565b600f54610f2690600163ffffffff611abb16565b600f5550565b6000610f3e610f396118b3565b6115c9565b610f795760405162461bcd60e51b8152600401808060200182810382526030815260200180612a596030913960400191505060405180910390fd5b610f83838361197a565b50600192915050565b610dce838383604051806020016040528060008152506115dc565b610fb2610dde6118b3565b610fed5760405162461bcd60e51b8152600401808060200182810382526030815260200180612c1f6030913960400191505060405180910390fd5b610ff681611b1c565b50565b6000611003610d96565b82106110405760405162461bcd60e51b815260040180806020018281038252602c815260200180612bce602c913960400191505060405180910390fd5b6007828154811061104d57fe5b90600052602060002001549050919050565b600061106c610f396118b3565b6110a75760405162461bcd60e51b8152600401808060200182810382526030815260200180612a596030913960400191505060405180910390fd5b6110b1848461197a565b6110bb8383611a58565b5060019392505050565b6110cd61134f565b61111e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610ff681611b2e565b6000818152600160205260408120546001600160a01b03168061117b5760405162461bcd60e51b8152600401808060200182810382526029815260200180612a306029913960400191505060405180910390fd5b92915050565b600b8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bcd5780601f10610ba257610100808354040283529160200191610bcd565b60006001600160a01b0382166112295760405162461bcd60e51b815260040180806020018281038252602a815260200180612a06602a913960400191505060405180910390fd5b6001600160a01b038216600090815260036020526040902061117b90611b41565b61125261134f565b6112a3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600e546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600e80546001600160a01b0319169055565b60006112fa610f396118b3565b6113355760405162461bcd60e51b8152600401808060200182810382526030815260200180612a596030913960400191505060405180910390fd5b6110bb848484611b45565b600e546001600160a01b031690565b600e546000906001600160a01b03166113666118b3565b6001600160a01b031614905090565b60005b8151811015610d925761139d82828151811061139057fe5b6020026020010151610ef0565b600101611378565b600a8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bcd5780601f10610ba257610100808354040283529160200191610bcd565b611411610f396118b3565b61144c5760405162461bcd60e51b8152600401808060200182810382526030815260200180612a596030913960400191505060405180910390fd5b610ff681611b97565b6114656114606118b3565b611bdf565b565b6000611474610f396118b3565b6114af5760405162461bcd60e51b8152600401808060200182810382526030815260200180612a596030913960400191505060405180910390fd5b610f838383611c27565b6114c16118b3565b6001600160a01b0316826001600160a01b03161415611527576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600460006115346118b3565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556115786118b3565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b610d92338383610f8c565b600061117b600d8363ffffffff611c4116565b6115ed6115e76118b3565b836118b7565b6116285760405162461bcd60e51b8152600401808060200182810382526031815260200180612b9d6031913960400191505060405180910390fd5b61163484848484611ca8565b50505050565b606061164582611896565b6116805760405162461bcd60e51b815260040180806020018281038252602f815260200180612b4d602f913960400191505060405180910390fd5b6000828152600c602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156117155780601f106116ea57610100808354040283529160200191611715565b820191906000526020600020905b8154815290600101906020018083116116f857829003601f168201915b5050505050905080516000141561173c575050604080516020810190915260008152610b3c565b600b81604051602001808380546001816001161561010002031660029004801561179d5780601f1061177b57610100808354040283529182019161179d565b820191906000526020600020905b815481529060010190602001808311611789575b5050825160208401908083835b602083106117c95780518252601f1990920191602091820191016117aa565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050610b3c565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b61183c61134f565b61188d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610ff681611cfa565b6000908152600160205260409020546001600160a01b0316151590565b3390565b60006118c282611896565b6118fd5760405162461bcd60e51b815260040180806020018281038252602c8152602001806129a2602c913960400191505060405180910390fd5b600061190883611127565b9050806001600160a01b0316846001600160a01b031614806119435750836001600160a01b031661193884610bd8565b6001600160a01b0316145b8061195357506119538185611806565b949350505050565b611966838383611d9b565b6119708382611edf565b610dce8282611fd4565b6119848282612012565b61198e8282611fd4565b610d9281612143565b6060816119bc57506040805180820190915260018152600360fc1b6020820152610b3c565b8160005b81156119d457600101600a820491506119c0565b6060816040519080825280601f01601f191660200182016040528015611a01576020820181803883390190505b50905060001982015b8515611a4f57600a860660300160f81b82828060019003935081518110611a2d57fe5b60200101906001600160f81b031916908160001a905350600a86049550611a0a565b50949350505050565b611a6182611896565b611a9c5760405162461bcd60e51b815260040180806020018281038252602c815260200180612ad6602c913960400191505060405180910390fd5b6000828152600c602090815260409091208251610dce928401906127fe565b600082820183811015611b15576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b610ff6611b2882611127565b82612187565b8051610d9290600b9060208401906127fe565b5490565b611b4f838361197a565b611b5c60008484846121cf565b610dce5760405162461bcd60e51b81526004018080602001828103825260328152602001806129266032913960400191505060405180910390fd5b611ba8600d8263ffffffff61240a16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b611bf0600d8263ffffffff61248b16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b610d92828260405180602001604052806000815250611b45565b60006001600160a01b038216611c885760405162461bcd60e51b8152600401808060200182810382526022815260200180612b026022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b611cb384848461195b565b611cbf848484846121cf565b6116345760405162461bcd60e51b81526004018080602001828103825260328152602001806129266032913960400191505060405180910390fd5b6001600160a01b038116611d3f5760405162461bcd60e51b81526004018080602001828103825260268152602001806129586026913960400191505060405180910390fd5b600e546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b0316611dae82611127565b6001600160a01b031614611df35760405162461bcd60e51b8152600401808060200182810382526029815260200180612b246029913960400191505060405180910390fd5b6001600160a01b038216611e385760405162461bcd60e51b815260040180806020018281038252602481526020018061297e6024913960400191505060405180910390fd5b611e41816124f2565b6001600160a01b0383166000908152600360205260409020611e629061252d565b6001600160a01b0382166000908152600360205260409020611e8390612544565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216600090815260056020526040812054611f0990600163ffffffff61254d16565b600083815260066020526040902054909150808214611fa4576001600160a01b0384166000908152600560205260408120805484908110611f4657fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b031681526020019081526020016000208381548110611f8457fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b0384166000908152600560205260409020805490611fcd90600019830161287c565b5050505050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6001600160a01b03821661206d576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61207681611896565b156120c8576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b03871690811790915583526003909152902061210790612544565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b612191828261258f565b6000818152600c60205260409020546002600019610100600184161502019091160415610d92576000818152600c60205260408120610d92916128a0565b60006121e3846001600160a01b03166125bb565b6121ef57506001611953565b600060606001600160a01b038616630a85bd0160e11b61220d6118b3565b89888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561228657818101518382015260200161226e565b50505050905090810190601f1680156122b35780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b6020831061231b5780518252601f1990920191602091820191016122fc565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461237d576040519150601f19603f3d011682016040523d82523d6000602084013e612382565b606091505b5091509150816123d35780511561239c5780518082602001fd5b60405162461bcd60e51b81526004018080602001828103825260328152602001806129266032913960400191505060405180910390fd5b60008180602001905160208110156123ea57600080fd5b50516001600160e01b031916630a85bd0160e11b14935061195392505050565b6124148282611c41565b15612466576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6124958282611c41565b6124d05760405162461bcd60e51b8152600401808060200182810382526021815260200180612a896021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000818152600260205260409020546001600160a01b031615610ff657600090815260026020526040902080546001600160a01b0319169055565b805461254090600163ffffffff61254d16565b9055565b80546001019055565b6000611b1583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506125f4565b612599828261268b565b6125a38282611edf565b600081815260066020526040812055610d9281612762565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611953575050151592915050565b600081848411156126835760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612648578181015183820152602001612630565b50505050905090810190601f1680156126755780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b816001600160a01b031661269e82611127565b6001600160a01b0316146126e35760405162461bcd60e51b8152600401808060200182810382526025815260200180612bfa6025913960400191505060405180910390fd5b6126ec816124f2565b6001600160a01b038216600090815260036020526040902061270d9061252d565b60008181526001602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60075460009061277990600163ffffffff61254d16565b6000838152600860205260408120546007805493945090928490811061279b57fe5b9060005260206000200154905080600783815481106127b657fe5b600091825260208083209091019290925582815260089091526040902082905560078054906127e990600019830161287c565b50505060009182525060086020526040812055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061283f57805160ff191683800117855561286c565b8280016001018555821561286c579182015b8281111561286c578251825591602001919060010190612851565b506128789291506128e0565b5090565b815481835581811115610dce57600083815260209020610dce9181019083016128e0565b50805460018160011615610100020316600290046000825580601f106128c65750610ff6565b601f016020900490600052602060002090810190610ff691905b610bd591905b8082111561287857600081556001016128e656fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e64734552433732313a206275726e206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a265627a7a72315820683a529ef45c8d07857a913b7dff6b6b4f319cddc70037e2be0ea374898e0eae64736f6c634300050f0032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b446f7a6572446f6c6c56330000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005446f7a6572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006068747470733a2f2f717473616a346a3962632e657865637574652d6170692e61702d736f757468656173742d312e616d617a6f6e6177732e636f6d2f70726f642f76342f67616d652f646f7a65722f70332f66616e63792f6d6574612f76332f

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021c5760003560e01c80636c0360eb1161012557806398650275116100ad578063aa271e1a1161007c578063aa271e1a146109c3578063b88d4fde146109e9578063c87b56dd14610aad578063e985e9c514610aca578063f2fde38b14610af85761021c565b80639865027514610935578063a14481941461093d578063a22cb46514610969578063a9059cbb146109975761021c565b80638da5cb5b116100f45780638da5cb5b146108565780638f32d59b1461085e5780638fa43ac41461086657806395d89b4114610907578063983b2d561461090f5761021c565b80636c0360eb1461076757806370a082311461076f578063715018a6146107955780638832e6e31461079d5761021c565b80632f745c59116101a857806342966c681161017757806342966c68146105b35780634f6ccce7146105d057806350bb4e7f146105ed57806355f804b3146106a65780636352211e1461074a5761021c565b80632f745c59146104ff5780633d15366b1461052b57806340c10f191461055157806342842e0e1461057d5761021c565b8063155111e1116101ef578063155111e11461034057806318160ddd146103e15780631d976e05146103fb57806323b872dd146104ac5780632b5e5d3f146104e25761021c565b806301ffc9a71461022157806306fdde031461025c578063081812fc146102d9578063095ea7b314610312575b600080fd5b6102486004803603602081101561023757600080fd5b50356001600160e01b031916610b1e565b604080519115158252519081900360200190f35b610264610b41565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029e578181015183820152602001610286565b50505050905090810190601f1680156102cb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102f6600480360360208110156102ef57600080fd5b5035610bd8565b604080516001600160a01b039092168252519081900360200190f35b61033e6004803603604081101561032857600080fd5b506001600160a01b038135169060200135610c3a565b005b61033e6004803603602081101561035657600080fd5b810190602081018135600160201b81111561037057600080fd5b82018360208201111561038257600080fd5b803590602001918460208302840111600160201b831117156103a357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610d62945050505050565b6103e9610d96565b60408051918252519081900360200190f35b61033e6004803603604081101561041157600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561043b57600080fd5b82018360208201111561044d57600080fd5b803590602001918460208302840111600160201b8311171561046e57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610d9c945050505050565b61033e600480360360608110156104c257600080fd5b506001600160a01b03813581169160208101359091169060400135610dd3565b61033e600480360360208110156104f857600080fd5b5035610e2a565b6103e96004803603604081101561051557600080fd5b506001600160a01b038135169060200135610e71565b61033e6004803603602081101561054157600080fd5b50356001600160a01b0316610ef0565b6102486004803603604081101561056757600080fd5b506001600160a01b038135169060200135610f2c565b61033e6004803603606081101561059357600080fd5b506001600160a01b03813581169160208101359091169060400135610f8c565b61033e600480360360208110156105c957600080fd5b5035610fa7565b6103e9600480360360208110156105e657600080fd5b5035610ff9565b6102486004803603606081101561060357600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561063257600080fd5b82018360208201111561064457600080fd5b803590602001918460018302840111600160201b8311171561066557600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061105f945050505050565b61033e600480360360208110156106bc57600080fd5b810190602081018135600160201b8111156106d657600080fd5b8201836020820111156106e857600080fd5b803590602001918460018302840111600160201b8311171561070957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506110c5945050505050565b6102f66004803603602081101561076057600080fd5b5035611127565b610264611181565b6103e96004803603602081101561078557600080fd5b50356001600160a01b03166111e2565b61033e61124a565b610248600480360360608110156107b357600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b8111156107e257600080fd5b8201836020820111156107f457600080fd5b803590602001918460018302840111600160201b8311171561081557600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506112ed945050505050565b6102f6611340565b61024861134f565b61033e6004803603602081101561087c57600080fd5b810190602081018135600160201b81111561089657600080fd5b8201836020820111156108a857600080fd5b803590602001918460208302840111600160201b831117156108c957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611375945050505050565b6102646113a5565b61033e6004803603602081101561092557600080fd5b50356001600160a01b0316611406565b61033e611455565b6102486004803603604081101561095357600080fd5b506001600160a01b038135169060200135611467565b61033e6004803603604081101561097f57600080fd5b506001600160a01b03813516906020013515156114b9565b61033e600480360360408110156109ad57600080fd5b506001600160a01b0381351690602001356115be565b610248600480360360208110156109d957600080fd5b50356001600160a01b03166115c9565b61033e600480360360808110156109ff57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610a3957600080fd5b820183602082011115610a4b57600080fd5b803590602001918460018302840111600160201b83111715610a6c57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506115dc945050505050565b61026460048036036020811015610ac357600080fd5b503561163a565b61024860048036036040811015610ae057600080fd5b506001600160a01b0381358116916020013516611806565b61033e60048036036020811015610b0e57600080fd5b50356001600160a01b0316611834565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bcd5780601f10610ba257610100808354040283529160200191610bcd565b820191906000526020600020905b815481529060010190602001808311610bb057829003601f168201915b505050505090505b90565b6000610be382611896565b610c1e5760405162461bcd60e51b815260040180806020018281038252602c815260200180612aaa602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b6000610c4582611127565b9050806001600160a01b0316836001600160a01b03161415610c985760405162461bcd60e51b8152600401808060200182810382526021815260200180612b7c6021913960400191505060405180910390fd5b806001600160a01b0316610caa6118b3565b6001600160a01b03161480610ccb5750610ccb81610cc66118b3565b611806565b610d065760405162461bcd60e51b81526004018080602001828103825260388152602001806129ce6038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60005b8151811015610d9257610d8a828281518110610d7d57fe5b6020026020010151610e2a565b600101610d65565b5050565b60075490565b60005b8151811015610dce57610dc63384848481518110610db957fe5b6020026020010151610f8c565b600101610d9f565b505050565b610de4610dde6118b3565b826118b7565b610e1f5760405162461bcd60e51b8152600401808060200182810382526031815260200180612b9d6031913960400191505060405180910390fd5b610dce83838361195b565b610e3381610fa7565b604080513381526020810183905281517f86406bb1a23a6b7bdae56e2199c3c9094221a32bf67c1cd7cc7826f949b2cf3e929181900390910190a150565b6000610e7c836111e2565b8210610eb95760405162461bcd60e51b815260040180806020018281038252602b8152602001806128fb602b913960400191505060405180910390fd5b6001600160a01b0383166000908152600560205260409020805483908110610edd57fe5b9060005260206000200154905092915050565b610efc81600f5461197a565b610f12600f54610f0d600f54611997565b611a58565b600f54610f2690600163ffffffff611abb16565b600f5550565b6000610f3e610f396118b3565b6115c9565b610f795760405162461bcd60e51b8152600401808060200182810382526030815260200180612a596030913960400191505060405180910390fd5b610f83838361197a565b50600192915050565b610dce838383604051806020016040528060008152506115dc565b610fb2610dde6118b3565b610fed5760405162461bcd60e51b8152600401808060200182810382526030815260200180612c1f6030913960400191505060405180910390fd5b610ff681611b1c565b50565b6000611003610d96565b82106110405760405162461bcd60e51b815260040180806020018281038252602c815260200180612bce602c913960400191505060405180910390fd5b6007828154811061104d57fe5b90600052602060002001549050919050565b600061106c610f396118b3565b6110a75760405162461bcd60e51b8152600401808060200182810382526030815260200180612a596030913960400191505060405180910390fd5b6110b1848461197a565b6110bb8383611a58565b5060019392505050565b6110cd61134f565b61111e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610ff681611b2e565b6000818152600160205260408120546001600160a01b03168061117b5760405162461bcd60e51b8152600401808060200182810382526029815260200180612a306029913960400191505060405180910390fd5b92915050565b600b8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bcd5780601f10610ba257610100808354040283529160200191610bcd565b60006001600160a01b0382166112295760405162461bcd60e51b815260040180806020018281038252602a815260200180612a06602a913960400191505060405180910390fd5b6001600160a01b038216600090815260036020526040902061117b90611b41565b61125261134f565b6112a3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600e546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600e80546001600160a01b0319169055565b60006112fa610f396118b3565b6113355760405162461bcd60e51b8152600401808060200182810382526030815260200180612a596030913960400191505060405180910390fd5b6110bb848484611b45565b600e546001600160a01b031690565b600e546000906001600160a01b03166113666118b3565b6001600160a01b031614905090565b60005b8151811015610d925761139d82828151811061139057fe5b6020026020010151610ef0565b600101611378565b600a8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bcd5780601f10610ba257610100808354040283529160200191610bcd565b611411610f396118b3565b61144c5760405162461bcd60e51b8152600401808060200182810382526030815260200180612a596030913960400191505060405180910390fd5b610ff681611b97565b6114656114606118b3565b611bdf565b565b6000611474610f396118b3565b6114af5760405162461bcd60e51b8152600401808060200182810382526030815260200180612a596030913960400191505060405180910390fd5b610f838383611c27565b6114c16118b3565b6001600160a01b0316826001600160a01b03161415611527576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600460006115346118b3565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556115786118b3565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b610d92338383610f8c565b600061117b600d8363ffffffff611c4116565b6115ed6115e76118b3565b836118b7565b6116285760405162461bcd60e51b8152600401808060200182810382526031815260200180612b9d6031913960400191505060405180910390fd5b61163484848484611ca8565b50505050565b606061164582611896565b6116805760405162461bcd60e51b815260040180806020018281038252602f815260200180612b4d602f913960400191505060405180910390fd5b6000828152600c602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156117155780601f106116ea57610100808354040283529160200191611715565b820191906000526020600020905b8154815290600101906020018083116116f857829003601f168201915b5050505050905080516000141561173c575050604080516020810190915260008152610b3c565b600b81604051602001808380546001816001161561010002031660029004801561179d5780601f1061177b57610100808354040283529182019161179d565b820191906000526020600020905b815481529060010190602001808311611789575b5050825160208401908083835b602083106117c95780518252601f1990920191602091820191016117aa565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052915050610b3c565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b61183c61134f565b61188d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610ff681611cfa565b6000908152600160205260409020546001600160a01b0316151590565b3390565b60006118c282611896565b6118fd5760405162461bcd60e51b815260040180806020018281038252602c8152602001806129a2602c913960400191505060405180910390fd5b600061190883611127565b9050806001600160a01b0316846001600160a01b031614806119435750836001600160a01b031661193884610bd8565b6001600160a01b0316145b8061195357506119538185611806565b949350505050565b611966838383611d9b565b6119708382611edf565b610dce8282611fd4565b6119848282612012565b61198e8282611fd4565b610d9281612143565b6060816119bc57506040805180820190915260018152600360fc1b6020820152610b3c565b8160005b81156119d457600101600a820491506119c0565b6060816040519080825280601f01601f191660200182016040528015611a01576020820181803883390190505b50905060001982015b8515611a4f57600a860660300160f81b82828060019003935081518110611a2d57fe5b60200101906001600160f81b031916908160001a905350600a86049550611a0a565b50949350505050565b611a6182611896565b611a9c5760405162461bcd60e51b815260040180806020018281038252602c815260200180612ad6602c913960400191505060405180910390fd5b6000828152600c602090815260409091208251610dce928401906127fe565b600082820183811015611b15576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b610ff6611b2882611127565b82612187565b8051610d9290600b9060208401906127fe565b5490565b611b4f838361197a565b611b5c60008484846121cf565b610dce5760405162461bcd60e51b81526004018080602001828103825260328152602001806129266032913960400191505060405180910390fd5b611ba8600d8263ffffffff61240a16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b611bf0600d8263ffffffff61248b16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b610d92828260405180602001604052806000815250611b45565b60006001600160a01b038216611c885760405162461bcd60e51b8152600401808060200182810382526022815260200180612b026022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b611cb384848461195b565b611cbf848484846121cf565b6116345760405162461bcd60e51b81526004018080602001828103825260328152602001806129266032913960400191505060405180910390fd5b6001600160a01b038116611d3f5760405162461bcd60e51b81526004018080602001828103825260268152602001806129586026913960400191505060405180910390fd5b600e546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b0316611dae82611127565b6001600160a01b031614611df35760405162461bcd60e51b8152600401808060200182810382526029815260200180612b246029913960400191505060405180910390fd5b6001600160a01b038216611e385760405162461bcd60e51b815260040180806020018281038252602481526020018061297e6024913960400191505060405180910390fd5b611e41816124f2565b6001600160a01b0383166000908152600360205260409020611e629061252d565b6001600160a01b0382166000908152600360205260409020611e8390612544565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216600090815260056020526040812054611f0990600163ffffffff61254d16565b600083815260066020526040902054909150808214611fa4576001600160a01b0384166000908152600560205260408120805484908110611f4657fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b031681526020019081526020016000208381548110611f8457fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b0384166000908152600560205260409020805490611fcd90600019830161287c565b5050505050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6001600160a01b03821661206d576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b61207681611896565b156120c8576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b03871690811790915583526003909152902061210790612544565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b612191828261258f565b6000818152600c60205260409020546002600019610100600184161502019091160415610d92576000818152600c60205260408120610d92916128a0565b60006121e3846001600160a01b03166125bb565b6121ef57506001611953565b600060606001600160a01b038616630a85bd0160e11b61220d6118b3565b89888860405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561228657818101518382015260200161226e565b50505050905090810190601f1680156122b35780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b03166001600160e01b0319909a16999099178952518151919890975087965094509250829150849050835b6020831061231b5780518252601f1990920191602091820191016122fc565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461237d576040519150601f19603f3d011682016040523d82523d6000602084013e612382565b606091505b5091509150816123d35780511561239c5780518082602001fd5b60405162461bcd60e51b81526004018080602001828103825260328152602001806129266032913960400191505060405180910390fd5b60008180602001905160208110156123ea57600080fd5b50516001600160e01b031916630a85bd0160e11b14935061195392505050565b6124148282611c41565b15612466576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6124958282611c41565b6124d05760405162461bcd60e51b8152600401808060200182810382526021815260200180612a896021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000818152600260205260409020546001600160a01b031615610ff657600090815260026020526040902080546001600160a01b0319169055565b805461254090600163ffffffff61254d16565b9055565b80546001019055565b6000611b1583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506125f4565b612599828261268b565b6125a38282611edf565b600081815260066020526040812055610d9281612762565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611953575050151592915050565b600081848411156126835760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612648578181015183820152602001612630565b50505050905090810190601f1680156126755780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b816001600160a01b031661269e82611127565b6001600160a01b0316146126e35760405162461bcd60e51b8152600401808060200182810382526025815260200180612bfa6025913960400191505060405180910390fd5b6126ec816124f2565b6001600160a01b038216600090815260036020526040902061270d9061252d565b60008181526001602052604080822080546001600160a01b0319169055518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60075460009061277990600163ffffffff61254d16565b6000838152600860205260408120546007805493945090928490811061279b57fe5b9060005260206000200154905080600783815481106127b657fe5b600091825260208083209091019290925582815260089091526040902082905560078054906127e990600019830161287c565b50505060009182525060086020526040812055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061283f57805160ff191683800117855561286c565b8280016001018555821561286c579182015b8281111561286c578251825591602001919060010190612851565b506128789291506128e0565b5090565b815481835581811115610dce57600083815260209020610dce9181019083016128e0565b50805460018160011615610100020316600290046000825580601f106128c65750610ff6565b601f016020900490600052602060002090810190610ff691905b610bd591905b8082111561287857600081556001016128e656fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e64734552433732313a206275726e206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a265627a7a72315820683a529ef45c8d07857a913b7dff6b6b4f319cddc70037e2be0ea374898e0eae64736f6c634300050f0032

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b446f7a6572446f6c6c56330000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005446f7a6572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006068747470733a2f2f717473616a346a3962632e657865637574652d6170692e61702d736f757468656173742d312e616d617a6f6e6177732e636f6d2f70726f642f76342f67616d652f646f7a65722f70332f66616e63792f6d6574612f76332f

-----Decoded View---------------
Arg [0] : _name (string): DozerDollV3
Arg [1] : _symbol (string): Dozer
Arg [2] : _baseURI (string): https://qtsaj4j9bc.execute-api.ap-southeast-1.amazonaws.com/prod/v4/game/dozer/p3/fancy/meta/v3/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 446f7a6572446f6c6c5633000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 446f7a6572000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [8] : 68747470733a2f2f717473616a346a3962632e657865637574652d6170692e61
Arg [9] : 702d736f757468656173742d312e616d617a6f6e6177732e636f6d2f70726f64
Arg [10] : 2f76342f67616d652f646f7a65722f70332f66616e63792f6d6574612f76332f


Deployed Bytecode Sourcemap

55506:1964:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55506:1964:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16488:135;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16488:135:0;-1:-1:-1;;;;;;16488:135:0;;:::i;:::-;;;;;;;;;;;;;;;;;;44285:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;44285:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21450:204;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21450:204:0;;:::i;:::-;;;;-1:-1:-1;;;;;21450:204:0;;;;;;;;;;;;;;20732:425;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20732:425:0;;;;;;;;:::i;:::-;;56401:168;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56401:168:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;56401:168:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;56401:168:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;56401:168:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;56401:168:0;;-1:-1:-1;56401:168:0;;-1:-1:-1;;;;;56401:168:0:i;35877:96::-;;;:::i;:::-;;;;;;;;;;;;;;;;56713:207;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;56713:207:0;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;56713:207:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;56713:207:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;56713:207:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;56713:207:0;;-1:-1:-1;56713:207:0;;-1:-1:-1;;;;;56713:207:0:i;23133:292::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23133:292:0;;;;;;;;;;;;;;;;;:::i;56268:125::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;56268:125:0;;:::i;35486:232::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;35486:232:0;;;;;;;;:::i;55932:167::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55932:167:0;-1:-1:-1;;;;;55932:167:0;;:::i;50426:135::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;50426:135:0;;;;;;;;:::i;24087:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24087:134:0;;;;;;;;;;;;;;;;;:::i;52652:237::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52652:237:0;;:::i;36319:199::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36319:199:0;;:::i;52043:213::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;52043:213:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;52043:213:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;52043:213:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;52043:213:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;52043:213:0;;-1:-1:-1;52043:213:0;;-1:-1:-1;;;;;52043:213:0:i;56928:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56928:106:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;56928:106:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;56928:106:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;56928:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;56928:106:0;;-1:-1:-1;56928:106:0;;-1:-1:-1;;;;;56928:106:0:i;20073:228::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20073:228:0;;:::i;46538:91::-;;;:::i;19636:211::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19636:211:0;-1:-1:-1;;;;;19636:211:0;;:::i;54663:140::-;;;:::i;51290:170::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;51290:170:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;51290:170:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;51290:170:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;51290:170:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;51290:170:0;;-1:-1:-1;51290:170:0;;-1:-1:-1;;;;;51290:170:0:i;53852:79::-;;;:::i;54218:94::-;;;:::i;56107:153::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56107:153:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;56107:153:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;56107:153:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;56107:153:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;56107:153:0;;-1:-1:-1;56107:153:0;;-1:-1:-1;;;;;56107:153:0:i;44485:89::-;;;:::i;49512:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49512:92:0;-1:-1:-1;;;;;49512:92:0;;:::i;49612:79::-;;;:::i;50817:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;50817:143:0;;;;;;;;:::i;21955:254::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21955:254:0;;;;;;;;;;:::i;56577:128::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;56577:128:0;;;;;;;;:::i;49395:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49395:109:0;-1:-1:-1;;;;;49395:109:0;;:::i;24958:272::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;24958:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;24958:272:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;24958:272:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;24958:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;24958:272:0;;-1:-1:-1;24958:272:0;;-1:-1:-1;;;;;24958:272:0:i;44887:557::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44887:557:0;;:::i;22539:147::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22539:147:0;;;;;;;;;;:::i;54958:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54958:109:0;-1:-1:-1;;;;;54958:109:0;;:::i;16488:135::-;-1:-1:-1;;;;;;16582:33:0;;16558:4;16582:33;;;;;;;;;;;;;16488:135;;;;:::o;44285:85::-;44357:5;44350:12;;;;;;;;-1:-1:-1;;44350:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44324:13;;44350:12;;44357:5;;44350:12;;44357:5;44350:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44285:85;;:::o;21450:204::-;21509:7;21537:16;21545:7;21537;:16::i;:::-;21529:73;;;;-1:-1:-1;;;21529:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21622:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21622:24:0;;21450:204::o;20732:425::-;20796:13;20812:16;20820:7;20812;:16::i;:::-;20796:32;;20853:5;-1:-1:-1;;;;;20847:11:0;:2;-1:-1:-1;;;;;20847:11:0;;;20839:57;;;;-1:-1:-1;;;20839:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20933:5;-1:-1:-1;;;;;20917:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;20917:21:0;;:62;;;;20942:37;20959:5;20966:12;:10;:12::i;:::-;20942:16;:37::i;:::-;20909:154;;;;-1:-1:-1;;;20909:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21076:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;21076:29:0;-1:-1:-1;;;;;21076:29:0;;;;;;;;;21121:28;;21076:24;;21121:28;;;;;;;20732:425;;;:::o;56401:168::-;56484:9;56479:85;56504:8;:15;56500:1;:19;56479:85;;;56535:21;56544:8;56553:1;56544:11;;;;;;;;;;;;;;56535:8;:21::i;:::-;56521:3;;56479:85;;;;56401:168;:::o;35877:96::-;35948:10;:17;35877:96;:::o;56713:207::-;56814:6;56809:106;56830:8;:15;56826:1;:19;56809:106;;;56861:46;56878:10;56890:3;56895:8;56904:1;56895:11;;;;;;;;;;;;;;56861:16;:46::i;:::-;56847:3;;56809:106;;;;56713:207;;:::o;23133:292::-;23277:41;23296:12;:10;:12::i;:::-;23310:7;23277:18;:41::i;:::-;23269:103;;;;-1:-1:-1;;;23269:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23385:32;23399:4;23405:2;23409:7;23385:13;:32::i;56268:125::-;56329:14;56334:8;56329:4;:14::i;:::-;56357:30;;;56366:10;56357:30;;;;;;;;;;;;;;;;;;;;;56268:125;:::o;35486:232::-;35566:7;35602:16;35612:5;35602:9;:16::i;:::-;35594:5;:24;35586:80;;;;-1:-1:-1;;;35586:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35684:19:0;;;;;;:12;:19;;;;;:26;;35704:5;;35684:26;;;;;;;;;;;;;;35677:33;;35486:232;;;;:::o;55932:167::-;55990:19;55996:3;56001:7;;55990:5;:19::i;:::-;56018:40;56031:7;;56040:17;56049:7;;56040:8;:17::i;:::-;56018:12;:40::i;:::-;56079:7;;:14;;56091:1;56079:14;:11;:14;:::i;:::-;56069:7;:24;-1:-1:-1;55932:167:0:o;50426:135::-;50496:4;49292:22;49301:12;:10;:12::i;:::-;49292:8;:22::i;:::-;49284:83;;;;-1:-1:-1;;;49284:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50513:18;50519:2;50523:7;50513:5;:18::i;:::-;-1:-1:-1;50549:4:0;50426:135;;;;:::o;24087:134::-;24174:39;24191:4;24197:2;24201:7;24174:39;;;;;;;;;;;;:16;:39::i;52652:237::-;52762:41;52781:12;:10;:12::i;52762:41::-;52754:102;;;;-1:-1:-1;;;52754:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52867:14;52873:7;52867:5;:14::i;:::-;52652:237;:::o;36319:199::-;36377:7;36413:13;:11;:13::i;:::-;36405:5;:21;36397:78;;;;-1:-1:-1;;;36397:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36493:10;36504:5;36493:17;;;;;;;;;;;;;;;;36486:24;;36319:199;;;:::o;52043:213::-;52149:4;49292:22;49301:12;:10;:12::i;49292:22::-;49284:83;;;;-1:-1:-1;;;49284:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52166:18;52172:2;52176:7;52166:5;:18::i;:::-;52195:31;52208:7;52217:8;52195:12;:31::i;:::-;-1:-1:-1;52244:4:0;52043:213;;;;;:::o;56928:106::-;54064:9;:7;:9::i;:::-;54056:54;;;;;-1:-1:-1;;;54056:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57007:21;57019:8;57007:11;:21::i;20073:228::-;20128:7;20164:20;;;:11;:20;;;;;;-1:-1:-1;;;;;20164:20:0;20203:19;20195:73;;;;-1:-1:-1;;;20195:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20288:5;20073:228;-1:-1:-1;;20073:228:0:o;46538:91::-;46613:8;46606:15;;;;;;;;-1:-1:-1;;46606:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46580:13;;46606:15;;46613:8;;46606:15;;46613:8;46606:15;;;;;;;;;;;;;;;;;;;;;;;;19636:211;19691:7;-1:-1:-1;;;;;19719:19:0;;19711:74;;;;-1:-1:-1;;;19711:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19805:24:0;;;;;;:17;:24;;;;;:34;;:32;:34::i;54663:140::-;54064:9;:7;:9::i;:::-;54056:54;;;;;-1:-1:-1;;;54056:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54746:6;;54725:40;;54762:1;;-1:-1:-1;;;;;54746:6:0;;54725:40;;54762:1;;54725:40;54776:6;:19;;-1:-1:-1;;;;;;54776:19:0;;;54663:140::o;51290:170::-;51384:4;49292:22;49301:12;:10;:12::i;49292:22::-;49284:83;;;;-1:-1:-1;;;49284:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51401:29;51411:2;51415:7;51424:5;51401:9;:29::i;53852:79::-;53917:6;;-1:-1:-1;;;;;53917:6:0;53852:79;:::o;54218:94::-;54298:6;;54258:4;;-1:-1:-1;;;;;54298:6:0;54282:12;:10;:12::i;:::-;-1:-1:-1;;;;;54282:22:0;;54275:29;;54218:94;:::o;56107:153::-;56185:9;56180:75;56205:3;:10;56201:1;:14;56180:75;;;56231:16;56240:3;56244:1;56240:6;;;;;;;;;;;;;;56231:8;:16::i;:::-;56217:3;;56180:75;;44485:89;44559:7;44552:14;;;;;;;;-1:-1:-1;;44552:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44526:13;;44552:14;;44559:7;;44552:14;;44559:7;44552:14;;;;;;;;;;;;;;;;;;;;;;;;49512:92;49292:22;49301:12;:10;:12::i;49292:22::-;49284:83;;;;-1:-1:-1;;;49284:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49577:19;49588:7;49577:10;:19::i;49612:79::-;49656:27;49670:12;:10;:12::i;:::-;49656:13;:27::i;:::-;49612:79::o;50817:143::-;50891:4;49292:22;49301:12;:10;:12::i;49292:22::-;49284:83;;;;-1:-1:-1;;;49284:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50908:22;50918:2;50922:7;50908:9;:22::i;21955:254::-;22041:12;:10;:12::i;:::-;-1:-1:-1;;;;;22035:18:0;:2;-1:-1:-1;;;;;22035:18:0;;;22027:56;;;;;-1:-1:-1;;;22027:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22135:8;22096:18;:32;22115:12;:10;:12::i;:::-;-1:-1:-1;;;;;22096:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;22096:32:0;;;:36;;;;;;;;;;;;:47;;-1:-1:-1;;22096:47:0;;;;;;;;;;;22174:12;:10;:12::i;:::-;22159:42;;;;;;;;;;-1:-1:-1;;;;;22159:42:0;;;;;;;;;;;;;;21955:254;;:::o;56577:128::-;56656:43;56673:10;56685:3;56690:8;56656:16;:43::i;49395:109::-;49451:4;49475:21;:8;49488:7;49475:21;:12;:21;:::i;24958:272::-;25073:41;25092:12;:10;:12::i;:::-;25106:7;25073:18;:41::i;:::-;25065:103;;;;-1:-1:-1;;;25065:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25179:43;25197:4;25203:2;25207:7;25216:5;25179:17;:43::i;:::-;24958:272;;;;:::o;44887:557::-;44945:13;44979:16;44987:7;44979;:16::i;:::-;44971:76;;;;-1:-1:-1;;;44971:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45086:19;;;;:10;:19;;;;;;;;;45060:45;;;;;;-1:-1:-1;;45060:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;45086:19;45060:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45222:9;45216:23;45243:1;45216:28;45212:225;;;-1:-1:-1;;45261:9:0;;;;;;;;;-1:-1:-1;45261:9:0;;;;45212:225;45404:8;45414:9;45387:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45387:37:0;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;45387:37:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;45387:37:0;;;45373:52;;;;;22539:147;-1:-1:-1;;;;;22643:25:0;;;22619:4;22643:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22539:147::o;54958:109::-;54064:9;:7;:9::i;:::-;54056:54;;;;;-1:-1:-1;;;54056:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55031:28;55050:8;55031:18;:28::i;26423:155::-;26480:4;26513:20;;;:11;:20;;;;;;-1:-1:-1;;;;;26513:20:0;26551:19;;;26423:155::o;858:98::-;938:10;858:98;:::o;26948:333::-;27033:4;27058:16;27066:7;27058;:16::i;:::-;27050:73;;;;-1:-1:-1;;;27050:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27134:13;27150:16;27158:7;27150;:16::i;:::-;27134:32;;27196:5;-1:-1:-1;;;;;27185:16:0;:7;-1:-1:-1;;;;;27185:16:0;;:51;;;;27229:7;-1:-1:-1;;;;;27205:31:0;:20;27217:7;27205:11;:20::i;:::-;-1:-1:-1;;;;;27205:31:0;;27185:51;:87;;;;27240:32;27257:5;27264:7;27240:16;:32::i;:::-;27177:96;26948:333;-1:-1:-1;;;;26948:333:0:o;36902:245::-;36988:38;37008:4;37014:2;37018:7;36988:19;:38::i;:::-;37039:47;37072:4;37078:7;37039:32;:47::i;:::-;37099:40;37127:2;37131:7;37099:27;:40::i;37412:202::-;37476:24;37488:2;37492:7;37476:11;:24::i;:::-;37513:40;37541:2;37545:7;37513:27;:40::i;:::-;37566;37598:7;37566:31;:40::i;57040:427::-;57101:27;57141:7;57137:42;;-1:-1:-1;57161:10:0;;;;;;;;;;;;-1:-1:-1;;;57161:10:0;;;;;;57137:42;57194:2;57185:6;57218:57;57225:6;;57218:57;;57244:5;;57265:2;57260:7;;;;57218:57;;;57281:17;57311:3;57301:14;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;57301:14:0;87:34:-1;135:17;;-1:-1;57301:14:0;-1:-1:-1;57281:34:0;-1:-1:-1;;;57331:7:0;;57345:91;57352:7;;57345:91;;57405:2;57400;:7;57395:2;:12;57384:25;;57372:4;57377:3;;;;;;;57372:9;;;;;;;;;;;:37;-1:-1:-1;;;;;57372:37:0;;;;;;;;-1:-1:-1;57426:2:0;57420:8;;;;57345:91;;;-1:-1:-1;57456:4:0;57040:427;-1:-1:-1;;;;57040:427:0:o;45779:207::-;45871:16;45879:7;45871;:16::i;:::-;45863:73;;;;-1:-1:-1;;;45863:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45947:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;6285:181::-;6343:7;6375:5;;;6399:6;;;;6391:46;;;;;-1:-1:-1;;;6391:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6457:1;6285:181;-1:-1:-1;;;6285:181:0:o;30166:92::-;30218:32;30224:16;30232:7;30224;:16::i;:::-;30242:7;30218:5;:32::i;46207:90::-;46271:18;;;;:8;;:18;;;;;:::i;15077:114::-;15169:14;;15077:114::o;28538:242::-;28626:18;28632:2;28636:7;28626:5;:18::i;:::-;28663:54;28694:1;28698:2;28702:7;28711:5;28663:22;:54::i;:::-;28655:117;;;;-1:-1:-1;;;28655:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49699:122;49756:21;:8;49769:7;49756:21;:12;:21;:::i;:::-;49793:20;;-1:-1:-1;;;;;49793:20:0;;;;;;;;49699:122;:::o;49829:130::-;49889:24;:8;49905:7;49889:24;:15;:24;:::i;:::-;49929:22;;-1:-1:-1;;;;;49929:22:0;;;;;;;;49829:130;:::o;27822:102::-;27890:26;27900:2;27904:7;27890:26;;;;;;;;;;;;:9;:26::i;48660:203::-;48732:4;-1:-1:-1;;;;;48757:21:0;;48749:68;;;;-1:-1:-1;;;48749:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;48835:20:0;:11;:20;;;;;;;;;;;;;;;48660:203::o;25949:272::-;26059:32;26073:4;26079:2;26083:7;26059:13;:32::i;:::-;26110:48;26133:4;26139:2;26143:7;26152:5;26110:22;:48::i;:::-;26102:111;;;;-1:-1:-1;;;26102:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55173:229;-1:-1:-1;;;;;55247:22:0;;55239:73;;;;-1:-1:-1;;;55239:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55349:6;;55328:38;;-1:-1:-1;;;;;55328:38:0;;;;55349:6;;55328:38;;55349:6;;55328:38;55377:6;:17;;-1:-1:-1;;;;;;55377:17:0;-1:-1:-1;;;;;55377:17:0;;;;;;;;;;55173:229::o;30644:459::-;30758:4;-1:-1:-1;;;;;30738:24:0;:16;30746:7;30738;:16::i;:::-;-1:-1:-1;;;;;30738:24:0;;30730:78;;;;-1:-1:-1;;;30730:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30827:16:0;;30819:65;;;;-1:-1:-1;;;30819:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30897:23;30912:7;30897:14;:23::i;:::-;-1:-1:-1;;;;;30933:23:0;;;;;;:17;:23;;;;;:35;;:33;:35::i;:::-;-1:-1:-1;;;;;30979:21:0;;;;;;:17;:21;;;;;:33;;:31;:33::i;:::-;31025:20;;;;:11;:20;;;;;;:25;;-1:-1:-1;;;;;;31025:25:0;-1:-1:-1;;;;;31025:25:0;;;;;;;;;31068:27;;31025:20;;31068:27;;;;;;;30644:459;;;:::o;40087:1148::-;-1:-1:-1;;;;;40378:18:0;;40353:22;40378:18;;;:12;:18;;;;;:25;:32;;40408:1;40378:32;:29;:32;:::i;:::-;40421:18;40442:26;;;:17;:26;;;;;;40353:57;;-1:-1:-1;40575:28:0;;;40571:328;;-1:-1:-1;;;;;40642:18:0;;40620:19;40642:18;;;:12;:18;;;;;:34;;40661:14;;40642:34;;;;;;;;;;;;;;40620:56;;40726:11;40693:12;:18;40706:4;-1:-1:-1;;;;;40693:18:0;-1:-1:-1;;;;;40693:18:0;;;;;;;;;;;;40712:10;40693:30;;;;;;;;;;;;;;;;;;;:44;;;;40810:30;;;:17;:30;;;;;:43;;;40571:328;-1:-1:-1;;;;;40988:18:0;;;;;;:12;:18;;;;;:27;;;;;-1:-1:-1;;40988:27:0;;;:::i;:::-;;40087:1148;;;;:::o;38909:186::-;-1:-1:-1;;;;;39023:16:0;;;;;;;:12;:16;;;;;;;;:23;;38994:26;;;:17;:26;;;;;:52;;;39057:16;;;39:1:-1;23:18;;45:23;;39057:30:0;;;;;;;;38909:186::o;29033:335::-;-1:-1:-1;;;;;29105:16:0;;29097:61;;;;;-1:-1:-1;;;29097:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29178:16;29186:7;29178;:16::i;:::-;29177:17;29169:58;;;;;-1:-1:-1;;;29169:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29240:20;;;;:11;:20;;;;;;;;:25;;-1:-1:-1;;;;;;29240:25:0;-1:-1:-1;;;;;29240:25:0;;;;;;;;29276:21;;:17;:21;;;;;:33;;:31;:33::i;:::-;29327;;29352:7;;-1:-1:-1;;;;;29327:33:0;;;29344:1;;29327:33;;29344:1;;29327:33;29033:335;;:::o;39296:164::-;39400:10;:17;;39373:24;;;;:15;:24;;;;;:44;;;39:1:-1;23:18;;45:23;;39428:24:0;;;;;;;39296:164::o;46931:247::-;46998:27;47010:5;47017:7;46998:11;:27::i;:::-;47084:19;;;;:10;:19;;;;;47078:33;;-1:-1:-1;;47078:33:0;;;;;;;;;;;:38;47074:97;;47140:19;;;;:10;:19;;;;;47133:26;;;:::i;31755:1079::-;31877:4;31904:15;:2;-1:-1:-1;;;;;31904:13:0;;:15::i;:::-;31899:60;;-1:-1:-1;31943:4:0;31936:11;;31899:60;32030:12;32044:23;-1:-1:-1;;;;;32071:7:0;;-1:-1:-1;;;32176:12:0;:10;:12::i;:::-;32203:4;32222:7;32244:5;32079:181;;;;;;-1:-1:-1;;;;;32079:181:0;-1:-1:-1;;;;;32079:181:0;;;;;;-1:-1:-1;;;;;32079:181:0;-1:-1:-1;;;;;32079:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;32079:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32079:181:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;32079:181:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;;32079:181:0;;;179:29:-1;;;;160:49;;32071:190:0;;;32079:181;;32071:190;;-1:-1:-1;32071:190:0;;-1:-1:-1;25:18;-1:-1;32071:190:0;-1:-1:-1;32071:190:0;;-1:-1:-1;32071:190:0;;-1:-1:-1;25:18;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;32071:190:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;32029:232:0;;;;32277:7;32272:555;;32305:17;;:21;32301:384;;32473:10;32467:17;32534:15;32521:10;32517:2;32513:19;32506:44;32421:148;32609:60;;-1:-1:-1;;;32609:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32272:555;32717:13;32744:10;32733:32;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32733:32:0;-1:-1:-1;;;;;;32788:26:0;-1:-1:-1;;;32788:26:0;;-1:-1:-1;32780:35:0;;-1:-1:-1;;;32780:35:0;48124:178;48202:18;48206:4;48212:7;48202:3;:18::i;:::-;48201:19;48193:63;;;;;-1:-1:-1;;;48193:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48267:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;48267:27:0;48290:4;48267:27;;;48124:178::o;48382:183::-;48462:18;48466:4;48472:7;48462:3;:18::i;:::-;48454:64;;;;-1:-1:-1;;;48454:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48529:20:0;48552:5;48529:20;;;;;;;;;;;:28;;-1:-1:-1;;48529:28:0;;;48382:183::o;33002:175::-;33102:1;33066:24;;;:15;:24;;;;;;-1:-1:-1;;;;;33066:24:0;:38;33062:108;;33156:1;33121:24;;;:15;:24;;;;;:37;;-1:-1:-1;;;;;;33121:37:0;;;33002:175::o;15388:110::-;15469:14;;:21;;15488:1;15469:21;:18;:21;:::i;:::-;15452:38;;15388:110::o;15199:181::-;15353:19;;15371:1;15353:19;;;15199:181::o;6741:136::-;6799:7;6826:43;6830:1;6833;6826:43;;;;;;;;;;;;;;;;;:3;:43::i;37898:372::-;37965:27;37977:5;37984:7;37965:11;:27::i;:::-;38005:48;38038:5;38045:7;38005:32;:48::i;:::-;38203:1;38174:26;;;:17;:26;;;;;:30;38217:45;38192:7;38217:36;:45::i;11645:619::-;11705:4;12173:20;;12016:66;12213:23;;;;;;:42;;-1:-1:-1;;12240:15:0;;;12205:51;-1:-1:-1;;11645:619:0:o;7214:192::-;7300:7;7336:12;7328:6;;;;7320:29;;;;-1:-1:-1;;;7320:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7320:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7372:5:0;;;7214:192::o;29645:333::-;29740:5;-1:-1:-1;;;;;29720:25:0;:16;29728:7;29720;:16::i;:::-;-1:-1:-1;;;;;29720:25:0;;29712:75;;;;-1:-1:-1;;;29712:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29800:23;29815:7;29800:14;:23::i;:::-;-1:-1:-1;;;;;29836:24:0;;;;;;:17;:24;;;;;:36;;:34;:36::i;:::-;29914:1;29883:20;;;:11;:20;;;;;;:33;;-1:-1:-1;;;;;;29883:33:0;;;29934:36;29895:7;;29914:1;-1:-1:-1;;;;;29934:36:0;;;;;29914:1;;29934:36;29645:333;;:::o;41530:1082::-;41808:10;:17;41783:22;;41808:24;;41830:1;41808:24;:21;:24;:::i;:::-;41843:18;41864:24;;;:15;:24;;;;;;42237:10;:26;;41783:49;;-1:-1:-1;41864:24:0;;41783:49;;42237:26;;;;;;;;;;;;;;42215:48;;42301:11;42276:10;42287;42276:22;;;;;;;;;;;;;;;;;;;:36;;;;42381:28;;;:15;:28;;;;;;:41;;;42546:10;:19;;;;;-1:-1:-1;;42546:19:0;;;:::i;:::-;-1:-1:-1;;;42603:1:0;42576:24;;;-1:-1:-1;42576:15:0;:24;;;;;:28;41530:1082::o;55506:1964::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55506:1964:0;;;-1:-1:-1;55506:1964:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://683a529ef45c8d07857a913b7dff6b6b4f319cddc70037e2be0ea374898e0eae
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.