ETH Price: $2,391.72 (+0.10%)

Token

THEM Hats (HAT)
 

Overview

Max Total Supply

503 HAT

Holders

187

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 HAT
0x2DAcd1784555b7c85458be040E50959CE2BE867a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

We're releasing 420 of 666 unique hats 🧢 No more than 666 will ever be made. 69 wagies were lucky to get in with an early application. Soon™ a hat will allow you to work.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Hat

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// 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/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 {
  // via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol
  function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory) {
      bytes memory _ba = bytes(_a);
      bytes memory _bb = bytes(_b);
      bytes memory _bc = bytes(_c);
      bytes memory _bd = bytes(_d);
      bytes memory _be = bytes(_e);
      string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length);
      bytes memory babcde = bytes(abcde);
      uint k = 0;
      for (uint i = 0; i < _ba.length; i++) babcde[k++] = _ba[i];
      for (uint i = 0; i < _bb.length; i++) babcde[k++] = _bb[i];
      for (uint i = 0; i < _bc.length; i++) babcde[k++] = _bc[i];
      for (uint i = 0; i < _bd.length; i++) babcde[k++] = _bd[i];
      for (uint i = 0; i < _be.length; i++) babcde[k++] = _be[i];
      return string(babcde);
    }

    function strConcat(string memory _a, string memory _b, string memory _c, string memory _d) internal pure returns (string memory) {
        return strConcat(_a, _b, _c, _d, "");
    }

    function strConcat(string memory _a, string memory _b, string memory _c) internal pure returns (string memory) {
        return strConcat(_a, _b, _c, "", "");
    }

    function strConcat(string memory _a, string memory _b) internal pure returns (string memory) {
        return strConcat(_a, _b, "", "", "");
    }

    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;




contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

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

    address proxyRegistryAddress;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) public ERC721Full(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    function baseTokenURI() public pure returns (string memory) {
        return "";
    }

    function tokenURI(uint256 _tokenId) external view returns (string memory) {
        return Strings.strConcat(baseTokenURI(), Strings.uint2str(_tokenId));
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }
}

// File: contracts/Hat.sol

pragma solidity ^0.5.0;



/**
 * @title Hat
 * Hat - a contract for non-fungible hats.
 */
