ETH Price: $2,144.41 (-13.02%)

Token

tCard (tCard)
 

Overview

Max Total Supply

222 tCard

Holders

85

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 tCard
0xed26A9f56E31462f61FEA103365A2222E38318a3
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:
ERC721Tradable

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 2: ERC721Tradable_Flat.sol
// File: openzeppelin-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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-solidity/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/Strings.sol

pragma solidity ^0.5.0;

library Strings {
    
    function strConcat(string memory _a, string memory _b) internal pure returns (string memory) {
      bytes memory _ba = bytes(_a);
      bytes memory _bb = bytes(_b);
      string memory abcde = new string(_ba.length + _bb.length );
      bytes memory babcde = bytes(abcde);
      uint k = 0;
      for (uint i1 = 0; i1 < _ba.length; i1++) babcde[k++] = _ba[i1];
      for (uint i2 = 0; i2 < _bb.length; i2++) babcde[k++] = _bb[i2];

      return string(babcde);
    }

    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);
    }
}

// File: contracts/ERC721Tradable.sol

pragma solidity ^0.5.0;





// pragma solidity ^0.4.24;
// import "github.com/itinance/openzeppelin-solidity/contracts/token/ERC721/ERC721Full.sol";
// import "github.com/itinance/openzeppelin-solidity/contracts/ownership/Ownable.sol";
// import "github.com/Arachnid/solidity-stringutils/strings.sol";
// import "./Strings.sol";

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
contract ERC721Tradable is ERC721Full, Ownable, ERC721Mintable {
    
    using Strings for string;

    uint256 public currentTokenId = 0;
    //域名前缀
    string public baseTokenURI = "https://ipfs.infura.io/ipfs/Qmba6eb7kj9ztwxXghvXqszgi9hsYo1thBKGDoDF5C1QJF/";
    //每次生成ID的步长
    uint256 public stepNum = 1;
    //是否可以铸造开关
    bool public canMint = true;

   /**
    * @dev emitted on mint
    * @param _to 开始tokenId
    **/
    event Mint(
       address _to
    );

   /**
    * @dev emitted on mint
    * @param _to  转入地址
    * @param _newTokenId NFT ID
    **/
    event MintByTokenId(
       address _to,
       uint256 _newTokenId
    );

    /**
    * @dev emitted on setConfig
    * @param _baseTokenURI 域名前缀
    * @param _stepNum 步长
    * @param _canMint 是否可以挖矿
    **/
    event SetConfig(
        string _baseTokenURI,
        uint256 _stepNum,
        bool _canMint
    );

    /**
    * @dev emitted on setTokenURI
    * @param _tokenId tokenId
    * @param _tokenURI 相对路径
    **/
    event SetTokenURI(
        uint256 _tokenId, 
        string _tokenURI
    );

    constructor(
        string memory _name,
        string memory _symbol
    ) public 
    ERC721Full(_name, _symbol)
    ERC721Mintable()
    {
        _setBaseURI(baseTokenURI);
    }
    
    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mintTo(address _to) public onlyOwner {
        require(canMint == true,"ERC721: canMint is false");
        uint256 newTokenId = _getNextTokenId();
        //铸造TokenId
        _mint(_to, newTokenId);
        _incrementTokenId();
        emit Mint(_to);
    }

   /**
     * @dev Mints a token to an address with tokenId.
     * @param _to address of the future owner of the token
     * @param _newTokenId token ID
     */
    function mintByTokenId(address _to, uint256 _newTokenId) public onlyMinter {
        require(canMint == true,"ERC721: canMint is false");
        require(!_exists(_newTokenId),"ERC721: This id exists");
        //铸造TokenId
        safeMint(_to, _newTokenId);
        _setTokenURI(_newTokenId,"default.png");
        currentTokenId = _newTokenId;
        emit MintByTokenId(_to, _newTokenId);
    }

   /**
     * @dev Check this id exists.
     * @param _tokenId token ID
     */
    function exists(uint256 _tokenId) public view returns(bool) {
        return _exists(_tokenId);
    }


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

    /**
     * 设置NFT合约的基本参数
     * _baseTokenURI 域名前缀
     * _stepNum 步长
     * _canMint 是否可以铸造
     */
    function setConfig(
        string memory _baseTokenURI,
        uint256 _stepNum, 
        bool _canMint
    ) public onlyOwner {
         baseTokenURI = _baseTokenURI;
         _setBaseURI(_baseTokenURI);
         if (_stepNum > 0) {
            stepNum = _stepNum;    
         }
         canMint = _canMint;
         emit SetConfig(_baseTokenURI, _stepNum, _canMint);
    }

    /**
     * @dev 可以通过tokenId修改tokenURI方法, 此方法直接调用721_setTokenURI方法
     */    
    function setTokenURI(uint256 _tokenId, string memory _tokenURI) public{
        require(ownerOf(_tokenId) == msg.sender, "ERC721: tokenId is not allow msg.sender");
        _setTokenURI(_tokenId, _tokenURI);
        emit SetTokenURI(_tokenId, _tokenURI);
    }


    /**
     * @dev calculates the next token ID based on value of currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() private view returns (uint256) {
        return currentTokenId.add(stepNum);
    }

    /**
     * @dev increments the value of currentTokenId
     */
    function _incrementTokenId() private {
        currentTokenId = currentTokenId + stepNum;
    }


}

File 2 of 2: IFactoryERC721.sol
pragma solidity ^0.5.0;

interface IFactoryERC721 {
  
  function mintTo(address _to) external;

  // function mint(uint256 _num, string calldata _defaultTokenURI) external;

  function setConfig(string calldata _baseTokenURI,uint256 _stepNum,bool _canMint) external;

  function getTokenURI(uint256 _tokenId) external view returns (string memory);

