ETH Price: $3,304.30 (-3.54%)
Gas: 7 Gwei

Token

(0xfa7b2283fad1f9202ae9b61f5f5a87430d9af0cf)
 

Overview

Max Total Supply

0 ERC-721 TOKEN*

Holders

2,103

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 ERC-721 TOKEN*
0x62CabbbeCb53A304a4D52E770B5ce458B991C41A
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TrexMafia

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 2 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.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);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

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

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @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 4 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 5 of 11 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 6 of 11 : Address.sol
// SPDX-License-Identifier: MIT

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 7 of 11 : Context.sol
// SPDX-License-Identifier: MIT

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 8 of 11 : Strings.sol
// SPDX-License-Identifier: MIT

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 9 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 10 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT

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 11 of 11 : TrexMafia.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.6;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract TrexMafia is ERC721, Ownable {  
    using Address for address;
    
    bool public saleActive = false;
    bool public vipSaleActive = false;
    bool public freeMintActive = false;

    uint256 public MAX_SUPPLY = 7777;
    uint256 public price = 0.033 ether;

    uint public supply = 0;
    uint public maxPerTx = 20;

    string public baseTokenURI;

    mapping (address => uint256) public vipSaleReserved;
    mapping (address => uint256) public claimReserved;

    constructor() ERC721("T-Rex Mafia", "TREX") {}

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    function tokensOfOwner(address _owner) public view returns(uint[] memory) {
        uint[] memory result = new uint[](balanceOf(_owner));
        uint counter = 0;
        for (uint i = 0; i < supply; i++) {
            if (ownerOf(i) == _owner) {
                result[counter] = i;
                counter++;
            }
        }
        return result;
    }

    function mintVipSale(uint256 _amount) public payable {
        uint256 reserved = vipSaleReserved[msg.sender];
        require( vipSaleActive,               "Vip Sale isn't active" );
        require( reserved > 0,                "No tokens reserved for your address" );
        require( _amount <= reserved,         "Can't mint more than reserved" );
        require( supply + _amount <= MAX_SUPPLY, "Can't mint more than max supply" );
        require( msg.value == price * _amount,   "Wrong amount of ETH sent" );
        vipSaleReserved[msg.sender] = reserved - _amount;
        for(uint256 i; i < _amount; i++){
            supply++;
            _safeMint( msg.sender, supply);
        }
    }

    function mintToken(uint256 _amount) public payable {
        require( saleActive,                     "Sale isn't active" );
        require( _amount > 0 && _amount < maxPerTx,    "Can only mint between 1 and 10 tokens at once" );
        require( supply + _amount <= MAX_SUPPLY, "Can't mint more than max supply" );
        require( msg.value == price * _amount,   "Wrong amount of ETH sent" );
        for(uint256 i; i < _amount; i++){
            supply++;
            _safeMint( msg.sender, supply);
        }
    }

    function setMaxTx(uint newMax) external onlyOwner {
        maxPerTx = newMax;
    }

    function claimToken() external {
        uint256 reserved = claimReserved[msg.sender];
        require( freeMintActive,              "Claim isn't active" );
        require( reserved > 0,                "No tokens reserved for your address" );
        require( supply + reserved <= MAX_SUPPLY, "Can't mint more than max supply" );
        vipSaleReserved[msg.sender] = 0;
        for(uint256 i; i < reserved; i++){
            supply++;
            _safeMint( msg.sender, supply);
        }
    }
    
    function editVipSaleReserved(address[] memory _a, uint256[] memory _amount) public onlyOwner {
        for(uint256 i; i < _a.length; i++){
            vipSaleReserved[_a[i]] = _amount[i];
        }
    }

    function editClaimReserved(address[] memory _a, uint256[] memory _amount) public onlyOwner {
        for(uint256 i; i < _a.length; i++){
            claimReserved[_a[i]] = _amount[i];
        }
    }

    function setVipSaleActive(bool val) public onlyOwner {
        vipSaleActive = val;
    }

    function setSaleActive(bool val) public onlyOwner {
        saleActive = val;
    }

    function setFreeMintActive(bool val) public onlyOwner {
        freeMintActive = val;
    }

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

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

    function withdrawAll() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "berlin",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"editClaimReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"editVipSaleReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintVipSale","outputs":[],"stateMutability":"payable","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":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setVipSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","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":"vipSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vipSaleReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff0219169083151502179055506000600660166101000a81548160ff021916908315150217905550611e6160075566753d533d96800060085560006009556014600a553480156200007d57600080fd5b506040518060400160405280600b81526020017f542d526578204d616669610000000000000000000000000000000000000000008152506040518060400160405280600481526020017f545245580000000000000000000000000000000000000000000000000000000081525081600090805190602001906200010292919062000212565b5080600190805190602001906200011b92919062000212565b5050506200013e620001326200014460201b60201c565b6200014c60201b60201c565b62000327565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022090620002c2565b90600052602060002090601f01602090048101928262000244576000855562000290565b82601f106200025f57805160ff191683800117855562000290565b8280016001018555821562000290579182015b828111156200028f57825182559160200191906001019062000272565b5b5090506200029f9190620002a3565b5090565b5b80821115620002be576000816000905550600101620002a4565b5090565b60006002820490506001821680620002db57607f821691505b60208210811415620002f257620002f1620002f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61479f80620003376000396000f3fe6080604052600436106102305760003560e01c8063841718a61161012e578063b88d4fde116100ab578063d547cfb71161006f578063d547cfb714610809578063df5321b614610834578063e985e9c51461085d578063f2fde38b1461089a578063f968adbe146108c357610230565b8063b88d4fde14610733578063bc3371821461075c578063c634d03214610785578063c87b56dd146107a1578063cb5bc2aa146107de57610230565b806391c2fa31116100f257806391c2fa311461066257806395d89b411461068b578063a035b1fe146106b6578063a22cb465146106e1578063b47a00fe1461070a57610230565b8063841718a6146105915780638462151c146105ba578063853828b6146105f75780638da5cb5b1461060e57806391b7f5ed1461063957610230565b806342842e0e116101bc5780636352211e116101805780636352211e146104aa57806368428a1b146104e757806370a0823114610512578063715018a61461054f578063785448af1461056657610230565b806342842e0e146103db5780634451d89f146104045780634f9b563c1461041b57806355f804b31461044457806356b64fc21461046d57610230565b8063095ea7b311610203578063095ea7b31461030557806323b872dd1461032e578063307626e51461035757806332ab8a8d1461039457806332cb6b0c146103b057610230565b806301ffc9a714610235578063047fc9aa1461027257806306fdde031461029d578063081812fc146102c8575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613297565b6108ee565b60405161026991906138b1565b60405180910390f35b34801561027e57600080fd5b506102876109d0565b6040516102949190613bee565b60405180910390f35b3480156102a957600080fd5b506102b26109d6565b6040516102bf91906138cc565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea919061333a565b610a68565b6040516102fc9190613828565b60405180910390f35b34801561031157600080fd5b5061032c600480360381019061032791906131b2565b610aed565b005b34801561033a57600080fd5b506103556004803603810190610350919061309c565b610c05565b005b34801561036357600080fd5b5061037e6004803603810190610379919061302f565b610c65565b60405161038b9190613bee565b60405180910390f35b6103ae60048036038101906103a9919061333a565b610c7d565b005b3480156103bc57600080fd5b506103c5610ecd565b6040516103d29190613bee565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd919061309c565b610ed3565b005b34801561041057600080fd5b50610419610ef3565b005b34801561042757600080fd5b50610442600480360381019061043d919061326a565b6110a6565b005b34801561045057600080fd5b5061046b600480360381019061046691906132f1565b61113f565b005b34801561047957600080fd5b50610494600480360381019061048f919061302f565b6111d5565b6040516104a19190613bee565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc919061333a565b6111ed565b6040516104de9190613828565b60405180910390f35b3480156104f357600080fd5b506104fc61129f565b60405161050991906138b1565b60405180910390f35b34801561051e57600080fd5b506105396004803603810190610534919061302f565b6112b2565b6040516105469190613bee565b60405180910390f35b34801561055b57600080fd5b5061056461136a565b005b34801561057257600080fd5b5061057b6113f2565b60405161058891906138b1565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b3919061326a565b611405565b005b3480156105c657600080fd5b506105e160048036038101906105dc919061302f565b61149e565b6040516105ee919061388f565b60405180910390f35b34801561060357600080fd5b5061060c61158c565b005b34801561061a57600080fd5b50610623611651565b6040516106309190613828565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b919061333a565b61167b565b005b34801561066e57600080fd5b50610689600480360381019061068491906131f2565b611701565b005b34801561069757600080fd5b506106a0611819565b6040516106ad91906138cc565b60405180910390f35b3480156106c257600080fd5b506106cb6118ab565b6040516106d89190613bee565b60405180910390f35b3480156106ed57600080fd5b5061070860048036038101906107039190613172565b6118b1565b005b34801561071657600080fd5b50610731600480360381019061072c919061326a565b611a32565b005b34801561073f57600080fd5b5061075a600480360381019061075591906130ef565b611acb565b005b34801561076857600080fd5b50610783600480360381019061077e919061333a565b611b2d565b005b61079f600480360381019061079a919061333a565b611bb3565b005b3480156107ad57600080fd5b506107c860048036038101906107c3919061333a565b611d39565b6040516107d591906138cc565b60405180910390f35b3480156107ea57600080fd5b506107f3611de0565b60405161080091906138b1565b60405180910390f35b34801561081557600080fd5b5061081e611df3565b60405161082b91906138cc565b60405180910390f35b34801561084057600080fd5b5061085b600480360381019061085691906131f2565b611e81565b005b34801561086957600080fd5b50610884600480360381019061087f919061305c565b611f99565b60405161089191906138b1565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc919061302f565b61202d565b005b3480156108cf57600080fd5b506108d8612125565b6040516108e59190613bee565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c957506109c88261212b565b5b9050919050565b60095481565b6060600080546109e590613f2f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1190613f2f565b8015610a5e5780601f10610a3357610100808354040283529160200191610a5e565b820191906000526020600020905b815481529060010190602001808311610a4157829003601f168201915b5050505050905090565b6000610a7382612195565b610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa990613aee565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af8826111ed565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6090613b8e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b88612201565b73ffffffffffffffffffffffffffffffffffffffff161480610bb75750610bb681610bb1612201565b611f99565b5b610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90613a4e565b60405180910390fd5b610c008383612209565b505050565b610c16610c10612201565b826122c2565b610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90613bae565b60405180910390fd5b610c608383836123a0565b505050565b600d6020528060005260406000206000915090505481565b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600660159054906101000a900460ff16610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790613aae565b60405180910390fd5b60008111610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90613a2e565b60405180910390fd5b80821115610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d906138ee565b60405180910390fd5b60075482600954610da79190613d64565b1115610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf906139ae565b60405180910390fd5b81600854610df69190613deb565b3414610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e90613bce565b60405180910390fd5b8181610e439190613e45565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b82811015610ec85760096000815480929190610ea490613f92565b9190505550610eb5336009546125fc565b8080610ec090613f92565b915050610e89565b505050565b60075481565b610eee83838360405180602001604052806000815250611acb565b505050565b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600660169054906101000a900460ff16610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d9061398e565b60405180910390fd5b60008111610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc090613a2e565b60405180910390fd5b60075481600954610fda9190613d64565b111561101b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611012906139ae565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b818110156110a2576009600081548092919061107e90613f92565b919050555061108f336009546125fc565b808061109a90613f92565b915050611063565b5050565b6110ae612201565b73ffffffffffffffffffffffffffffffffffffffff166110cc611651565b73ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990613b0e565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b611147612201565b73ffffffffffffffffffffffffffffffffffffffff16611165611651565b73ffffffffffffffffffffffffffffffffffffffff16146111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290613b0e565b60405180910390fd5b80600b90805190602001906111d1929190612d07565b5050565b600c6020528060005260406000206000915090505481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90613a8e565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90613a6e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611372612201565b73ffffffffffffffffffffffffffffffffffffffff16611390611651565b73ffffffffffffffffffffffffffffffffffffffff16146113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd90613b0e565b60405180910390fd5b6113f0600061261a565b565b600660159054906101000a900460ff1681565b61140d612201565b73ffffffffffffffffffffffffffffffffffffffff1661142b611651565b73ffffffffffffffffffffffffffffffffffffffff1614611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890613b0e565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b606060006114ab836112b2565b67ffffffffffffffff8111156114c4576114c36140c8565b5b6040519080825280602002602001820160405280156114f25781602001602082028036833780820191505090505b5090506000805b600954811015611581578473ffffffffffffffffffffffffffffffffffffffff16611523826111ed565b73ffffffffffffffffffffffffffffffffffffffff16141561156e578083838151811061155357611552614099565b5b602002602001018181525050818061156a90613f92565b9250505b808061157990613f92565b9150506114f9565b508192505050919050565b611594612201565b73ffffffffffffffffffffffffffffffffffffffff166115b2611651565b73ffffffffffffffffffffffffffffffffffffffff1614611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90613b0e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561164e573d6000803e3d6000fd5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611683612201565b73ffffffffffffffffffffffffffffffffffffffff166116a1611651565b73ffffffffffffffffffffffffffffffffffffffff16146116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee90613b0e565b60405180910390fd5b8060088190555050565b611709612201565b73ffffffffffffffffffffffffffffffffffffffff16611727611651565b73ffffffffffffffffffffffffffffffffffffffff161461177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490613b0e565b60405180910390fd5b60005b82518110156118145781818151811061179c5761179b614099565b5b6020026020010151600d60008584815181106117bb576117ba614099565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061180c90613f92565b915050611780565b505050565b60606001805461182890613f2f565b80601f016020809104026020016040519081016040528092919081815260200182805461185490613f2f565b80156118a15780601f10611876576101008083540402835291602001916118a1565b820191906000526020600020905b81548152906001019060200180831161188457829003601f168201915b5050505050905090565b60085481565b6118b9612201565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e906139ee565b60405180910390fd5b8060056000611934612201565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119e1612201565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a2691906138b1565b60405180910390a35050565b611a3a612201565b73ffffffffffffffffffffffffffffffffffffffff16611a58611651565b73ffffffffffffffffffffffffffffffffffffffff1614611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa590613b0e565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b611adc611ad6612201565b836122c2565b611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290613bae565b60405180910390fd5b611b27848484846126e0565b50505050565b611b35612201565b73ffffffffffffffffffffffffffffffffffffffff16611b53611651565b73ffffffffffffffffffffffffffffffffffffffff1614611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba090613b0e565b60405180910390fd5b80600a8190555050565b600660149054906101000a900460ff16611c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf990613b6e565b60405180910390fd5b600081118015611c135750600a5481105b611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c499061390e565b60405180910390fd5b60075481600954611c639190613d64565b1115611ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9b906139ae565b60405180910390fd5b80600854611cb29190613deb565b3414611cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cea90613bce565b60405180910390fd5b60005b81811015611d355760096000815480929190611d1190613f92565b9190505550611d22336009546125fc565b8080611d2d90613f92565b915050611cf6565b5050565b6060611d4482612195565b611d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7a90613b4e565b60405180910390fd5b6000611d8d61273c565b90506000815111611dad5760405180602001604052806000815250611dd8565b80611db7846127ce565b604051602001611dc8929190613804565b6040516020818303038152906040525b915050919050565b600660169054906101000a900460ff1681565b600b8054611e0090613f2f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2c90613f2f565b8015611e795780601f10611e4e57610100808354040283529160200191611e79565b820191906000526020600020905b815481529060010190602001808311611e5c57829003601f168201915b505050505081565b611e89612201565b73ffffffffffffffffffffffffffffffffffffffff16611ea7611651565b73ffffffffffffffffffffffffffffffffffffffff1614611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490613b0e565b60405180910390fd5b60005b8251811015611f9457818181518110611f1c57611f1b614099565b5b6020026020010151600c6000858481518110611f3b57611f3a614099565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611f8c90613f92565b915050611f00565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612035612201565b73ffffffffffffffffffffffffffffffffffffffff16612053611651565b73ffffffffffffffffffffffffffffffffffffffff16146120a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a090613b0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612119576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121109061394e565b60405180910390fd5b6121228161261a565b50565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661227c836111ed565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122cd82612195565b61230c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230390613a0e565b60405180910390fd5b6000612317836111ed565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061238657508373ffffffffffffffffffffffffffffffffffffffff1661236e84610a68565b73ffffffffffffffffffffffffffffffffffffffff16145b8061239757506123968185611f99565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123c0826111ed565b73ffffffffffffffffffffffffffffffffffffffff1614612416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240d90613b2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247d906139ce565b60405180910390fd5b61249183838361292f565b61249c600082612209565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ec9190613e45565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125439190613d64565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612616828260405180602001604052806000815250612934565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126eb8484846123a0565b6126f78484848461298f565b612736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272d9061392e565b60405180910390fd5b50505050565b6060600b805461274b90613f2f565b80601f016020809104026020016040519081016040528092919081815260200182805461277790613f2f565b80156127c45780601f10612799576101008083540402835291602001916127c4565b820191906000526020600020905b8154815290600101906020018083116127a757829003601f168201915b5050505050905090565b60606000821415612816576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061292a565b600082905060005b6000821461284857808061283190613f92565b915050600a826128419190613dba565b915061281e565b60008167ffffffffffffffff811115612864576128636140c8565b5b6040519080825280601f01601f1916602001820160405280156128965781602001600182028036833780820191505090505b5090505b60008514612923576001826128af9190613e45565b9150600a856128be9190613fdb565b60306128ca9190613d64565b60f81b8183815181106128e0576128df614099565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561291c9190613dba565b945061289a565b8093505050505b919050565b505050565b61293e8383612b26565b61294b600084848461298f565b61298a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129819061392e565b60405180910390fd5b505050565b60006129b08473ffffffffffffffffffffffffffffffffffffffff16612cf4565b15612b19578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129d9612201565b8786866040518563ffffffff1660e01b81526004016129fb9493929190613843565b602060405180830381600087803b158015612a1557600080fd5b505af1925050508015612a4657506040513d601f19601f82011682018060405250810190612a4391906132c4565b60015b612ac9573d8060008114612a76576040519150601f19603f3d011682016040523d82523d6000602084013e612a7b565b606091505b50600081511415612ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab89061392e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b1e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8d90613ace565b60405180910390fd5b612b9f81612195565b15612bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd69061396e565b60405180910390fd5b612beb6000838361292f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c3b9190613d64565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612d1390613f2f565b90600052602060002090601f016020900481019282612d355760008555612d7c565b82601f10612d4e57805160ff1916838001178555612d7c565b82800160010185558215612d7c579182015b82811115612d7b578251825591602001919060010190612d60565b5b509050612d899190612d8d565b5090565b5b80821115612da6576000816000905550600101612d8e565b5090565b6000612dbd612db884613c2e565b613c09565b90508083825260208201905082856020860282011115612de057612ddf6140fc565b5b60005b85811015612e105781612df68882612f0e565b845260208401935060208301925050600181019050612de3565b5050509392505050565b6000612e2d612e2884613c5a565b613c09565b90508083825260208201905082856020860282011115612e5057612e4f6140fc565b5b60005b85811015612e805781612e66888261301a565b845260208401935060208301925050600181019050612e53565b5050509392505050565b6000612e9d612e9884613c86565b613c09565b905082815260208101848484011115612eb957612eb8614101565b5b612ec4848285613eed565b509392505050565b6000612edf612eda84613cb7565b613c09565b905082815260208101848484011115612efb57612efa614101565b5b612f06848285613eed565b509392505050565b600081359050612f1d8161470d565b92915050565b600082601f830112612f3857612f376140f7565b5b8135612f48848260208601612daa565b91505092915050565b600082601f830112612f6657612f656140f7565b5b8135612f76848260208601612e1a565b91505092915050565b600081359050612f8e81614724565b92915050565b600081359050612fa38161473b565b92915050565b600081519050612fb88161473b565b92915050565b600082601f830112612fd357612fd26140f7565b5b8135612fe3848260208601612e8a565b91505092915050565b600082601f830112613001576130006140f7565b5b8135613011848260208601612ecc565b91505092915050565b60008135905061302981614752565b92915050565b6000602082840312156130455761304461410b565b5b600061305384828501612f0e565b91505092915050565b600080604083850312156130735761307261410b565b5b600061308185828601612f0e565b925050602061309285828601612f0e565b9150509250929050565b6000806000606084860312156130b5576130b461410b565b5b60006130c386828701612f0e565b93505060206130d486828701612f0e565b92505060406130e58682870161301a565b9150509250925092565b600080600080608085870312156131095761310861410b565b5b600061311787828801612f0e565b945050602061312887828801612f0e565b93505060406131398782880161301a565b925050606085013567ffffffffffffffff81111561315a57613159614106565b5b61316687828801612fbe565b91505092959194509250565b600080604083850312156131895761318861410b565b5b600061319785828601612f0e565b92505060206131a885828601612f7f565b9150509250929050565b600080604083850312156131c9576131c861410b565b5b60006131d785828601612f0e565b92505060206131e88582860161301a565b9150509250929050565b600080604083850312156132095761320861410b565b5b600083013567ffffffffffffffff81111561322757613226614106565b5b61323385828601612f23565b925050602083013567ffffffffffffffff81111561325457613253614106565b5b61326085828601612f51565b9150509250929050565b6000602082840312156132805761327f61410b565b5b600061328e84828501612f7f565b91505092915050565b6000602082840312156132ad576132ac61410b565b5b60006132bb84828501612f94565b91505092915050565b6000602082840312156132da576132d961410b565b5b60006132e884828501612fa9565b91505092915050565b6000602082840312156133075761330661410b565b5b600082013567ffffffffffffffff81111561332557613324614106565b5b61333184828501612fec565b91505092915050565b6000602082840312156133505761334f61410b565b5b600061335e8482850161301a565b91505092915050565b600061337383836137e6565b60208301905092915050565b61338881613e79565b82525050565b600061339982613cf8565b6133a38185613d26565b93506133ae83613ce8565b8060005b838110156133df5781516133c68882613367565b97506133d183613d19565b9250506001810190506133b2565b5085935050505092915050565b6133f581613e8b565b82525050565b600061340682613d03565b6134108185613d37565b9350613420818560208601613efc565b61342981614110565b840191505092915050565b600061343f82613d0e565b6134498185613d48565b9350613459818560208601613efc565b61346281614110565b840191505092915050565b600061347882613d0e565b6134828185613d59565b9350613492818560208601613efc565b80840191505092915050565b60006134ab601d83613d48565b91506134b682614121565b602082019050919050565b60006134ce602d83613d48565b91506134d98261414a565b604082019050919050565b60006134f1603283613d48565b91506134fc82614199565b604082019050919050565b6000613514602683613d48565b915061351f826141e8565b604082019050919050565b6000613537601c83613d48565b915061354282614237565b602082019050919050565b600061355a601283613d48565b915061356582614260565b602082019050919050565b600061357d601f83613d48565b915061358882614289565b602082019050919050565b60006135a0602483613d48565b91506135ab826142b2565b604082019050919050565b60006135c3601983613d48565b91506135ce82614301565b602082019050919050565b60006135e6602c83613d48565b91506135f18261432a565b604082019050919050565b6000613609602383613d48565b915061361482614379565b604082019050919050565b600061362c603883613d48565b9150613637826143c8565b604082019050919050565b600061364f602a83613d48565b915061365a82614417565b604082019050919050565b6000613672602983613d48565b915061367d82614466565b604082019050919050565b6000613695601583613d48565b91506136a0826144b5565b602082019050919050565b60006136b8602083613d48565b91506136c3826144de565b602082019050919050565b60006136db602c83613d48565b91506136e682614507565b604082019050919050565b60006136fe602083613d48565b915061370982614556565b602082019050919050565b6000613721602983613d48565b915061372c8261457f565b604082019050919050565b6000613744602f83613d48565b915061374f826145ce565b604082019050919050565b6000613767601183613d48565b91506137728261461d565b602082019050919050565b600061378a602183613d48565b915061379582614646565b604082019050919050565b60006137ad603183613d48565b91506137b882614695565b604082019050919050565b60006137d0601883613d48565b91506137db826146e4565b602082019050919050565b6137ef81613ee3565b82525050565b6137fe81613ee3565b82525050565b6000613810828561346d565b915061381c828461346d565b91508190509392505050565b600060208201905061383d600083018461337f565b92915050565b6000608082019050613858600083018761337f565b613865602083018661337f565b61387260408301856137f5565b818103606083015261388481846133fb565b905095945050505050565b600060208201905081810360008301526138a9818461338e565b905092915050565b60006020820190506138c660008301846133ec565b92915050565b600060208201905081810360008301526138e68184613434565b905092915050565b600060208201905081810360008301526139078161349e565b9050919050565b60006020820190508181036000830152613927816134c1565b9050919050565b60006020820190508181036000830152613947816134e4565b9050919050565b6000602082019050818103600083015261396781613507565b9050919050565b600060208201905081810360008301526139878161352a565b9050919050565b600060208201905081810360008301526139a78161354d565b9050919050565b600060208201905081810360008301526139c781613570565b9050919050565b600060208201905081810360008301526139e781613593565b9050919050565b60006020820190508181036000830152613a07816135b6565b9050919050565b60006020820190508181036000830152613a27816135d9565b9050919050565b60006020820190508181036000830152613a47816135fc565b9050919050565b60006020820190508181036000830152613a678161361f565b9050919050565b60006020820190508181036000830152613a8781613642565b9050919050565b60006020820190508181036000830152613aa781613665565b9050919050565b60006020820190508181036000830152613ac781613688565b9050919050565b60006020820190508181036000830152613ae7816136ab565b9050919050565b60006020820190508181036000830152613b07816136ce565b9050919050565b60006020820190508181036000830152613b27816136f1565b9050919050565b60006020820190508181036000830152613b4781613714565b9050919050565b60006020820190508181036000830152613b6781613737565b9050919050565b60006020820190508181036000830152613b878161375a565b9050919050565b60006020820190508181036000830152613ba78161377d565b9050919050565b60006020820190508181036000830152613bc7816137a0565b9050919050565b60006020820190508181036000830152613be7816137c3565b9050919050565b6000602082019050613c0360008301846137f5565b92915050565b6000613c13613c24565b9050613c1f8282613f61565b919050565b6000604051905090565b600067ffffffffffffffff821115613c4957613c486140c8565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c7557613c746140c8565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613ca157613ca06140c8565b5b613caa82614110565b9050602081019050919050565b600067ffffffffffffffff821115613cd257613cd16140c8565b5b613cdb82614110565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d6f82613ee3565b9150613d7a83613ee3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613daf57613dae61400c565b5b828201905092915050565b6000613dc582613ee3565b9150613dd083613ee3565b925082613de057613ddf61403b565b5b828204905092915050565b6000613df682613ee3565b9150613e0183613ee3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e3a57613e3961400c565b5b828202905092915050565b6000613e5082613ee3565b9150613e5b83613ee3565b925082821015613e6e57613e6d61400c565b5b828203905092915050565b6000613e8482613ec3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f1a578082015181840152602081019050613eff565b83811115613f29576000848401525b50505050565b60006002820490506001821680613f4757607f821691505b60208210811415613f5b57613f5a61406a565b5b50919050565b613f6a82614110565b810181811067ffffffffffffffff82111715613f8957613f886140c8565b5b80604052505050565b6000613f9d82613ee3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fd057613fcf61400c565b5b600182019050919050565b6000613fe682613ee3565b9150613ff183613ee3565b9250826140015761400061403b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e2774206d696e74206d6f7265207468616e207265736572766564000000600082015250565b7f43616e206f6e6c79206d696e74206265747765656e203120616e64203130207460008201527f6f6b656e73206174206f6e636500000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f436c61696d2069736e2774206163746976650000000000000000000000000000600082015250565b7f43616e2774206d696e74206d6f7265207468616e206d617820737570706c7900600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f20746f6b656e7320726573657276656420666f7220796f7572206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5669702053616c652069736e2774206163746976650000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c652069736e277420616374697665000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f57726f6e6720616d6f756e74206f66204554482073656e740000000000000000600082015250565b61471681613e79565b811461472157600080fd5b50565b61472d81613e8b565b811461473857600080fd5b50565b61474481613e97565b811461474f57600080fd5b50565b61475b81613ee3565b811461476657600080fd5b5056fea2646970667358221220283082a0f8e4350f7dbf8a208dfffe0c45b740732fe6dfaf41a5beb272f3caf864736f6c63430008060033

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063841718a61161012e578063b88d4fde116100ab578063d547cfb71161006f578063d547cfb714610809578063df5321b614610834578063e985e9c51461085d578063f2fde38b1461089a578063f968adbe146108c357610230565b8063b88d4fde14610733578063bc3371821461075c578063c634d03214610785578063c87b56dd146107a1578063cb5bc2aa146107de57610230565b806391c2fa31116100f257806391c2fa311461066257806395d89b411461068b578063a035b1fe146106b6578063a22cb465146106e1578063b47a00fe1461070a57610230565b8063841718a6146105915780638462151c146105ba578063853828b6146105f75780638da5cb5b1461060e57806391b7f5ed1461063957610230565b806342842e0e116101bc5780636352211e116101805780636352211e146104aa57806368428a1b146104e757806370a0823114610512578063715018a61461054f578063785448af1461056657610230565b806342842e0e146103db5780634451d89f146104045780634f9b563c1461041b57806355f804b31461044457806356b64fc21461046d57610230565b8063095ea7b311610203578063095ea7b31461030557806323b872dd1461032e578063307626e51461035757806332ab8a8d1461039457806332cb6b0c146103b057610230565b806301ffc9a714610235578063047fc9aa1461027257806306fdde031461029d578063081812fc146102c8575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613297565b6108ee565b60405161026991906138b1565b60405180910390f35b34801561027e57600080fd5b506102876109d0565b6040516102949190613bee565b60405180910390f35b3480156102a957600080fd5b506102b26109d6565b6040516102bf91906138cc565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea919061333a565b610a68565b6040516102fc9190613828565b60405180910390f35b34801561031157600080fd5b5061032c600480360381019061032791906131b2565b610aed565b005b34801561033a57600080fd5b506103556004803603810190610350919061309c565b610c05565b005b34801561036357600080fd5b5061037e6004803603810190610379919061302f565b610c65565b60405161038b9190613bee565b60405180910390f35b6103ae60048036038101906103a9919061333a565b610c7d565b005b3480156103bc57600080fd5b506103c5610ecd565b6040516103d29190613bee565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd919061309c565b610ed3565b005b34801561041057600080fd5b50610419610ef3565b005b34801561042757600080fd5b50610442600480360381019061043d919061326a565b6110a6565b005b34801561045057600080fd5b5061046b600480360381019061046691906132f1565b61113f565b005b34801561047957600080fd5b50610494600480360381019061048f919061302f565b6111d5565b6040516104a19190613bee565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc919061333a565b6111ed565b6040516104de9190613828565b60405180910390f35b3480156104f357600080fd5b506104fc61129f565b60405161050991906138b1565b60405180910390f35b34801561051e57600080fd5b506105396004803603810190610534919061302f565b6112b2565b6040516105469190613bee565b60405180910390f35b34801561055b57600080fd5b5061056461136a565b005b34801561057257600080fd5b5061057b6113f2565b60405161058891906138b1565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b3919061326a565b611405565b005b3480156105c657600080fd5b506105e160048036038101906105dc919061302f565b61149e565b6040516105ee919061388f565b60405180910390f35b34801561060357600080fd5b5061060c61158c565b005b34801561061a57600080fd5b50610623611651565b6040516106309190613828565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b919061333a565b61167b565b005b34801561066e57600080fd5b50610689600480360381019061068491906131f2565b611701565b005b34801561069757600080fd5b506106a0611819565b6040516106ad91906138cc565b60405180910390f35b3480156106c257600080fd5b506106cb6118ab565b6040516106d89190613bee565b60405180910390f35b3480156106ed57600080fd5b5061070860048036038101906107039190613172565b6118b1565b005b34801561071657600080fd5b50610731600480360381019061072c919061326a565b611a32565b005b34801561073f57600080fd5b5061075a600480360381019061075591906130ef565b611acb565b005b34801561076857600080fd5b50610783600480360381019061077e919061333a565b611b2d565b005b61079f600480360381019061079a919061333a565b611bb3565b005b3480156107ad57600080fd5b506107c860048036038101906107c3919061333a565b611d39565b6040516107d591906138cc565b60405180910390f35b3480156107ea57600080fd5b506107f3611de0565b60405161080091906138b1565b60405180910390f35b34801561081557600080fd5b5061081e611df3565b60405161082b91906138cc565b60405180910390f35b34801561084057600080fd5b5061085b600480360381019061085691906131f2565b611e81565b005b34801561086957600080fd5b50610884600480360381019061087f919061305c565b611f99565b60405161089191906138b1565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc919061302f565b61202d565b005b3480156108cf57600080fd5b506108d8612125565b6040516108e59190613bee565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c957506109c88261212b565b5b9050919050565b60095481565b6060600080546109e590613f2f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1190613f2f565b8015610a5e5780601f10610a3357610100808354040283529160200191610a5e565b820191906000526020600020905b815481529060010190602001808311610a4157829003601f168201915b5050505050905090565b6000610a7382612195565b610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa990613aee565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af8826111ed565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6090613b8e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b88612201565b73ffffffffffffffffffffffffffffffffffffffff161480610bb75750610bb681610bb1612201565b611f99565b5b610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90613a4e565b60405180910390fd5b610c008383612209565b505050565b610c16610c10612201565b826122c2565b610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90613bae565b60405180910390fd5b610c608383836123a0565b505050565b600d6020528060005260406000206000915090505481565b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600660159054906101000a900460ff16610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790613aae565b60405180910390fd5b60008111610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90613a2e565b60405180910390fd5b80821115610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d906138ee565b60405180910390fd5b60075482600954610da79190613d64565b1115610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf906139ae565b60405180910390fd5b81600854610df69190613deb565b3414610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e90613bce565b60405180910390fd5b8181610e439190613e45565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b82811015610ec85760096000815480929190610ea490613f92565b9190505550610eb5336009546125fc565b8080610ec090613f92565b915050610e89565b505050565b60075481565b610eee83838360405180602001604052806000815250611acb565b505050565b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600660169054906101000a900460ff16610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d9061398e565b60405180910390fd5b60008111610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc090613a2e565b60405180910390fd5b60075481600954610fda9190613d64565b111561101b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611012906139ae565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b818110156110a2576009600081548092919061107e90613f92565b919050555061108f336009546125fc565b808061109a90613f92565b915050611063565b5050565b6110ae612201565b73ffffffffffffffffffffffffffffffffffffffff166110cc611651565b73ffffffffffffffffffffffffffffffffffffffff1614611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990613b0e565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b611147612201565b73ffffffffffffffffffffffffffffffffffffffff16611165611651565b73ffffffffffffffffffffffffffffffffffffffff16146111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290613b0e565b60405180910390fd5b80600b90805190602001906111d1929190612d07565b5050565b600c6020528060005260406000206000915090505481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90613a8e565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a90613a6e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611372612201565b73ffffffffffffffffffffffffffffffffffffffff16611390611651565b73ffffffffffffffffffffffffffffffffffffffff16146113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd90613b0e565b60405180910390fd5b6113f0600061261a565b565b600660159054906101000a900460ff1681565b61140d612201565b73ffffffffffffffffffffffffffffffffffffffff1661142b611651565b73ffffffffffffffffffffffffffffffffffffffff1614611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890613b0e565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b606060006114ab836112b2565b67ffffffffffffffff8111156114c4576114c36140c8565b5b6040519080825280602002602001820160405280156114f25781602001602082028036833780820191505090505b5090506000805b600954811015611581578473ffffffffffffffffffffffffffffffffffffffff16611523826111ed565b73ffffffffffffffffffffffffffffffffffffffff16141561156e578083838151811061155357611552614099565b5b602002602001018181525050818061156a90613f92565b9250505b808061157990613f92565b9150506114f9565b508192505050919050565b611594612201565b73ffffffffffffffffffffffffffffffffffffffff166115b2611651565b73ffffffffffffffffffffffffffffffffffffffff1614611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90613b0e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561164e573d6000803e3d6000fd5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611683612201565b73ffffffffffffffffffffffffffffffffffffffff166116a1611651565b73ffffffffffffffffffffffffffffffffffffffff16146116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee90613b0e565b60405180910390fd5b8060088190555050565b611709612201565b73ffffffffffffffffffffffffffffffffffffffff16611727611651565b73ffffffffffffffffffffffffffffffffffffffff161461177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490613b0e565b60405180910390fd5b60005b82518110156118145781818151811061179c5761179b614099565b5b6020026020010151600d60008584815181106117bb576117ba614099565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061180c90613f92565b915050611780565b505050565b60606001805461182890613f2f565b80601f016020809104026020016040519081016040528092919081815260200182805461185490613f2f565b80156118a15780601f10611876576101008083540402835291602001916118a1565b820191906000526020600020905b81548152906001019060200180831161188457829003601f168201915b5050505050905090565b60085481565b6118b9612201565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e906139ee565b60405180910390fd5b8060056000611934612201565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119e1612201565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a2691906138b1565b60405180910390a35050565b611a3a612201565b73ffffffffffffffffffffffffffffffffffffffff16611a58611651565b73ffffffffffffffffffffffffffffffffffffffff1614611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa590613b0e565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b611adc611ad6612201565b836122c2565b611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290613bae565b60405180910390fd5b611b27848484846126e0565b50505050565b611b35612201565b73ffffffffffffffffffffffffffffffffffffffff16611b53611651565b73ffffffffffffffffffffffffffffffffffffffff1614611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba090613b0e565b60405180910390fd5b80600a8190555050565b600660149054906101000a900460ff16611c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf990613b6e565b60405180910390fd5b600081118015611c135750600a5481105b611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c499061390e565b60405180910390fd5b60075481600954611c639190613d64565b1115611ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9b906139ae565b60405180910390fd5b80600854611cb29190613deb565b3414611cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cea90613bce565b60405180910390fd5b60005b81811015611d355760096000815480929190611d1190613f92565b9190505550611d22336009546125fc565b8080611d2d90613f92565b915050611cf6565b5050565b6060611d4482612195565b611d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7a90613b4e565b60405180910390fd5b6000611d8d61273c565b90506000815111611dad5760405180602001604052806000815250611dd8565b80611db7846127ce565b604051602001611dc8929190613804565b6040516020818303038152906040525b915050919050565b600660169054906101000a900460ff1681565b600b8054611e0090613f2f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2c90613f2f565b8015611e795780601f10611e4e57610100808354040283529160200191611e79565b820191906000526020600020905b815481529060010190602001808311611e5c57829003601f168201915b505050505081565b611e89612201565b73ffffffffffffffffffffffffffffffffffffffff16611ea7611651565b73ffffffffffffffffffffffffffffffffffffffff1614611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490613b0e565b60405180910390fd5b60005b8251811015611f9457818181518110611f1c57611f1b614099565b5b6020026020010151600c6000858481518110611f3b57611f3a614099565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611f8c90613f92565b915050611f00565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612035612201565b73ffffffffffffffffffffffffffffffffffffffff16612053611651565b73ffffffffffffffffffffffffffffffffffffffff16146120a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a090613b0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612119576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121109061394e565b60405180910390fd5b6121228161261a565b50565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661227c836111ed565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122cd82612195565b61230c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230390613a0e565b60405180910390fd5b6000612317836111ed565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061238657508373ffffffffffffffffffffffffffffffffffffffff1661236e84610a68565b73ffffffffffffffffffffffffffffffffffffffff16145b8061239757506123968185611f99565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123c0826111ed565b73ffffffffffffffffffffffffffffffffffffffff1614612416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240d90613b2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247d906139ce565b60405180910390fd5b61249183838361292f565b61249c600082612209565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124ec9190613e45565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125439190613d64565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612616828260405180602001604052806000815250612934565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126eb8484846123a0565b6126f78484848461298f565b612736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272d9061392e565b60405180910390fd5b50505050565b6060600b805461274b90613f2f565b80601f016020809104026020016040519081016040528092919081815260200182805461277790613f2f565b80156127c45780601f10612799576101008083540402835291602001916127c4565b820191906000526020600020905b8154815290600101906020018083116127a757829003601f168201915b5050505050905090565b60606000821415612816576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061292a565b600082905060005b6000821461284857808061283190613f92565b915050600a826128419190613dba565b915061281e565b60008167ffffffffffffffff811115612864576128636140c8565b5b6040519080825280601f01601f1916602001820160405280156128965781602001600182028036833780820191505090505b5090505b60008514612923576001826128af9190613e45565b9150600a856128be9190613fdb565b60306128ca9190613d64565b60f81b8183815181106128e0576128df614099565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561291c9190613dba565b945061289a565b8093505050505b919050565b505050565b61293e8383612b26565b61294b600084848461298f565b61298a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129819061392e565b60405180910390fd5b505050565b60006129b08473ffffffffffffffffffffffffffffffffffffffff16612cf4565b15612b19578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129d9612201565b8786866040518563ffffffff1660e01b81526004016129fb9493929190613843565b602060405180830381600087803b158015612a1557600080fd5b505af1925050508015612a4657506040513d601f19601f82011682018060405250810190612a4391906132c4565b60015b612ac9573d8060008114612a76576040519150601f19603f3d011682016040523d82523d6000602084013e612a7b565b606091505b50600081511415612ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab89061392e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b1e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8d90613ace565b60405180910390fd5b612b9f81612195565b15612bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd69061396e565b60405180910390fd5b612beb6000838361292f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c3b9190613d64565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612d1390613f2f565b90600052602060002090601f016020900481019282612d355760008555612d7c565b82601f10612d4e57805160ff1916838001178555612d7c565b82800160010185558215612d7c579182015b82811115612d7b578251825591602001919060010190612d60565b5b509050612d899190612d8d565b5090565b5b80821115612da6576000816000905550600101612d8e565b5090565b6000612dbd612db884613c2e565b613c09565b90508083825260208201905082856020860282011115612de057612ddf6140fc565b5b60005b85811015612e105781612df68882612f0e565b845260208401935060208301925050600181019050612de3565b5050509392505050565b6000612e2d612e2884613c5a565b613c09565b90508083825260208201905082856020860282011115612e5057612e4f6140fc565b5b60005b85811015612e805781612e66888261301a565b845260208401935060208301925050600181019050612e53565b5050509392505050565b6000612e9d612e9884613c86565b613c09565b905082815260208101848484011115612eb957612eb8614101565b5b612ec4848285613eed565b509392505050565b6000612edf612eda84613cb7565b613c09565b905082815260208101848484011115612efb57612efa614101565b5b612f06848285613eed565b509392505050565b600081359050612f1d8161470d565b92915050565b600082601f830112612f3857612f376140f7565b5b8135612f48848260208601612daa565b91505092915050565b600082601f830112612f6657612f656140f7565b5b8135612f76848260208601612e1a565b91505092915050565b600081359050612f8e81614724565b92915050565b600081359050612fa38161473b565b92915050565b600081519050612fb88161473b565b92915050565b600082601f830112612fd357612fd26140f7565b5b8135612fe3848260208601612e8a565b91505092915050565b600082601f830112613001576130006140f7565b5b8135613011848260208601612ecc565b91505092915050565b60008135905061302981614752565b92915050565b6000602082840312156130455761304461410b565b5b600061305384828501612f0e565b91505092915050565b600080604083850312156130735761307261410b565b5b600061308185828601612f0e565b925050602061309285828601612f0e565b9150509250929050565b6000806000606084860312156130b5576130b461410b565b5b60006130c386828701612f0e565b93505060206130d486828701612f0e565b92505060406130e58682870161301a565b9150509250925092565b600080600080608085870312156131095761310861410b565b5b600061311787828801612f0e565b945050602061312887828801612f0e565b93505060406131398782880161301a565b925050606085013567ffffffffffffffff81111561315a57613159614106565b5b61316687828801612fbe565b91505092959194509250565b600080604083850312156131895761318861410b565b5b600061319785828601612f0e565b92505060206131a885828601612f7f565b9150509250929050565b600080604083850312156131c9576131c861410b565b5b60006131d785828601612f0e565b92505060206131e88582860161301a565b9150509250929050565b600080604083850312156132095761320861410b565b5b600083013567ffffffffffffffff81111561322757613226614106565b5b61323385828601612f23565b925050602083013567ffffffffffffffff81111561325457613253614106565b5b61326085828601612f51565b9150509250929050565b6000602082840312156132805761327f61410b565b5b600061328e84828501612f7f565b91505092915050565b6000602082840312156132ad576132ac61410b565b5b60006132bb84828501612f94565b91505092915050565b6000602082840312156132da576132d961410b565b5b60006132e884828501612fa9565b91505092915050565b6000602082840312156133075761330661410b565b5b600082013567ffffffffffffffff81111561332557613324614106565b5b61333184828501612fec565b91505092915050565b6000602082840312156133505761334f61410b565b5b600061335e8482850161301a565b91505092915050565b600061337383836137e6565b60208301905092915050565b61338881613e79565b82525050565b600061339982613cf8565b6133a38185613d26565b93506133ae83613ce8565b8060005b838110156133df5781516133c68882613367565b97506133d183613d19565b9250506001810190506133b2565b5085935050505092915050565b6133f581613e8b565b82525050565b600061340682613d03565b6134108185613d37565b9350613420818560208601613efc565b61342981614110565b840191505092915050565b600061343f82613d0e565b6134498185613d48565b9350613459818560208601613efc565b61346281614110565b840191505092915050565b600061347882613d0e565b6134828185613d59565b9350613492818560208601613efc565b80840191505092915050565b60006134ab601d83613d48565b91506134b682614121565b602082019050919050565b60006134ce602d83613d48565b91506134d98261414a565b604082019050919050565b60006134f1603283613d48565b91506134fc82614199565b604082019050919050565b6000613514602683613d48565b915061351f826141e8565b604082019050919050565b6000613537601c83613d48565b915061354282614237565b602082019050919050565b600061355a601283613d48565b915061356582614260565b602082019050919050565b600061357d601f83613d48565b915061358882614289565b602082019050919050565b60006135a0602483613d48565b91506135ab826142b2565b604082019050919050565b60006135c3601983613d48565b91506135ce82614301565b602082019050919050565b60006135e6602c83613d48565b91506135f18261432a565b604082019050919050565b6000613609602383613d48565b915061361482614379565b604082019050919050565b600061362c603883613d48565b9150613637826143c8565b604082019050919050565b600061364f602a83613d48565b915061365a82614417565b604082019050919050565b6000613672602983613d48565b915061367d82614466565b604082019050919050565b6000613695601583613d48565b91506136a0826144b5565b602082019050919050565b60006136b8602083613d48565b91506136c3826144de565b602082019050919050565b60006136db602c83613d48565b91506136e682614507565b604082019050919050565b60006136fe602083613d48565b915061370982614556565b602082019050919050565b6000613721602983613d48565b915061372c8261457f565b604082019050919050565b6000613744602f83613d48565b915061374f826145ce565b604082019050919050565b6000613767601183613d48565b91506137728261461d565b602082019050919050565b600061378a602183613d48565b915061379582614646565b604082019050919050565b60006137ad603183613d48565b91506137b882614695565b604082019050919050565b60006137d0601883613d48565b91506137db826146e4565b602082019050919050565b6137ef81613ee3565b82525050565b6137fe81613ee3565b82525050565b6000613810828561346d565b915061381c828461346d565b91508190509392505050565b600060208201905061383d600083018461337f565b92915050565b6000608082019050613858600083018761337f565b613865602083018661337f565b61387260408301856137f5565b818103606083015261388481846133fb565b905095945050505050565b600060208201905081810360008301526138a9818461338e565b905092915050565b60006020820190506138c660008301846133ec565b92915050565b600060208201905081810360008301526138e68184613434565b905092915050565b600060208201905081810360008301526139078161349e565b9050919050565b60006020820190508181036000830152613927816134c1565b9050919050565b60006020820190508181036000830152613947816134e4565b9050919050565b6000602082019050818103600083015261396781613507565b9050919050565b600060208201905081810360008301526139878161352a565b9050919050565b600060208201905081810360008301526139a78161354d565b9050919050565b600060208201905081810360008301526139c781613570565b9050919050565b600060208201905081810360008301526139e781613593565b9050919050565b60006020820190508181036000830152613a07816135b6565b9050919050565b60006020820190508181036000830152613a27816135d9565b9050919050565b60006020820190508181036000830152613a47816135fc565b9050919050565b60006020820190508181036000830152613a678161361f565b9050919050565b60006020820190508181036000830152613a8781613642565b9050919050565b60006020820190508181036000830152613aa781613665565b9050919050565b60006020820190508181036000830152613ac781613688565b9050919050565b60006020820190508181036000830152613ae7816136ab565b9050919050565b60006020820190508181036000830152613b07816136ce565b9050919050565b60006020820190508181036000830152613b27816136f1565b9050919050565b60006020820190508181036000830152613b4781613714565b9050919050565b60006020820190508181036000830152613b6781613737565b9050919050565b60006020820190508181036000830152613b878161375a565b9050919050565b60006020820190508181036000830152613ba78161377d565b9050919050565b60006020820190508181036000830152613bc7816137a0565b9050919050565b60006020820190508181036000830152613be7816137c3565b9050919050565b6000602082019050613c0360008301846137f5565b92915050565b6000613c13613c24565b9050613c1f8282613f61565b919050565b6000604051905090565b600067ffffffffffffffff821115613c4957613c486140c8565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613c7557613c746140c8565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613ca157613ca06140c8565b5b613caa82614110565b9050602081019050919050565b600067ffffffffffffffff821115613cd257613cd16140c8565b5b613cdb82614110565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d6f82613ee3565b9150613d7a83613ee3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613daf57613dae61400c565b5b828201905092915050565b6000613dc582613ee3565b9150613dd083613ee3565b925082613de057613ddf61403b565b5b828204905092915050565b6000613df682613ee3565b9150613e0183613ee3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e3a57613e3961400c565b5b828202905092915050565b6000613e5082613ee3565b9150613e5b83613ee3565b925082821015613e6e57613e6d61400c565b5b828203905092915050565b6000613e8482613ec3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f1a578082015181840152602081019050613eff565b83811115613f29576000848401525b50505050565b60006002820490506001821680613f4757607f821691505b60208210811415613f5b57613f5a61406a565b5b50919050565b613f6a82614110565b810181811067ffffffffffffffff82111715613f8957613f886140c8565b5b80604052505050565b6000613f9d82613ee3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fd057613fcf61400c565b5b600182019050919050565b6000613fe682613ee3565b9150613ff183613ee3565b9250826140015761400061403b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e2774206d696e74206d6f7265207468616e207265736572766564000000600082015250565b7f43616e206f6e6c79206d696e74206265747765656e203120616e64203130207460008201527f6f6b656e73206174206f6e636500000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f436c61696d2069736e2774206163746976650000000000000000000000000000600082015250565b7f43616e2774206d696e74206d6f7265207468616e206d617820737570706c7900600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f20746f6b656e7320726573657276656420666f7220796f7572206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5669702053616c652069736e2774206163746976650000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c652069736e277420616374697665000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f57726f6e6720616d6f756e74206f66204554482073656e740000000000000000600082015250565b61471681613e79565b811461472157600080fd5b50565b61472d81613e8b565b811461473857600080fd5b50565b61474481613e97565b811461474f57600080fd5b50565b61475b81613ee3565b811461476657600080fd5b5056fea2646970667358221220283082a0f8e4350f7dbf8a208dfffe0c45b740732fe6dfaf41a5beb272f3caf864736f6c63430008060033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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