contract Hat is ERC721Tradable {
    uint256 public hardCap;
    uint256 public softCap;
    address payable wallet;
    bool public locked;
    mapping (uint256 => uint256) initialPrice;
    string public ipfsIndex;

    constructor(address payable _wallet, string memory _ipfsIndex, address _proxyRegistryAddress)
        public
        ERC721Tradable("THEM Hats", "HAT", _proxyRegistryAddress)
    {
        wallet = _wallet;
        locked = true;
        softCap = 421;
        hardCap = 666;
        ipfsIndex = _ipfsIndex;
    }

    /**
     * Buy a token and mint it in the process. (Only 1 - softCap).
     * @param _tokenId id of the token to be minted
     */
    function buy(uint256 _tokenId) external payable {
        uint256 payed = msg.value;
        uint256 price = getInitialPrice(_tokenId); 

        require(!locked, 'Buying hats is not unlocked yet. Soon™');
        require(_tokenId >= 1 && _tokenId <= hardCap, '_tokenId is invalid');
        require(_tokenId <= softCap, 'Hat not for sale yet');
        require(!_exists(_tokenId), 'Hat already sold');
        require(price <= payed, 'Price must be equal to or larger than the sales price');

        _mint(msg.sender, _tokenId);
        wallet.transfer(msg.value);
    }

    /**
     * Owner can change wallet.
     */
    function changeWallet(address payable _newWallet) public onlyOwner {
        wallet = _newWallet;
    }

    /**
     * Update IPFS Index.
     */
    function changeIpfsIndex(string memory _newIpfsIndex) public onlyOwner {
        ipfsIndex = _newIpfsIndex;
    }

    /**
     * Allow to offer more hats up to the hard cap of 666.
     */
    function changeSoftCap(uint256 _newCap) public onlyOwner {
        require(_newCap <= hardCap, 'Hardcap is at 666.');
        softCap = _newCap;
    }

    /**
     * Irreversably unlock buying.
     */
    function unlock() public onlyOwner {
        require(locked, 'Contract is already unlocked');
        locked = false;
    }

    function exists(uint256 _tokenId) public view returns (bool) {
        return _exists(_tokenId);
    }

    /**
     * @dev Mints a token to an address with a _tokenId.
     * @param _to address of the future owner of the token
     */
    function mintTo(uint256 _tokenId, address _to) public onlyOwner {
        require(_tokenId >= 1 && _tokenId <= hardCap, '_tokenId is invalid');
        _mint(_to, _tokenId);
    }


    function setInitialPrice(uint256 _tokenId, uint256 _price) public onlyOwner {
        require(!_exists(_tokenId), 'Hat already sold');
        require(_price >= 0.01 ether, 'Price needs to be equal to or larger than 0.01 ETH');
        require(_tokenId >= 1 && _tokenId <= hardCap, '_tokenId is invalid');
        initialPrice[_tokenId] = _price;
    }

    function getInitialPrice(uint256 _tokenId) public view returns (uint256) {
        uint256 price;

        if (initialPrice[_tokenId] < 0.01 ether) {
            price = 1 ether;
        } else {
            price = initialPrice[_tokenId];
        }

        return price;
    }

    function baseTokenURI() public pure returns (string memory) {
        return "https://api.them.af/api/hats/";
    }

    function contractURI() public pure returns (string memory) {
        return "https://api.them.af/api/contracts/hats";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_wallet","type":"address"},{"internalType":"string","name":"_ipfsIndex","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"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":"pure","type":"function"},{"constant":true,"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_newIpfsIndex","type":"string"}],"name":"changeIpfsIndex","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_newCap","type":"uint256"}],"name":"changeSoftCap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"_newWallet","type":"address"}],"name":"changeWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"pure","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":"uint256","name":"_tokenId","type":"uint256"}],"name":"getInitialPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"hardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ipfsIndex","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"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":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setInitialPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"softCap","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":[],"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"},{"constant":false,"inputs":[],"name":"unlock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200478538038062004785833981810160405260608110156200003757600080fd5b8101908080519060200190929190805160405193929190846401000000008211156200006257600080fd5b838201915060208201858111156200007957600080fd5b82518660018202830111640100000000821117156200009757600080fd5b8083526020830192505050908051906020019080838360005b83811015620000cd578082015181840152602081019050620000b0565b50505050905090810190601f168015620000fb5780820380516001836020036101000a031916815260200191505b50604052602001805190602001909291905050506040518060400160405280600981526020017f5448454d204861747300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f48415400000000000000000000000000000000000000000000000000000000008152508282828181620001986301ffc9a760e01b6200039b60201b60201c565b620001b06380ac58cd60e01b6200039b60201b60201c565b620001c863780e9d6360e01b6200039b60201b60201c565b8160099080519060200190620001e0929190620004ac565b5080600a9080519060200190620001f9929190620004ac565b5062000212635b5e139f60e01b6200039b60201b60201c565b50505050600062000228620004a460201b60201c565b905080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505082601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601160146101000a81548160ff0219169083151502179055506101a560108190555061029a600f81905550816013908051906020019062000391929190620004ac565b505050506200055b565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004ef57805160ff191683800117855562000520565b8280016001018555821562000520579182015b828111156200051f57825182559160200191906001019062000502565b5b5090506200052f919062000533565b5090565b6200055891905b80821115620005545760008160009055506001016200053a565b5090565b90565b61421a806200056b6000396000f3fe60806040526004361061020f5760003560e01c80638da5cb5b11610118578063b88d4fde116100a0578063d96a094a1161006f578063d96a094a14610eb2578063e8a3d48514610ee0578063e985e9c514610f70578063f2fde38b14610ff9578063fb86a4041461104a5761020f565b8063b88d4fde14610c2d578063c87b56dd14610d3f578063cf30901214610df3578063d547cfb714610e225761020f565b806398b9a2dc116100e757806398b9a2dc14610ac8578063a22cb46514610b19578063a69df4b514610b76578063afe742c314610b8d578063b723b34e14610bd25761020f565b80638da5cb5b146109875780638f32d59b146109de578063906a26e014610a0d57806395d89b4114610a385761020f565b8063422d01711161019b57806352d49ff81161016a57806352d49ff8146107705780636352211e146108005780636c0360eb1461087b57806370a082311461090b578063715018a6146109705761020f565b8063422d01711461060457806342842e0e146106535780634f558e79146106ce5780634f6ccce7146107215761020f565b806318160ddd116101e257806318160ddd146103ec57806323b872dd146104175780632f745c5914610492578063392087fd146105015780633c4c06c21461053c5761020f565b806301ffc9a71461021457806306fdde0314610286578063081812fc14610316578063095ea7b314610391575b600080fd5b34801561022057600080fd5b5061026c6004803603602081101561023757600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611075565b604051808215151515815260200191505060405180910390f35b34801561029257600080fd5b5061029b6110dc565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102db5780820151818401526020810190506102c0565b50505050905090810190601f1680156103085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032257600080fd5b5061034f6004803603602081101561033957600080fd5b810190808035906020019092919050505061117e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039d57600080fd5b506103ea600480360360408110156103b457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611219565b005b3480156103f857600080fd5b50610401611400565b6040518082815260200191505060405180910390f35b34801561042357600080fd5b506104906004803603606081101561043a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061140d565b005b34801561049e57600080fd5b506104eb600480360360408110156104b557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611483565b6040518082815260200191505060405180910390f35b34801561050d57600080fd5b5061053a6004803603602081101561052457600080fd5b8101908080359060200190929190505050611542565b005b34801561054857600080fd5b506106026004803603602081101561055f57600080fd5b810190808035906020019064010000000081111561057c57600080fd5b82018360208201111561058e57600080fd5b803590602001918460018302840111640100000000831117156105b057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061163e565b005b34801561061057600080fd5b5061063d6004803603602081101561062757600080fd5b81019080803590602001909291905050506116d2565b6040518082815260200191505060405180910390f35b34801561065f57600080fd5b506106cc6004803603606081101561067657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611727565b005b3480156106da57600080fd5b50610707600480360360208110156106f157600080fd5b8101908080359060200190929190505050611747565b604051808215151515815260200191505060405180910390f35b34801561072d57600080fd5b5061075a6004803603602081101561074457600080fd5b8101908080359060200190929190505050611759565b6040518082815260200191505060405180910390f35b34801561077c57600080fd5b506107856117d9565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107c55780820151818401526020810190506107aa565b50505050905090810190601f1680156107f25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561080c57600080fd5b506108396004803603602081101561082357600080fd5b8101908080359060200190929190505050611877565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561088757600080fd5b5061089061193f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108d05780820151818401526020810190506108b5565b50505050905090810190601f1680156108fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561091757600080fd5b5061095a6004803603602081101561092e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119e1565b6040518082815260200191505060405180910390f35b34801561097c57600080fd5b50610985611ab6565b005b34801561099357600080fd5b5061099c611bf1565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109ea57600080fd5b506109f3611c1b565b604051808215151515815260200191505060405180910390f35b348015610a1957600080fd5b50610a22611c7a565b6040518082815260200191505060405180910390f35b348015610a4457600080fd5b50610a4d611c80565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a8d578082015181840152602081019050610a72565b50505050905090810190601f168015610aba5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ad457600080fd5b50610b1760048036036020811015610aeb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d22565b005b348015610b2557600080fd5b50610b7460048036036040811015610b3c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611de0565b005b348015610b8257600080fd5b50610b8b611f98565b005b348015610b9957600080fd5b50610bd060048036036040811015610bb057600080fd5b8101908080359060200190929190803590602001909291905050506120b1565b005b348015610bde57600080fd5b50610c2b60048036036040811015610bf557600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122a8565b005b348015610c3957600080fd5b50610d3d60048036036080811015610c5057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610cb757600080fd5b820183602082011115610cc957600080fd5b80359060200191846001830284011164010000000083111715610ceb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506123b5565b005b348015610d4b57600080fd5b50610d7860048036036020811015610d6257600080fd5b810190808035906020019092919050505061242d565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610db8578082015181840152602081019050610d9d565b50505050905090810190601f168015610de55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610dff57600080fd5b50610e0861244f565b604051808215151515815260200191505060405180910390f35b348015610e2e57600080fd5b50610e37612462565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610e77578082015181840152602081019050610e5c565b50505050905090810190601f168015610ea45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610ede60048036036020811015610ec857600080fd5b810190808035906020019092919050505061249f565b005b348015610eec57600080fd5b50610ef5612761565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f35578082015181840152602081019050610f1a565b50505050905090810190601f168015610f625780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610f7c57600080fd5b50610fdf60048036036040811015610f9357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612781565b604051808215151515815260200191505060405180910390f35b34801561100557600080fd5b506110486004803603602081101561101c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128b2565b005b34801561105657600080fd5b5061105f612938565b6040518082815260200191505060405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111745780601f1061114957610100808354040283529160200191611174565b820191906000526020600020905b81548152906001019060200180831161115757829003601f168201915b5050505050905090565b60006111898261293e565b6111de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806140bb602c913960400191505060405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061122482611877565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806141106021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166112ca6129b0565b73ffffffffffffffffffffffffffffffffffffffff1614806112f957506112f8816112f36129b0565b612781565b5b61134e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806140306038913960400191505060405180910390fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600780549050905090565b61141e6114186129b0565b826129b8565b611473576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806141576031913960400191505060405180910390fd5b61147e838383612aac565b505050565b600061148e836119e1565b82106114e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613f00602b913960400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061152f57fe5b9060005260206000200154905092915050565b61154a611c1b565b6115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600f54811115611634576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f48617264636170206973206174203636362e000000000000000000000000000081525060200191505060405180910390fd5b8060108190555050565b611646611c1b565b6116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601390805190602001906116ce929190613e2e565b5050565b600080662386f26fc100006012600085815260200190815260200160002054101561170757670de0b6b3a7640000905061171e565b601260008481526020019081526020016000205490505b80915050919050565b611742838383604051806020016040528060008152506123b5565b505050565b60006117528261293e565b9050919050565b6000611763611400565b82106117ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614188602c913960400191505060405180910390fd5b600782815481106117c757fe5b90600052602060002001549050919050565b60138054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561186f5780601f106118445761010080835404028352916020019161186f565b820191906000526020600020905b81548152906001019060200180831161185257829003601f168201915b505050505081565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611936576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806140926029913960400191505060405180910390fd5b80915050919050565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119d75780601f106119ac576101008083540402835291602001916119d7565b820191906000526020600020905b8154815290600101906020018083116119ba57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a68576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614068602a913960400191505060405180910390fd5b611aaf600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ad0565b9050919050565b611abe611c1b565b611b30576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c5e6129b0565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b60105481565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d185780601f10611ced57610100808354040283529160200191611d18565b820191906000526020600020905b815481529060010190602001808311611cfb57829003601f168201915b5050505050905090565b611d2a611c1b565b611d9c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611de86129b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060046000611e966129b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f436129b0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b611fa0611c1b565b612012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160149054906101000a900460ff16612094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f436f6e747261637420697320616c726561647920756e6c6f636b65640000000081525060200191505060405180910390fd5b6000601160146101000a81548160ff021916908315150217905550565b6120b9611c1b565b61212b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6121348261293e565b156121a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f48617420616c726561647920736f6c640000000000000000000000000000000081525060200191505060405180910390fd5b662386f26fc10000811015612207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806141b46032913960400191505060405180910390fd5b6001821015801561221a5750600f548211155b61228c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f5f746f6b656e496420697320696e76616c69640000000000000000000000000081525060200191505060405180910390fd5b8060126000848152602001908152602001600020819055505050565b6122b0611c1b565b612322576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600182101580156123355750600f548211155b6123a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f5f746f6b656e496420697320696e76616c69640000000000000000000000000081525060200191505060405180910390fd5b6123b18183612ade565b5050565b6123c66123c06129b0565b836129b8565b61241b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806141576031913960400191505060405180910390fd5b61242784848484612aff565b50505050565b606061244861243a612462565b61244384612b71565b612c9e565b9050919050565b601160149054906101000a900460ff1681565b60606040518060400160405280601d81526020017f68747470733a2f2f6170692e7468656d2e61662f6170692f686174732f000000815250905090565b600034905060006124af836116d2565b9050601160149054906101000a900460ff1615612517576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613fb86028913960400191505060405180910390fd5b6001831015801561252a5750600f548311155b61259c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f5f746f6b656e496420697320696e76616c69640000000000000000000000000081525060200191505060405180910390fd5b601054831115612614576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f486174206e6f7420666f722073616c652079657400000000000000000000000081525060200191505060405180910390fd5b61261d8361293e565b15612690576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f48617420616c726561647920736f6c640000000000000000000000000000000081525060200191505060405180910390fd5b818111156126e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526035815260200180613f836035913960400191505060405180910390fd5b6126f33384612ade565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561275b573d6000803e3d6000fd5b50505050565b606060405180606001604052806026815260200161413160269139905090565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561283d57600080fd5b505afa158015612851573d6000803e3d6000fd5b505050506040513d602081101561286757600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff16141561289e5760019150506128ac565b6128a88484612ce2565b9150505b92915050565b6128ba611c1b565b61292c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61293581612d76565b50565b600f5481565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b600033905090565b60006129c38261293e565b612a18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614004602c913960400191505060405180910390fd5b6000612a2383611877565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a9257508373ffffffffffffffffffffffffffffffffffffffff16612a7a8461117e565b73ffffffffffffffffffffffffffffffffffffffff16145b80612aa35750612aa28185612781565b5b91505092915050565b612ab7838383612ebc565b612ac18382613117565b612acb82826132b5565b505050565b600081600001549050919050565b612ae8828261337c565b612af282826132b5565b612afb81613594565b5050565b612b0a848484612aac565b612b16848484846135e0565b612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180613f2b6032913960400191505060405180910390fd5b50505050565b60606000821415612bb9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c99565b600082905060005b60008214612be3578080600101915050600a8281612bdb57fe5b049150612bc1565b6060816040519080825280601f01601f191660200182016040528015612c185781602001600182028038833980820191505090505b50905060006001830390505b60008614612c9157600a8681612c3657fe5b0660300160f81b82828060019003935081518110612c5057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8681612c8957fe5b049550612c24565b819450505050505b919050565b6060612cda838360405180602001604052806000815250604051806020016040528060008152506040518060200160405280600081525061391c565b905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613f5d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8273ffffffffffffffffffffffffffffffffffffffff16612edc82611877565b73ffffffffffffffffffffffffffffffffffffffff1614612f48576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806140e76029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613fe06024913960400191505060405180910390fd5b612fd781613be2565b61301e600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613ca0565b613065600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613cc3565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061316f6001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050613cd990919063ffffffff16565b905060006006600084815260200190815260200160002054905081811461325c576000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481106131dc57fe5b9060005260206000200154905080600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020838154811061323457fe5b9060005260206000200181905550816006600083815260200190815260200160002081905550505b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054809190600190036132ae9190613eae565b5050505050565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506006600083815260200190815260200160002081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561341f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6134288161293e565b1561349b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550613534600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613cc3565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6007805490506008600083815260200190815260200160002081905550600781908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b60006136018473ffffffffffffffffffffffffffffffffffffffff16613d23565b61360e5760019050613914565b600060608573ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1663150b7a02905060e01b6136526129b0565b898888604051602401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156137025780820151818401526020810190506136e7565b50505050905090810190601f16801561372f5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518082805190602001908083835b602083106137c757805182526020820191506020810190506020830392506137a4565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613829576040519150601f19603f3d011682016040523d82523d6000602084013e61382e565b606091505b50915091508161389c5760008151111561384b5780518082602001fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180613f2b6032913960400191505060405180910390fd5b60008180602001905160208110156138b357600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161493505050505b949350505050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156139785781602001600182028038833980820191505090505b5090506060819050600080905060008090505b88518110156139f9578881815181106139a057fe5b602001015160f81c60f81b8383806001019450815181106139bd57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061398b565b5060008090505b8751811015613a6e57878181518110613a1557fe5b602001015160f81c60f81b838380600101945081518110613a3257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613a00565b5060008090505b8651811015613ae357868181518110613a8a57fe5b602001015160f81c60f81b838380600101945081518110613aa757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613a75565b5060008090505b8551811015613b5857858181518110613aff57fe5b602001015160f81c60f81b838380600101945081518110613b1c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613aea565b5060008090505b8451811015613bcd57848181518110613b7457fe5b602001015160f81c60f81b838380600101945081518110613b9157fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613b5f565b50819850505050505050505095945050505050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613c9d5760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b613cb860018260000154613cd990919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b6000613d1b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613d6e565b905092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015613d6557506000801b8214155b92505050919050565b6000838311158290613e1b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613de0578082015181840152602081019050613dc5565b50505050905090810190601f168015613e0d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613e6f57805160ff1916838001178555613e9d565b82800160010185558215613e9d579182015b82811115613e9c578251825591602001919060010190613e81565b5b509050613eaa9190613eda565b5090565b815481835581811115613ed557818360005260206000209182019101613ed49190613eda565b5b505050565b613efc91905b80821115613ef8576000816000905550600101613ee0565b5090565b9056fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735072696365206d75737420626520657175616c20746f206f72206c6172676572207468616e207468652073616c6573207072696365427579696e672068617473206973206e6f7420756e6c6f636b6564207965742e20536f6f6ee284a24552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e657268747470733a2f2f6170692e7468656d2e61662f6170692f636f6e7472616374732f686174734552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e64735072696365206e6565647320746f20626520657175616c20746f206f72206c6172676572207468616e20302e303120455448a265627a7a72315820ffeb31caab760954893d0241bab6faa33f7b8f15cd1f15c400af05f8c1ee600464736f6c6343000511003200000000000000000000000080319b22fc81d700485b915fee3d2d9c69dc38390000000000000000000000000000000000000000000000000000000000000060000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638da5cb5b11610118578063b88d4fde116100a0578063d96a094a1161006f578063d96a094a14610eb2578063e8a3d48514610ee0578063e985e9c514610f70578063f2fde38b14610ff9578063fb86a4041461104a5761020f565b8063b88d4fde14610c2d578063c87b56dd14610d3f578063cf30901214610df3578063d547cfb714610e225761020f565b806398b9a2dc116100e757806398b9a2dc14610ac8578063a22cb46514610b19578063a69df4b514610b76578063afe742c314610b8d578063b723b34e14610bd25761020f565b80638da5cb5b146109875780638f32d59b146109de578063906a26e014610a0d57806395d89b4114610a385761020f565b8063422d01711161019b57806352d49ff81161016a57806352d49ff8146107705780636352211e146108005780636c0360eb1461087b57806370a082311461090b578063715018a6146109705761020f565b8063422d01711461060457806342842e0e146106535780634f558e79146106ce5780634f6ccce7146107215761020f565b806318160ddd116101e257806318160ddd146103ec57806323b872dd146104175780632f745c5914610492578063392087fd146105015780633c4c06c21461053c5761020f565b806301ffc9a71461021457806306fdde0314610286578063081812fc14610316578063095ea7b314610391575b600080fd5b34801561022057600080fd5b5061026c6004803603602081101561023757600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611075565b604051808215151515815260200191505060405180910390f35b34801561029257600080fd5b5061029b6110dc565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102db5780820151818401526020810190506102c0565b50505050905090810190601f1680156103085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032257600080fd5b5061034f6004803603602081101561033957600080fd5b810190808035906020019092919050505061117e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039d57600080fd5b506103ea600480360360408110156103b457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611219565b005b3480156103f857600080fd5b50610401611400565b6040518082815260200191505060405180910390f35b34801561042357600080fd5b506104906004803603606081101561043a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061140d565b005b34801561049e57600080fd5b506104eb600480360360408110156104b557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611483565b6040518082815260200191505060405180910390f35b34801561050d57600080fd5b5061053a6004803603602081101561052457600080fd5b8101908080359060200190929190505050611542565b005b34801561054857600080fd5b506106026004803603602081101561055f57600080fd5b810190808035906020019064010000000081111561057c57600080fd5b82018360208201111561058e57600080fd5b803590602001918460018302840111640100000000831117156105b057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061163e565b005b34801561061057600080fd5b5061063d6004803603602081101561062757600080fd5b81019080803590602001909291905050506116d2565b6040518082815260200191505060405180910390f35b34801561065f57600080fd5b506106cc6004803603606081101561067657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611727565b005b3480156106da57600080fd5b50610707600480360360208110156106f157600080fd5b8101908080359060200190929190505050611747565b604051808215151515815260200191505060405180910390f35b34801561072d57600080fd5b5061075a6004803603602081101561074457600080fd5b8101908080359060200190929190505050611759565b6040518082815260200191505060405180910390f35b34801561077c57600080fd5b506107856117d9565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107c55780820151818401526020810190506107aa565b50505050905090810190601f1680156107f25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561080c57600080fd5b506108396004803603602081101561082357600080fd5b8101908080359060200190929190505050611877565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561088757600080fd5b5061089061193f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108d05780820151818401526020810190506108b5565b50505050905090810190601f1680156108fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561091757600080fd5b5061095a6004803603602081101561092e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119e1565b6040518082815260200191505060405180910390f35b34801561097c57600080fd5b50610985611ab6565b005b34801561099357600080fd5b5061099c611bf1565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109ea57600080fd5b506109f3611c1b565b604051808215151515815260200191505060405180910390f35b348015610a1957600080fd5b50610a22611c7a565b6040518082815260200191505060405180910390f35b348015610a4457600080fd5b50610a4d611c80565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a8d578082015181840152602081019050610a72565b50505050905090810190601f168015610aba5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ad457600080fd5b50610b1760048036036020811015610aeb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d22565b005b348015610b2557600080fd5b50610b7460048036036040811015610b3c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611de0565b005b348015610b8257600080fd5b50610b8b611f98565b005b348015610b9957600080fd5b50610bd060048036036040811015610bb057600080fd5b8101908080359060200190929190803590602001909291905050506120b1565b005b348015610bde57600080fd5b50610c2b60048036036040811015610bf557600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122a8565b005b348015610c3957600080fd5b50610d3d60048036036080811015610c5057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610cb757600080fd5b820183602082011115610cc957600080fd5b80359060200191846001830284011164010000000083111715610ceb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506123b5565b005b348015610d4b57600080fd5b50610d7860048036036020811015610d6257600080fd5b810190808035906020019092919050505061242d565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610db8578082015181840152602081019050610d9d565b50505050905090810190601f168015610de55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610dff57600080fd5b50610e0861244f565b604051808215151515815260200191505060405180910390f35b348015610e2e57600080fd5b50610e37612462565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610e77578082015181840152602081019050610e5c565b50505050905090810190601f168015610ea45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610ede60048036036020811015610ec857600080fd5b810190808035906020019092919050505061249f565b005b348015610eec57600080fd5b50610ef5612761565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610f35578082015181840152602081019050610f1a565b50505050905090810190601f168015610f625780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610f7c57600080fd5b50610fdf60048036036040811015610f9357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612781565b604051808215151515815260200191505060405180910390f35b34801561100557600080fd5b506110486004803603602081101561101c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128b2565b005b34801561105657600080fd5b5061105f612938565b6040518082815260200191505060405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111745780601f1061114957610100808354040283529160200191611174565b820191906000526020600020905b81548152906001019060200180831161115757829003601f168201915b5050505050905090565b60006111898261293e565b6111de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806140bb602c913960400191505060405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061122482611877565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806141106021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166112ca6129b0565b73ffffffffffffffffffffffffffffffffffffffff1614806112f957506112f8816112f36129b0565b612781565b5b61134e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806140306038913960400191505060405180910390fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600780549050905090565b61141e6114186129b0565b826129b8565b611473576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806141576031913960400191505060405180910390fd5b61147e838383612aac565b505050565b600061148e836119e1565b82106114e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613f00602b913960400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061152f57fe5b9060005260206000200154905092915050565b61154a611c1b565b6115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600f54811115611634576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f48617264636170206973206174203636362e000000000000000000000000000081525060200191505060405180910390fd5b8060108190555050565b611646611c1b565b6116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601390805190602001906116ce929190613e2e565b5050565b600080662386f26fc100006012600085815260200190815260200160002054101561170757670de0b6b3a7640000905061171e565b601260008481526020019081526020016000205490505b80915050919050565b611742838383604051806020016040528060008152506123b5565b505050565b60006117528261293e565b9050919050565b6000611763611400565b82106117ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614188602c913960400191505060405180910390fd5b600782815481106117c757fe5b90600052602060002001549050919050565b60138054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561186f5780601f106118445761010080835404028352916020019161186f565b820191906000526020600020905b81548152906001019060200180831161185257829003601f168201915b505050505081565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611936576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806140926029913960400191505060405180910390fd5b80915050919050565b6060600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119d75780601f106119ac576101008083540402835291602001916119d7565b820191906000526020600020905b8154815290600101906020018083116119ba57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a68576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614068602a913960400191505060405180910390fd5b611aaf600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ad0565b9050919050565b611abe611c1b565b611b30576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c5e6129b0565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b60105481565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d185780601f10611ced57610100808354040283529160200191611d18565b820191906000526020600020905b815481529060010190602001808311611cfb57829003601f168201915b5050505050905090565b611d2a611c1b565b611d9c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611de86129b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060046000611e966129b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f436129b0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b611fa0611c1b565b612012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160149054906101000a900460ff16612094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f436f6e747261637420697320616c726561647920756e6c6f636b65640000000081525060200191505060405180910390fd5b6000601160146101000a81548160ff021916908315150217905550565b6120b9611c1b565b61212b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6121348261293e565b156121a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f48617420616c726561647920736f6c640000000000000000000000000000000081525060200191505060405180910390fd5b662386f26fc10000811015612207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806141b46032913960400191505060405180910390fd5b6001821015801561221a5750600f548211155b61228c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f5f746f6b656e496420697320696e76616c69640000000000000000000000000081525060200191505060405180910390fd5b8060126000848152602001908152602001600020819055505050565b6122b0611c1b565b612322576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600182101580156123355750600f548211155b6123a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f5f746f6b656e496420697320696e76616c69640000000000000000000000000081525060200191505060405180910390fd5b6123b18183612ade565b5050565b6123c66123c06129b0565b836129b8565b61241b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806141576031913960400191505060405180910390fd5b61242784848484612aff565b50505050565b606061244861243a612462565b61244384612b71565b612c9e565b9050919050565b601160149054906101000a900460ff1681565b60606040518060400160405280601d81526020017f68747470733a2f2f6170692e7468656d2e61662f6170692f686174732f000000815250905090565b600034905060006124af836116d2565b9050601160149054906101000a900460ff1615612517576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613fb86028913960400191505060405180910390fd5b6001831015801561252a5750600f548311155b61259c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f5f746f6b656e496420697320696e76616c69640000000000000000000000000081525060200191505060405180910390fd5b601054831115612614576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f486174206e6f7420666f722073616c652079657400000000000000000000000081525060200191505060405180910390fd5b61261d8361293e565b15612690576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f48617420616c726561647920736f6c640000000000000000000000000000000081525060200191505060405180910390fd5b818111156126e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526035815260200180613f836035913960400191505060405180910390fd5b6126f33384612ade565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561275b573d6000803e3d6000fd5b50505050565b606060405180606001604052806026815260200161413160269139905090565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561283d57600080fd5b505afa158015612851573d6000803e3d6000fd5b505050506040513d602081101561286757600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff16141561289e5760019150506128ac565b6128a88484612ce2565b9150505b92915050565b6128ba611c1b565b61292c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61293581612d76565b50565b600f5481565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b600033905090565b60006129c38261293e565b612a18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614004602c913960400191505060405180910390fd5b6000612a2383611877565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a9257508373ffffffffffffffffffffffffffffffffffffffff16612a7a8461117e565b73ffffffffffffffffffffffffffffffffffffffff16145b80612aa35750612aa28185612781565b5b91505092915050565b612ab7838383612ebc565b612ac18382613117565b612acb82826132b5565b505050565b600081600001549050919050565b612ae8828261337c565b612af282826132b5565b612afb81613594565b5050565b612b0a848484612aac565b612b16848484846135e0565b612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180613f2b6032913960400191505060405180910390fd5b50505050565b60606000821415612bb9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c99565b600082905060005b60008214612be3578080600101915050600a8281612bdb57fe5b049150612bc1565b6060816040519080825280601f01601f191660200182016040528015612c185781602001600182028038833980820191505090505b50905060006001830390505b60008614612c9157600a8681612c3657fe5b0660300160f81b82828060019003935081518110612c5057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8681612c8957fe5b049550612c24565b819450505050505b919050565b6060612cda838360405180602001604052806000815250604051806020016040528060008152506040518060200160405280600081525061391c565b905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613f5d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b8273ffffffffffffffffffffffffffffffffffffffff16612edc82611877565b73ffffffffffffffffffffffffffffffffffffffff1614612f48576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806140e76029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613fe06024913960400191505060405180910390fd5b612fd781613be2565b61301e600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613ca0565b613065600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613cc3565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061316f6001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050613cd990919063ffffffff16565b905060006006600084815260200190815260200160002054905081811461325c576000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083815481106131dc57fe5b9060005260206000200154905080600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020838154811061323457fe5b9060005260206000200181905550816006600083815260200190815260200160002081905550505b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054809190600190036132ae9190613eae565b5050505050565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506006600083815260200190815260200160002081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561341f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6134288161293e565b1561349b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550613534600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613cc3565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6007805490506008600083815260200190815260200160002081905550600781908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b60006136018473ffffffffffffffffffffffffffffffffffffffff16613d23565b61360e5760019050613914565b600060608573ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1663150b7a02905060e01b6136526129b0565b898888604051602401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156137025780820151818401526020810190506136e7565b50505050905090810190601f16801561372f5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518082805190602001908083835b602083106137c757805182526020820191506020810190506020830392506137a4565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613829576040519150601f19603f3d011682016040523d82523d6000602084013e61382e565b606091505b50915091508161389c5760008151111561384b5780518082602001fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180613f2b6032913960400191505060405180910390fd5b60008180602001905160208110156138b357600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161493505050505b949350505050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156139785781602001600182028038833980820191505090505b5090506060819050600080905060008090505b88518110156139f9578881815181106139a057fe5b602001015160f81c60f81b8383806001019450815181106139bd57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061398b565b5060008090505b8751811015613a6e57878181518110613a1557fe5b602001015160f81c60f81b838380600101945081518110613a3257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613a00565b5060008090505b8651811015613ae357868181518110613a8a57fe5b602001015160f81c60f81b838380600101945081518110613aa757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613a75565b5060008090505b8551811015613b5857858181518110613aff57fe5b602001015160f81c60f81b838380600101945081518110613b1c57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613aea565b5060008090505b8451811015613bcd57848181518110613b7457fe5b602001015160f81c60f81b838380600101945081518110613b9157fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613b5f565b50819850505050505050505095945050505050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613c9d5760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b613cb860018260000154613cd990919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b6000613d1b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613d6e565b905092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015613d6557506000801b8214155b92505050919050565b6000838311158290613e1b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613de0578082015181840152602081019050613dc5565b50505050905090810190601f168015613e0d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613e6f57805160ff1916838001178555613e9d565b82800160010185558215613e9d579182015b82811115613e9c578251825591602001919060010190613e81565b5b509050613eaa9190613eda565b5090565b815481835581811115613ed557818360005260206000209182019101613ed49190613eda565b5b505050565b613efc91905b80821115613ef8576000816000905550600101613ee0565b5090565b9056fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735072696365206d75737420626520657175616c20746f206f72206c6172676572207468616e207468652073616c6573207072696365427579696e672068617473206973206e6f7420756e6c6f636b6564207965742e20536f6f6ee284a24552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e657268747470733a2f2f6170692e7468656d2e61662f6170692f636f6e7472616374732f686174734552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e64735072696365206e6565647320746f20626520657175616c20746f206f72206c6172676572207468616e20302e303120455448a265627a7a72315820ffeb31caab760954893d0241bab6faa33f7b8f15cd1f15c400af05f8c1ee600464736f6c63430005110032

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

00000000000000000000000080319b22fc81d700485b915fee3d2d9c69dc38390000000000000000000000000000000000000000000000000000000000000060000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _wallet (address): 0x80319b22FC81D700485B915FEE3d2D9C69DC3839
Arg [1] : _ipfsIndex (string):
Arg [2] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000080319b22fc81d700485b915fee3d2d9c69dc3839
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

54100:3406:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16552:135;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16552:135:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16552:135:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;44389:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44389:85: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;44389:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21522:204;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21522:204:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21522:204:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20804:425;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20804:425:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20804:425:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35965:96;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35965:96:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23205:292;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23205:292:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23205:292:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35574:232;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35574:232:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35574:232:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;55803:153;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55803:153:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;55803:153:0;;;;;;;;;;;;;;;;;:::i;:::-;;55602:115;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55602:115:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;55602:115:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;55602:115:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;55602:115: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;55602:115: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;;55602:115:0;;;;;;;;;;;;;;;:::i;:::-;;56957:288;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56957:288:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56957:288:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24159:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24159:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24159:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56152:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56152:104:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56152:104:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;36407:199;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36407:199:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;36407:199:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54298:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54298:23: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;54298:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20145:228;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20145:228:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20145:228:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;46642:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46642:91: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;46642:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19708:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19708:211:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19708:211:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49684:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49684:140:0;;;:::i;:::-;;48873:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48873:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;49239:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49239:94:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;54167:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54167:22:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44589:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44589:89: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;44589:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55444:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55444:105:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;55444:105:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;22027:254;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22027:254:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22027:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56018:126;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56018:126:0;;;:::i;:::-;;56592:357;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56592:357:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56592:357:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56400:182;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56400:182:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56400:182:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25030:272;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25030:272:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;25030:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;25030:272:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25030:272: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;25030:272: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;;25030:272:0;;;;;;;;;;;;;;;:::i;:::-;;53243:161;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53243:161:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;53243:161: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;53243:161:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54225:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54225:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;57253:117;;8:9:-1;5:2;;;30:1;27;20:12;5:2;57253:117: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;57253:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54799:586;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;54799:586:0;;;;;;;;;;;;;;;;;:::i;:::-;;57378:125;;8:9:-1;5:2;;;30:1;27;20:12;5:2;57378:125: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;57378:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53536:427;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53536:427:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;53536:427:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;49979:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49979:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;49979:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;54138:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54138:22:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16552:135;16622:4;16646:20;:33;16667:11;16646:33;;;;;;;;;;;;;;;;;;;;;;;;;;;16639:40;;16552:135;;;:::o;44389:85::-;44428:13;44461:5;44454:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44389:85;:::o;21522:204::-;21581:7;21609:16;21617:7;21609;:16::i;:::-;21601:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21694:15;:24;21710:7;21694:24;;;;;;;;;;;;;;;;;;;;;21687:31;;21522:204;;;:::o;20804:425::-;20868:13;20884:16;20892:7;20884;:16::i;:::-;20868:32;;20925:5;20919:11;;:2;:11;;;;20911:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21005:5;20989:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;21014:37;21031:5;21038:12;:10;:12::i;:::-;21014:16;:37::i;:::-;20989:62;20981:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21175:2;21148:15;:24;21164:7;21148:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;21213:7;21209:2;21193:28;;21202:5;21193:28;;;;;;;;;;;;20804:425;;;:::o;35965:96::-;36009:7;36036:10;:17;;;;36029:24;;35965:96;:::o;23205:292::-;23349:41;23368:12;:10;:12::i;:::-;23382:7;23349:18;:41::i;:::-;23341:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23457:32;23471:4;23477:2;23481:7;23457:13;:32::i;:::-;23205:292;;;:::o;35574:232::-;35654:7;35690:16;35700:5;35690:9;:16::i;:::-;35682:5;:24;35674:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35772:12;:19;35785:5;35772:19;;;;;;;;;;;;;;;35792:5;35772:26;;;;;;;;;;;;;;;;35765:33;;35574:232;;;;:::o;55803:153::-;49085:9;:7;:9::i;:::-;49077:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55890:7;;55879;:18;;55871:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55941:7;55931;:17;;;;55803:153;:::o;55602:115::-;49085:9;:7;:9::i;:::-;49077:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55696:13;55684:9;:25;;;;;;;;;;;;:::i;:::-;;55602:115;:::o;56957:288::-;57021:7;57041:13;57096:10;57071:12;:22;57084:8;57071:22;;;;;;;;;;;;:35;57067:146;;;57131:7;57123:15;;57067:146;;;57179:12;:22;57192:8;57179:22;;;;;;;;;;;;57171:30;;57067:146;57232:5;57225:12;;;56957:288;;;:::o;24159:134::-;24246:39;24263:4;24269:2;24273:7;24246:39;;;;;;;;;;;;:16;:39::i;:::-;24159:134;;;:::o;56152:104::-;56207:4;56231:17;56239:8;56231:7;:17::i;:::-;56224:24;;56152:104;;;:::o;36407:199::-;36465:7;36501:13;:11;:13::i;:::-;36493:5;:21;36485:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36581:10;36592:5;36581:17;;;;;;;;;;;;;;;;36574:24;;36407:199;;;:::o;54298:23::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20145:228::-;20200:7;20220:13;20236:11;:20;20248:7;20236:20;;;;;;;;;;;;;;;;;;;;;20220:36;;20292:1;20275:19;;:5;:19;;;;20267:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20360:5;20353:12;;;20145:228;;;:::o;46642:91::-;46684:13;46717:8;46710:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46642:91;:::o;19708:211::-;19763:7;19808:1;19791:19;;:5;:19;;;;19783:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19877:34;:17;:24;19895:5;19877:24;;;;;;;;;;;;;;;:32;:34::i;:::-;19870:41;;19708:211;;;:::o;49684:140::-;49085:9;:7;:9::i;:::-;49077:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49783:1;49746:40;;49767:6;;;;;;;;;;;49746:40;;;;;;;;;;;;49814:1;49797:6;;:19;;;;;;;;;;;;;;;;;;49684:140::o;48873:79::-;48911:7;48938:6;;;;;;;;;;;48931:13;;48873:79;:::o;49239:94::-;49279:4;49319:6;;;;;;;;;;;49303:22;;:12;:10;:12::i;:::-;:22;;;49296:29;;49239:94;:::o;54167:22::-;;;;:::o;44589:89::-;44630:13;44663:7;44656:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44589:89;:::o;55444:105::-;49085:9;:7;:9::i;:::-;49077:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55531:10;55522:6;;:19;;;;;;;;;;;;;;;;;;55444:105;:::o;22027:254::-;22113:12;:10;:12::i;:::-;22107:18;;:2;:18;;;;22099:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22207:8;22168:18;:32;22187:12;:10;:12::i;:::-;22168:32;;;;;;;;;;;;;;;:36;22201:2;22168:36;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;22260:2;22231:42;;22246:12;:10;:12::i;:::-;22231:42;;;22264:8;22231:42;;;;;;;;;;;;;;;;;;;;;;22027:254;;:::o;56018:126::-;49085:9;:7;:9::i;:::-;49077:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56072:6;;;;;;;;;;;56064:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56131:5;56122:6;;:14;;;;;;;;;;;;;;;;;;56018:126::o;56592:357::-;49085:9;:7;:9::i;:::-;49077:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56688:17;56696:8;56688:7;:17::i;:::-;56687:18;56679:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56755:10;56745:6;:20;;56737:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56851:1;56839:8;:13;;:36;;;;;56868:7;;56856:8;:19;;56839:36;56831:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56935:6;56910:12;:22;56923:8;56910:22;;;;;;;;;;;:31;;;;56592:357;;:::o;56400:182::-;49085:9;:7;:9::i;:::-;49077:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56495:1;56483:8;:13;;:36;;;;;56512:7;;56500:8;:19;;56483:36;56475:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56554:20;56560:3;56565:8;56554:5;:20::i;:::-;56400:182;;:::o;25030:272::-;25145:41;25164:12;:10;:12::i;:::-;25178:7;25145:18;:41::i;:::-;25137:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25251:43;25269:4;25275:2;25279:7;25288:5;25251:17;:43::i;:::-;25030:272;;;;:::o;53243:161::-;53302:13;53335:61;53353:14;:12;:14::i;:::-;53369:26;53386:8;53369:16;:26::i;:::-;53335:17;:61::i;:::-;53328:68;;53243:161;;;:::o;54225:18::-;;;;;;;;;;;;;:::o;57253:117::-;57298:13;57324:38;;;;;;;;;;;;;;;;;;;57253:117;:::o;54799:586::-;54858:13;54874:9;54858:25;;54894:13;54910:25;54926:8;54910:15;:25::i;:::-;54894:41;;54958:6;;;;;;;;;;;54957:7;54949:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55040:1;55028:8;:13;;:36;;;;;55057:7;;55045:8;:19;;55028:36;55020:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55119:7;;55107:8;:19;;55099:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55171:17;55179:8;55171:7;:17::i;:::-;55170:18;55162:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55237:5;55228;:14;;55220:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55313:27;55319:10;55331:8;55313:5;:27::i;:::-;55351:6;;;;;;;;;;;:15;;:26;55367:9;55351:26;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;55351:26:0;54799:586;;;:::o;57378:125::-;57422:13;57448:47;;;;;;;;;;;;;;;;;;;57378:125;:::o;53536:427::-;53643:4;53728:27;53772:20;;;;;;;;;;;53728:65;;53849:8;53808:49;;53816:13;:21;;;53838:5;53816:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53816:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;53816:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;53816:28:0;;;;;;;;;;;;;;;;53808:49;;;53804:93;;;53881:4;53874:11;;;;;53804:93;53916:39;53939:5;53946:8;53916:22;:39::i;:::-;53909:46;;;53536:427;;;;;:::o;49979:109::-;49085:9;:7;:9::i;:::-;49077:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50052:28;50071:8;50052:18;:28::i;:::-;49979:109;:::o;54138:22::-;;;;:::o;26495:155::-;26552:4;26569:13;26585:11;:20;26597:7;26585:20;;;;;;;;;;;;;;;;;;;;;26569:36;;26640:1;26623:19;;:5;:19;;;;26616:26;;;26495:155;;;:::o;866:98::-;911:15;946:10;939:17;;866:98;:::o;27020:333::-;27105:4;27130:16;27138:7;27130;:16::i;:::-;27122:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27206:13;27222:16;27230:7;27222;:16::i;:::-;27206:32;;27268:5;27257:16;;:7;:16;;;:51;;;;27301:7;27277:31;;:20;27289:7;27277:11;:20::i;:::-;:31;;;27257:51;:87;;;;27312:32;27329:5;27336:7;27312:16;:32::i;:::-;27257:87;27249:96;;;27020:333;;;;:::o;36990:245::-;37076:38;37096:4;37102:2;37106:7;37076:19;:38::i;:::-;37127:47;37160:4;37166:7;37127:32;:47::i;:::-;37187:40;37215:2;37219:7;37187:27;:40::i;:::-;36990:245;;;:::o;15133:114::-;15198:7;15225;:14;;;15218:21;;15133:114;;;:::o;37500:202::-;37564:24;37576:2;37580:7;37564:11;:24::i;:::-;37601:40;37629:2;37633:7;37601:27;:40::i;:::-;37654;37686:7;37654:31;:40::i;:::-;37500:202;;:::o;26021:272::-;26131:32;26145:4;26151:2;26155:7;26131:13;:32::i;:::-;26182:48;26205:4;26211:2;26215:7;26224:5;26182:22;:48::i;:::-;26174:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26021:272;;;;:::o;51997:482::-;52047:27;52097:1;52091:2;:7;52087:50;;;52115:10;;;;;;;;;;;;;;;;;;;;;52087:50;52147:6;52156:2;52147:11;;52169:8;52188:69;52200:1;52195;:6;52188:69;;52218:5;;;;;;;52243:2;52238:7;;;;;;;;;52188:69;;;52267:17;52297:3;52287:14;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;52287:14:0;;;;52267:34;;52312:6;52327:1;52321:3;:7;52312:16;;52339:103;52352:1;52346:2;:7;52339:103;;52403:2;52398;:7;;;;;;52393:2;:12;52382:25;;52370:4;52375:3;;;;;;;52370:9;;;;;;;;;;;:37;;;;;;;;;;;52428:2;52422:8;;;;;;;;;52339:103;;;52466:4;52452:19;;;;;;51997:482;;;;:::o;51841:148::-;51919:13;51952:29;51962:2;51966;51952:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i;:::-;51945:36;;51841:148;;;;:::o;22611:147::-;22691:4;22715:18;:25;22734:5;22715:25;;;;;;;;;;;;;;;:35;22741:8;22715:35;;;;;;;;;;;;;;;;;;;;;;;;;22708:42;;22611:147;;;;:::o;50194:229::-;50288:1;50268:22;;:8;:22;;;;50260:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50378:8;50349:38;;50370:6;;;;;;;;;;;50349:38;;;;;;;;;;;;50407:8;50398:6;;:17;;;;;;;;;;;;;;;;;;50194:229;:::o;30716:459::-;30830:4;30810:24;;:16;30818:7;30810;:16::i;:::-;:24;;;30802:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30913:1;30899:16;;:2;:16;;;;30891:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30969:23;30984:7;30969:14;:23::i;:::-;31005:35;:17;:23;31023:4;31005:23;;;;;;;;;;;;;;;:33;:35::i;:::-;31051:33;:17;:21;31069:2;31051:21;;;;;;;;;;;;;;;:31;:33::i;:::-;31120:2;31097:11;:20;31109:7;31097:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;31159:7;31155:2;31140:27;;31149:4;31140:27;;;;;;;;;;;;30716:459;;;:::o;40175:1148::-;40441:22;40466:32;40496:1;40466:12;:18;40479:4;40466:18;;;;;;;;;;;;;;;:25;;;;:29;;:32;;;;:::i;:::-;40441:57;;40509:18;40530:17;:26;40548:7;40530:26;;;;;;;;;;;;40509:47;;40677:14;40663:10;:28;40659:328;;40708:19;40730:12;:18;40743:4;40730:18;;;;;;;;;;;;;;;40749:14;40730:34;;;;;;;;;;;;;;;;40708:56;;40814:11;40781:12;:18;40794:4;40781:18;;;;;;;;;;;;;;;40800:10;40781:30;;;;;;;;;;;;;;;:44;;;;40931:10;40898:17;:30;40916:11;40898:30;;;;;;;;;;;:43;;;;40659:328;;41076:12;:18;41089:4;41076:18;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:::i;:::-;;40175:1148;;;;:::o;38997:186::-;39111:12;:16;39124:2;39111:16;;;;;;;;;;;;;;;:23;;;;39082:17;:26;39100:7;39082:26;;;;;;;;;;;:52;;;;39145:12;:16;39158:2;39145:16;;;;;;;;;;;;;;;39167:7;39145:30;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;39145:30:0;;;;;;;;;;;;;;;;;;;;;;38997:186;;:::o;29105:335::-;29191:1;29177:16;;:2;:16;;;;29169:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29250:16;29258:7;29250;:16::i;:::-;29249:17;29241:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29335:2;29312:11;:20;29324:7;29312:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;29348:33;:17;:21;29366:2;29348:21;;;;;;;;;;;;;;;:31;:33::i;:::-;29424:7;29420:2;29399:33;;29416:1;29399:33;;;;;;;;;;;;29105:335;;:::o;39384:164::-;39488:10;:17;;;;39461:15;:24;39477:7;39461:24;;;;;;;;;;;:44;;;;39516:10;39532:7;39516:24;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;39516:24:0;;;;;;;;;;;;;;;;;;;;;;39384:164;:::o;31827:1079::-;31949:4;31976:15;:2;:13;;;:15::i;:::-;31971:60;;32015:4;32008:11;;;;31971:60;32102:12;32116:23;32143:2;:7;;32204:2;32188:36;;;:45;;;;32248:12;:10;:12::i;:::-;32275:4;32294:7;32316:5;32151:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;32151:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;32151:181: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;;;32151:181:0;32143:190;;;;;;;;;;;;;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;;;32143:190:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;32101:232:0;;;;32349:7;32344:555;;32397:1;32377:10;:17;:21;32373:384;;;32545:10;32539:17;32606:15;32593:10;32589:2;32585:19;32578:44;32493:148;32681:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32344:555;32789:13;32816:10;32805:32;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32805:32:0;;;;;;;;;;;;;;;;32789:48;;17909:10;32870:16;;32860:26;;;:6;:26;;;;32852:35;;;;;31827:1079;;;;;;;:::o;50595:872::-;50727:13;50751:16;50776:2;50751:28;;50788:16;50813:2;50788:28;;50825:16;50850:2;50825:28;;50862:16;50887:2;50862:28;;50899:16;50924:2;50899:28;;50936:19;51021:3;:10;51008:3;:10;50995:3;:10;50982:3;:10;50969:3;:10;:23;:36;:49;:62;50958:74;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;50958:74:0;;;;50936:96;;51041:19;51069:5;51041:34;;51084:6;51093:1;51084:10;;51108:6;51117:1;51108:10;;51103:58;51124:3;:10;51120:1;:14;51103:58;;;51155:3;51159:1;51155:6;;;;;;;;;;;;;;;;51141;51148:3;;;;;;51141:11;;;;;;;;;;;:20;;;;;;;;;;;51136:3;;;;;;;51103:58;;;;51175:6;51184:1;51175:10;;51170:58;51191:3;:10;51187:1;:14;51170:58;;;51222:3;51226:1;51222:6;;;;;;;;;;;;;;;;51208;51215:3;;;;;;51208:11;;;;;;;;;;;:20;;;;;;;;;;;51203:3;;;;;;;51170:58;;;;51242:6;51251:1;51242:10;;51237:58;51258:3;:10;51254:1;:14;51237:58;;;51289:3;51293:1;51289:6;;;;;;;;;;;;;;;;51275;51282:3;;;;;;51275:11;;;;;;;;;;;:20;;;;;;;;;;;51270:3;;;;;;;51237:58;;;;51309:6;51318:1;51309:10;;51304:58;51325:3;:10;51321:1;:14;51304:58;;;51356:3;51360:1;51356:6;;;;;;;;;;;;;;;;51342;51349:3;;;;;;51342:11;;;;;;;;;;;:20;;;;;;;;;;;51337:3;;;;;;;51304:58;;;;51376:6;51385:1;51376:10;;51371:58;51392:3;:10;51388:1;:14;51371:58;;;51423:3;51427:1;51423:6;;;;;;;;;;;;;;;;51409;51416:3;;;;;;51409:11;;;;;;;;;;;:20;;;;;;;;;;;51404:3;;;;;;;51371:58;;;;51452:6;51438:21;;;;;;;;;;50595:872;;;;;;;:::o;33074:175::-;33174:1;33138:38;;:15;:24;33154:7;33138:24;;;;;;;;;;;;;;;;;;;;;:38;;;33134:108;;33228:1;33193:15;:24;33209:7;33193:24;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;33134:108;33074:175;:::o;15444:110::-;15525:21;15544:1;15525:7;:14;;;:18;;:21;;;;:::i;:::-;15508:7;:14;;:38;;;;15444:110;:::o;15255:181::-;15427:1;15409:7;:14;;;:19;;;;;;;;;;;15255:181;:::o;6781:136::-;6839:7;6866:43;6870:1;6873;6866:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;6859:50;;6781:136;;;;:::o;11693:619::-;11753:4;12015:16;12042:19;12064:66;12042:88;;;;12233:7;12221:20;12209:32;;12273:11;12261:8;:23;;:42;;;;;12300:3;12288:15;;:8;:15;;12261:42;12253:51;;;;11693:619;;;:::o;7254:192::-;7340:7;7373:1;7368;:6;;7376:12;7360: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;7360:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7400:9;7416:1;7412;:5;7400:17;;7437:1;7430:8;;;7254:192;;;;;:::o;54100:3406::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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