ETH Price: $3,130.09 (+1.63%)
Gas: 3 Gwei

Token

MetaRim (MetaRim)
 

Overview

Max Total Supply

2,377 MetaRim

Holders

810

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jlieberman.eth
Balance
4 MetaRim
0xe757970b801e5b99ab24c5cd9b5152234cff3001
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Meta Rim NFT is a collection of 8,888 unique survival mecha avatars. It will serve as a bridge for the communication of upcoming Gamefi games. Not only will it have collection value, but it will also bring players additional profits in the future.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MetaRim

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-07
*/

// File: contracts/ISaleContract.sol



pragma solidity >=0.4.22 <0.9.0;

abstract contract ISaleContract {
    function sale(uint256 tokenId, uint256[] memory _settings, address[] memory _addrs) public virtual;

    function offload(uint256 tokenId) public virtual;
}
// File: contracts/IVoiceStreetNft.sol



pragma solidity >=0.4.22 <0.9.0;

struct TokenMeta {
    uint256 id;
    string name;
    string uri;
    string hash;
    uint256 soldTimes;
    address minter;
}

abstract contract IVoiceStreetNft {
    function totalSupply() public virtual view returns(uint256);

    function tokenMeta(uint256 _tokenId) public virtual view returns (TokenMeta memory);
    
    function setTokenAsset(uint256 _tokenId, string memory _uri, string memory _hash, address _minter) public virtual;

    function increaseSoldTimes(uint256 _tokenId) public virtual;

    function getSoldTimes(uint256 _tokenId) public virtual view returns(uint256);
}
// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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



pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. 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;`
 */
library Counters {
    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 {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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



pragma solidity ^0.8.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 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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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



pragma solidity ^0.8.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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * 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.
 */
abstract 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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

/**
 * @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) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @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].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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



pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

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

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: contracts/metarim.sol



// 主网部署地址:
//     
pragma solidity >=0.4.22 <0.9.0;
pragma experimental ABIEncoderV2;













contract MetaRim is IVoiceStreetNft, Context, ERC165, IERC721, IERC721Metadata, Ownable {
    using Address for address;
    using Strings for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    mapping (uint256 => TokenMeta) public tokenOnChainMeta;

    uint256 public current_supply = 0;
    uint256 public MAX_SUPPLY = 12000;
    uint256 public current_sold = 0;
    string public baseURI;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) internal _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    uint public price;

    uint public buy_limit_per_address = 10;

    uint public sell_begin_time = 0;

    constructor()
    {
        _name = "MetaRim";
        _symbol = "MetaRim";
        setBaseURI("https://www.metarim.io/token/");
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setSupplies(uint _current_supply, uint _max_supply) public onlyOwner {
        require(_current_supply <= MAX_SUPPLY, "CAN_NOT_EXCEED_MAX_SUPPLY");
        current_supply = _current_supply;
        MAX_SUPPLY = _max_supply;
    }

    function setNames(string memory name_, string memory symbol_) public onlyOwner {
        _name = name_;
        _symbol = symbol_;
    }

    function totalSupply() public override view returns(uint256) {
        return _tokenIds.current();
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    function ownerOf(uint256 tokenId) public view override returns (address) {
        address tokenOwner = _owners[tokenId];
        return tokenOwner == address(0) ? owner() : tokenOwner;
    }

    function name() public view override returns (string memory) {
        return _name;
    }

    function symbol() public view override returns (string memory) {
        return _symbol;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    function approve(address to, uint256 tokenId) public override {
        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"
        );

        _approve(to, tokenId);
    }

    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

    function isApprovedForAll(address owner, address operator) public view override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId <= current_supply;
    }

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

    function _safeMint(address to, uint256 tokenId) internal {
        _safeMint(to, tokenId, "");
    }

    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal {
        _mint(to, tokenId, true);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    function _mint(address to, uint256 tokenId, bool emitting) internal {
        require(to != address(0), "ERC721: mint to the zero address");
        require(_owners[tokenId] == address(0), "ERC721: token already minted");

        _balances[to] += 1;
        _owners[tokenId] = to;

        if (emitting) {
            emit Transfer(address(0), to, tokenId);
        }
    }

    function _transfer(
        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");

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    function _approve(address to, uint256 tokenId) internal {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    function tokenMeta(uint256 _tokenId) public override view returns (TokenMeta memory) {
        return tokenOnChainMeta[_tokenId];
    }

    function mintAndPricing(uint256 _num, uint256 _price, uint256 _limit, uint256 _time) public onlyOwner {
        uint supply = SafeMath.add(current_supply, _num);
        require(supply <= MAX_SUPPLY, "CAN_NOT_EXCEED_MAX_SUPPLY");

        current_supply = supply;
        price = _price;
        buy_limit_per_address = _limit;
        sell_begin_time = _time;
    }

    function setTokenAsset(uint256 _tokenId, string memory _uri, string memory _hash, address _minter) public override onlyOwner {
        require(_exists(_tokenId), "Vsnft_setTokenAsset_notoken");
        TokenMeta storage meta = tokenOnChainMeta[_tokenId];
        meta.uri = _uri;
        meta.hash = _hash;
        meta.minter = _minter;
        tokenOnChainMeta[_tokenId] = meta;
    }

    function setSale(uint256 _tokenId, address _contractAddr, uint256[] memory _settings, address[] memory _addrs) public {
        require(_exists(_tokenId), "Vsnft_setTokenAsset_notoken");
        address sender = _msgSender();
        require(owner() == sender || ownerOf(_tokenId) == sender, "Invalid_Owner");
        
        ISaleContract _contract = ISaleContract(_contractAddr);
        _contract.sale(_tokenId, _settings, _addrs);   
        _transfer(sender, _contractAddr, _tokenId);
    }

    function increaseSoldTimes(uint256 /* _tokenId */) public override {
    }

    function getSoldTimes(uint256 _tokenId) public override view returns(uint256) {
        TokenMeta memory meta = tokenOnChainMeta[_tokenId];
        return meta.soldTimes;
    }

    function buy(uint amount, uint adv_time) public payable {
        require(block.timestamp >= SafeMath.sub(sell_begin_time, adv_time), "Purchase_Not_Enabled");
        require(SafeMath.add(balanceOf(msg.sender), amount) <= buy_limit_per_address, "Exceed_Purchase_Limit");
        uint requiredValue = SafeMath.mul(amount, price);
        require(msg.value >= requiredValue, "Not_Enough_Payment");
        require(current_supply >= SafeMath.add(current_sold, amount), "Not_Enough_Stock");

        for (uint i = 0; i < amount; ++i) {
            _tokenIds.increment();
            uint256 newItemId = _tokenIds.current();
            _mint(msg.sender, newItemId, true);

            TokenMeta memory meta = TokenMeta(
                newItemId, 
                "", 
                "",
                "",
                1,
                owner());

            tokenOnChainMeta[newItemId] = meta;
        }

        current_sold = SafeMath.add(current_sold, amount);
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        Address.sendValue(payable(owner()), balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"adv_time","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"buy_limit_per_address","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"current_sold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"current_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getSoldTimes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"increaseSoldTimes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_limit","type":"uint256"},{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"mintAndPricing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sell_begin_time","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"setNames","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_contractAddr","type":"address"},{"internalType":"uint256[]","name":"_settings","type":"uint256[]"},{"internalType":"address[]","name":"_addrs","type":"address[]"}],"name":"setSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_current_supply","type":"uint256"},{"internalType":"uint256","name":"_max_supply","type":"uint256"}],"name":"setSupplies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"string","name":"_hash","type":"string"},{"internalType":"address","name":"_minter","type":"address"}],"name":"setTokenAsset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenMeta","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"string","name":"hash","type":"string"},{"internalType":"uint256","name":"soldTimes","type":"uint256"},{"internalType":"address","name":"minter","type":"address"}],"internalType":"struct TokenMeta","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenOnChainMeta","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"string","name":"hash","type":"string"},{"internalType":"uint256","name":"soldTimes","type":"uint256"},{"internalType":"address","name":"minter","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600355612ee06004556000600555600a600e556000600f553480156200002b57600080fd5b506200003733620000dc565b604080518082019091526007808252664d65746152696d60c81b6020909201918252620000659181620001a4565b50604080518082019091526007808252664d65746152696d60c81b60209092019182526200009691600891620001a4565b5060408051808201909152601d81527f68747470733a2f2f7777772e6d65746172696d2e696f2f746f6b656e2f0000006020820152620000d6906200012c565b62000287565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b031633146200018b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001a0906006906020840190620001a4565b5050565b828054620001b2906200024a565b90600052602060002090601f016020900481019282620001d6576000855562000221565b82601f10620001f157805160ff191683800117855562000221565b8280016001018555821562000221579182015b828111156200022157825182559160200191906001019062000204565b506200022f92915062000233565b5090565b5b808211156200022f576000815560010162000234565b600181811c908216806200025f57607f821691505b602082108114156200028157634e487b7160e01b600052602260045260246000fd5b50919050565b612e5680620002976000396000f3fe60806040526004361061020f5760003560e01c80636aea5f1b1161011857806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd146105dd578063d6febde8146105fd578063e985e9c514610610578063f2fde38b14610659578063fe9080611461067957600080fd5b806395d89b4114610572578063a035b1fe14610587578063a22cb4651461059d578063b88d4fde146105bd57600080fd5b8063715018a6116100e7578063715018a6146104d75780637208616e146104ec5780638da5cb5b1461051e57806391491cfd1461053c57806391a3008b1461055257600080fd5b80636aea5f1b1461046c5780636c0360eb146104825780636e24b49f1461049757806370a08231146104b757600080fd5b806332cb6b0c1161019b5780634fceba4d1161016a5780634fceba4d146103d657806355f804b3146103f65780635af94e7c1461041657806362eceb7e146104365780636352211e1461044c57600080fd5b806332cb6b0c146103755780633ccfd60b1461038b57806342842e0e146103a0578063482f11f3146103c057600080fd5b8063095ea7b3116101e2578063095ea7b3146102c55780630ae7a310146102e557806318160ddd1461031257806323b872dd146103355780632abb934e1461035557600080fd5b806301ffc9a714610214578063030778001461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004612640565b610697565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061026961026436600461272c565b6106e9565b005b34801561027757600080fd5b5061028061082d565b60405161024091906129fa565b34801561029957600080fd5b506102ad6102a8366004612713565b6108bf565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b506102696102e0366004612616565b61094a565b3480156102f157600080fd5b50610305610300366004612713565b610a60565b6040516102409190612ae5565b34801561031e57600080fd5b50610327610ca4565b604051908152602001610240565b34801561034157600080fd5b50610269610350366004612522565b610cb4565b34801561036157600080fd5b5061026961037036600461287a565b610ce5565b34801561038157600080fd5b5061032760045481565b34801561039757600080fd5b50610269610d68565b3480156103ac57600080fd5b506102696103bb366004612522565b610dae565b3480156103cc57600080fd5b50610327600e5481565b3480156103e257600080fd5b506102696103f13660046126af565b610dc9565b34801561040257600080fd5b5061026961041136600461267a565b610e1a565b34801561042257600080fd5b506102696104313660046127fc565b610e5b565b34801561044257600080fd5b5061032760055481565b34801561045857600080fd5b506102ad610467366004612713565b610fe1565b34801561047857600080fd5b5061032760035481565b34801561048e57600080fd5b50610280611019565b3480156104a357600080fd5b506102696104b236600461289c565b6110a7565b3480156104c357600080fd5b506103276104d23660046124d4565b611141565b3480156104e357600080fd5b506102696111c8565b3480156104f857600080fd5b5061050c610507366004612713565b6111fe565b60405161024096959493929190612c02565b34801561052a57600080fd5b506000546001600160a01b03166102ad565b34801561054857600080fd5b50610327600f5481565b34801561055e57600080fd5b5061032761056d366004612713565b6113d5565b34801561057e57600080fd5b506102806115d7565b34801561059357600080fd5b50610327600d5481565b3480156105a957600080fd5b506102696105b83660046125da565b6115e6565b3480156105c957600080fd5b506102696105d836600461255e565b6116ab565b3480156105e957600080fd5b506102806105f8366004612713565b6116e3565b61026961060b36600461287a565b611741565b34801561061c57600080fd5b5061023461062b3660046124ef565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205460ff1690565b34801561066557600080fd5b506102696106743660046124d4565b611a02565b34801561068557600080fd5b50610269610694366004612713565b50565b60006001600160e01b031982166380ac58cd60e01b14806106c857506001600160e01b03198216635b5e139f60e01b145b806106e357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6106f584600354101590565b6107465760405162461bcd60e51b815260206004820152601b60248201527f56736e66745f736574546f6b656e41737365745f6e6f746f6b656e000000000060448201526064015b60405180910390fd5b60005433906001600160a01b031681148061077a5750806001600160a01b031661076f86610fe1565b6001600160a01b0316145b6107b65760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b22fa7bbb732b960991b604482015260640161073d565b60405163b8d006b960e01b815284906001600160a01b0382169063b8d006b9906107e890899088908890600401612b73565b600060405180830381600087803b15801561080257600080fd5b505af1158015610816573d6000803e3d6000fd5b50505050610825828688611a9a565b505050505050565b60606007805461083c90612d48565b80601f016020809104026020016040519081016040528092919081815260200182805461086890612d48565b80156108b55780601f1061088a576101008083540402835291602001916108b5565b820191906000526020600020905b81548152906001019060200180831161089857829003601f168201915b5050505050905090565b60006108cd82600354101590565b61092e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073d565b506000908152600b60205260409020546001600160a01b031690565b600061095582610fe1565b9050806001600160a01b0316836001600160a01b031614156109c35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161073d565b336001600160a01b03821614806109df57506109df813361062b565b610a515760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161073d565b610a5b8383611c3a565b505050565b610aa26040518060c00160405280600081526020016060815260200160608152602001606081526020016000815260200160006001600160a01b031681525090565b600260008381526020019081526020016000206040518060c001604052908160008201548152602001600182018054610ada90612d48565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0690612d48565b8015610b535780601f10610b2857610100808354040283529160200191610b53565b820191906000526020600020905b815481529060010190602001808311610b3657829003601f168201915b50505050508152602001600282018054610b6c90612d48565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9890612d48565b8015610be55780601f10610bba57610100808354040283529160200191610be5565b820191906000526020600020905b815481529060010190602001808311610bc857829003601f168201915b50505050508152602001600382018054610bfe90612d48565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2a90612d48565b8015610c775780601f10610c4c57610100808354040283529160200191610c77565b820191906000526020600020905b815481529060010190602001808311610c5a57829003601f168201915b5050509183525050600482015460208201526005909101546001600160a01b031660409091015292915050565b6000610caf60015490565b905090565b610cbe3382611ca8565b610cda5760405162461bcd60e51b815260040161073d90612a94565b610a5b838383611a9a565b6000546001600160a01b03163314610d0f5760405162461bcd60e51b815260040161073d90612a5f565b600454821115610d5d5760405162461bcd60e51b815260206004820152601960248201527843414e5f4e4f545f4558434545445f4d41585f535550504c5960381b604482015260640161073d565b600391909155600455565b6000546001600160a01b03163314610d925760405162461bcd60e51b815260040161073d90612a5f565b47610694610da86000546001600160a01b031690565b82611d95565b610a5b838383604051806020016040528060008152506116ab565b6000546001600160a01b03163314610df35760405162461bcd60e51b815260040161073d90612a5f565b8151610e069060079060208501906122b3565b508051610a5b9060089060208401906122b3565b6000546001600160a01b03163314610e445760405162461bcd60e51b815260040161073d90612a5f565b8051610e579060069060208401906122b3565b5050565b6000546001600160a01b03163314610e855760405162461bcd60e51b815260040161073d90612a5f565b610e9184600354101590565b610edd5760405162461bcd60e51b815260206004820152601b60248201527f56736e66745f736574546f6b656e41737365745f6e6f746f6b656e0000000000604482015260640161073d565b600084815260026020818152604090922085519092610f0292840191908701906122b3565b508251610f1890600383019060208601906122b3565b506005810180546001600160a01b0319166001600160a01b0384161790556000858152600260205260409020815481556001808301805484939283019190610f5f90612d48565b610f6a929190612337565b506002820181600201908054610f7f90612d48565b610f8a929190612337565b506003820181600301908054610f9f90612d48565b610faa929190612337565b5060048281015490820155600591820154910180546001600160a01b0319166001600160a01b039092169190911790555050505050565b6000818152600960205260408120546001600160a01b031680156110055780611012565b6000546001600160a01b03165b9392505050565b6006805461102690612d48565b80601f016020809104026020016040519081016040528092919081815260200182805461105290612d48565b801561109f5780601f106110745761010080835404028352916020019161109f565b820191906000526020600020905b81548152906001019060200180831161108257829003601f168201915b505050505081565b6000546001600160a01b031633146110d15760405162461bcd60e51b815260040161073d90612a5f565b60006110df60035486611eae565b905060045481111561112f5760405162461bcd60e51b815260206004820152601960248201527843414e5f4e4f545f4558434545445f4d41585f535550504c5960381b604482015260640161073d565b600355600d92909255600e55600f5550565b60006001600160a01b0382166111ac5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161073d565b506001600160a01b03166000908152600a602052604090205490565b6000546001600160a01b031633146111f25760405162461bcd60e51b815260040161073d90612a5f565b6111fc6000611eba565b565b6002602052600090815260409020805460018201805491929161122090612d48565b80601f016020809104026020016040519081016040528092919081815260200182805461124c90612d48565b80156112995780601f1061126e57610100808354040283529160200191611299565b820191906000526020600020905b81548152906001019060200180831161127c57829003601f168201915b5050505050908060020180546112ae90612d48565b80601f01602080910402602001604051908101604052809291908181526020018280546112da90612d48565b80156113275780601f106112fc57610100808354040283529160200191611327565b820191906000526020600020905b81548152906001019060200180831161130a57829003601f168201915b50505050509080600301805461133c90612d48565b80601f016020809104026020016040519081016040528092919081815260200182805461136890612d48565b80156113b55780601f1061138a576101008083540402835291602001916113b5565b820191906000526020600020905b81548152906001019060200180831161139857829003601f168201915b5050505060048301546005909301549192916001600160a01b0316905086565b6000818152600260209081526040808320815160c081019092528054825260018101805485948401919061140890612d48565b80601f016020809104026020016040519081016040528092919081815260200182805461143490612d48565b80156114815780601f1061145657610100808354040283529160200191611481565b820191906000526020600020905b81548152906001019060200180831161146457829003601f168201915b5050505050815260200160028201805461149a90612d48565b80601f01602080910402602001604051908101604052809291908181526020018280546114c690612d48565b80156115135780601f106114e857610100808354040283529160200191611513565b820191906000526020600020905b8154815290600101906020018083116114f657829003601f168201915b5050505050815260200160038201805461152c90612d48565b80601f016020809104026020016040519081016040528092919081815260200182805461155890612d48565b80156115a55780601f1061157a576101008083540402835291602001916115a5565b820191906000526020600020905b81548152906001019060200180831161158857829003601f168201915b5050509183525050600482015460208201526005909101546001600160a01b0316604090910152608001519392505050565b60606008805461083c90612d48565b6001600160a01b03821633141561163f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073d565b336000818152600c602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116b53383611ca8565b6116d15760405162461bcd60e51b815260040161073d90612a94565b6116dd84848484611f0a565b50505050565b60606000600680546116f490612d48565b90501161171057604051806020016040528060008152506106e3565b600661171b83611f3d565b60405160200161172c929190612916565b60405160208183030381529060405292915050565b61174d600f548261203b565b4210156117935760405162461bcd60e51b8152602060048201526014602482015273141d5c98da185cd957d39bdd17d15b98589b195960621b604482015260640161073d565b600e546117a86117a233611141565b84611eae565b11156117ee5760405162461bcd60e51b8152602060048201526015602482015274115e18d9595917d41d5c98da185cd957d31a5b5a5d605a1b604482015260640161073d565b60006117fc83600d54612047565b9050803410156118435760405162461bcd60e51b8152602060048201526012602482015271139bdd17d15b9bdd59da17d4185e5b595b9d60721b604482015260640161073d565b61184f60055484611eae565b60035410156118935760405162461bcd60e51b815260206004820152601060248201526f4e6f745f456e6f7567685f53746f636b60801b604482015260640161073d565b60005b838110156119ed576118ac600180546001019055565b60006118b760015490565b90506118c533826001612053565b60006040518060c00160405280838152602001604051806020016040528060008152508152602001604051806020016040528060008152508152602001604051806020016040528060008152508152602001600181526020016119306000546001600160a01b031690565b6001600160a01b031690526000838152600260209081526040909120825181558183015180519394508493919261196f926001850192909101906122b3565b506040820151805161198b9160028401916020909101906122b3565b50606082015180516119a79160038401916020909101906122b3565b506080820151600482015560a090910151600590910180546001600160a01b0319166001600160a01b03909216919091179055506119e6905081612d83565b9050611896565b506119fa60055484611eae565b600555505050565b6000546001600160a01b03163314611a2c5760405162461bcd60e51b815260040161073d90612a5f565b6001600160a01b038116611a915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073d565b61069481611eba565b826001600160a01b0316611aad82610fe1565b6001600160a01b031614611b155760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161073d565b6001600160a01b038216611b775760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073d565b611b82600082611c3a565b6001600160a01b0383166000908152600a60205260408120805460019290611bab908490612d05565b90915550506001600160a01b0382166000908152600a60205260408120805460019290611bd9908490612cba565b909155505060008181526009602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000818152600b6020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c6f82610fe1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cb682600354101590565b611d175760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073d565b6000611d2283610fe1565b9050806001600160a01b0316846001600160a01b03161480611d5d5750836001600160a01b0316611d52846108bf565b6001600160a01b0316145b80611d8d57506001600160a01b038082166000908152600c602090815260408083209388168352929052205460ff165b949350505050565b80471015611de55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161073d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e32576040519150601f19603f3d011682016040523d82523d6000602084013e611e37565b606091505b5050905080610a5b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161073d565b60006110128284612cba565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611f15848484611a9a565b611f21848484846121a6565b6116dd5760405162461bcd60e51b815260040161073d90612a0d565b606081611f615750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f8b5780611f7581612d83565b9150611f849050600a83612cd2565b9150611f65565b60008167ffffffffffffffff811115611fa657611fa6612df4565b6040519080825280601f01601f191660200182016040528015611fd0576020820181803683370190505b5090505b8415611d8d57611fe5600183612d05565b9150611ff2600a86612d9e565b611ffd906030612cba565b60f81b81838151811061201257612012612dde565b60200101906001600160f81b031916908160001a905350612034600a86612cd2565b9450611fd4565b60006110128284612d05565b60006110128284612ce6565b6001600160a01b0383166120a95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073d565b6000828152600960205260409020546001600160a01b03161561210e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073d565b6001600160a01b0383166000908152600a60205260408120805460019290612137908490612cba565b9091555050600082815260096020526040902080546001600160a01b0319166001600160a01b0385161790558015610a5b5760405182906001600160a01b038516906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4505050565b60006001600160a01b0384163b156122a857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121ea9033908990889088906004016129bd565b602060405180830381600087803b15801561220457600080fd5b505af1925050508015612234575060408051601f3d908101601f191682019092526122319181019061265d565b60015b61228e573d808015612262576040519150601f19603f3d011682016040523d82523d6000602084013e612267565b606091505b5080516122865760405162461bcd60e51b815260040161073d90612a0d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d8d565b506001949350505050565b8280546122bf90612d48565b90600052602060002090601f0160209004810192826122e15760008555612327565b82601f106122fa57805160ff1916838001178555612327565b82800160010185558215612327579182015b8281111561232757825182559160200191906001019061230c565b506123339291506123b2565b5090565b82805461234390612d48565b90600052602060002090601f0160209004810192826123655760008555612327565b82601f106123765780548555612327565b8280016001018555821561232757600052602060002091601f016020900482015b82811115612327578254825591600101919060010190612397565b5b8082111561233357600081556001016123b3565b600067ffffffffffffffff8311156123e1576123e1612df4565b6123f4601f8401601f1916602001612c65565b905082815283838301111561240857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461243657600080fd5b919050565b600082601f83011261244c57600080fd5b8135602061246161245c83612c96565b612c65565b80838252828201915082860187848660051b890101111561248157600080fd5b60005b858110156124a7576124958261241f565b84529284019290840190600101612484565b5090979650505050505050565b600082601f8301126124c557600080fd5b611012838335602085016123c7565b6000602082840312156124e657600080fd5b6110128261241f565b6000806040838503121561250257600080fd5b61250b8361241f565b91506125196020840161241f565b90509250929050565b60008060006060848603121561253757600080fd5b6125408461241f565b925061254e6020850161241f565b9150604084013590509250925092565b6000806000806080858703121561257457600080fd5b61257d8561241f565b935061258b6020860161241f565b925060408501359150606085013567ffffffffffffffff8111156125ae57600080fd5b8501601f810187136125bf57600080fd5b6125ce878235602084016123c7565b91505092959194509250565b600080604083850312156125ed57600080fd5b6125f68361241f565b91506020830135801515811461260b57600080fd5b809150509250929050565b6000806040838503121561262957600080fd5b6126328361241f565b946020939093013593505050565b60006020828403121561265257600080fd5b813561101281612e0a565b60006020828403121561266f57600080fd5b815161101281612e0a565b60006020828403121561268c57600080fd5b813567ffffffffffffffff8111156126a357600080fd5b611d8d848285016124b4565b600080604083850312156126c257600080fd5b823567ffffffffffffffff808211156126da57600080fd5b6126e6868387016124b4565b935060208501359150808211156126fc57600080fd5b50612709858286016124b4565b9150509250929050565b60006020828403121561272557600080fd5b5035919050565b6000806000806080858703121561274257600080fd5b84359350602061275381870161241f565b9350604086013567ffffffffffffffff8082111561277057600080fd5b818801915088601f83011261278457600080fd5b813561279261245c82612c96565b8082825285820191508585018c878560051b88010111156127b257600080fd5b600095505b838610156127d55780358352600195909501949186019186016127b7565b509650505060608801359250808311156127ee57600080fd5b50506125ce8782880161243b565b6000806000806080858703121561281257600080fd5b84359350602085013567ffffffffffffffff8082111561283157600080fd5b61283d888389016124b4565b9450604087013591508082111561285357600080fd5b50612860878288016124b4565b92505061286f6060860161241f565b905092959194509250565b6000806040838503121561288d57600080fd5b50508035926020909101359150565b600080600080608085870312156128b257600080fd5b5050823594602084013594506040840135936060013592509050565b600081518084526128e6816020860160208601612d1c565b601f01601f19169290920160200192915050565b6000815161290c818560208601612d1c565b9290920192915050565b600080845481600182811c91508083168061293257607f831692505b602080841082141561295257634e487b7160e01b86526022600452602486fd5b8180156129665760018114612977576129a4565b60ff198616895284890196506129a4565b60008b81526020902060005b8681101561299c5781548b820152908501908301612983565b505084890196505b5050505050506129b481856128fa565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129f0908301846128ce565b9695505050505050565b60208152600061101260208301846128ce565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208152815160208201526000602083015160c06040840152612b0b60e08401826128ce565b90506040840151601f1980858403016060860152612b2983836128ce565b9250606086015191508085840301608086015250612b4782826128ce565b608086015160a086810191909152909501516001600160a01b031660c090940193909352509192915050565b6000606082018583526020606081850152818651808452608086019150828801935060005b81811015612bb457845183529383019391830191600101612b98565b50508481036040860152855180825290820192508186019060005b81811015612bf45782516001600160a01b031685529383019391830191600101612bcf565b509298975050505050505050565b86815260c060208201526000612c1b60c08301886128ce565b8281036040840152612c2d81886128ce565b90508281036060840152612c4181876128ce565b608084019590955250506001600160a01b039190911660a090910152949350505050565b604051601f8201601f1916810167ffffffffffffffff81118282101715612c8e57612c8e612df4565b604052919050565b600067ffffffffffffffff821115612cb057612cb0612df4565b5060051b60200190565b60008219821115612ccd57612ccd612db2565b500190565b600082612ce157612ce1612dc8565b500490565b6000816000190483118215151615612d0057612d00612db2565b500290565b600082821015612d1757612d17612db2565b500390565b60005b83811015612d37578181015183820152602001612d1f565b838111156116dd5750506000910152565b600181811c90821680612d5c57607f821691505b60208210811415612d7d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d9757612d97612db2565b5060010190565b600082612dad57612dad612dc8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461069457600080fdfea2646970667358221220699d0c79fbf96a8a930146cfac96b0b85213b024dc37fa743b27e2be3a1a411f64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636aea5f1b1161011857806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd146105dd578063d6febde8146105fd578063e985e9c514610610578063f2fde38b14610659578063fe9080611461067957600080fd5b806395d89b4114610572578063a035b1fe14610587578063a22cb4651461059d578063b88d4fde146105bd57600080fd5b8063715018a6116100e7578063715018a6146104d75780637208616e146104ec5780638da5cb5b1461051e57806391491cfd1461053c57806391a3008b1461055257600080fd5b80636aea5f1b1461046c5780636c0360eb146104825780636e24b49f1461049757806370a08231146104b757600080fd5b806332cb6b0c1161019b5780634fceba4d1161016a5780634fceba4d146103d657806355f804b3146103f65780635af94e7c1461041657806362eceb7e146104365780636352211e1461044c57600080fd5b806332cb6b0c146103755780633ccfd60b1461038b57806342842e0e146103a0578063482f11f3146103c057600080fd5b8063095ea7b3116101e2578063095ea7b3146102c55780630ae7a310146102e557806318160ddd1461031257806323b872dd146103355780632abb934e1461035557600080fd5b806301ffc9a714610214578063030778001461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004612640565b610697565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061026961026436600461272c565b6106e9565b005b34801561027757600080fd5b5061028061082d565b60405161024091906129fa565b34801561029957600080fd5b506102ad6102a8366004612713565b6108bf565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b506102696102e0366004612616565b61094a565b3480156102f157600080fd5b50610305610300366004612713565b610a60565b6040516102409190612ae5565b34801561031e57600080fd5b50610327610ca4565b604051908152602001610240565b34801561034157600080fd5b50610269610350366004612522565b610cb4565b34801561036157600080fd5b5061026961037036600461287a565b610ce5565b34801561038157600080fd5b5061032760045481565b34801561039757600080fd5b50610269610d68565b3480156103ac57600080fd5b506102696103bb366004612522565b610dae565b3480156103cc57600080fd5b50610327600e5481565b3480156103e257600080fd5b506102696103f13660046126af565b610dc9565b34801561040257600080fd5b5061026961041136600461267a565b610e1a565b34801561042257600080fd5b506102696104313660046127fc565b610e5b565b34801561044257600080fd5b5061032760055481565b34801561045857600080fd5b506102ad610467366004612713565b610fe1565b34801561047857600080fd5b5061032760035481565b34801561048e57600080fd5b50610280611019565b3480156104a357600080fd5b506102696104b236600461289c565b6110a7565b3480156104c357600080fd5b506103276104d23660046124d4565b611141565b3480156104e357600080fd5b506102696111c8565b3480156104f857600080fd5b5061050c610507366004612713565b6111fe565b60405161024096959493929190612c02565b34801561052a57600080fd5b506000546001600160a01b03166102ad565b34801561054857600080fd5b50610327600f5481565b34801561055e57600080fd5b5061032761056d366004612713565b6113d5565b34801561057e57600080fd5b506102806115d7565b34801561059357600080fd5b50610327600d5481565b3480156105a957600080fd5b506102696105b83660046125da565b6115e6565b3480156105c957600080fd5b506102696105d836600461255e565b6116ab565b3480156105e957600080fd5b506102806105f8366004612713565b6116e3565b61026961060b36600461287a565b611741565b34801561061c57600080fd5b5061023461062b3660046124ef565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205460ff1690565b34801561066557600080fd5b506102696106743660046124d4565b611a02565b34801561068557600080fd5b50610269610694366004612713565b50565b60006001600160e01b031982166380ac58cd60e01b14806106c857506001600160e01b03198216635b5e139f60e01b145b806106e357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6106f584600354101590565b6107465760405162461bcd60e51b815260206004820152601b60248201527f56736e66745f736574546f6b656e41737365745f6e6f746f6b656e000000000060448201526064015b60405180910390fd5b60005433906001600160a01b031681148061077a5750806001600160a01b031661076f86610fe1565b6001600160a01b0316145b6107b65760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b22fa7bbb732b960991b604482015260640161073d565b60405163b8d006b960e01b815284906001600160a01b0382169063b8d006b9906107e890899088908890600401612b73565b600060405180830381600087803b15801561080257600080fd5b505af1158015610816573d6000803e3d6000fd5b50505050610825828688611a9a565b505050505050565b60606007805461083c90612d48565b80601f016020809104026020016040519081016040528092919081815260200182805461086890612d48565b80156108b55780601f1061088a576101008083540402835291602001916108b5565b820191906000526020600020905b81548152906001019060200180831161089857829003601f168201915b5050505050905090565b60006108cd82600354101590565b61092e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073d565b506000908152600b60205260409020546001600160a01b031690565b600061095582610fe1565b9050806001600160a01b0316836001600160a01b031614156109c35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161073d565b336001600160a01b03821614806109df57506109df813361062b565b610a515760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161073d565b610a5b8383611c3a565b505050565b610aa26040518060c00160405280600081526020016060815260200160608152602001606081526020016000815260200160006001600160a01b031681525090565b600260008381526020019081526020016000206040518060c001604052908160008201548152602001600182018054610ada90612d48565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0690612d48565b8015610b535780601f10610b2857610100808354040283529160200191610b53565b820191906000526020600020905b815481529060010190602001808311610b3657829003601f168201915b50505050508152602001600282018054610b6c90612d48565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9890612d48565b8015610be55780601f10610bba57610100808354040283529160200191610be5565b820191906000526020600020905b815481529060010190602001808311610bc857829003601f168201915b50505050508152602001600382018054610bfe90612d48565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2a90612d48565b8015610c775780601f10610c4c57610100808354040283529160200191610c77565b820191906000526020600020905b815481529060010190602001808311610c5a57829003601f168201915b5050509183525050600482015460208201526005909101546001600160a01b031660409091015292915050565b6000610caf60015490565b905090565b610cbe3382611ca8565b610cda5760405162461bcd60e51b815260040161073d90612a94565b610a5b838383611a9a565b6000546001600160a01b03163314610d0f5760405162461bcd60e51b815260040161073d90612a5f565b600454821115610d5d5760405162461bcd60e51b815260206004820152601960248201527843414e5f4e4f545f4558434545445f4d41585f535550504c5960381b604482015260640161073d565b600391909155600455565b6000546001600160a01b03163314610d925760405162461bcd60e51b815260040161073d90612a5f565b47610694610da86000546001600160a01b031690565b82611d95565b610a5b838383604051806020016040528060008152506116ab565b6000546001600160a01b03163314610df35760405162461bcd60e51b815260040161073d90612a5f565b8151610e069060079060208501906122b3565b508051610a5b9060089060208401906122b3565b6000546001600160a01b03163314610e445760405162461bcd60e51b815260040161073d90612a5f565b8051610e579060069060208401906122b3565b5050565b6000546001600160a01b03163314610e855760405162461bcd60e51b815260040161073d90612a5f565b610e9184600354101590565b610edd5760405162461bcd60e51b815260206004820152601b60248201527f56736e66745f736574546f6b656e41737365745f6e6f746f6b656e0000000000604482015260640161073d565b600084815260026020818152604090922085519092610f0292840191908701906122b3565b508251610f1890600383019060208601906122b3565b506005810180546001600160a01b0319166001600160a01b0384161790556000858152600260205260409020815481556001808301805484939283019190610f5f90612d48565b610f6a929190612337565b506002820181600201908054610f7f90612d48565b610f8a929190612337565b506003820181600301908054610f9f90612d48565b610faa929190612337565b5060048281015490820155600591820154910180546001600160a01b0319166001600160a01b039092169190911790555050505050565b6000818152600960205260408120546001600160a01b031680156110055780611012565b6000546001600160a01b03165b9392505050565b6006805461102690612d48565b80601f016020809104026020016040519081016040528092919081815260200182805461105290612d48565b801561109f5780601f106110745761010080835404028352916020019161109f565b820191906000526020600020905b81548152906001019060200180831161108257829003601f168201915b505050505081565b6000546001600160a01b031633146110d15760405162461bcd60e51b815260040161073d90612a5f565b60006110df60035486611eae565b905060045481111561112f5760405162461bcd60e51b815260206004820152601960248201527843414e5f4e4f545f4558434545445f4d41585f535550504c5960381b604482015260640161073d565b600355600d92909255600e55600f5550565b60006001600160a01b0382166111ac5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161073d565b506001600160a01b03166000908152600a602052604090205490565b6000546001600160a01b031633146111f25760405162461bcd60e51b815260040161073d90612a5f565b6111fc6000611eba565b565b6002602052600090815260409020805460018201805491929161122090612d48565b80601f016020809104026020016040519081016040528092919081815260200182805461124c90612d48565b80156112995780601f1061126e57610100808354040283529160200191611299565b820191906000526020600020905b81548152906001019060200180831161127c57829003601f168201915b5050505050908060020180546112ae90612d48565b80601f01602080910402602001604051908101604052809291908181526020018280546112da90612d48565b80156113275780601f106112fc57610100808354040283529160200191611327565b820191906000526020600020905b81548152906001019060200180831161130a57829003601f168201915b50505050509080600301805461133c90612d48565b80601f016020809104026020016040519081016040528092919081815260200182805461136890612d48565b80156113b55780601f1061138a576101008083540402835291602001916113b5565b820191906000526020600020905b81548152906001019060200180831161139857829003601f168201915b5050505060048301546005909301549192916001600160a01b0316905086565b6000818152600260209081526040808320815160c081019092528054825260018101805485948401919061140890612d48565b80601f016020809104026020016040519081016040528092919081815260200182805461143490612d48565b80156114815780601f1061145657610100808354040283529160200191611481565b820191906000526020600020905b81548152906001019060200180831161146457829003601f168201915b5050505050815260200160028201805461149a90612d48565b80601f01602080910402602001604051908101604052809291908181526020018280546114c690612d48565b80156115135780601f106114e857610100808354040283529160200191611513565b820191906000526020600020905b8154815290600101906020018083116114f657829003601f168201915b5050505050815260200160038201805461152c90612d48565b80601f016020809104026020016040519081016040528092919081815260200182805461155890612d48565b80156115a55780601f1061157a576101008083540402835291602001916115a5565b820191906000526020600020905b81548152906001019060200180831161158857829003601f168201915b5050509183525050600482015460208201526005909101546001600160a01b0316604090910152608001519392505050565b60606008805461083c90612d48565b6001600160a01b03821633141561163f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073d565b336000818152600c602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116b53383611ca8565b6116d15760405162461bcd60e51b815260040161073d90612a94565b6116dd84848484611f0a565b50505050565b60606000600680546116f490612d48565b90501161171057604051806020016040528060008152506106e3565b600661171b83611f3d565b60405160200161172c929190612916565b60405160208183030381529060405292915050565b61174d600f548261203b565b4210156117935760405162461bcd60e51b8152602060048201526014602482015273141d5c98da185cd957d39bdd17d15b98589b195960621b604482015260640161073d565b600e546117a86117a233611141565b84611eae565b11156117ee5760405162461bcd60e51b8152602060048201526015602482015274115e18d9595917d41d5c98da185cd957d31a5b5a5d605a1b604482015260640161073d565b60006117fc83600d54612047565b9050803410156118435760405162461bcd60e51b8152602060048201526012602482015271139bdd17d15b9bdd59da17d4185e5b595b9d60721b604482015260640161073d565b61184f60055484611eae565b60035410156118935760405162461bcd60e51b815260206004820152601060248201526f4e6f745f456e6f7567685f53746f636b60801b604482015260640161073d565b60005b838110156119ed576118ac600180546001019055565b60006118b760015490565b90506118c533826001612053565b60006040518060c00160405280838152602001604051806020016040528060008152508152602001604051806020016040528060008152508152602001604051806020016040528060008152508152602001600181526020016119306000546001600160a01b031690565b6001600160a01b031690526000838152600260209081526040909120825181558183015180519394508493919261196f926001850192909101906122b3565b506040820151805161198b9160028401916020909101906122b3565b50606082015180516119a79160038401916020909101906122b3565b506080820151600482015560a090910151600590910180546001600160a01b0319166001600160a01b03909216919091179055506119e6905081612d83565b9050611896565b506119fa60055484611eae565b600555505050565b6000546001600160a01b03163314611a2c5760405162461bcd60e51b815260040161073d90612a5f565b6001600160a01b038116611a915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073d565b61069481611eba565b826001600160a01b0316611aad82610fe1565b6001600160a01b031614611b155760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161073d565b6001600160a01b038216611b775760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073d565b611b82600082611c3a565b6001600160a01b0383166000908152600a60205260408120805460019290611bab908490612d05565b90915550506001600160a01b0382166000908152600a60205260408120805460019290611bd9908490612cba565b909155505060008181526009602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000818152600b6020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c6f82610fe1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cb682600354101590565b611d175760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073d565b6000611d2283610fe1565b9050806001600160a01b0316846001600160a01b03161480611d5d5750836001600160a01b0316611d52846108bf565b6001600160a01b0316145b80611d8d57506001600160a01b038082166000908152600c602090815260408083209388168352929052205460ff165b949350505050565b80471015611de55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161073d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e32576040519150601f19603f3d011682016040523d82523d6000602084013e611e37565b606091505b5050905080610a5b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161073d565b60006110128284612cba565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611f15848484611a9a565b611f21848484846121a6565b6116dd5760405162461bcd60e51b815260040161073d90612a0d565b606081611f615750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f8b5780611f7581612d83565b9150611f849050600a83612cd2565b9150611f65565b60008167ffffffffffffffff811115611fa657611fa6612df4565b6040519080825280601f01601f191660200182016040528015611fd0576020820181803683370190505b5090505b8415611d8d57611fe5600183612d05565b9150611ff2600a86612d9e565b611ffd906030612cba565b60f81b81838151811061201257612012612dde565b60200101906001600160f81b031916908160001a905350612034600a86612cd2565b9450611fd4565b60006110128284612d05565b60006110128284612ce6565b6001600160a01b0383166120a95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073d565b6000828152600960205260409020546001600160a01b03161561210e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073d565b6001600160a01b0383166000908152600a60205260408120805460019290612137908490612cba565b9091555050600082815260096020526040902080546001600160a01b0319166001600160a01b0385161790558015610a5b5760405182906001600160a01b038516906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4505050565b60006001600160a01b0384163b156122a857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121ea9033908990889088906004016129bd565b602060405180830381600087803b15801561220457600080fd5b505af1925050508015612234575060408051601f3d908101601f191682019092526122319181019061265d565b60015b61228e573d808015612262576040519150601f19603f3d011682016040523d82523d6000602084013e612267565b606091505b5080516122865760405162461bcd60e51b815260040161073d90612a0d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d8d565b506001949350505050565b8280546122bf90612d48565b90600052602060002090601f0160209004810192826122e15760008555612327565b82601f106122fa57805160ff1916838001178555612327565b82800160010185558215612327579182015b8281111561232757825182559160200191906001019061230c565b506123339291506123b2565b5090565b82805461234390612d48565b90600052602060002090601f0160209004810192826123655760008555612327565b82601f106123765780548555612327565b8280016001018555821561232757600052602060002091601f016020900482015b82811115612327578254825591600101919060010190612397565b5b8082111561233357600081556001016123b3565b600067ffffffffffffffff8311156123e1576123e1612df4565b6123f4601f8401601f1916602001612c65565b905082815283838301111561240857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461243657600080fd5b919050565b600082601f83011261244c57600080fd5b8135602061246161245c83612c96565b612c65565b80838252828201915082860187848660051b890101111561248157600080fd5b60005b858110156124a7576124958261241f565b84529284019290840190600101612484565b5090979650505050505050565b600082601f8301126124c557600080fd5b611012838335602085016123c7565b6000602082840312156124e657600080fd5b6110128261241f565b6000806040838503121561250257600080fd5b61250b8361241f565b91506125196020840161241f565b90509250929050565b60008060006060848603121561253757600080fd5b6125408461241f565b925061254e6020850161241f565b9150604084013590509250925092565b6000806000806080858703121561257457600080fd5b61257d8561241f565b935061258b6020860161241f565b925060408501359150606085013567ffffffffffffffff8111156125ae57600080fd5b8501601f810187136125bf57600080fd5b6125ce878235602084016123c7565b91505092959194509250565b600080604083850312156125ed57600080fd5b6125f68361241f565b91506020830135801515811461260b57600080fd5b809150509250929050565b6000806040838503121561262957600080fd5b6126328361241f565b946020939093013593505050565b60006020828403121561265257600080fd5b813561101281612e0a565b60006020828403121561266f57600080fd5b815161101281612e0a565b60006020828403121561268c57600080fd5b813567ffffffffffffffff8111156126a357600080fd5b611d8d848285016124b4565b600080604083850312156126c257600080fd5b823567ffffffffffffffff808211156126da57600080fd5b6126e6868387016124b4565b935060208501359150808211156126fc57600080fd5b50612709858286016124b4565b9150509250929050565b60006020828403121561272557600080fd5b5035919050565b6000806000806080858703121561274257600080fd5b84359350602061275381870161241f565b9350604086013567ffffffffffffffff8082111561277057600080fd5b818801915088601f83011261278457600080fd5b813561279261245c82612c96565b8082825285820191508585018c878560051b88010111156127b257600080fd5b600095505b838610156127d55780358352600195909501949186019186016127b7565b509650505060608801359250808311156127ee57600080fd5b50506125ce8782880161243b565b6000806000806080858703121561281257600080fd5b84359350602085013567ffffffffffffffff8082111561283157600080fd5b61283d888389016124b4565b9450604087013591508082111561285357600080fd5b50612860878288016124b4565b92505061286f6060860161241f565b905092959194509250565b6000806040838503121561288d57600080fd5b50508035926020909101359150565b600080600080608085870312156128b257600080fd5b5050823594602084013594506040840135936060013592509050565b600081518084526128e6816020860160208601612d1c565b601f01601f19169290920160200192915050565b6000815161290c818560208601612d1c565b9290920192915050565b600080845481600182811c91508083168061293257607f831692505b602080841082141561295257634e487b7160e01b86526022600452602486fd5b8180156129665760018114612977576129a4565b60ff198616895284890196506129a4565b60008b81526020902060005b8681101561299c5781548b820152908501908301612983565b505084890196505b5050505050506129b481856128fa565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129f0908301846128ce565b9695505050505050565b60208152600061101260208301846128ce565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208152815160208201526000602083015160c06040840152612b0b60e08401826128ce565b90506040840151601f1980858403016060860152612b2983836128ce565b9250606086015191508085840301608086015250612b4782826128ce565b608086015160a086810191909152909501516001600160a01b031660c090940193909352509192915050565b6000606082018583526020606081850152818651808452608086019150828801935060005b81811015612bb457845183529383019391830191600101612b98565b50508481036040860152855180825290820192508186019060005b81811015612bf45782516001600160a01b031685529383019391830191600101612bcf565b509298975050505050505050565b86815260c060208201526000612c1b60c08301886128ce565b8281036040840152612c2d81886128ce565b90508281036060840152612c4181876128ce565b608084019590955250506001600160a01b039190911660a090910152949350505050565b604051601f8201601f1916810167ffffffffffffffff81118282101715612c8e57612c8e612df4565b604052919050565b600067ffffffffffffffff821115612cb057612cb0612df4565b5060051b60200190565b60008219821115612ccd57612ccd612db2565b500190565b600082612ce157612ce1612dc8565b500490565b6000816000190483118215151615612d0057612d00612db2565b500290565b600082821015612d1757612d17612db2565b500390565b60005b83811015612d37578181015183820152602001612d1f565b838111156116dd5750506000910152565b600181811c90821680612d5c57607f821691505b60208210811415612d7d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d9757612d97612db2565b5060010190565b600082612dad57612dad612dc8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461069457600080fdfea2646970667358221220699d0c79fbf96a8a930146cfac96b0b85213b024dc37fa743b27e2be3a1a411f64736f6c63430008070033

Deployed Bytecode Sourcemap

31105:10901:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32981:297;;;;;;;;;;-1:-1:-1;32981:297:0;;;;;:::i;:::-;;:::i;:::-;;;10486:14:1;;10479:22;10461:41;;10449:2;10434:18;32981:297:0;;;;;;;;40068:504;;;;;;;;;;-1:-1:-1;40068:504:0;;;;;:::i;:::-;;:::i;:::-;;33696:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34504:213::-;;;;;;;;;;-1:-1:-1;34504:213:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9784:32:1;;;9766:51;;9754:2;9739:18;34504:213:0;9620:203:1;34100:396:0;;;;;;;;;;-1:-1:-1;34100:396:0;;;;;:::i;:::-;;:::i;39140:137::-;;;;;;;;;;-1:-1:-1;39140:137:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;32867:106::-;;;;;;;;;;;;;:::i;:::-;;;20643:25:1;;;20631:2;20616:18;32867:106:0;20497:177:1;35184:331:0;;;;;;;;;;-1:-1:-1;35184:331:0;;;;;:::i;:::-;;:::i;32470:242::-;;;;;;;;;;-1:-1:-1;32470:242:0;;;;;:::i;:::-;;:::i;31452:33::-;;;;;;;;;;;;;;;;41856:147;;;;;;;;;;;;;:::i;35523:177::-;;;;;;;;;;-1:-1:-1;35523:177:0;;;;;:::i;:::-;;:::i;32124:38::-;;;;;;;;;;;;;;;;32720:139;;;;;;;;;;-1:-1:-1;32720:139:0;;;;;:::i;:::-;;:::i;32358:104::-;;;;;;;;;;-1:-1:-1;32358:104:0;;;;;:::i;:::-;;:::i;39667:393::-;;;;;;;;;;-1:-1:-1;39667:393:0;;;;;:::i;:::-;;:::i;31492:31::-;;;;;;;;;;;;;;;;33494:194;;;;;;;;;;-1:-1:-1;33494:194:0;;;;;:::i;:::-;;:::i;31412:33::-;;;;;;;;;;;;;;;;31530:21;;;;;;;;;;;;;:::i;39285:374::-;;;;;;;;;;-1:-1:-1;39285:374:0;;;;;:::i;:::-;;:::i;33286:200::-;;;;;;;;;;-1:-1:-1;33286:200:0;;;;;:::i;:::-;;:::i;13904:94::-;;;;;;;;;;;;;:::i;31349:54::-;;;;;;;;;;-1:-1:-1;31349:54:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;:::i;13253:87::-;;;;;;;;;;-1:-1:-1;13299:7:0;13326:6;-1:-1:-1;;;;;13326:6:0;13253:87;;32171:31;;;;;;;;;;;;;;;;40663:179;;;;;;;;;;-1:-1:-1;40663:179:0;;;;;:::i;:::-;;:::i;33796:96::-;;;;;;;;;;;;;:::i;32098:17::-;;;;;;;;;;;;;;;;34725:287;;;;;;;;;;-1:-1:-1;34725:287:0;;;;;:::i;:::-;;:::i;35708:320::-;;;;;;;;;;-1:-1:-1;35708:320:0;;;;;:::i;:::-;;:::i;33900:192::-;;;;;;;;;;-1:-1:-1;33900:192:0;;;;;:::i;:::-;;:::i;40850:998::-;;;;;;:::i;:::-;;:::i;35020:156::-;;;;;;;;;;-1:-1:-1;35020:156:0;;;;;:::i;:::-;-1:-1:-1;;;;;35133:25:0;;;35109:4;35133:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35020:156;14153:192;;;;;;;;;;-1:-1:-1;14153:192:0;;;;;:::i;:::-;;:::i;40580:75::-;;;;;;;;;;-1:-1:-1;40580:75:0;;;;;:::i;:::-;41893:110:::1;41856:147:::0;32981:297;33075:4;-1:-1:-1;;;;;;33112:40:0;;-1:-1:-1;;;33112:40:0;;:105;;-1:-1:-1;;;;;;;33169:48:0;;-1:-1:-1;;;33169:48:0;33112:105;:158;;;-1:-1:-1;;;;;;;;;;25348:40:0;;;33234:36;33092:178;32981:297;-1:-1:-1;;32981:297:0:o;40068:504::-;40205:17;40213:8;36443:14;;-1:-1:-1;36432:25:0;;36351:114;40205:17;40197:57;;;;-1:-1:-1;;;40197:57:0;;18602:2:1;40197:57:0;;;18584:21:1;18641:2;18621:18;;;18614:30;18680:29;18660:18;;;18653:57;18727:18;;40197:57:0;;;;;;;;;40265:14;13326:6;12121:10;;-1:-1:-1;;;;;13326:6:0;40313:17;;;:48;;;40355:6;-1:-1:-1;;;;;40334:27:0;:17;40342:8;40334:7;:17::i;:::-;-1:-1:-1;;;;;40334:27:0;;40313:48;40305:74;;;;-1:-1:-1;;;40305:74:0;;17858:2:1;40305:74:0;;;17840:21:1;17897:2;17877:18;;;17870:30;-1:-1:-1;;;17916:18:1;;;17909:43;17969:18;;40305:74:0;17656:337:1;40305:74:0;40465:43;;-1:-1:-1;;;40465:43:0;;40440:13;;-1:-1:-1;;;;;40465:14:0;;;;;:43;;40480:8;;40490:9;;40501:6;;40465:43;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40522:42;40532:6;40540:13;40555:8;40522:9;:42::i;:::-;40186:386;;40068:504;;;;:::o;33696:92::-;33742:13;33775:5;33768:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33696:92;:::o;34504:213::-;34572:7;34600:16;34608:7;36443:14;;-1:-1:-1;36432:25:0;;36351:114;34600:16;34592:73;;;;-1:-1:-1;;;34592:73:0;;16329:2:1;34592:73:0;;;16311:21:1;16368:2;16348:18;;;16341:30;16407:34;16387:18;;;16380:62;-1:-1:-1;;;16458:18:1;;;16451:42;16510:19;;34592:73:0;16127:408:1;34592:73:0;-1:-1:-1;34685:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34685:24:0;;34504:213::o;34100:396::-;34173:13;34189:16;34197:7;34189;:16::i;:::-;34173:32;;34230:5;-1:-1:-1;;;;;34224:11:0;:2;-1:-1:-1;;;;;34224:11:0;;;34216:57;;;;-1:-1:-1;;;34216:57:0;;18200:2:1;34216:57:0;;;18182:21:1;18239:2;18219:18;;;18212:30;18278:34;18258:18;;;18251:62;-1:-1:-1;;;18329:18:1;;;18322:31;18370:19;;34216:57:0;17998:397:1;34216:57:0;12121:10;-1:-1:-1;;;;;34308:21:0;;;;:62;;-1:-1:-1;34333:37:0;34350:5;12121:10;35020:156;:::i;34333:37::-;34286:168;;;;-1:-1:-1;;;34286:168:0;;14782:2:1;34286:168:0;;;14764:21:1;14821:2;14801:18;;;14794:30;14860:34;14840:18;;;14833:62;14931:26;14911:18;;;14904:54;14975:19;;34286:168:0;14580:420:1;34286:168:0;34467:21;34476:2;34480:7;34467:8;:21::i;:::-;34162:334;34100:396;;:::o;39140:137::-;39207:16;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39207:16:0;39243;:26;39260:8;39243:26;;;;;;;;;;;39236:33;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;39236:33:0;;;-1:-1:-1;;39236:33:0;;;;;;;;;;;;;-1:-1:-1;;;;;39236:33:0;;;;;;;39140:137;-1:-1:-1;;39140:137:0:o;32867:106::-;32919:7;32946:19;:9;8845:14;;8753:114;32946:19;32939:26;;32867:106;:::o;35184:331::-;35371:41;12121:10;35404:7;35371:18;:41::i;:::-;35363:103;;;;-1:-1:-1;;;35363:103:0;;;;;;;:::i;:::-;35479:28;35489:4;35495:2;35499:7;35479:9;:28::i;32470:242::-;13299:7;13326:6;-1:-1:-1;;;;;13326:6:0;12121:10;13473:23;13465:68;;;;-1:-1:-1;;;13465:68:0;;;;;;;:::i;:::-;32586:10:::1;;32567:15;:29;;32559:67;;;::::0;-1:-1:-1;;;32559:67:0;;11358:2:1;32559:67:0::1;::::0;::::1;11340:21:1::0;11397:2;11377:18;;;11370:30;-1:-1:-1;;;11416:18:1;;;11409:55;11481:18;;32559:67:0::1;11156:349:1::0;32559:67:0::1;32637:14;:32:::0;;;;32680:10:::1;:24:::0;32470:242::o;41856:147::-;13299:7;13326:6;-1:-1:-1;;;;;13326:6:0;12121:10;13473:23;13465:68;;;;-1:-1:-1;;;13465:68:0;;;;;;;:::i;:::-;41919:21:::1;41951:44;41977:7;13299::::0;13326:6;-1:-1:-1;;;;;13326:6:0;;13253:87;41977:7:::1;41987;41951:17;:44::i;35523:177::-:0;35653:39;35670:4;35676:2;35680:7;35653:39;;;;;;;;;;;;:16;:39::i;32720:139::-;13299:7;13326:6;-1:-1:-1;;;;;13326:6:0;12121:10;13473:23;13465:68;;;;-1:-1:-1;;;13465:68:0;;;;;;;:::i;:::-;32810:13;;::::1;::::0;:5:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;32834:17:0;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;32358:104::-:0;13299:7;13326:6;-1:-1:-1;;;;;13326:6:0;12121:10;13473:23;13465:68;;;;-1:-1:-1;;;13465:68:0;;;;;;;:::i;:::-;32433:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;32358:104:::0;:::o;39667:393::-;13299:7;13326:6;-1:-1:-1;;;;;13326:6:0;12121:10;13473:23;13465:68;;;;-1:-1:-1;;;13465:68:0;;;;;;;:::i;:::-;39811:17:::1;39819:8;36443:14:::0;;-1:-1:-1;36432:25:0;;36351:114;39811:17:::1;39803:57;;;::::0;-1:-1:-1;;;39803:57:0;;18602:2:1;39803:57:0::1;::::0;::::1;18584:21:1::0;18641:2;18621:18;;;18614:30;18680:29;18660:18;;;18653:57;18727:18;;39803:57:0::1;18400:351:1::0;39803:57:0::1;39871:22;39896:26:::0;;;:16:::1;:26;::::0;;;;;;;39933:15;;39896:26;;39933:15:::1;::::0;:8;::::1;::::0;:15;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;39959:17:0;;::::1;::::0;:9:::1;::::0;::::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;39987:11:0::1;::::0;::::1;:21:::0;;-1:-1:-1;;;;;;39987:21:0::1;-1:-1:-1::0;;;;;39987:21:0;::::1;;::::0;;-1:-1:-1;40019:26:0;;;:16:::1;:26;::::0;;;;:33;;;;-1:-1:-1;40019:33:0;;::::1;::::0;;39987:11;;40019:26;:33;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;:::i;:::-;-1:-1:-1::0;40019:33:0::1;::::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;40019:33:0::1;-1:-1:-1::0;;;;;40019:33:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;;;39667:393:0:o;33494:194::-;33558:7;33599:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33599:16:0;33633:24;;:47;;33670:10;33633:47;;;13299:7;13326:6;-1:-1:-1;;;;;13326:6:0;33660:7;33626:54;33494:194;-1:-1:-1;;;33494:194:0:o;31530:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39285:374::-;13299:7;13326:6;-1:-1:-1;;;;;13326:6:0;12121:10;13473:23;13465:68;;;;-1:-1:-1;;;13465:68:0;;;;;;;:::i;:::-;39398:11:::1;39412:34;39425:14;;39441:4;39412:12;:34::i;:::-;39398:48;;39475:10;;39465:6;:20;;39457:58;;;::::0;-1:-1:-1;;;39457:58:0;;11358:2:1;39457:58:0::1;::::0;::::1;11340:21:1::0;11397:2;11377:18;;;11370:30;-1:-1:-1;;;11416:18:1;;;11409:55;11481:18;;39457:58:0::1;11156:349:1::0;39457:58:0::1;39528:14;:23:::0;39562:5:::1;:14:::0;;;;39587:21:::1;:30:::0;39628:15:::1;:23:::0;-1:-1:-1;39285:374:0:o;33286:200::-;33350:7;-1:-1:-1;;;;;33378:19:0;;33370:74;;;;-1:-1:-1;;;33370:74:0;;15207:2:1;33370:74:0;;;15189:21:1;15246:2;15226:18;;;15219:30;15285:34;15265:18;;;15258:62;-1:-1:-1;;;15336:18:1;;;15329:40;15386:19;;33370:74:0;15005:406:1;33370:74:0;-1:-1:-1;;;;;;33462:16:0;;;;;:9;:16;;;;;;;33286:200::o;13904:94::-;13299:7;13326:6;-1:-1:-1;;;;;13326:6:0;12121:10;13473:23;13465:68;;;;-1:-1:-1;;;13465:68:0;;;;;;;:::i;:::-;13969:21:::1;13987:1;13969:9;:21::i;:::-;13904:94::o:0;31349:54::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;31349:54:0;;;;;;;;;;;;-1:-1:-1;;;;;31349:54:0;;-1:-1:-1;31349:54:0;:::o;40663:179::-;40732:7;40776:26;;;:16;:26;;;;;;;;40752:50;;;;;;;;;;;;;;;;;40732:7;;40752:50;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;40752:50:0;;;-1:-1:-1;;40752:50:0;;;;;;;;;;;;;-1:-1:-1;;;;;40752:50:0;;;;;;40820:14;;;;40663:179;-1:-1:-1;;;40663:179:0:o;33796:96::-;33844:13;33877:7;33870:14;;;;;:::i;34725:287::-;-1:-1:-1;;;;;34820:24:0;;12121:10;34820:24;;34812:62;;;;-1:-1:-1;;;34812:62:0;;12881:2:1;34812:62:0;;;12863:21:1;12920:2;12900:18;;;12893:30;12959:27;12939:18;;;12932:55;13004:18;;34812:62:0;12679:349:1;34812:62:0;12121:10;34887:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34887:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34887:53:0;;;;;;;;;;34956:48;;10461:41:1;;;34887:42:0;;12121:10;34956:48;;10434:18:1;34956:48:0;;;;;;;34725:287;;:::o;35708:320::-;35875:41;12121:10;35908:7;35875:18;:41::i;:::-;35867:103;;;;-1:-1:-1;;;35867:103:0;;;;;;;:::i;:::-;35981:39;35995:4;36001:2;36005:7;36014:5;35981:13;:39::i;:::-;35708:320;;;;:::o;33900:192::-;33965:13;34022:1;34004:7;33998:21;;;;;:::i;:::-;;;:25;:86;;;;;;;;;;;;;;;;;34050:7;34059:18;:7;:16;:18::i;:::-;34033:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33991:93;33900:192;-1:-1:-1;;33900:192:0:o;40850:998::-;40944:39;40957:15;;40974:8;40944:12;:39::i;:::-;40925:15;:58;;40917:91;;;;-1:-1:-1;;;40917:91:0;;14433:2:1;40917:91:0;;;14415:21:1;14472:2;14452:18;;;14445:30;-1:-1:-1;;;14491:18:1;;;14484:50;14551:18;;40917:91:0;14231:344:1;40917:91:0;41074:21;;41027:43;41040:21;41050:10;41040:9;:21::i;:::-;41063:6;41027:12;:43::i;:::-;:68;;41019:102;;;;-1:-1:-1;;;41019:102:0;;15979:2:1;41019:102:0;;;15961:21:1;16018:2;15998:18;;;15991:30;-1:-1:-1;;;16037:18:1;;;16030:51;16098:18;;41019:102:0;15777:345:1;41019:102:0;41132:18;41153:27;41166:6;41174:5;;41153:12;:27::i;:::-;41132:48;;41212:13;41199:9;:26;;41191:57;;;;-1:-1:-1;;;41191:57:0;;19376:2:1;41191:57:0;;;19358:21:1;19415:2;19395:18;;;19388:30;-1:-1:-1;;;19434:18:1;;;19427:48;19492:18;;41191:57:0;19174:342:1;41191:57:0;41285:34;41298:12;;41312:6;41285:12;:34::i;:::-;41267:14;;:52;;41259:81;;;;-1:-1:-1;;;41259:81:0;;17513:2:1;41259:81:0;;;17495:21:1;17552:2;17532:18;;;17525:30;-1:-1:-1;;;17571:18:1;;;17564:46;17627:18;;41259:81:0;17311:340:1;41259:81:0;41358:6;41353:426;41374:6;41370:1;:10;41353:426;;;41402:21;:9;8964:19;;8982:1;8964:19;;;8875:127;41402:21;41438:17;41458:19;:9;8845:14;;8753:114;41458:19;41438:39;;41492:34;41498:10;41510:9;41521:4;41492:5;:34::i;:::-;41543:21;41567:149;;;;;;;;41595:9;41567:149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41688:1;41567:149;;;;41708:7;13299;13326:6;-1:-1:-1;;;;;13326:6:0;;13253:87;41708:7;-1:-1:-1;;;;;41567:149:0;;;41733:27;;;;:16;:27;;;;;;;;:34;;;;;;;;;;41543:173;;-1:-1:-1;41543:173:0;;41733:27;;:34;;;;;;;;;;;:::i;:::-;-1:-1:-1;41733:34:0;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;41733:34:0;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;41733:34:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41733:34:0;-1:-1:-1;;;;;41733:34:0;;;;;;;;;-1:-1:-1;41382:3:0;;-1:-1:-1;41382:3:0;;:::i;:::-;;;41353:426;;;;41806:34;41819:12;;41833:6;41806:12;:34::i;:::-;41791:12;:49;-1:-1:-1;;;40850:998:0:o;14153:192::-;13299:7;13326:6;-1:-1:-1;;;;;13326:6:0;12121:10;13473:23;13465:68;;;;-1:-1:-1;;;13465:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14242:22:0;::::1;14234:73;;;::::0;-1:-1:-1;;;14234:73:0;;11712:2:1;14234:73:0::1;::::0;::::1;11694:21:1::0;11751:2;11731:18;;;11724:30;11790:34;11770:18;;;11763:62;-1:-1:-1;;;11841:18:1;;;11834:36;11887:19;;14234:73:0::1;11510:402:1::0;14234:73:0::1;14318:19;14328:8;14318:9;:19::i;37643:511::-:0;37787:4;-1:-1:-1;;;;;37767:24:0;:16;37775:7;37767;:16::i;:::-;-1:-1:-1;;;;;37767:24:0;;37759:78;;;;-1:-1:-1;;;37759:78:0;;17103:2:1;37759:78:0;;;17085:21:1;17142:2;17122:18;;;17115:30;17181:34;17161:18;;;17154:62;-1:-1:-1;;;17232:18:1;;;17225:39;17281:19;;37759:78:0;16901:405:1;37759:78:0;-1:-1:-1;;;;;37856:16:0;;37848:65;;;;-1:-1:-1;;;37848:65:0;;12476:2:1;37848:65:0;;;12458:21:1;12515:2;12495:18;;;12488:30;12554:34;12534:18;;;12527:62;-1:-1:-1;;;12605:18:1;;;12598:34;12649:19;;37848:65:0;12274:400:1;37848:65:0;37978:29;37995:1;37999:7;37978:8;:29::i;:::-;-1:-1:-1;;;;;38020:15:0;;;;;;:9;:15;;;;;:20;;38039:1;;38020:15;:20;;38039:1;;38020:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38051:13:0;;;;;;:9;:13;;;;;:18;;38068:1;;38051:13;:18;;38068:1;;38051:18;:::i;:::-;;;;-1:-1:-1;;38080:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38080:21:0;-1:-1:-1;;;;;38080:21:0;;;;;;;;;38119:27;;38080:16;;38119:27;;;;;;;37643:511;;;:::o;38162:159::-;38229:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38229:29:0;-1:-1:-1;;;;;38229:29:0;;;;;;;;:24;;38283:16;38229:24;38283:7;:16::i;:::-;-1:-1:-1;;;;;38274:39:0;;;;;;;;;;;38162:159;;:::o;36473:333::-;36558:4;36583:16;36591:7;36443:14;;-1:-1:-1;36432:25:0;;36351:114;36583:16;36575:73;;;;-1:-1:-1;;;36575:73:0;;14020:2:1;36575:73:0;;;14002:21:1;14059:2;14039:18;;;14032:30;14098:34;14078:18;;;14071:62;-1:-1:-1;;;14149:18:1;;;14142:42;14201:19;;36575:73:0;13818:408:1;36575:73:0;36659:13;36675:16;36683:7;36675;:16::i;:::-;36659:32;;36721:5;-1:-1:-1;;;;;36710:16:0;:7;-1:-1:-1;;;;;36710:16:0;;:51;;;;36754:7;-1:-1:-1;;;;;36730:31:0;:20;36742:7;36730:11;:20::i;:::-;-1:-1:-1;;;;;36730:31:0;;36710:51;:87;;;-1:-1:-1;;;;;;35133:25:0;;;35109:4;35133:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36765:32;36702:96;36473:333;-1:-1:-1;;;;36473:333:0:o;16621:317::-;16736:6;16711:21;:31;;16703:73;;;;-1:-1:-1;;;16703:73:0;;13662:2:1;16703:73:0;;;13644:21:1;13701:2;13681:18;;;13674:30;13740:31;13720:18;;;13713:59;13789:18;;16703:73:0;13460:353:1;16703:73:0;16790:12;16808:9;-1:-1:-1;;;;;16808:14:0;16830:6;16808:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16789:52;;;16860:7;16852:78;;;;-1:-1:-1;;;16852:78:0;;13235:2:1;16852:78:0;;;13217:21:1;13274:2;13254:18;;;13247:30;13313:34;13293:18;;;13286:62;13384:28;13364:18;;;13357:56;13430:19;;16852:78:0;13033:422:1;3771:98:0;3829:7;3856:5;3860:1;3856;:5;:::i;14353:173::-;14409:16;14428:6;;-1:-1:-1;;;;;14445:17:0;;;-1:-1:-1;;;;;;14445:17:0;;;;;;14478:40;;14428:6;;;;;;;14478:40;;14409:16;14478:40;14398:128;14353:173;:::o;36036:307::-;36185:28;36195:4;36201:2;36205:7;36185:9;:28::i;:::-;36232:48;36255:4;36261:2;36265:7;36274:5;36232:22;:48::i;:::-;36224:111;;;;-1:-1:-1;;;36224:111:0;;;;;;;:::i;9657:723::-;9713:13;9934:10;9930:53;;-1:-1:-1;;9961:10:0;;;;;;;;;;;;-1:-1:-1;;;9961:10:0;;;;;9657:723::o;9930:53::-;10008:5;9993:12;10049:78;10056:9;;10049:78;;10082:8;;;;:::i;:::-;;-1:-1:-1;10105:10:0;;-1:-1:-1;10113:2:0;10105:10;;:::i;:::-;;;10049:78;;;10137:19;10169:6;10159:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10159:17:0;;10137:39;;10187:154;10194:10;;10187:154;;10221:11;10231:1;10221:11;;:::i;:::-;;-1:-1:-1;10290:10:0;10298:2;10290:5;:10;:::i;:::-;10277:24;;:2;:24;:::i;:::-;10264:39;;10247:6;10254;10247:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10247:56:0;;;;;;;;-1:-1:-1;10318:11:0;10327:2;10318:11;;:::i;:::-;;;10187:154;;4152:98;4210:7;4237:5;4241:1;4237;:5;:::i;4509:98::-;4567:7;4594:5;4598:1;4594;:5;:::i;37251:384::-;-1:-1:-1;;;;;37338:16:0;;37330:61;;;;-1:-1:-1;;;37330:61:0;;15618:2:1;37330:61:0;;;15600:21:1;;;15637:18;;;15630:30;15696:34;15676:18;;;15669:62;15748:18;;37330:61:0;15416:356:1;37330:61:0;37438:1;37410:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37410:16:0;:30;37402:71;;;;-1:-1:-1;;;37402:71:0;;12119:2:1;37402:71:0;;;12101:21:1;12158:2;12138:18;;;12131:30;12197;12177:18;;;12170:58;12245:18;;37402:71:0;11917:352:1;37402:71:0;-1:-1:-1;;;;;37486:13:0;;;;;;:9;:13;;;;;:18;;37503:1;;37486:13;:18;;37503:1;;37486:18;:::i;:::-;;;;-1:-1:-1;;37515:16:0;;;;:7;:16;;;;;:21;;-1:-1:-1;;;;;;37515:21:0;-1:-1:-1;;;;;37515:21:0;;;;;37549:79;;;;37583:33;;37608:7;;-1:-1:-1;;;;;37583:33:0;;;37600:1;;37583:33;;37600:1;;37583:33;37251:384;;;:::o;38329:803::-;38484:4;-1:-1:-1;;;;;38505:13:0;;15622:20;15670:8;38501:624;;38541:72;;-1:-1:-1;;;38541:72:0;;-1:-1:-1;;;;;38541:36:0;;;;;:72;;12121:10;;38592:4;;38598:7;;38607:5;;38541:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38541:72:0;;;;;;;;-1:-1:-1;;38541:72:0;;;;;;;;;;;;:::i;:::-;;;38537:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38787:13:0;;38783:272;;38830:60;;-1:-1:-1;;;38830:60:0;;;;;;;:::i;38783:272::-;39005:6;38999:13;38990:6;38986:2;38982:15;38975:38;38537:533;-1:-1:-1;;;;;;38664:55:0;-1:-1:-1;;;38664:55:0;;-1:-1:-1;38657:62:0;;38501:624;-1:-1:-1;39109:4:0;38329:803;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:679::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:169;1098:2;1095:1;1092:9;1084:169;;;1155:23;1174:3;1155:23;:::i;:::-;1143:36;;1199:12;;;;1231;;;;1116:1;1109:9;1084:169;;;-1:-1:-1;1271:5:1;;603:679;-1:-1:-1;;;;;;;603:679:1:o;1287:221::-;1330:5;1383:3;1376:4;1368:6;1364:17;1360:27;1350:55;;1401:1;1398;1391:12;1350:55;1423:79;1498:3;1489:6;1476:20;1469:4;1461:6;1457:17;1423:79;:::i;1513:186::-;1572:6;1625:2;1613:9;1604:7;1600:23;1596:32;1593:52;;;1641:1;1638;1631:12;1593:52;1664:29;1683:9;1664:29;:::i;1704:260::-;1772:6;1780;1833:2;1821:9;1812:7;1808:23;1804:32;1801:52;;;1849:1;1846;1839:12;1801:52;1872:29;1891:9;1872:29;:::i;:::-;1862:39;;1920:38;1954:2;1943:9;1939:18;1920:38;:::i;:::-;1910:48;;1704:260;;;;;:::o;1969:328::-;2046:6;2054;2062;2115:2;2103:9;2094:7;2090:23;2086:32;2083:52;;;2131:1;2128;2121:12;2083:52;2154:29;2173:9;2154:29;:::i;:::-;2144:39;;2202:38;2236:2;2225:9;2221:18;2202:38;:::i;:::-;2192:48;;2287:2;2276:9;2272:18;2259:32;2249:42;;1969:328;;;;;:::o;2302:666::-;2397:6;2405;2413;2421;2474:3;2462:9;2453:7;2449:23;2445:33;2442:53;;;2491:1;2488;2481:12;2442:53;2514:29;2533:9;2514:29;:::i;:::-;2504:39;;2562:38;2596:2;2585:9;2581:18;2562:38;:::i;:::-;2552:48;;2647:2;2636:9;2632:18;2619:32;2609:42;;2702:2;2691:9;2687:18;2674:32;2729:18;2721:6;2718:30;2715:50;;;2761:1;2758;2751:12;2715:50;2784:22;;2837:4;2829:13;;2825:27;-1:-1:-1;2815:55:1;;2866:1;2863;2856:12;2815:55;2889:73;2954:7;2949:2;2936:16;2931:2;2927;2923:11;2889:73;:::i;:::-;2879:83;;;2302:666;;;;;;;:::o;2973:347::-;3038:6;3046;3099:2;3087:9;3078:7;3074:23;3070:32;3067:52;;;3115:1;3112;3105:12;3067:52;3138:29;3157:9;3138:29;:::i;:::-;3128:39;;3217:2;3206:9;3202:18;3189:32;3264:5;3257:13;3250:21;3243:5;3240:32;3230:60;;3286:1;3283;3276:12;3230:60;3309:5;3299:15;;;2973:347;;;;;:::o;3325:254::-;3393:6;3401;3454:2;3442:9;3433:7;3429:23;3425:32;3422:52;;;3470:1;3467;3460:12;3422:52;3493:29;3512:9;3493:29;:::i;:::-;3483:39;3569:2;3554:18;;;;3541:32;;-1:-1:-1;;;3325:254:1:o;3584:245::-;3642:6;3695:2;3683:9;3674:7;3670:23;3666:32;3663:52;;;3711:1;3708;3701:12;3663:52;3750:9;3737:23;3769:30;3793:5;3769:30;:::i;3834:249::-;3903:6;3956:2;3944:9;3935:7;3931:23;3927:32;3924:52;;;3972:1;3969;3962:12;3924:52;4004:9;3998:16;4023:30;4047:5;4023:30;:::i;4088:322::-;4157:6;4210:2;4198:9;4189:7;4185:23;4181:32;4178:52;;;4226:1;4223;4216:12;4178:52;4266:9;4253:23;4299:18;4291:6;4288:30;4285:50;;;4331:1;4328;4321:12;4285:50;4354;4396:7;4387:6;4376:9;4372:22;4354:50;:::i;4415:543::-;4503:6;4511;4564:2;4552:9;4543:7;4539:23;4535:32;4532:52;;;4580:1;4577;4570:12;4532:52;4620:9;4607:23;4649:18;4690:2;4682:6;4679:14;4676:34;;;4706:1;4703;4696:12;4676:34;4729:50;4771:7;4762:6;4751:9;4747:22;4729:50;:::i;:::-;4719:60;;4832:2;4821:9;4817:18;4804:32;4788:48;;4861:2;4851:8;4848:16;4845:36;;;4877:1;4874;4867:12;4845:36;;4900:52;4944:7;4933:8;4922:9;4918:24;4900:52;:::i;:::-;4890:62;;;4415:543;;;;;:::o;4963:180::-;5022:6;5075:2;5063:9;5054:7;5050:23;5046:32;5043:52;;;5091:1;5088;5081:12;5043:52;-1:-1:-1;5114:23:1;;4963:180;-1:-1:-1;4963:180:1:o;5148:1292::-;5284:6;5292;5300;5308;5361:3;5349:9;5340:7;5336:23;5332:33;5329:53;;;5378:1;5375;5368:12;5329:53;5414:9;5401:23;5391:33;;5443:2;5464:38;5498:2;5487:9;5483:18;5464:38;:::i;:::-;5454:48;;5553:2;5542:9;5538:18;5525:32;5576:18;5617:2;5609:6;5606:14;5603:34;;;5633:1;5630;5623:12;5603:34;5671:6;5660:9;5656:22;5646:32;;5716:7;5709:4;5705:2;5701:13;5697:27;5687:55;;5738:1;5735;5728:12;5687:55;5774:2;5761:16;5797:60;5813:43;5853:2;5813:43;:::i;5797:60::-;5879:3;5903:2;5898:3;5891:15;5931:2;5926:3;5922:12;5915:19;;5962:2;5958;5954:11;6010:7;6005:2;5999;5996:1;5992:10;5988:2;5984:19;5980:28;5977:41;5974:61;;;6031:1;6028;6021:12;5974:61;6053:1;6044:10;;6063:163;6077:2;6074:1;6071:9;6063:163;;;6134:17;;6122:30;;6095:1;6088:9;;;;;6172:12;;;;6204;;6063:163;;;-1:-1:-1;6245:5:1;-1:-1:-1;;;6303:2:1;6288:18;;6275:32;;-1:-1:-1;6319:16:1;;;6316:36;;;6348:1;6345;6338:12;6316:36;;;6371:63;6426:7;6415:8;6404:9;6400:24;6371:63;:::i;6445:686::-;6551:6;6559;6567;6575;6628:3;6616:9;6607:7;6603:23;6599:33;6596:53;;;6645:1;6642;6635:12;6596:53;6681:9;6668:23;6658:33;;6742:2;6731:9;6727:18;6714:32;6765:18;6806:2;6798:6;6795:14;6792:34;;;6822:1;6819;6812:12;6792:34;6845:50;6887:7;6878:6;6867:9;6863:22;6845:50;:::i;:::-;6835:60;;6948:2;6937:9;6933:18;6920:32;6904:48;;6977:2;6967:8;6964:16;6961:36;;;6993:1;6990;6983:12;6961:36;;7016:52;7060:7;7049:8;7038:9;7034:24;7016:52;:::i;:::-;7006:62;;;7087:38;7121:2;7110:9;7106:18;7087:38;:::i;:::-;7077:48;;6445:686;;;;;;;:::o;7136:248::-;7204:6;7212;7265:2;7253:9;7244:7;7240:23;7236:32;7233:52;;;7281:1;7278;7271:12;7233:52;-1:-1:-1;;7304:23:1;;;7374:2;7359:18;;;7346:32;;-1:-1:-1;7136:248:1:o;7389:385::-;7475:6;7483;7491;7499;7552:3;7540:9;7531:7;7527:23;7523:33;7520:53;;;7569:1;7566;7559:12;7520:53;-1:-1:-1;;7592:23:1;;;7662:2;7647:18;;7634:32;;-1:-1:-1;7713:2:1;7698:18;;7685:32;;7764:2;7749:18;7736:32;;-1:-1:-1;7389:385:1;-1:-1:-1;7389:385:1:o;7779:257::-;7820:3;7858:5;7852:12;7885:6;7880:3;7873:19;7901:63;7957:6;7950:4;7945:3;7941:14;7934:4;7927:5;7923:16;7901:63;:::i;:::-;8018:2;7997:15;-1:-1:-1;;7993:29:1;7984:39;;;;8025:4;7980:50;;7779:257;-1:-1:-1;;7779:257:1:o;8041:185::-;8083:3;8121:5;8115:12;8136:52;8181:6;8176:3;8169:4;8162:5;8158:16;8136:52;:::i;:::-;8204:16;;;;;8041:185;-1:-1:-1;;8041:185:1:o;8231:1174::-;8407:3;8436:1;8469:6;8463:13;8499:3;8521:1;8549:9;8545:2;8541:18;8531:28;;8609:2;8598:9;8594:18;8631;8621:61;;8675:4;8667:6;8663:17;8653:27;;8621:61;8701:2;8749;8741:6;8738:14;8718:18;8715:38;8712:165;;;-1:-1:-1;;;8776:33:1;;8832:4;8829:1;8822:15;8862:4;8783:3;8850:17;8712:165;8893:18;8920:104;;;;9038:1;9033:320;;;;8886:467;;8920:104;-1:-1:-1;;8953:24:1;;8941:37;;8998:16;;;;-1:-1:-1;8920:104:1;;9033:320;23264:1;23257:14;;;23301:4;23288:18;;9128:1;9142:165;9156:6;9153:1;9150:13;9142:165;;;9234:14;;9221:11;;;9214:35;9277:16;;;;9171:10;;9142:165;;;9146:3;;9336:6;9331:3;9327:16;9320:23;;8886:467;;;;;;;9369:30;9395:3;9387:6;9369:30;:::i;:::-;9362:37;8231:1174;-1:-1:-1;;;;;8231:1174:1:o;9828:488::-;-1:-1:-1;;;;;10097:15:1;;;10079:34;;10149:15;;10144:2;10129:18;;10122:43;10196:2;10181:18;;10174:34;;;10244:3;10239:2;10224:18;;10217:31;;;10022:4;;10265:45;;10290:19;;10282:6;10265:45;:::i;:::-;10257:53;9828:488;-1:-1:-1;;;;;;9828:488:1:o;10513:219::-;10662:2;10651:9;10644:21;10625:4;10682:44;10722:2;10711:9;10707:18;10699:6;10682:44;:::i;10737:414::-;10939:2;10921:21;;;10978:2;10958:18;;;10951:30;11017:34;11012:2;10997:18;;10990:62;-1:-1:-1;;;11083:2:1;11068:18;;11061:48;11141:3;11126:19;;10737:414::o;16540:356::-;16742:2;16724:21;;;16761:18;;;16754:30;16820:34;16815:2;16800:18;;16793:62;16887:2;16872:18;;16540:356::o;18756:413::-;18958:2;18940:21;;;18997:2;18977:18;;;18970:30;19036:34;19031:2;19016:18;;19009:62;-1:-1:-1;;;19102:2:1;19087:18;;19080:47;19159:3;19144:19;;18756:413::o;19521:971::-;19700:2;19689:9;19682:21;19745:6;19739:13;19734:2;19723:9;19719:18;19712:41;19663:4;19800:2;19792:6;19788:15;19782:22;19840:4;19835:2;19824:9;19820:18;19813:32;19868:51;19914:3;19903:9;19899:19;19885:12;19868:51;:::i;:::-;19854:65;;19968:2;19960:6;19956:15;19950:22;19995:2;19991:7;20062:2;20050:9;20042:6;20038:22;20034:31;20029:2;20018:9;20014:18;20007:59;20089:40;20122:6;20106:14;20089:40;:::i;:::-;20075:54;;20178:2;20170:6;20166:15;20160:22;20138:44;;20247:2;20235:9;20227:6;20223:22;20219:31;20213:3;20202:9;20198:19;20191:60;;20274:40;20307:6;20291:14;20274:40;:::i;:::-;20369:3;20357:16;;20351:23;20345:3;20330:19;;;20323:52;;;;20423:16;;;20417:23;-1:-1:-1;;;;;20413:49:1;20406:4;20391:20;;;20384:79;;;;-1:-1:-1;20260:54:1;;19521:971;-1:-1:-1;;19521:971:1:o;20679:1248::-;20927:4;20975:2;20964:9;20960:18;21005:6;20994:9;20987:25;21031:2;21069;21064;21053:9;21049:18;21042:30;21092:6;21127;21121:13;21158:6;21150;21143:22;21196:3;21185:9;21181:19;21174:26;;21235:2;21227:6;21223:15;21209:29;;21256:1;21266:169;21280:6;21277:1;21274:13;21266:169;;;21341:13;;21329:26;;21410:15;;;;21375:12;;;;21302:1;21295:9;21266:169;;;-1:-1:-1;;21471:19:1;;;21466:2;21451:18;;21444:47;21541:13;;21563:21;;;21602:12;;;;-1:-1:-1;21639:15:1;;;;21674:1;21684:215;21700:8;21695:3;21692:17;21684:215;;;21773:15;;-1:-1:-1;;;;;21769:41:1;21755:56;;21833:14;;;;21872:17;;;;21807:1;21719:11;21684:215;;;-1:-1:-1;21916:5:1;;20679:1248;-1:-1:-1;;;;;;;;20679:1248:1:o;21932:786::-;22261:6;22250:9;22243:25;22304:3;22299:2;22288:9;22284:18;22277:31;22224:4;22331:45;22371:3;22360:9;22356:19;22348:6;22331:45;:::i;:::-;22424:9;22416:6;22412:22;22407:2;22396:9;22392:18;22385:50;22458:32;22483:6;22475;22458:32;:::i;:::-;22444:46;;22538:9;22530:6;22526:22;22521:2;22510:9;22506:18;22499:50;22566:32;22591:6;22583;22566:32;:::i;:::-;22629:3;22614:19;;22607:35;;;;-1:-1:-1;;;;;;;22679:32:1;;;;22699:3;22658:19;;;22651:61;22558:40;21932:786;-1:-1:-1;;;;21932:786:1:o;22723:275::-;22794:2;22788:9;22859:2;22840:13;;-1:-1:-1;;22836:27:1;22824:40;;22894:18;22879:34;;22915:22;;;22876:62;22873:88;;;22941:18;;:::i;:::-;22977:2;22970:22;22723:275;;-1:-1:-1;22723:275:1:o;23003:183::-;23063:4;23096:18;23088:6;23085:30;23082:56;;;23118:18;;:::i;:::-;-1:-1:-1;23163:1:1;23159:14;23175:4;23155:25;;23003:183::o;23317:128::-;23357:3;23388:1;23384:6;23381:1;23378:13;23375:39;;;23394:18;;:::i;:::-;-1:-1:-1;23430:9:1;;23317:128::o;23450:120::-;23490:1;23516;23506:35;;23521:18;;:::i;:::-;-1:-1:-1;23555:9:1;;23450:120::o;23575:168::-;23615:7;23681:1;23677;23673:6;23669:14;23666:1;23663:21;23658:1;23651:9;23644:17;23640:45;23637:71;;;23688:18;;:::i;:::-;-1:-1:-1;23728:9:1;;23575:168::o;23748:125::-;23788:4;23816:1;23813;23810:8;23807:34;;;23821:18;;:::i;:::-;-1:-1:-1;23858:9:1;;23748:125::o;23878:258::-;23950:1;23960:113;23974:6;23971:1;23968:13;23960:113;;;24050:11;;;24044:18;24031:11;;;24024:39;23996:2;23989:10;23960:113;;;24091:6;24088:1;24085:13;24082:48;;;-1:-1:-1;;24126:1:1;24108:16;;24101:27;23878:258::o;24141:380::-;24220:1;24216:12;;;;24263;;;24284:61;;24338:4;24330:6;24326:17;24316:27;;24284:61;24391:2;24383:6;24380:14;24360:18;24357:38;24354:161;;;24437:10;24432:3;24428:20;24425:1;24418:31;24472:4;24469:1;24462:15;24500:4;24497:1;24490:15;24354:161;;24141:380;;;:::o;24526:135::-;24565:3;-1:-1:-1;;24586:17:1;;24583:43;;;24606:18;;:::i;:::-;-1:-1:-1;24653:1:1;24642:13;;24526:135::o;24666:112::-;24698:1;24724;24714:35;;24729:18;;:::i;:::-;-1:-1:-1;24763:9:1;;24666:112::o;24783:127::-;24844:10;24839:3;24835:20;24832:1;24825:31;24875:4;24872:1;24865:15;24899:4;24896:1;24889:15;24915:127;24976:10;24971:3;24967:20;24964:1;24957:31;25007:4;25004:1;24997:15;25031:4;25028:1;25021:15;25047:127;25108:10;25103:3;25099:20;25096:1;25089:31;25139:4;25136:1;25129:15;25163:4;25160:1;25153:15;25179:127;25240:10;25235:3;25231:20;25228:1;25221:31;25271:4;25268:1;25261:15;25295:4;25292:1;25285:15;25311:131;-1:-1:-1;;;;;;25385:32:1;;25375:43;;25365:71;;25432:1;25429;25422:12

Swarm Source

ipfs://699d0c79fbf96a8a930146cfac96b0b85213b024dc37fa743b27e2be3a1a411f
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.