  function setTokenURI(uint256 _tokenId, string calldata _tokenURI) external;

}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","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"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_newTokenId","type":"uint256"}],"name":"MintByTokenId","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":false,"internalType":"string","name":"_baseTokenURI","type":"string"},{"indexed":false,"internalType":"uint256","name":"_stepNum","type":"uint256"},{"indexed":false,"internalType":"bool","name":"_canMint","type":"bool"}],"name":"SetConfig","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_tokenURI","type":"string"}],"name":"SetTokenURI","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"_newTokenId","type":"uint256"}],"name":"mintByTokenId","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"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":"_baseTokenURI","type":"string"},{"internalType":"uint256","name":"_stepNum","type":"uint256"},{"internalType":"bool","name":"_canMint","type":"bool"}],"name":"setConfig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"stepNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":[{"internalType":"address","name":"userAdd","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040526000600f556040518060800160405280604b815260200162004bdd604b9139601090805190602001906200003a92919062000780565b5060016011556001601260006101000a81548160ff0219169083151502179055503480156200006857600080fd5b5060405162004c2838038062004c28833981810160405260408110156200008e57600080fd5b8101908080516040519392919084640100000000821115620000af57600080fd5b83820191506020820185811115620000c657600080fd5b8251866001820283011164010000000082111715620000e457600080fd5b8083526020830192505050908051906020019080838360005b838110156200011a578082015181840152602081019050620000fd565b50505050905090810190601f168015620001485780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200016c57600080fd5b838201915060208201858111156200018357600080fd5b8251866001820283011164010000000082111715620001a157600080fd5b8083526020830192505050908051906020019080838360005b83811015620001d7578082015181840152602081019050620001ba565b50505050905090810190601f168015620002055780820380516001836020036101000a031916815260200191505b5060405250505081818181620002286301ffc9a760e01b6200042e60201b60201c565b620002406380ac58cd60e01b6200042e60201b60201c565b6200025863780e9d6360e01b6200042e60201b60201c565b81600990805190602001906200027092919062000780565b5080600a90805190602001906200028992919062000780565b50620002a2635b5e139f60e01b6200042e60201b60201c565b505050506000620002b86200053760201b60201c565b905080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620003776200036b6200053760201b60201c565b6200053f60201b60201c565b6200042660108054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015620004155780601f10620003e95761010080835404028352916020019162000415565b820191906000526020600020905b815481529060010190602001808311620003f757829003601f168201915b5050505050620005a060201b60201c565b50506200082f565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620004cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b6200055a81600e620005bc60201b62003b6c1790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b80600b9080519060200190620005b892919062000780565b5050565b620005ce8282620006a060201b60201c565b1562000642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062004bbb6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620007c357805160ff1916838001178555620007f4565b82800160010185558215620007f4579182015b82811115620007f3578251825591602001919060010190620007d6565b5b50905062000803919062000807565b5090565b6200082c91905b80821115620008285760008160009055506001016200080e565b5090565b90565b61437c806200083f6000396000f3fe608060405234801561001057600080fd5b50600436106102265760003560e01c8063715018a611610130578063a1448194116100b8578063beb9716d1161007c578063beb9716d14610eba578063c87b56dd14610edc578063d547cfb714610f83578063e985e9c514611006578063f2fde38b1461108257610226565b8063a144819414610c85578063a22cb46514610ceb578063aa271e1a14610d3b578063b1d8a2ab14610d97578063b88d4fde14610db557610226565b80638da5cb5b116100ff5780638da5cb5b14610b485780638f32d59b14610b9257806395d89b4114610bb4578063983b2d5614610c375780639865027514610c7b57610226565b8063715018a614610964578063755edd171461096e5780638462151c146109b25780638832e6e314610a4b57610226565b80632f745c59116101b35780634f6ccce7116101825780634f6ccce71461078b578063619059c4146107cd5780636352211e1461081b5780636c0360eb1461088957806370a082311461090c57610226565b80632f745c591461060f57806340c10f191461067157806342842e0e146106d75780634f558e791461074557610226565b8063095ea7b3116101fa578063095ea7b31461039f5780630d4ca171146103ed578063162094c4146104be57806318160ddd1461058357806323b872dd146105a157610226565b80629a9b7b1461022b57806301ffc9a71461024957806306fdde03146102ae578063081812fc14610331575b600080fd5b6102336110c6565b6040518082815260200191505060405180910390f35b6102946004803603602081101561025f57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506110cc565b604051808215151515815260200191505060405180910390f35b6102b6611133565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102f65780820151818401526020810190506102db565b50505050905090810190601f1680156103235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61035d6004803603602081101561034757600080fd5b81019080803590602001909291905050506111d5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103eb600480360360408110156103b557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611270565b005b6104bc6004803603606081101561040357600080fd5b810190808035906020019064010000000081111561042057600080fd5b82018360208201111561043257600080fd5b8035906020019184600183028401116401000000008311171561045457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190803515159060200190929190505050611457565b005b610581600480360360408110156104d457600080fd5b8101908080359060200190929190803590602001906401000000008111156104fb57600080fd5b82018360208201111561050d57600080fd5b8035906020019184600183028401116401000000008311171561052f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506115d1565b005b61058b61170f565b6040518082815260200191505060405180910390f35b61060d600480360360608110156105b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061171c565b005b61065b6004803603604081101561062557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611792565b6040518082815260200191505060405180910390f35b6106bd6004803603604081101561068757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611851565b604051808215151515815260200191505060405180910390f35b610743600480360360608110156106ed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118cc565b005b6107716004803603602081101561075b57600080fd5b81019080803590602001909291905050506118ec565b604051808215151515815260200191505060405180910390f35b6107b7600480360360208110156107a157600080fd5b81019080803590602001909291905050506118fe565b6040518082815260200191505060405180910390f35b610819600480360360408110156107e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061197e565b005b6108476004803603602081101561083157600080fd5b8101908080359060200190929190505050611ba8565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610891611c70565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108d15780820151818401526020810190506108b6565b50505050905090810190601f1680156108fe5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61094e6004803603602081101561092257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d12565b6040518082815260200191505060405180910390f35b61096c611de7565b005b6109b06004803603602081101561098457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f22565b005b6109f4600480360360208110156109c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120aa565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610a37578082015181840152602081019050610a1c565b505050509050019250505060405180910390f35b610b2e60048036036060811015610a6157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610aa857600080fd5b820183602082011115610aba57600080fd5b80359060200191846001830284011164010000000083111715610adc57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061210b565b604051808215151515815260200191505060405180910390f35b610b50612188565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b9a6121b2565b604051808215151515815260200191505060405180910390f35b610bbc612211565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bfc578082015181840152602081019050610be1565b50505050905090810190601f168015610c295780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c7960048036036020811015610c4d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122b3565b005b610c83612324565b005b610cd160048036036040811015610c9b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612336565b604051808215151515815260200191505060405180910390f35b610d3960048036036040811015610d0157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506123b1565b005b610d7d60048036036020811015610d5157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612569565b604051808215151515815260200191505060405180910390f35b610d9f612586565b6040518082815260200191505060405180910390f35b610eb860048036036080811015610dcb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610e3257600080fd5b820183602082011115610e4457600080fd5b80359060200191846001830284011164010000000083111715610e6657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061258c565b005b610ec2612604565b604051808215151515815260200191505060405180910390f35b610f0860048036036020811015610ef257600080fd5b8101908080359060200190929190505050612617565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f48578082015181840152602081019050610f2d565b50505050905090810190601f168015610f755780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610f8b612819565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fcb578082015181840152602081019050610fb0565b50505050905090810190601f168015610ff85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6110686004803603604081101561101c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128b7565b604051808215151515815260200191505060405180910390f35b6110c46004803603602081101561109857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061294b565b005b600f5481565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111cb5780601f106111a0576101008083540402835291602001916111cb565b820191906000526020600020905b8154815290600101906020018083116111ae57829003601f168201915b5050505050905090565b60006111e0826129d1565b611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806141d1602c913960400191505060405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061127b82611ba8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806142ca6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611321612a43565b73ffffffffffffffffffffffffffffffffffffffff161480611350575061134f8161134a612a43565b6128b7565b5b6113a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806140f56038913960400191505060405180910390fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61145f6121b2565b6114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b82601090805190602001906114e7929190613f50565b506114f183612a4b565b600082111561150257816011819055505b80601260006101000a81548160ff0219169083151502179055507fe0cf501bf129000e80796043585f9585f2936ac646b8f90b320c617267935b20838383604051808060200184815260200183151515158152602001828103825285818151815260200191508051906020019080838360005b83811015611590578082015181840152602081019050611575565b50505050905090810190601f1680156115bd5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a1505050565b3373ffffffffffffffffffffffffffffffffffffffff166115f183611ba8565b73ffffffffffffffffffffffffffffffffffffffff161461165d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806142296027913960400191505060405180910390fd5b6116678282612a65565b7fd2d827dddfc9c9a02afc5fc68d3251684b36e213a7999ebd90a861f25df4077e82826040518083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156116d05780820151818401526020810190506116b5565b50505050905090810190601f1680156116fd5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b6000600780549050905090565b61172d611727612a43565b82612aef565b611782576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806142eb6031913960400191505060405180910390fd5b61178d838383612be3565b505050565b600061179d83611d12565b82106117f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614022602b913960400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061183e57fe5b9060005260206000200154905092915050565b600061186361185e612a43565b612569565b6118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806141806030913960400191505060405180910390fd5b6118c28383612c07565b6001905092915050565b6118e78383836040518060200160405280600081525061258c565b505050565b60006118f7826129d1565b9050919050565b600061190861170f565b821061195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061431c602c913960400191505060405180910390fd5b6007828154811061196c57fe5b90600052602060002001549050919050565b61198e611989612a43565b612569565b6119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806141806030913960400191505060405180910390fd5b60011515601260009054906101000a900460ff16151514611a6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4552433732313a2063616e4d696e742069732066616c7365000000000000000081525060200191505060405180910390fd5b611a75816129d1565b15611ae8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4552433732313a2054686973206964206578697374730000000000000000000081525060200191505060405180910390fd5b611af28282612336565b50611b32816040518060400160405280600b81526020017f64656661756c742e706e67000000000000000000000000000000000000000000815250612a65565b80600f819055507f0a15a29c193ee1e89192d00796d93bba2f0804fc02b1055e58ed44a1bc9622088282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806141576029913960400191505060405180910390fd5b80915050919050565b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d085780601f10611cdd57610100808354040283529160200191611d08565b820191906000526020600020905b815481529060010190602001808311611ceb57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061412d602a913960400191505060405180910390fd5b611de0600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c28565b9050919050565b611def6121b2565b611e61576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611f2a6121b2565b611f9c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60011515601260009054906101000a900460ff16151514612025576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4552433732313a2063616e4d696e742069732066616c7365000000000000000081525060200191505060405180910390fd5b600061202f612c36565b905061203b8282612c07565b612043612c54565b7f3c3284d117c92d0b1699230960384e794dcba184cc48ff114fe4fed20c9b056582604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a15050565b60606120b582612c63565b8054806020026020016040519081016040528092919081815260200182805480156120ff57602002820191906000526020600020905b8154815260200190600101908083116120eb575b50505050509050919050565b600061211d612118612a43565b612569565b612172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806141806030913960400191505060405180910390fd5b61217d848484612cab565b600190509392505050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166121f5612a43565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122a95780601f1061227e576101008083540402835291602001916122a9565b820191906000526020600020905b81548152906001019060200180831161228c57829003601f168201915b5050505050905090565b6122c36122be612a43565b612569565b612318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806141806030913960400191505060405180910390fd5b61232181612d1c565b50565b61233461232f612a43565b612d76565b565b6000612348612343612a43565b612569565b61239d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806141806030913960400191505060405180910390fd5b6123a78383612dd0565b6001905092915050565b6123b9612a43565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561245a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060046000612467612a43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612514612a43565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b600061257f82600e612dee90919063ffffffff16565b9050919050565b60115481565b61259d612597612a43565b83612aef565b6125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806142eb6031913960400191505060405180910390fd5b6125fe84848484612ecc565b50505050565b601260009054906101000a900460ff1681565b6060612622826129d1565b612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061429b602f913960400191505060405180910390fd5b6060600c60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156127205780601f106126f557610100808354040283529160200191612720565b820191906000526020600020905b81548152906001019060200180831161270357829003601f168201915b505050505090506000815114156127495760405180602001604052806000815250915050612814565b600b8160405160200180838054600181600116156101000203166002900480156127aa5780601f106127885761010080835404028352918201916127aa565b820191906000526020600020905b815481529060010190602001808311612796575b505082805190602001908083835b602083106127db57805182526020820191506020810190506020830392506127b8565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529150505b919050565b60108054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128af5780601f10612884576101008083540402835291602001916128af565b820191906000526020600020905b81548152906001019060200180831161289257829003601f168201915b505050505081565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6129536121b2565b6129c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6129ce81612f3e565b50565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b600033905090565b80600b9080519060200190612a61929190613f50565b5050565b612a6e826129d1565b612ac3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806141fd602c913960400191505060405180910390fd5b80600c60008481526020019081526020016000209080519060200190612aea929190613f50565b505050565b6000612afa826129d1565b612b4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806140c9602c913960400191505060405180910390fd5b6000612b5a83611ba8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612bc957508373ffffffffffffffffffffffffffffffffffffffff16612bb1846111d5565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bda5750612bd981856128b7565b5b91505092915050565b612bee838383613084565b612bf883826132df565b612c02828261347d565b505050565b612c118282613544565b612c1b828261347d565b612c248161375c565b5050565b600081600001549050919050565b6000612c4f601154600f546137a890919063ffffffff16565b905090565b601154600f5401600f81905550565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050919050565b612cb58383612c07565b612cc26000848484613830565b612d17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061404d6032913960400191505060405180910390fd5b505050565b612d3081600e613b6c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b612d8a81600e613c4790919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b612dea828260405180602001604052806000815250612cab565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e75576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806142506022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612ed7848484612be3565b612ee384848484613830565b612f38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061404d6032913960400191505060405180910390fd5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612fc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061407f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8273ffffffffffffffffffffffffffffffffffffffff166130a482611ba8565b73ffffffffffffffffffffffffffffffffffffffff1614613110576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806142726029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613196576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806140a56024913960400191505060405180910390fd5b61319f81613d04565b6131e6600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613dc2565b61322d600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613de5565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006133376001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050613dfb90919063ffffffff16565b9050600060066000848152602001908152602001600020549050818114613424576000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481106133a457fe5b9060005260206000200154905080600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481106133fc57fe5b9060005260206000200181905550816006600083815260200190815260200160002081905550505b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054809190600190036134769190613fd0565b5050505050565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506006600083815260200190815260200160002081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6135f0816129d1565b15613663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506136fc600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613de5565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6007805490506008600083815260200190815260200160002081905550600781908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b600080828401905083811015613826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60006138518473ffffffffffffffffffffffffffffffffffffffff16613e45565b61385e5760019050613b64565b600060608573ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1663150b7a02905060e01b6138a2612a43565b898888604051602401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613952578082015181840152602081019050613937565b50505050905090810190601f16801561397f5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518082805190602001908083835b60208310613a1757805182526020820191506020810190506020830392506139f4565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613a79576040519150601f19603f3d011682016040523d82523d6000602084013e613a7e565b606091505b509150915081613aec57600081511115613a9b5780518082602001fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061404d6032913960400191505060405180910390fd5b6000818060200190516020811015613b0357600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161493505050505b949350505050565b613b768282612dee565b15613be9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b613c518282612dee565b613ca6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806141b06021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613dbf5760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b613dda60018260000154613dfb90919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b6000613e3d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613e90565b905092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015613e8757506000801b8214155b92505050919050565b6000838311158290613f3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613f02578082015181840152602081019050613ee7565b50505050905090810190601f168015613f2f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613f9157805160ff1916838001178555613fbf565b82800160010185558215613fbf579182015b82811115613fbe578251825591602001919060010190613fa3565b5b509050613fcc9190613ffc565b5090565b815481835581811115613ff757818360005260206000209182019101613ff69190613ffc565b5b505050565b61401e91905b8082111561401a576000816000905550600101614002565b5090565b9056fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4552433732313a20746f6b656e4964206973206e6f7420616c6c6f77206d73672e73656e646572526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a265627a7a72315820f07f044543ee19931d394c63c7f477e36933cdb3ecac91663bb2f550d38ace6364736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f206164647265737368747470733a2f2f697066732e696e667572612e696f2f697066732f516d6261366562376b6a397a747778586768765871737a6769396873596f317468424b47446f4446354331514a462f000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005744361726400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057443617264000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102265760003560e01c8063715018a611610130578063a1448194116100b8578063beb9716d1161007c578063beb9716d14610eba578063c87b56dd14610edc578063d547cfb714610f83578063e985e9c514611006578063f2fde38b1461108257610226565b8063a144819414610c85578063a22cb46514610ceb578063aa271e1a14610d3b578063b1d8a2ab14610d97578063b88d4fde14610db557610226565b80638da5cb5b116100ff5780638da5cb5b14610b485780638f32d59b14610b9257806395d89b4114610bb4578063983b2d5614610c375780639865027514610c7b57610226565b8063715018a614610964578063755edd171461096e5780638462151c146109b25780638832e6e314610a4b57610226565b80632f745c59116101b35780634f6ccce7116101825780634f6ccce71461078b578063619059c4146107cd5780636352211e1461081b5780636c0360eb1461088957806370a082311461090c57610226565b80632f745c591461060f57806340c10f191461067157806342842e0e146106d75780634f558e791461074557610226565b8063095ea7b3116101fa578063095ea7b31461039f5780630d4ca171146103ed578063162094c4146104be57806318160ddd1461058357806323b872dd146105a157610226565b80629a9b7b1461022b57806301ffc9a71461024957806306fdde03146102ae578063081812fc14610331575b600080fd5b6102336110c6565b6040518082815260200191505060405180910390f35b6102946004803603602081101561025f57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506110cc565b604051808215151515815260200191505060405180910390f35b6102b6611133565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102f65780820151818401526020810190506102db565b50505050905090810190601f1680156103235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61035d6004803603602081101561034757600080fd5b81019080803590602001909291905050506111d5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103eb600480360360408110156103b557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611270565b005b6104bc6004803603606081101561040357600080fd5b810190808035906020019064010000000081111561042057600080fd5b82018360208201111561043257600080fd5b8035906020019184600183028401116401000000008311171561045457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190803515159060200190929190505050611457565b005b610581600480360360408110156104d457600080fd5b8101908080359060200190929190803590602001906401000000008111156104fb57600080fd5b82018360208201111561050d57600080fd5b8035906020019184600183028401116401000000008311171561052f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506115d1565b005b61058b61170f565b6040518082815260200191505060405180910390f35b61060d600480360360608110156105b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061171c565b005b61065b6004803603604081101561062557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611792565b6040518082815260200191505060405180910390f35b6106bd6004803603604081101561068757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611851565b604051808215151515815260200191505060405180910390f35b610743600480360360608110156106ed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118cc565b005b6107716004803603602081101561075b57600080fd5b81019080803590602001909291905050506118ec565b604051808215151515815260200191505060405180910390f35b6107b7600480360360208110156107a157600080fd5b81019080803590602001909291905050506118fe565b6040518082815260200191505060405180910390f35b610819600480360360408110156107e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061197e565b005b6108476004803603602081101561083157600080fd5b8101908080359060200190929190505050611ba8565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610891611c70565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108d15780820151818401526020810190506108b6565b50505050905090810190601f1680156108fe5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61094e6004803603602081101561092257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d12565b6040518082815260200191505060405180910390f35b61096c611de7565b005b6109b06004803603602081101561098457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f22565b005b6109f4600480360360208110156109c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120aa565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610a37578082015181840152602081019050610a1c565b505050509050019250505060405180910390f35b610b2e60048036036060811015610a6157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610aa857600080fd5b820183602082011115610aba57600080fd5b80359060200191846001830284011164010000000083111715610adc57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061210b565b604051808215151515815260200191505060405180910390f35b610b50612188565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b9a6121b2565b604051808215151515815260200191505060405180910390f35b610bbc612211565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bfc578082015181840152602081019050610be1565b50505050905090810190601f168015610c295780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c7960048036036020811015610c4d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122b3565b005b610c83612324565b005b610cd160048036036040811015610c9b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612336565b604051808215151515815260200191505060405180910390f35b610d3960048036036040811015610d0157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506123b1565b005b610d7d60048036036020811015610d5157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612569565b604051808215151515815260200191505060405180910390f35b610d9f612586565b6040518082815260200191505060405180910390f35b610eb860048036036080811015610dcb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610e3257600080fd5b820183602082011115610e4457600080fd5b80359060200191846001830284011164010000000083111715610e6657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061258c565b005b610ec2612604565b604051808215151515815260200191505060405180910390f35b610f0860048036036020811015610ef257600080fd5b8101908080359060200190929190505050612617565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f48578082015181840152602081019050610f2d565b50505050905090810190601f168015610f755780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610f8b612819565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fcb578082015181840152602081019050610fb0565b50505050905090810190601f168015610ff85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6110686004803603604081101561101c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128b7565b604051808215151515815260200191505060405180910390f35b6110c46004803603602081101561109857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061294b565b005b600f5481565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111cb5780601f106111a0576101008083540402835291602001916111cb565b820191906000526020600020905b8154815290600101906020018083116111ae57829003601f168201915b5050505050905090565b60006111e0826129d1565b611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806141d1602c913960400191505060405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061127b82611ba8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806142ca6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611321612a43565b73ffffffffffffffffffffffffffffffffffffffff161480611350575061134f8161134a612a43565b6128b7565b5b6113a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806140f56038913960400191505060405180910390fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61145f6121b2565b6114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b82601090805190602001906114e7929190613f50565b506114f183612a4b565b600082111561150257816011819055505b80601260006101000a81548160ff0219169083151502179055507fe0cf501bf129000e80796043585f9585f2936ac646b8f90b320c617267935b20838383604051808060200184815260200183151515158152602001828103825285818151815260200191508051906020019080838360005b83811015611590578082015181840152602081019050611575565b50505050905090810190601f1680156115bd5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a1505050565b3373ffffffffffffffffffffffffffffffffffffffff166115f183611ba8565b73ffffffffffffffffffffffffffffffffffffffff161461165d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806142296027913960400191505060405180910390fd5b6116678282612a65565b7fd2d827dddfc9c9a02afc5fc68d3251684b36e213a7999ebd90a861f25df4077e82826040518083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156116d05780820151818401526020810190506116b5565b50505050905090810190601f1680156116fd5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b6000600780549050905090565b61172d611727612a43565b82612aef565b611782576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806142eb6031913960400191505060405180910390fd5b61178d838383612be3565b505050565b600061179d83611d12565b82106117f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614022602b913960400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061183e57fe5b9060005260206000200154905092915050565b600061186361185e612a43565b612569565b6118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806141806030913960400191505060405180910390fd5b6118c28383612c07565b6001905092915050565b6118e78383836040518060200160405280600081525061258c565b505050565b60006118f7826129d1565b9050919050565b600061190861170f565b821061195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061431c602c913960400191505060405180910390fd5b6007828154811061196c57fe5b90600052602060002001549050919050565b61198e611989612a43565b612569565b6119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806141806030913960400191505060405180910390fd5b60011515601260009054906101000a900460ff16151514611a6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4552433732313a2063616e4d696e742069732066616c7365000000000000000081525060200191505060405180910390fd5b611a75816129d1565b15611ae8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4552433732313a2054686973206964206578697374730000000000000000000081525060200191505060405180910390fd5b611af28282612336565b50611b32816040518060400160405280600b81526020017f64656661756c742e706e67000000000000000000000000000000000000000000815250612a65565b80600f819055507f0a15a29c193ee1e89192d00796d93bba2f0804fc02b1055e58ed44a1bc9622088282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806141576029913960400191505060405180910390fd5b80915050919050565b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d085780601f10611cdd57610100808354040283529160200191611d08565b820191906000526020600020905b815481529060010190602001808311611ceb57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061412d602a913960400191505060405180910390fd5b611de0600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c28565b9050919050565b611def6121b2565b611e61576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611f2a6121b2565b611f9c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60011515601260009054906101000a900460ff16151514612025576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4552433732313a2063616e4d696e742069732066616c7365000000000000000081525060200191505060405180910390fd5b600061202f612c36565b905061203b8282612c07565b612043612c54565b7f3c3284d117c92d0b1699230960384e794dcba184cc48ff114fe4fed20c9b056582604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a15050565b60606120b582612c63565b8054806020026020016040519081016040528092919081815260200182805480156120ff57602002820191906000526020600020905b8154815260200190600101908083116120eb575b50505050509050919050565b600061211d612118612a43565b612569565b612172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806141806030913960400191505060405180910390fd5b61217d848484612cab565b600190509392505050565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166121f5612a43565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122a95780601f1061227e576101008083540402835291602001916122a9565b820191906000526020600020905b81548152906001019060200180831161228c57829003601f168201915b5050505050905090565b6122c36122be612a43565b612569565b612318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806141806030913960400191505060405180910390fd5b61232181612d1c565b50565b61233461232f612a43565b612d76565b565b6000612348612343612a43565b612569565b61239d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806141806030913960400191505060405180910390fd5b6123a78383612dd0565b6001905092915050565b6123b9612a43565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561245a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060046000612467612a43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612514612a43565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b600061257f82600e612dee90919063ffffffff16565b9050919050565b60115481565b61259d612597612a43565b83612aef565b6125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806142eb6031913960400191505060405180910390fd5b6125fe84848484612ecc565b50505050565b601260009054906101000a900460ff1681565b6060612622826129d1565b612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018061429b602f913960400191505060405180910390fd5b6060600c60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156127205780601f106126f557610100808354040283529160200191612720565b820191906000526020600020905b81548152906001019060200180831161270357829003601f168201915b505050505090506000815114156127495760405180602001604052806000815250915050612814565b600b8160405160200180838054600181600116156101000203166002900480156127aa5780601f106127885761010080835404028352918201916127aa565b820191906000526020600020905b815481529060010190602001808311612796575b505082805190602001908083835b602083106127db57805182526020820191506020810190506020830392506127b8565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040529150505b919050565b60108054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128af5780601f10612884576101008083540402835291602001916128af565b820191906000526020600020905b81548152906001019060200180831161289257829003601f168201915b505050505081565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6129536121b2565b6129c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6129ce81612f3e565b50565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b600033905090565b80600b9080519060200190612a61929190613f50565b5050565b612a6e826129d1565b612ac3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806141fd602c913960400191505060405180910390fd5b80600c60008481526020019081526020016000209080519060200190612aea929190613f50565b505050565b6000612afa826129d1565b612b4f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806140c9602c913960400191505060405180910390fd5b6000612b5a83611ba8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612bc957508373ffffffffffffffffffffffffffffffffffffffff16612bb1846111d5565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bda5750612bd981856128b7565b5b91505092915050565b612bee838383613084565b612bf883826132df565b612c02828261347d565b505050565b612c118282613544565b612c1b828261347d565b612c248161375c565b5050565b600081600001549050919050565b6000612c4f601154600f546137a890919063ffffffff16565b905090565b601154600f5401600f81905550565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050919050565b612cb58383612c07565b612cc26000848484613830565b612d17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061404d6032913960400191505060405180910390fd5b505050565b612d3081600e613b6c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b612d8a81600e613c4790919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b612dea828260405180602001604052806000815250612cab565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e75576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806142506022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612ed7848484612be3565b612ee384848484613830565b612f38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061404d6032913960400191505060405180910390fd5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612fc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061407f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8273ffffffffffffffffffffffffffffffffffffffff166130a482611ba8565b73ffffffffffffffffffffffffffffffffffffffff1614613110576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806142726029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613196576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806140a56024913960400191505060405180910390fd5b61319f81613d04565b6131e6600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613dc2565b61322d600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613de5565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006133376001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050613dfb90919063ffffffff16565b9050600060066000848152602001908152602001600020549050818114613424576000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481106133a457fe5b9060005260206000200154905080600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481106133fc57fe5b9060005260206000200181905550816006600083815260200190815260200160002081905550505b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054809190600190036134769190613fd0565b5050505050565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506006600083815260200190815260200160002081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6135f0816129d1565b15613663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506136fc600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613de5565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6007805490506008600083815260200190815260200160002081905550600781908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b600080828401905083811015613826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60006138518473ffffffffffffffffffffffffffffffffffffffff16613e45565b61385e5760019050613b64565b600060608573ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1663150b7a02905060e01b6138a2612a43565b898888604051602401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613952578082015181840152602081019050613937565b50505050905090810190601f16801561397f5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518082805190602001908083835b60208310613a1757805182526020820191506020810190506020830392506139f4565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613a79576040519150601f19603f3d011682016040523d82523d6000602084013e613a7e565b606091505b509150915081613aec57600081511115613a9b5780518082602001fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061404d6032913960400191505060405180910390fd5b6000818060200190516020811015613b0357600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161493505050505b949350505050565b613b768282612dee565b15613be9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b613c518282612dee565b613ca6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806141b06021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613dbf5760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b613dda60018260000154613dfb90919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b6000613e3d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613e90565b905092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015613e8757506000801b8214155b92505050919050565b6000838311158290613f3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613f02578082015181840152602081019050613ee7565b50505050905090810190601f168015613f2f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613f9157805160ff1916838001178555613fbf565b82800160010185558215613fbf579182015b82811115613fbe578251825591602001919060010190613fa3565b5b509050613fcc9190613ffc565b5090565b815481835581811115613ff757818360005260206000209182019101613ff69190613ffc565b5b505050565b61401e91905b8082111561401a576000816000905550600101614002565b5090565b9056fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4552433732313a20746f6b656e4964206973206e6f7420616c6c6f77206d73672e73656e646572526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a265627a7a72315820f07f044543ee19931d394c63c7f477e36933cdb3ecac91663bb2f550d38ace6364736f6c63430005110032

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005744361726400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057443617264000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): tCard
Arg [1] : _symbol (string): tCard

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 7443617264000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 7443617264000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

54230:4190:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54230:4190:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54335:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16109:133;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16109:133:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;43279:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;43279:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20952:200;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20952:200:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20252:415;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20252:415:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57238:377;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;57238:377:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;57238:377:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;57238:377:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;57238:377:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;57238:377:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57737:260;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;57737:260:0;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;57737:260:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;57737:260:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;57737:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;57737:260:0;;;;;;;;;;;;;;;:::i;:::-;;35060:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22598:287;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22598:287:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34678:229;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34678:229:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49244:132;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;49244:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23534;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23534:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56651:101;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56651:101:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;35492:196;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35492:196:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;56163:401;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56163:401:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19608:223;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19608:223:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45467:89;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;45467:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19182:207;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19182:207:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;51975:137;;;:::i;:::-;;55723:271;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;55723:271:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;56960:126;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56960:126:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;56960:126:0;;;;;;;;;;;;;;;;;50085:167;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;50085:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;50085:167:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;50085:167:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;50085:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;50085:167:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;51190:77;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;51541:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;43471:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;43471:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48358:90;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48358:90:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;48454:77;;;:::i;:::-;;49624:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;49624:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21445:249;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21445:249:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48245:107;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48245:107:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;54535:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24389:269;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;24389:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;24389:269:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;24389:269:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;24389:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;24389:269:0;;;;;;;;;;;;;;;:::i;:::-;;54598:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;43861:545;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43861:545:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;43861:545:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54393:106;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;54393:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22016:145;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22016:145:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;52261:107;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;52261:107:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;54335:33;;;;:::o;16109:133::-;16179:4;16202:20;:33;16223:11;16202:33;;;;;;;;;;;;;;;;;;;;;;;;;;;16195:40;;16109:133;;;:::o;43279:83::-;43318:13;43350:5;43343:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43279:83;:::o;20952:200::-;21011:7;21038:16;21046:7;21038;:16::i;:::-;21030:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21121:15;:24;21137:7;21121:24;;;;;;;;;;;;;;;;;;;;;21114:31;;20952:200;;;:::o;20252:415::-;20315:13;20331:16;20339:7;20331;:16::i;:::-;20315:32;;20371:5;20365:11;;:2;:11;;;;20357:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20449:5;20433:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;20458:37;20475:5;20482:12;:10;:12::i;:::-;20458:16;:37::i;:::-;20433:62;20425:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20615:2;20588:15;:24;20604:7;20588:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20652:7;20648:2;20632:28;;20641:5;20632:28;;;;;;;;;;;;20252:415;;;:::o;57238:377::-;51394:9;:7;:9::i;:::-;51386:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57393:13;57378:12;:28;;;;;;;;;;;;:::i;:::-;;57417:26;57429:13;57417:11;:26::i;:::-;57469:1;57458:8;:12;57454:66;;;57496:8;57486:7;:18;;;;57454:66;57540:8;57530:7;;:18;;;;;;;;;;;;;;;;;;57564:44;57574:13;57589:8;57599;57564:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;57564:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57238:377;;;:::o;57737:260::-;57846:10;57825:31;;:17;57833:8;57825:7;:17::i;:::-;:31;;;57817:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57910:33;57923:8;57933:9;57910:12;:33::i;:::-;57958:32;57970:8;57980:9;57958:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;57958:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57737:260;;:::o;35060:94::-;35104:7;35130:10;:17;;;;35123:24;;35060:94;:::o;22598:287::-;22740:41;22759:12;:10;:12::i;:::-;22773:7;22740:18;:41::i;:::-;22732:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22846:32;22860:4;22866:2;22870:7;22846:13;:32::i;:::-;22598:287;;;:::o;34678:229::-;34758:7;34793:16;34803:5;34793:9;:16::i;:::-;34785:5;:24;34777:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34874:12;:19;34887:5;34874:19;;;;;;;;;;;;;;;34894:5;34874:26;;;;;;;;;;;;;;;;34867:33;;34678:229;;;;:::o;49244:132::-;49314:4;48146:22;48155:12;:10;:12::i;:::-;48146:8;:22::i;:::-;48138:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49330:18;49336:2;49340:7;49330:5;:18::i;:::-;49365:4;49358:11;;49244:132;;;;:::o;23534:::-;23620:39;23637:4;23643:2;23647:7;23620:39;;;;;;;;;;;;:16;:39::i;:::-;23534:132;;;:::o;56651:101::-;56705:4;56728:17;56736:8;56728:7;:17::i;:::-;56721:24;;56651:101;;;:::o;35492:196::-;35550:7;35585:13;:11;:13::i;:::-;35577:5;:21;35569:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35664:10;35675:5;35664:17;;;;;;;;;;;;;;;;35657:24;;35492:196;;;:::o;56163:401::-;48146:22;48155:12;:10;:12::i;:::-;48146:8;:22::i;:::-;48138:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56267:4;56256:15;;:7;;;;;;;;;;;:15;;;56248:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56318:20;56326:11;56318:7;:20::i;:::-;56317:21;56309:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56398:26;56407:3;56412:11;56398:8;:26::i;:::-;;56434:39;56447:11;56434:39;;;;;;;;;;;;;;;;;:12;:39::i;:::-;56500:11;56483:14;:28;;;;56526:31;56540:3;56545:11;56526:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;56163:401;;:::o;19608:223::-;19663:7;19682:13;19698:11;:20;19710:7;19698:20;;;;;;;;;;;;;;;;;;;;;19682:36;;19753:1;19736:19;;:5;:19;;;;19728:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19819:5;19812:12;;;19608:223;;;:::o;45467:89::-;45509:13;45541:8;45534:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45467:89;:::o;19182:207::-;19237:7;19281:1;19264:19;;:5;:19;;;;19256:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19348:34;:17;:24;19366:5;19348:24;;;;;;;;;;;;;;;:32;:34::i;:::-;19341:41;;19182:207;;;:::o;51975:137::-;51394:9;:7;:9::i;:::-;51386:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52073:1;52036:40;;52057:6;;;;;;;;;;;52036:40;;;;;;;;;;;;52103:1;52086:6;;:19;;;;;;;;;;;;;;;;;;51975:137::o;55723:271::-;51394:9;:7;:9::i;:::-;51386:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55798:4;55787:15;;:7;;;;;;;;;;;:15;;;55779:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55840:18;55861:17;:15;:17::i;:::-;55840:38;;55912:22;55918:3;55923:10;55912:5;:22::i;:::-;55944:19;:17;:19::i;:::-;55978:9;55983:3;55978:9;;;;;;;;;;;;;;;;;;;;;;51450:1;55723:271;:::o;56960:126::-;57021:16;57056:23;57071:7;57056:14;:23::i;:::-;57049:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56960:126;;;:::o;50085:167::-;50179:4;48146:22;48155:12;:10;:12::i;:::-;48146:8;:22::i;:::-;48138:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50195:29;50205:2;50209:7;50218:5;50195:9;:29::i;:::-;50241:4;50234:11;;50085:167;;;;;:::o;51190:77::-;51228:7;51254:6;;;;;;;;;;;51247:13;;51190:77;:::o;51541:92::-;51581:4;51620:6;;;;;;;;;;;51604:22;;:12;:10;:12::i;:::-;:22;;;51597:29;;51541:92;:::o;43471:87::-;43512:13;43544:7;43537:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43471:87;:::o;48358:90::-;48146:22;48155:12;:10;:12::i;:::-;48146:8;:22::i;:::-;48138:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48422:19;48433:7;48422:10;:19::i;:::-;48358:90;:::o;48454:77::-;48497:27;48511:12;:10;:12::i;:::-;48497:13;:27::i;:::-;48454:77::o;49624:140::-;49698:4;48146:22;48155:12;:10;:12::i;:::-;48146:8;:22::i;:::-;48138:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49714:22;49724:2;49728:7;49714:9;:22::i;:::-;49753:4;49746:11;;49624:140;;;;:::o;21445:249::-;21530:12;:10;:12::i;:::-;21524:18;;:2;:18;;;;21516:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21622:8;21583:18;:32;21602:12;:10;:12::i;:::-;21583:32;;;;;;;;;;;;;;;:36;21616:2;21583:36;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;21674:2;21645:42;;21660:12;:10;:12::i;:::-;21645:42;;;21678:8;21645:42;;;;;;;;;;;;;;;;;;;;;;21445:249;;:::o;48245:107::-;48301:4;48324:21;48337:7;48324:8;:12;;:21;;;;:::i;:::-;48317:28;;48245:107;;;:::o;54535:26::-;;;;:::o;24389:269::-;24503:41;24522:12;:10;:12::i;:::-;24536:7;24503:18;:41::i;:::-;24495:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24608:43;24626:4;24632:2;24636:7;24645:5;24608:17;:43::i;:::-;24389:269;;;;:::o;54598:26::-;;;;;;;;;;;;;:::o;43861:545::-;43919:13;43952:16;43960:7;43952;:16::i;:::-;43944:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44031:23;44057:10;:19;44068:7;44057:19;;;;;;;;;;;44031:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44211:1;44190:9;44184:23;:28;44180:220;;;44228:9;;;;;;;;;;;;;;;;;44180:220;44368:8;44378:9;44351:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;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;;;44351:37:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;44351:37:0;;;44337:52;;;43861:545;;;;:::o;54393:106::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22016:145::-;22096:4;22119:18;:25;22138:5;22119:25;;;;;;;;;;;;;;;:35;22145:8;22119:35;;;;;;;;;;;;;;;;;;;;;;;;;22112:42;;22016:145;;;;:::o;52261:107::-;51394:9;:7;:9::i;:::-;51386:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52333:28;52352:8;52333:18;:28::i;:::-;52261:107;:::o;25827:152::-;25884:4;25900:13;25916:11;:20;25928:7;25916:20;;;;;;;;;;;;;;;;;;;;;25900:36;;25970:1;25953:19;;:5;:19;;;;25946:26;;;25827:152;;;:::o;846:96::-;891:15;925:10;918:17;;846:96;:::o;45147:88::-;45221:7;45210:8;:18;;;;;;;;;;;;:::i;:::-;;45147:88;:::o;44730:204::-;44821:16;44829:7;44821;:16::i;:::-;44813:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44918:9;44896:10;:19;44907:7;44896:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;44730:204;;:::o;26340:329::-;26425:4;26449:16;26457:7;26449;:16::i;:::-;26441:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26524:13;26540:16;26548:7;26540;:16::i;:::-;26524:32;;26585:5;26574:16;;:7;:16;;;:51;;;;26618:7;26594:31;;:20;26606:7;26594:11;:20::i;:::-;:31;;;26574:51;:87;;;;26629:32;26646:5;26653:7;26629:16;:32::i;:::-;26574:87;26566:96;;;26340:329;;;;:::o;36063:239::-;36148:38;36168:4;36174:2;36178:7;36148:19;:38::i;:::-;36197:47;36230:4;36236:7;36197:32;:47::i;:::-;36255:40;36283:2;36287:7;36255:27;:40::i;:::-;36063:239;;;:::o;36559:196::-;36622:24;36634:2;36638:7;36622:11;:24::i;:::-;36657:40;36685:2;36689:7;36657:27;:40::i;:::-;36708;36740:7;36708:31;:40::i;:::-;36559:196;;:::o;14737:112::-;14802:7;14828;:14;;;14821:21;;14737:112;;;:::o;58139:109::-;58188:7;58214:27;58233:7;;58214:14;;:18;;:27;;;;:::i;:::-;58207:34;;58139:109;:::o;58321:95::-;58402:7;;58385:14;;:24;58368:14;:41;;;;58321:95::o;37599:124::-;37661:17;37697:12;:19;37710:5;37697:19;;;;;;;;;;;;;;;37690:26;;37599:124;;;:::o;27899:239::-;27986:18;27992:2;27996:7;27986:5;:18::i;:::-;28022:54;28053:1;28057:2;28061:7;28070:5;28022:22;:54::i;:::-;28014:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27899:239;;;:::o;48537:119::-;48593:21;48606:7;48593:8;:12;;:21;;;;:::i;:::-;48641:7;48629:20;;;;;;;;;;;;48537:119;:::o;48662:127::-;48721:24;48737:7;48721:8;:15;;:24;;;;:::i;:::-;48774:7;48760:22;;;;;;;;;;;;48662:127;:::o;27198:100::-;27265:26;27275:2;27279:7;27265:26;;;;;;;;;;;;:9;:26::i;:::-;27198:100;;:::o;47531:200::-;47603:4;47646:1;47627:21;;:7;:21;;;;47619:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47704:4;:11;;:20;47716:7;47704:20;;;;;;;;;;;;;;;;;;;;;;;;;47697:27;;47531:200;;;;:::o;25363:269::-;25472:32;25486:4;25492:2;25496:7;25472:13;:32::i;:::-;25522:48;25545:4;25551:2;25555:7;25564:5;25522:22;:48::i;:::-;25514:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25363:269;;;;:::o;52469:225::-;52562:1;52542:22;;:8;:22;;;;52534:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52651:8;52622:38;;52643:6;;;;;;;;;;;52622:38;;;;;;;;;;;;52679:8;52670:6;;:17;;;;;;;;;;;;;;;;;;52469:225;:::o;29950:447::-;30063:4;30043:24;;:16;30051:7;30043;:16::i;:::-;:24;;;30035:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30145:1;30131:16;;:2;:16;;;;30123:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30199:23;30214:7;30199:14;:23::i;:::-;30233:35;:17;:23;30251:4;30233:23;;;;;;;;;;;;;;;:33;:35::i;:::-;30278:33;:17;:21;30296:2;30278:21;;;;;;;;;;;;;;;:31;:33::i;:::-;30345:2;30322:11;:20;30334:7;30322:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;30382:7;30378:2;30363:27;;30372:4;30363:27;;;;;;;;;;;;29950:447;;;:::o;39173:1128::-;39435:22;39460:32;39490:1;39460:12;:18;39473:4;39460:18;;;;;;;;;;;;;;;:25;;;;:29;;:32;;;;:::i;:::-;39435:57;;39502:18;39523:17;:26;39541:7;39523:26;;;;;;;;;;;;39502:47;;39667:14;39653:10;:28;39649:323;;39697:19;39719:12;:18;39732:4;39719:18;;;;;;;;;;;;;;;39738:14;39719:34;;;;;;;;;;;;;;;;39697:56;;39801:11;39768:12;:18;39781:4;39768:18;;;;;;;;;;;;;;;39787:10;39768:30;;;;;;;;;;;;;;;:44;;;;39917:10;39884:17;:30;39902:11;39884:30;;;;;;;;;;;:43;;;;39649:323;;40058:12;:18;40071:4;40058:18;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:::i;:::-;;39173:1128;;;;:::o;38017:183::-;38130:12;:16;38143:2;38130:16;;;;;;;;;;;;;;;:23;;;;38101:17;:26;38119:7;38101:26;;;;;;;;;;;:52;;;;38163:12;:16;38176:2;38163:16;;;;;;;;;;;;;;;38185:7;38163:30;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;38163:30:0;;;;;;;;;;;;;;;;;;;;;;38017:183;;:::o;28383:327::-;28468:1;28454:16;;:2;:16;;;;28446:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28526:16;28534:7;28526;:16::i;:::-;28525:17;28517:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28609:2;28586:11;:20;28598:7;28586:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;28621:33;:17;:21;28639:2;28621:21;;;;;;;;;;;;;;;:31;:33::i;:::-;28695:7;28691:2;28670:33;;28687:1;28670:33;;;;;;;;;;;;28383:327;;:::o;38395:161::-;38498:10;:17;;;;38471:15;:24;38487:7;38471:24;;;;;;;;;;;:44;;;;38525:10;38541:7;38525:24;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;38525:24:0;;;;;;;;;;;;;;;;;;;;;;38395:161;:::o;6160:176::-;6218:7;6237:9;6253:1;6249;:5;6237:17;;6277:1;6272;:6;;6264:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6328:1;6321:8;;;6160:176;;;;:::o;31036:1051::-;31157:4;31182:15;:2;:13;;;:15::i;:::-;31177:58;;31220:4;31213:11;;;;31177:58;31304:12;31318:23;31345:2;:7;;31405:2;31389:36;;;:45;;;;31448:12;:10;:12::i;:::-;31474:4;31492:7;31513:5;31353:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;31353:175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;31353:175:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;31353:175:0;31345:184;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;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;;;31345:184: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;;31303:226:0;;;;31544:7;31539:542;;31591:1;31571:10;:17;:21;31567:376;;;31736:10;31730:17;31796:15;31783:10;31779:2;31775:19;31768:44;31685:145;31868:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31539:542;31973:13;32000:10;31989:32;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31989:32:0;;;;;;;;;;;;;;;;31973:48;;17423:10;32053:16;;32043:26;;;:6;:26;;;;32035:35;;;;;31036:1051;;;;;;;:::o;47012:175::-;47089:18;47093:4;47099:7;47089:3;:18::i;:::-;47088:19;47080:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47176:4;47153;:11;;:20;47165:7;47153:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;47012:175;;:::o;47262:180::-;47341:18;47345:4;47351:7;47341:3;:18::i;:::-;47333:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47430:5;47407:4;:11;;:20;47419:7;47407:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;47262:180;;:::o;32249:171::-;32348:1;32312:38;;:15;:24;32328:7;32312:24;;;;;;;;;;;;;;;;;;;;;:38;;;32308:106;;32401:1;32366:15;:24;32382:7;32366:24;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;32308:106;32249:171;:::o;15039:108::-;15119:21;15138:1;15119:7;:14;;;:18;;:21;;;;:::i;:::-;15102:7;:14;;:38;;;;15039:108;:::o;14855:178::-;15025:1;15007:7;:14;;;:19;;;;;;;;;;;14855:178;:::o;6600:134::-;6658:7;6684:43;6688:1;6691;6684:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;6677:50;;6600:134;;;;:::o;11371:610::-;11431:4;11689:16;11715:19;11737:66;11715:88;;;;11904:7;11892:20;11880:32;;11943:11;11931:8;:23;;:42;;;;;11970:3;11958:15;;:8;:15;;11931:42;11923:51;;;;11371:610;;;:::o;7058:187::-;7144:7;7176:1;7171;:6;;7179:12;7163:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;7163:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7202:9;7218:1;7214;:5;7202:17;;7237:1;7230:8;;;7058:187;;;;;:::o;54230:4190::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

bzzr://f07f044543ee19931d394c63c7f477e36933cdb3ecac91663bb2f550d38ace63
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.