ETH Price: $3,413.25 (-1.44%)
Gas: 10 Gwei

Token

The Awakening (AWAKE)
 

Overview

Max Total Supply

9,999 AWAKE

Holders

4,616

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AWAKE
0x3c03f4ca78c7ccc5622a07ed7a56f5d44a3c4e6a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Awakening is a fully original Comic NFT series, expanding on each hero’s origin, the history of the Pulse, countless challenges, and a powerful force working to defy all that the Awakened stand for.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheAwakening

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

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

contract TheAwakening is ERC721, Ownable { 

    bool public saleActive = false;
    bool public presaleActive = false;
    bool public freeActive = false;
    
    string internal baseTokenURI;

    uint public price = 0.1 ether;
    uint public totalSupply = 9999;
    uint public saleMax = 8999;
    uint public nonce = 0;
    uint public maxTx = 20;

    mapping (address => uint256) public presaleWallets;
    mapping (address => uint256) public freeWallets;
    
    constructor() ERC721("The Awakening", "AWAKE") {}
    
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }
    
    function setTotalSupply(uint newSupply) external onlyOwner {
        totalSupply = newSupply;
    }

    function setSaleMax(uint supp) external onlyOwner {
        saleMax = supp;
    }

    function setPresaleActive(bool val) public onlyOwner {
        presaleActive = val;
    }

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

    function setFreeActive(bool val) public onlyOwner {
        freeActive = val;
    }

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

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

    function setMaxTx(uint newMax) external onlyOwner {
        maxTx = newMax;
    }
    
    function getAssetsByOwner(address _owner) public view returns(uint[] memory) {
        uint[] memory result = new uint[](balanceOf(_owner));
        uint counter = 0;
        for (uint i = 0; i < nonce; i++) {
            if (ownerOf(i) == _owner) {
                result[counter] = i;
                counter++;
            }
        }
        return result;
    }
    
    function getMyAssets() external view returns(uint[] memory){
        return getAssetsByOwner(tx.origin);
    }

    function _baseURI() internal override view returns (string memory) {
        return baseTokenURI;
    }
    
    function giveaway(address to, uint qty) external onlyOwner {
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        for(uint i = 0; i < qty; i++){
            nonce++;
            uint tokenId = nonce;
            _safeMint(to, tokenId);
        }
    }

    function buyPresale(uint qty) external payable {
        uint256 qtyAllowed = presaleWallets[msg.sender];
        require(presaleActive, "TRANSACTION: Presale is not active");
        require(qtyAllowed > 0, "TRANSACTION: You can't mint on presale");
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        require(msg.value == price * qty, "PAYMENT: invalid value");
        presaleWallets[msg.sender] = qtyAllowed - qty;
        for(uint i = 0; i < qty; i++){
            nonce++;
            uint tokenId = nonce;
            _safeMint(msg.sender, tokenId);
        }
    }

    function freeMint(uint qty) external payable {
        uint256 qtyAllowed = freeWallets[msg.sender];
        require(freeActive, "TRANSACTION: free mint is not active");
        require(qtyAllowed > 0, "TRANSACTION: You can't mint on free mint");
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        freeWallets[msg.sender] = qtyAllowed - qty;
        for(uint i = 0; i < qty; i++){
            nonce++;
            uint tokenId = nonce;
            _safeMint(msg.sender, tokenId);
        }
    }
    
    function buy(uint qty) external payable {
        require(saleActive, "TRANSACTION: sale is not active");
        require(qty <= maxTx || qty < 1, "TRANSACTION: qty of mints not alowed");
        require(qty + nonce <= saleMax, "SUPPLY: Value exceeds saleMax");
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        require(msg.value == price * qty, "PAYMENT: invalid value");
        for(uint i = 0; i < qty; i++){
            nonce++;
            uint tokenId = nonce;
            _safeMint(msg.sender, tokenId);
        }
    }
    
    function withdrawOwner() 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":[{"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":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buyPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getAssetsByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMyAssets","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setFreeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"setFreeWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"setPresaleWallets","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":"uint256","name":"supp","type":"uint256"}],"name":"setSaleMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff0219169083151502179055506000600660166101000a81548160ff02191690831515021790555067016345785d8a000060085561270f600955612327600a556000600b556014600c553480156200008457600080fd5b506040518060400160405280600d81526020017f546865204177616b656e696e67000000000000000000000000000000000000008152506040518060400160405280600581526020017f4157414b4500000000000000000000000000000000000000000000000000000081525081600090805190602001906200010992919062000219565b5080600190805190602001906200012292919062000219565b50505062000145620001396200014b60201b60201c565b6200015360201b60201c565b6200032e565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022790620002c9565b90600052602060002090601f0160209004810192826200024b576000855562000297565b82601f106200026657805160ff191683800117855562000297565b8280016001018555821562000297579182015b828111156200029657825182559160200191906001019062000279565b5b509050620002a69190620002aa565b5090565b5b80821115620002c5576000816000905550600101620002ab565b5090565b60006002820490506001821680620002e257607f821691505b60208210811415620002f957620002f8620002ff565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614b0f806200033e6000396000f3fe60806040526004361061025c5760003560e01c806368428a1b11610144578063a035b1fe116100b6578063c87b56dd1161007a578063c87b56dd146108c6578063d96a094a14610903578063e8cc00ad1461091f578063e985e9c514610936578063f2fde38b14610973578063f7ea7a3d1461099c5761025c565b8063a035b1fe146107f5578063a22cb46514610820578063affed0e014610849578063b88d4fde14610874578063bc3371821461089d5761025c565b8063841718a611610108578063841718a6146106fb5780638aa9090a146107245780638da5cb5b1461074d57806391b7f5ed1461077857806395d89b41146107a1578063995d00f5146107cc5761025c565b806368428a1b1461063557806370a0823114610660578063715018a61461069d5780637437681e146106b45780637c928fe9146106df5761025c565b80632e6b106c116101dd5780633f8121a2116101a15780633f8121a21461053457806342842e0e1461055d57806347002d1d1461058657806349c32217146105b157806353135ca0146105cd5780636352211e146105f85761025c565b80632e6b106c146104515780632ec7be0b1461047a57806330176e13146104a557806330b2264e146104ce57806337d4dd891461050b5761025c565b8063082878f711610224578063082878f71461036c578063095ea7b31461039757806318160ddd146103c057806323b872dd146103eb578063276f0934146104145761025c565b806301ffc9a714610261578063050225ea1461029e57806306bb99e2146102c757806306fdde0314610304578063081812fc1461032f575b600080fd5b34801561026d57600080fd5b506102886004803603810190610283919061352b565b6109c5565b6040516102959190613b6c565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190613446565b610aa7565b005b3480156102d357600080fd5b506102ee60048036038101906102e991906132c3565b610bc2565b6040516102fb9190613ec9565b60405180910390f35b34801561031057600080fd5b50610319610bda565b6040516103269190613b87565b60405180910390f35b34801561033b57600080fd5b50610356600480360381019061035191906135d2565b610c6c565b6040516103639190613ae3565b60405180910390f35b34801561037857600080fd5b50610381610cf1565b60405161038e9190613b6c565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190613446565b610d04565b005b3480156103cc57600080fd5b506103d5610e1c565b6040516103e29190613ec9565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190613330565b610e22565b005b34801561042057600080fd5b5061043b600480360381019061043691906132c3565b610e82565b6040516104489190613b4a565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190613486565b610f70565b005b34801561048657600080fd5b5061048f611088565b60405161049c9190613ec9565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190613585565b61108e565b005b3480156104da57600080fd5b506104f560048036038101906104f091906132c3565b611120565b6040516105029190613ec9565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d91906135d2565b611138565b005b34801561054057600080fd5b5061055b600480360381019061055691906134fe565b6111be565b005b34801561056957600080fd5b50610584600480360381019061057f9190613330565b611257565b005b34801561059257600080fd5b5061059b611277565b6040516105a89190613b4a565b60405180910390f35b6105cb60048036038101906105c691906135d2565b611287565b005b3480156105d957600080fd5b506105e261149a565b6040516105ef9190613b6c565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a91906135d2565b6114ad565b60405161062c9190613ae3565b60405180910390f35b34801561064157600080fd5b5061064a61155f565b6040516106579190613b6c565b60405180910390f35b34801561066c57600080fd5b50610687600480360381019061068291906132c3565b611572565b6040516106949190613ec9565b60405180910390f35b3480156106a957600080fd5b506106b261162a565b005b3480156106c057600080fd5b506106c96116b2565b6040516106d69190613ec9565b60405180910390f35b6106f960048036038101906106f491906135d2565b6116b8565b005b34801561070757600080fd5b50610722600480360381019061071d91906134fe565b61187c565b005b34801561073057600080fd5b5061074b600480360381019061074691906134fe565b611915565b005b34801561075957600080fd5b506107626119ae565b60405161076f9190613ae3565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a91906135d2565b6119d8565b005b3480156107ad57600080fd5b506107b6611a5e565b6040516107c39190613b87565b60405180910390f35b3480156107d857600080fd5b506107f360048036038101906107ee9190613486565b611af0565b005b34801561080157600080fd5b5061080a611c08565b6040516108179190613ec9565b60405180910390f35b34801561082c57600080fd5b5061084760048036038101906108429190613406565b611c0e565b005b34801561085557600080fd5b5061085e611d8f565b60405161086b9190613ec9565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190613383565b611d95565b005b3480156108a957600080fd5b506108c460048036038101906108bf91906135d2565b611df7565b005b3480156108d257600080fd5b506108ed60048036038101906108e891906135d2565b611e7d565b6040516108fa9190613b87565b60405180910390f35b61091d600480360381019061091891906135d2565b611f24565b005b34801561092b57600080fd5b50610934612102565b005b34801561094257600080fd5b5061095d600480360381019061095891906132f0565b6121c7565b60405161096a9190613b6c565b60405180910390f35b34801561097f57600080fd5b5061099a600480360381019061099591906132c3565b61225b565b005b3480156109a857600080fd5b506109c360048036038101906109be91906135d2565b612353565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a9057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa05750610a9f826123d9565b5b9050919050565b610aaf612443565b73ffffffffffffffffffffffffffffffffffffffff16610acd6119ae565b73ffffffffffffffffffffffffffffffffffffffff1614610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a90613da9565b60405180910390fd5b600954600b5482610b34919061400e565b1115610b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6c90613e49565b60405180910390fd5b60005b81811015610bbd57600b6000815480929190610b939061423c565b91905055506000600b549050610ba9848261244b565b508080610bb59061423c565b915050610b78565b505050565b600e6020528060005260406000206000915090505481565b606060008054610be9906141d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c15906141d9565b8015610c625780601f10610c3757610100808354040283529160200191610c62565b820191906000526020600020905b815481529060010190602001808311610c4557829003601f168201915b5050505050905090565b6000610c7782612469565b610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90613d89565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600660169054906101000a900460ff1681565b6000610d0f826114ad565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613e29565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d9f612443565b73ffffffffffffffffffffffffffffffffffffffff161480610dce5750610dcd81610dc8612443565b6121c7565b5b610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490613ce9565b60405180910390fd5b610e1783836124d5565b505050565b60095481565b610e33610e2d612443565b8261258e565b610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990613e69565b60405180910390fd5b610e7d83838361266c565b505050565b60606000610e8f83611572565b67ffffffffffffffff811115610ea857610ea7614372565b5b604051908082528060200260200182016040528015610ed65781602001602082028036833780820191505090505b5090506000805b600b54811015610f65578473ffffffffffffffffffffffffffffffffffffffff16610f07826114ad565b73ffffffffffffffffffffffffffffffffffffffff161415610f525780838381518110610f3757610f36614343565b5b6020026020010181815250508180610f4e9061423c565b9250505b8080610f5d9061423c565b915050610edd565b508192505050919050565b610f78612443565b73ffffffffffffffffffffffffffffffffffffffff16610f966119ae565b73ffffffffffffffffffffffffffffffffffffffff1614610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390613da9565b60405180910390fd5b60005b82518110156110835781818151811061100b5761100a614343565b5b6020026020010151600d600085848151811061102a57611029614343565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061107b9061423c565b915050610fef565b505050565b600a5481565b611096612443565b73ffffffffffffffffffffffffffffffffffffffff166110b46119ae565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190613da9565b60405180910390fd5b81816007919061111b929190612fb5565b505050565b600d6020528060005260406000206000915090505481565b611140612443565b73ffffffffffffffffffffffffffffffffffffffff1661115e6119ae565b73ffffffffffffffffffffffffffffffffffffffff16146111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90613da9565b60405180910390fd5b80600a8190555050565b6111c6612443565b73ffffffffffffffffffffffffffffffffffffffff166111e46119ae565b73ffffffffffffffffffffffffffffffffffffffff161461123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190613da9565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b61127283838360405180602001604052806000815250611d95565b505050565b606061128232610e82565b905090565b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600660159054906101000a900460ff1661131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190613e09565b60405180910390fd5b6000811161135d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135490613e89565b60405180910390fd5b600954600b548361136e919061400e565b11156113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690613e49565b60405180910390fd5b816008546113bd9190614095565b34146113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f590613c69565b60405180910390fd5b818161140a91906140ef565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b8281101561149557600b600081548092919061146b9061423c565b91905055506000600b549050611481338261244b565b50808061148d9061423c565b915050611450565b505050565b600660159054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613d29565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da90613d09565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611632612443565b73ffffffffffffffffffffffffffffffffffffffff166116506119ae565b73ffffffffffffffffffffffffffffffffffffffff16146116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90613da9565b60405180910390fd5b6116b060006128c8565b565b600c5481565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600660169054906101000a900460ff1661174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613c29565b60405180910390fd5b6000811161178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590613bc9565b60405180910390fd5b600954600b548361179f919061400e565b11156117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790613e49565b60405180910390fd5b81816117ec91906140ef565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b8281101561187757600b600081548092919061184d9061423c565b91905055506000600b549050611863338261244b565b50808061186f9061423c565b915050611832565b505050565b611884612443565b73ffffffffffffffffffffffffffffffffffffffff166118a26119ae565b73ffffffffffffffffffffffffffffffffffffffff16146118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90613da9565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b61191d612443565b73ffffffffffffffffffffffffffffffffffffffff1661193b6119ae565b73ffffffffffffffffffffffffffffffffffffffff1614611991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198890613da9565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119e0612443565b73ffffffffffffffffffffffffffffffffffffffff166119fe6119ae565b73ffffffffffffffffffffffffffffffffffffffff1614611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90613da9565b60405180910390fd5b8060088190555050565b606060018054611a6d906141d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611a99906141d9565b8015611ae65780601f10611abb57610100808354040283529160200191611ae6565b820191906000526020600020905b815481529060010190602001808311611ac957829003601f168201915b5050505050905090565b611af8612443565b73ffffffffffffffffffffffffffffffffffffffff16611b166119ae565b73ffffffffffffffffffffffffffffffffffffffff1614611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390613da9565b60405180910390fd5b60005b8251811015611c0357818181518110611b8b57611b8a614343565b5b6020026020010151600e6000858481518110611baa57611ba9614343565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611bfb9061423c565b915050611b6f565b505050565b60085481565b611c16612443565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b90613ca9565b60405180910390fd5b8060056000611c91612443565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d3e612443565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d839190613b6c565b60405180910390a35050565b600b5481565b611da6611da0612443565b8361258e565b611de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddc90613e69565b60405180910390fd5b611df18484848461298e565b50505050565b611dff612443565b73ffffffffffffffffffffffffffffffffffffffff16611e1d6119ae565b73ffffffffffffffffffffffffffffffffffffffff1614611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a90613da9565b60405180910390fd5b80600c8190555050565b6060611e8882612469565b611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe90613de9565b60405180910390fd5b6000611ed16129ea565b90506000815111611ef15760405180602001604052806000815250611f1c565b80611efb84612a7c565b604051602001611f0c929190613abf565b6040516020818303038152906040525b915050919050565b600660149054906101000a900460ff16611f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6a90613d69565b60405180910390fd5b600c5481111580611f845750600181105b611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba90613c49565b60405180910390fd5b600a54600b5482611fd4919061400e565b1115612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c90613ea9565b60405180910390fd5b600954600b5482612026919061400e565b1115612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e90613e49565b60405180910390fd5b806008546120759190614095565b34146120b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ad90613c69565b60405180910390fd5b60005b818110156120fe57600b60008154809291906120d49061423c565b91905055506000600b5490506120ea338261244b565b5080806120f69061423c565b9150506120b9565b5050565b61210a612443565b73ffffffffffffffffffffffffffffffffffffffff166121286119ae565b73ffffffffffffffffffffffffffffffffffffffff161461217e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217590613da9565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156121c4573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612263612443565b73ffffffffffffffffffffffffffffffffffffffff166122816119ae565b73ffffffffffffffffffffffffffffffffffffffff16146122d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ce90613da9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e90613be9565b60405180910390fd5b612350816128c8565b50565b61235b612443565b73ffffffffffffffffffffffffffffffffffffffff166123796119ae565b73ffffffffffffffffffffffffffffffffffffffff16146123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c690613da9565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b612465828260405180602001604052806000815250612bdd565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612548836114ad565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061259982612469565b6125d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cf90613cc9565b60405180910390fd5b60006125e3836114ad565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061265257508373ffffffffffffffffffffffffffffffffffffffff1661263a84610c6c565b73ffffffffffffffffffffffffffffffffffffffff16145b80612663575061266281856121c7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661268c826114ad565b73ffffffffffffffffffffffffffffffffffffffff16146126e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d990613dc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274990613c89565b60405180910390fd5b61275d838383612c38565b6127686000826124d5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127b891906140ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461280f919061400e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61299984848461266c565b6129a584848484612c3d565b6129e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129db90613ba9565b60405180910390fd5b50505050565b6060600780546129f9906141d9565b80601f0160208091040260200160405190810160405280929190818152602001828054612a25906141d9565b8015612a725780601f10612a4757610100808354040283529160200191612a72565b820191906000526020600020905b815481529060010190602001808311612a5557829003601f168201915b5050505050905090565b60606000821415612ac4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bd8565b600082905060005b60008214612af6578080612adf9061423c565b915050600a82612aef9190614064565b9150612acc565b60008167ffffffffffffffff811115612b1257612b11614372565b5b6040519080825280601f01601f191660200182016040528015612b445781602001600182028036833780820191505090505b5090505b60008514612bd157600182612b5d91906140ef565b9150600a85612b6c9190614285565b6030612b78919061400e565b60f81b818381518110612b8e57612b8d614343565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bca9190614064565b9450612b48565b8093505050505b919050565b612be78383612dd4565b612bf46000848484612c3d565b612c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2a90613ba9565b60405180910390fd5b505050565b505050565b6000612c5e8473ffffffffffffffffffffffffffffffffffffffff16612fa2565b15612dc7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c87612443565b8786866040518563ffffffff1660e01b8152600401612ca99493929190613afe565b602060405180830381600087803b158015612cc357600080fd5b505af1925050508015612cf457506040513d601f19601f82011682018060405250810190612cf19190613558565b60015b612d77573d8060008114612d24576040519150601f19603f3d011682016040523d82523d6000602084013e612d29565b606091505b50600081511415612d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6690613ba9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dcc565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3b90613d49565b60405180910390fd5b612e4d81612469565b15612e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8490613c09565b60405180910390fd5b612e9960008383612c38565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ee9919061400e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612fc1906141d9565b90600052602060002090601f016020900481019282612fe3576000855561302a565b82601f10612ffc57803560ff191683800117855561302a565b8280016001018555821561302a579182015b8281111561302957823582559160200191906001019061300e565b5b509050613037919061303b565b5090565b5b8082111561305457600081600090555060010161303c565b5090565b600061306b61306684613f09565b613ee4565b9050808382526020820190508285602086028201111561308e5761308d6143ab565b5b60005b858110156130be57816130a4888261317a565b845260208401935060208301925050600181019050613091565b5050509392505050565b60006130db6130d684613f35565b613ee4565b905080838252602082019050828560208602820111156130fe576130fd6143ab565b5b60005b8581101561312e578161311488826132ae565b845260208401935060208301925050600181019050613101565b5050509392505050565b600061314b61314684613f61565b613ee4565b905082815260208101848484011115613167576131666143b0565b5b613172848285614197565b509392505050565b60008135905061318981614a7d565b92915050565b600082601f8301126131a4576131a36143a6565b5b81356131b4848260208601613058565b91505092915050565b600082601f8301126131d2576131d16143a6565b5b81356131e28482602086016130c8565b91505092915050565b6000813590506131fa81614a94565b92915050565b60008135905061320f81614aab565b92915050565b60008151905061322481614aab565b92915050565b600082601f83011261323f5761323e6143a6565b5b813561324f848260208601613138565b91505092915050565b60008083601f84011261326e5761326d6143a6565b5b8235905067ffffffffffffffff81111561328b5761328a6143a1565b5b6020830191508360018202830111156132a7576132a66143ab565b5b9250929050565b6000813590506132bd81614ac2565b92915050565b6000602082840312156132d9576132d86143ba565b5b60006132e78482850161317a565b91505092915050565b60008060408385031215613307576133066143ba565b5b60006133158582860161317a565b92505060206133268582860161317a565b9150509250929050565b600080600060608486031215613349576133486143ba565b5b60006133578682870161317a565b93505060206133688682870161317a565b9250506040613379868287016132ae565b9150509250925092565b6000806000806080858703121561339d5761339c6143ba565b5b60006133ab8782880161317a565b94505060206133bc8782880161317a565b93505060406133cd878288016132ae565b925050606085013567ffffffffffffffff8111156133ee576133ed6143b5565b5b6133fa8782880161322a565b91505092959194509250565b6000806040838503121561341d5761341c6143ba565b5b600061342b8582860161317a565b925050602061343c858286016131eb565b9150509250929050565b6000806040838503121561345d5761345c6143ba565b5b600061346b8582860161317a565b925050602061347c858286016132ae565b9150509250929050565b6000806040838503121561349d5761349c6143ba565b5b600083013567ffffffffffffffff8111156134bb576134ba6143b5565b5b6134c78582860161318f565b925050602083013567ffffffffffffffff8111156134e8576134e76143b5565b5b6134f4858286016131bd565b9150509250929050565b600060208284031215613514576135136143ba565b5b6000613522848285016131eb565b91505092915050565b600060208284031215613541576135406143ba565b5b600061354f84828501613200565b91505092915050565b60006020828403121561356e5761356d6143ba565b5b600061357c84828501613215565b91505092915050565b6000806020838503121561359c5761359b6143ba565b5b600083013567ffffffffffffffff8111156135ba576135b96143b5565b5b6135c685828601613258565b92509250509250929050565b6000602082840312156135e8576135e76143ba565b5b60006135f6848285016132ae565b91505092915050565b600061360b8383613aa1565b60208301905092915050565b61362081614123565b82525050565b600061363182613fa2565b61363b8185613fd0565b935061364683613f92565b8060005b8381101561367757815161365e88826135ff565b975061366983613fc3565b92505060018101905061364a565b5085935050505092915050565b61368d81614135565b82525050565b600061369e82613fad565b6136a88185613fe1565b93506136b88185602086016141a6565b6136c1816143bf565b840191505092915050565b60006136d782613fb8565b6136e18185613ff2565b93506136f18185602086016141a6565b6136fa816143bf565b840191505092915050565b600061371082613fb8565b61371a8185614003565b935061372a8185602086016141a6565b80840191505092915050565b6000613743603283613ff2565b915061374e826143d0565b604082019050919050565b6000613766602883613ff2565b91506137718261441f565b604082019050919050565b6000613789602683613ff2565b91506137948261446e565b604082019050919050565b60006137ac601c83613ff2565b91506137b7826144bd565b602082019050919050565b60006137cf602483613ff2565b91506137da826144e6565b604082019050919050565b60006137f2602483613ff2565b91506137fd82614535565b604082019050919050565b6000613815601683613ff2565b915061382082614584565b602082019050919050565b6000613838602483613ff2565b9150613843826145ad565b604082019050919050565b600061385b601983613ff2565b9150613866826145fc565b602082019050919050565b600061387e602c83613ff2565b915061388982614625565b604082019050919050565b60006138a1603883613ff2565b91506138ac82614674565b604082019050919050565b60006138c4602a83613ff2565b91506138cf826146c3565b604082019050919050565b60006138e7602983613ff2565b91506138f282614712565b604082019050919050565b600061390a602083613ff2565b915061391582614761565b602082019050919050565b600061392d601f83613ff2565b91506139388261478a565b602082019050919050565b6000613950602c83613ff2565b915061395b826147b3565b604082019050919050565b6000613973602083613ff2565b915061397e82614802565b602082019050919050565b6000613996602983613ff2565b91506139a18261482b565b604082019050919050565b60006139b9602f83613ff2565b91506139c48261487a565b604082019050919050565b60006139dc602283613ff2565b91506139e7826148c9565b604082019050919050565b60006139ff602183613ff2565b9150613a0a82614918565b604082019050919050565b6000613a22602183613ff2565b9150613a2d82614967565b604082019050919050565b6000613a45603183613ff2565b9150613a50826149b6565b604082019050919050565b6000613a68602683613ff2565b9150613a7382614a05565b604082019050919050565b6000613a8b601d83613ff2565b9150613a9682614a54565b602082019050919050565b613aaa8161418d565b82525050565b613ab98161418d565b82525050565b6000613acb8285613705565b9150613ad78284613705565b91508190509392505050565b6000602082019050613af86000830184613617565b92915050565b6000608082019050613b136000830187613617565b613b206020830186613617565b613b2d6040830185613ab0565b8181036060830152613b3f8184613693565b905095945050505050565b60006020820190508181036000830152613b648184613626565b905092915050565b6000602082019050613b816000830184613684565b92915050565b60006020820190508181036000830152613ba181846136cc565b905092915050565b60006020820190508181036000830152613bc281613736565b9050919050565b60006020820190508181036000830152613be281613759565b9050919050565b60006020820190508181036000830152613c028161377c565b9050919050565b60006020820190508181036000830152613c228161379f565b9050919050565b60006020820190508181036000830152613c42816137c2565b9050919050565b60006020820190508181036000830152613c62816137e5565b9050919050565b60006020820190508181036000830152613c8281613808565b9050919050565b60006020820190508181036000830152613ca28161382b565b9050919050565b60006020820190508181036000830152613cc28161384e565b9050919050565b60006020820190508181036000830152613ce281613871565b9050919050565b60006020820190508181036000830152613d0281613894565b9050919050565b60006020820190508181036000830152613d22816138b7565b9050919050565b60006020820190508181036000830152613d42816138da565b9050919050565b60006020820190508181036000830152613d62816138fd565b9050919050565b60006020820190508181036000830152613d8281613920565b9050919050565b60006020820190508181036000830152613da281613943565b9050919050565b60006020820190508181036000830152613dc281613966565b9050919050565b60006020820190508181036000830152613de281613989565b9050919050565b60006020820190508181036000830152613e02816139ac565b9050919050565b60006020820190508181036000830152613e22816139cf565b9050919050565b60006020820190508181036000830152613e42816139f2565b9050919050565b60006020820190508181036000830152613e6281613a15565b9050919050565b60006020820190508181036000830152613e8281613a38565b9050919050565b60006020820190508181036000830152613ea281613a5b565b9050919050565b60006020820190508181036000830152613ec281613a7e565b9050919050565b6000602082019050613ede6000830184613ab0565b92915050565b6000613eee613eff565b9050613efa828261420b565b919050565b6000604051905090565b600067ffffffffffffffff821115613f2457613f23614372565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f5057613f4f614372565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f7c57613f7b614372565b5b613f85826143bf565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006140198261418d565b91506140248361418d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614059576140586142b6565b5b828201905092915050565b600061406f8261418d565b915061407a8361418d565b92508261408a576140896142e5565b5b828204905092915050565b60006140a08261418d565b91506140ab8361418d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140e4576140e36142b6565b5b828202905092915050565b60006140fa8261418d565b91506141058361418d565b925082821015614118576141176142b6565b5b828203905092915050565b600061412e8261416d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141c45780820151818401526020810190506141a9565b838111156141d3576000848401525b50505050565b600060028204905060018216806141f157607f821691505b6020821081141561420557614204614314565b5b50919050565b614214826143bf565b810181811067ffffffffffffffff8211171561423357614232614372565b5b80604052505050565b60006142478261418d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561427a576142796142b6565b5b600182019050919050565b60006142908261418d565b915061429b8361418d565b9250826142ab576142aa6142e5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20596f752063616e2774206d696e74206f6e206660008201527f726565206d696e74000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a2066726565206d696e74206973206e6f7420616360008201527f7469766500000000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5452414e53414354494f4e3a2073616c65206973206e6f742061637469766500600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a2050726573616c65206973206e6f74206163746960008201527f7665000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20596f752063616e2774206d696e74206f6e207060008201527f726573616c650000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c756520657863656564732073616c654d6178000000600082015250565b614a8681614123565b8114614a9157600080fd5b50565b614a9d81614135565b8114614aa857600080fd5b50565b614ab481614141565b8114614abf57600080fd5b50565b614acb8161418d565b8114614ad657600080fd5b5056fea264697066735822122043fb16d7d371e1aa64c93fb68cf8b4a24cdb420ecaf62ca820fa2f6c9ddbaf6964736f6c63430008060033

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806368428a1b11610144578063a035b1fe116100b6578063c87b56dd1161007a578063c87b56dd146108c6578063d96a094a14610903578063e8cc00ad1461091f578063e985e9c514610936578063f2fde38b14610973578063f7ea7a3d1461099c5761025c565b8063a035b1fe146107f5578063a22cb46514610820578063affed0e014610849578063b88d4fde14610874578063bc3371821461089d5761025c565b8063841718a611610108578063841718a6146106fb5780638aa9090a146107245780638da5cb5b1461074d57806391b7f5ed1461077857806395d89b41146107a1578063995d00f5146107cc5761025c565b806368428a1b1461063557806370a0823114610660578063715018a61461069d5780637437681e146106b45780637c928fe9146106df5761025c565b80632e6b106c116101dd5780633f8121a2116101a15780633f8121a21461053457806342842e0e1461055d57806347002d1d1461058657806349c32217146105b157806353135ca0146105cd5780636352211e146105f85761025c565b80632e6b106c146104515780632ec7be0b1461047a57806330176e13146104a557806330b2264e146104ce57806337d4dd891461050b5761025c565b8063082878f711610224578063082878f71461036c578063095ea7b31461039757806318160ddd146103c057806323b872dd146103eb578063276f0934146104145761025c565b806301ffc9a714610261578063050225ea1461029e57806306bb99e2146102c757806306fdde0314610304578063081812fc1461032f575b600080fd5b34801561026d57600080fd5b506102886004803603810190610283919061352b565b6109c5565b6040516102959190613b6c565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190613446565b610aa7565b005b3480156102d357600080fd5b506102ee60048036038101906102e991906132c3565b610bc2565b6040516102fb9190613ec9565b60405180910390f35b34801561031057600080fd5b50610319610bda565b6040516103269190613b87565b60405180910390f35b34801561033b57600080fd5b50610356600480360381019061035191906135d2565b610c6c565b6040516103639190613ae3565b60405180910390f35b34801561037857600080fd5b50610381610cf1565b60405161038e9190613b6c565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190613446565b610d04565b005b3480156103cc57600080fd5b506103d5610e1c565b6040516103e29190613ec9565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190613330565b610e22565b005b34801561042057600080fd5b5061043b600480360381019061043691906132c3565b610e82565b6040516104489190613b4a565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190613486565b610f70565b005b34801561048657600080fd5b5061048f611088565b60405161049c9190613ec9565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190613585565b61108e565b005b3480156104da57600080fd5b506104f560048036038101906104f091906132c3565b611120565b6040516105029190613ec9565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d91906135d2565b611138565b005b34801561054057600080fd5b5061055b600480360381019061055691906134fe565b6111be565b005b34801561056957600080fd5b50610584600480360381019061057f9190613330565b611257565b005b34801561059257600080fd5b5061059b611277565b6040516105a89190613b4a565b60405180910390f35b6105cb60048036038101906105c691906135d2565b611287565b005b3480156105d957600080fd5b506105e261149a565b6040516105ef9190613b6c565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a91906135d2565b6114ad565b60405161062c9190613ae3565b60405180910390f35b34801561064157600080fd5b5061064a61155f565b6040516106579190613b6c565b60405180910390f35b34801561066c57600080fd5b50610687600480360381019061068291906132c3565b611572565b6040516106949190613ec9565b60405180910390f35b3480156106a957600080fd5b506106b261162a565b005b3480156106c057600080fd5b506106c96116b2565b6040516106d69190613ec9565b60405180910390f35b6106f960048036038101906106f491906135d2565b6116b8565b005b34801561070757600080fd5b50610722600480360381019061071d91906134fe565b61187c565b005b34801561073057600080fd5b5061074b600480360381019061074691906134fe565b611915565b005b34801561075957600080fd5b506107626119ae565b60405161076f9190613ae3565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a91906135d2565b6119d8565b005b3480156107ad57600080fd5b506107b6611a5e565b6040516107c39190613b87565b60405180910390f35b3480156107d857600080fd5b506107f360048036038101906107ee9190613486565b611af0565b005b34801561080157600080fd5b5061080a611c08565b6040516108179190613ec9565b60405180910390f35b34801561082c57600080fd5b5061084760048036038101906108429190613406565b611c0e565b005b34801561085557600080fd5b5061085e611d8f565b60405161086b9190613ec9565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190613383565b611d95565b005b3480156108a957600080fd5b506108c460048036038101906108bf91906135d2565b611df7565b005b3480156108d257600080fd5b506108ed60048036038101906108e891906135d2565b611e7d565b6040516108fa9190613b87565b60405180910390f35b61091d600480360381019061091891906135d2565b611f24565b005b34801561092b57600080fd5b50610934612102565b005b34801561094257600080fd5b5061095d600480360381019061095891906132f0565b6121c7565b60405161096a9190613b6c565b60405180910390f35b34801561097f57600080fd5b5061099a600480360381019061099591906132c3565b61225b565b005b3480156109a857600080fd5b506109c360048036038101906109be91906135d2565b612353565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a9057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa05750610a9f826123d9565b5b9050919050565b610aaf612443565b73ffffffffffffffffffffffffffffffffffffffff16610acd6119ae565b73ffffffffffffffffffffffffffffffffffffffff1614610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a90613da9565b60405180910390fd5b600954600b5482610b34919061400e565b1115610b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6c90613e49565b60405180910390fd5b60005b81811015610bbd57600b6000815480929190610b939061423c565b91905055506000600b549050610ba9848261244b565b508080610bb59061423c565b915050610b78565b505050565b600e6020528060005260406000206000915090505481565b606060008054610be9906141d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c15906141d9565b8015610c625780601f10610c3757610100808354040283529160200191610c62565b820191906000526020600020905b815481529060010190602001808311610c4557829003601f168201915b5050505050905090565b6000610c7782612469565b610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90613d89565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600660169054906101000a900460ff1681565b6000610d0f826114ad565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613e29565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d9f612443565b73ffffffffffffffffffffffffffffffffffffffff161480610dce5750610dcd81610dc8612443565b6121c7565b5b610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490613ce9565b60405180910390fd5b610e1783836124d5565b505050565b60095481565b610e33610e2d612443565b8261258e565b610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990613e69565b60405180910390fd5b610e7d83838361266c565b505050565b60606000610e8f83611572565b67ffffffffffffffff811115610ea857610ea7614372565b5b604051908082528060200260200182016040528015610ed65781602001602082028036833780820191505090505b5090506000805b600b54811015610f65578473ffffffffffffffffffffffffffffffffffffffff16610f07826114ad565b73ffffffffffffffffffffffffffffffffffffffff161415610f525780838381518110610f3757610f36614343565b5b6020026020010181815250508180610f4e9061423c565b9250505b8080610f5d9061423c565b915050610edd565b508192505050919050565b610f78612443565b73ffffffffffffffffffffffffffffffffffffffff16610f966119ae565b73ffffffffffffffffffffffffffffffffffffffff1614610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390613da9565b60405180910390fd5b60005b82518110156110835781818151811061100b5761100a614343565b5b6020026020010151600d600085848151811061102a57611029614343565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061107b9061423c565b915050610fef565b505050565b600a5481565b611096612443565b73ffffffffffffffffffffffffffffffffffffffff166110b46119ae565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190613da9565b60405180910390fd5b81816007919061111b929190612fb5565b505050565b600d6020528060005260406000206000915090505481565b611140612443565b73ffffffffffffffffffffffffffffffffffffffff1661115e6119ae565b73ffffffffffffffffffffffffffffffffffffffff16146111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90613da9565b60405180910390fd5b80600a8190555050565b6111c6612443565b73ffffffffffffffffffffffffffffffffffffffff166111e46119ae565b73ffffffffffffffffffffffffffffffffffffffff161461123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190613da9565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b61127283838360405180602001604052806000815250611d95565b505050565b606061128232610e82565b905090565b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600660159054906101000a900460ff1661131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190613e09565b60405180910390fd5b6000811161135d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135490613e89565b60405180910390fd5b600954600b548361136e919061400e565b11156113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690613e49565b60405180910390fd5b816008546113bd9190614095565b34146113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f590613c69565b60405180910390fd5b818161140a91906140ef565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b8281101561149557600b600081548092919061146b9061423c565b91905055506000600b549050611481338261244b565b50808061148d9061423c565b915050611450565b505050565b600660159054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613d29565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115da90613d09565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611632612443565b73ffffffffffffffffffffffffffffffffffffffff166116506119ae565b73ffffffffffffffffffffffffffffffffffffffff16146116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90613da9565b60405180910390fd5b6116b060006128c8565b565b600c5481565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600660169054906101000a900460ff1661174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613c29565b60405180910390fd5b6000811161178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590613bc9565b60405180910390fd5b600954600b548361179f919061400e565b11156117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790613e49565b60405180910390fd5b81816117ec91906140ef565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b8281101561187757600b600081548092919061184d9061423c565b91905055506000600b549050611863338261244b565b50808061186f9061423c565b915050611832565b505050565b611884612443565b73ffffffffffffffffffffffffffffffffffffffff166118a26119ae565b73ffffffffffffffffffffffffffffffffffffffff16146118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef90613da9565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b61191d612443565b73ffffffffffffffffffffffffffffffffffffffff1661193b6119ae565b73ffffffffffffffffffffffffffffffffffffffff1614611991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198890613da9565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119e0612443565b73ffffffffffffffffffffffffffffffffffffffff166119fe6119ae565b73ffffffffffffffffffffffffffffffffffffffff1614611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90613da9565b60405180910390fd5b8060088190555050565b606060018054611a6d906141d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611a99906141d9565b8015611ae65780601f10611abb57610100808354040283529160200191611ae6565b820191906000526020600020905b815481529060010190602001808311611ac957829003601f168201915b5050505050905090565b611af8612443565b73ffffffffffffffffffffffffffffffffffffffff16611b166119ae565b73ffffffffffffffffffffffffffffffffffffffff1614611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390613da9565b60405180910390fd5b60005b8251811015611c0357818181518110611b8b57611b8a614343565b5b6020026020010151600e6000858481518110611baa57611ba9614343565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611bfb9061423c565b915050611b6f565b505050565b60085481565b611c16612443565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b90613ca9565b60405180910390fd5b8060056000611c91612443565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d3e612443565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d839190613b6c565b60405180910390a35050565b600b5481565b611da6611da0612443565b8361258e565b611de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddc90613e69565b60405180910390fd5b611df18484848461298e565b50505050565b611dff612443565b73ffffffffffffffffffffffffffffffffffffffff16611e1d6119ae565b73ffffffffffffffffffffffffffffffffffffffff1614611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a90613da9565b60405180910390fd5b80600c8190555050565b6060611e8882612469565b611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe90613de9565b60405180910390fd5b6000611ed16129ea565b90506000815111611ef15760405180602001604052806000815250611f1c565b80611efb84612a7c565b604051602001611f0c929190613abf565b6040516020818303038152906040525b915050919050565b600660149054906101000a900460ff16611f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6a90613d69565b60405180910390fd5b600c5481111580611f845750600181105b611fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fba90613c49565b60405180910390fd5b600a54600b5482611fd4919061400e565b1115612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c90613ea9565b60405180910390fd5b600954600b5482612026919061400e565b1115612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e90613e49565b60405180910390fd5b806008546120759190614095565b34146120b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ad90613c69565b60405180910390fd5b60005b818110156120fe57600b60008154809291906120d49061423c565b91905055506000600b5490506120ea338261244b565b5080806120f69061423c565b9150506120b9565b5050565b61210a612443565b73ffffffffffffffffffffffffffffffffffffffff166121286119ae565b73ffffffffffffffffffffffffffffffffffffffff161461217e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217590613da9565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156121c4573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612263612443565b73ffffffffffffffffffffffffffffffffffffffff166122816119ae565b73ffffffffffffffffffffffffffffffffffffffff16146122d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ce90613da9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e90613be9565b60405180910390fd5b612350816128c8565b50565b61235b612443565b73ffffffffffffffffffffffffffffffffffffffff166123796119ae565b73ffffffffffffffffffffffffffffffffffffffff16146123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c690613da9565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b612465828260405180602001604052806000815250612bdd565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612548836114ad565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061259982612469565b6125d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cf90613cc9565b60405180910390fd5b60006125e3836114ad565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061265257508373ffffffffffffffffffffffffffffffffffffffff1661263a84610c6c565b73ffffffffffffffffffffffffffffffffffffffff16145b80612663575061266281856121c7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661268c826114ad565b73ffffffffffffffffffffffffffffffffffffffff16146126e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d990613dc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274990613c89565b60405180910390fd5b61275d838383612c38565b6127686000826124d5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127b891906140ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461280f919061400e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61299984848461266c565b6129a584848484612c3d565b6129e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129db90613ba9565b60405180910390fd5b50505050565b6060600780546129f9906141d9565b80601f0160208091040260200160405190810160405280929190818152602001828054612a25906141d9565b8015612a725780601f10612a4757610100808354040283529160200191612a72565b820191906000526020600020905b815481529060010190602001808311612a5557829003601f168201915b5050505050905090565b60606000821415612ac4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bd8565b600082905060005b60008214612af6578080612adf9061423c565b915050600a82612aef9190614064565b9150612acc565b60008167ffffffffffffffff811115612b1257612b11614372565b5b6040519080825280601f01601f191660200182016040528015612b445781602001600182028036833780820191505090505b5090505b60008514612bd157600182612b5d91906140ef565b9150600a85612b6c9190614285565b6030612b78919061400e565b60f81b818381518110612b8e57612b8d614343565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bca9190614064565b9450612b48565b8093505050505b919050565b612be78383612dd4565b612bf46000848484612c3d565b612c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2a90613ba9565b60405180910390fd5b505050565b505050565b6000612c5e8473ffffffffffffffffffffffffffffffffffffffff16612fa2565b15612dc7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c87612443565b8786866040518563ffffffff1660e01b8152600401612ca99493929190613afe565b602060405180830381600087803b158015612cc357600080fd5b505af1925050508015612cf457506040513d601f19601f82011682018060405250810190612cf19190613558565b60015b612d77573d8060008114612d24576040519150601f19603f3d011682016040523d82523d6000602084013e612d29565b606091505b50600081511415612d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6690613ba9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612dcc565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3b90613d49565b60405180910390fd5b612e4d81612469565b15612e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8490613c09565b60405180910390fd5b612e9960008383612c38565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ee9919061400e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612fc1906141d9565b90600052602060002090601f016020900481019282612fe3576000855561302a565b82601f10612ffc57803560ff191683800117855561302a565b8280016001018555821561302a579182015b8281111561302957823582559160200191906001019061300e565b5b509050613037919061303b565b5090565b5b8082111561305457600081600090555060010161303c565b5090565b600061306b61306684613f09565b613ee4565b9050808382526020820190508285602086028201111561308e5761308d6143ab565b5b60005b858110156130be57816130a4888261317a565b845260208401935060208301925050600181019050613091565b5050509392505050565b60006130db6130d684613f35565b613ee4565b905080838252602082019050828560208602820111156130fe576130fd6143ab565b5b60005b8581101561312e578161311488826132ae565b845260208401935060208301925050600181019050613101565b5050509392505050565b600061314b61314684613f61565b613ee4565b905082815260208101848484011115613167576131666143b0565b5b613172848285614197565b509392505050565b60008135905061318981614a7d565b92915050565b600082601f8301126131a4576131a36143a6565b5b81356131b4848260208601613058565b91505092915050565b600082601f8301126131d2576131d16143a6565b5b81356131e28482602086016130c8565b91505092915050565b6000813590506131fa81614a94565b92915050565b60008135905061320f81614aab565b92915050565b60008151905061322481614aab565b92915050565b600082601f83011261323f5761323e6143a6565b5b813561324f848260208601613138565b91505092915050565b60008083601f84011261326e5761326d6143a6565b5b8235905067ffffffffffffffff81111561328b5761328a6143a1565b5b6020830191508360018202830111156132a7576132a66143ab565b5b9250929050565b6000813590506132bd81614ac2565b92915050565b6000602082840312156132d9576132d86143ba565b5b60006132e78482850161317a565b91505092915050565b60008060408385031215613307576133066143ba565b5b60006133158582860161317a565b92505060206133268582860161317a565b9150509250929050565b600080600060608486031215613349576133486143ba565b5b60006133578682870161317a565b93505060206133688682870161317a565b9250506040613379868287016132ae565b9150509250925092565b6000806000806080858703121561339d5761339c6143ba565b5b60006133ab8782880161317a565b94505060206133bc8782880161317a565b93505060406133cd878288016132ae565b925050606085013567ffffffffffffffff8111156133ee576133ed6143b5565b5b6133fa8782880161322a565b91505092959194509250565b6000806040838503121561341d5761341c6143ba565b5b600061342b8582860161317a565b925050602061343c858286016131eb565b9150509250929050565b6000806040838503121561345d5761345c6143ba565b5b600061346b8582860161317a565b925050602061347c858286016132ae565b9150509250929050565b6000806040838503121561349d5761349c6143ba565b5b600083013567ffffffffffffffff8111156134bb576134ba6143b5565b5b6134c78582860161318f565b925050602083013567ffffffffffffffff8111156134e8576134e76143b5565b5b6134f4858286016131bd565b9150509250929050565b600060208284031215613514576135136143ba565b5b6000613522848285016131eb565b91505092915050565b600060208284031215613541576135406143ba565b5b600061354f84828501613200565b91505092915050565b60006020828403121561356e5761356d6143ba565b5b600061357c84828501613215565b91505092915050565b6000806020838503121561359c5761359b6143ba565b5b600083013567ffffffffffffffff8111156135ba576135b96143b5565b5b6135c685828601613258565b92509250509250929050565b6000602082840312156135e8576135e76143ba565b5b60006135f6848285016132ae565b91505092915050565b600061360b8383613aa1565b60208301905092915050565b61362081614123565b82525050565b600061363182613fa2565b61363b8185613fd0565b935061364683613f92565b8060005b8381101561367757815161365e88826135ff565b975061366983613fc3565b92505060018101905061364a565b5085935050505092915050565b61368d81614135565b82525050565b600061369e82613fad565b6136a88185613fe1565b93506136b88185602086016141a6565b6136c1816143bf565b840191505092915050565b60006136d782613fb8565b6136e18185613ff2565b93506136f18185602086016141a6565b6136fa816143bf565b840191505092915050565b600061371082613fb8565b61371a8185614003565b935061372a8185602086016141a6565b80840191505092915050565b6000613743603283613ff2565b915061374e826143d0565b604082019050919050565b6000613766602883613ff2565b91506137718261441f565b604082019050919050565b6000613789602683613ff2565b91506137948261446e565b604082019050919050565b60006137ac601c83613ff2565b91506137b7826144bd565b602082019050919050565b60006137cf602483613ff2565b91506137da826144e6565b604082019050919050565b60006137f2602483613ff2565b91506137fd82614535565b604082019050919050565b6000613815601683613ff2565b915061382082614584565b602082019050919050565b6000613838602483613ff2565b9150613843826145ad565b604082019050919050565b600061385b601983613ff2565b9150613866826145fc565b602082019050919050565b600061387e602c83613ff2565b915061388982614625565b604082019050919050565b60006138a1603883613ff2565b91506138ac82614674565b604082019050919050565b60006138c4602a83613ff2565b91506138cf826146c3565b604082019050919050565b60006138e7602983613ff2565b91506138f282614712565b604082019050919050565b600061390a602083613ff2565b915061391582614761565b602082019050919050565b600061392d601f83613ff2565b91506139388261478a565b602082019050919050565b6000613950602c83613ff2565b915061395b826147b3565b604082019050919050565b6000613973602083613ff2565b915061397e82614802565b602082019050919050565b6000613996602983613ff2565b91506139a18261482b565b604082019050919050565b60006139b9602f83613ff2565b91506139c48261487a565b604082019050919050565b60006139dc602283613ff2565b91506139e7826148c9565b604082019050919050565b60006139ff602183613ff2565b9150613a0a82614918565b604082019050919050565b6000613a22602183613ff2565b9150613a2d82614967565b604082019050919050565b6000613a45603183613ff2565b9150613a50826149b6565b604082019050919050565b6000613a68602683613ff2565b9150613a7382614a05565b604082019050919050565b6000613a8b601d83613ff2565b9150613a9682614a54565b602082019050919050565b613aaa8161418d565b82525050565b613ab98161418d565b82525050565b6000613acb8285613705565b9150613ad78284613705565b91508190509392505050565b6000602082019050613af86000830184613617565b92915050565b6000608082019050613b136000830187613617565b613b206020830186613617565b613b2d6040830185613ab0565b8181036060830152613b3f8184613693565b905095945050505050565b60006020820190508181036000830152613b648184613626565b905092915050565b6000602082019050613b816000830184613684565b92915050565b60006020820190508181036000830152613ba181846136cc565b905092915050565b60006020820190508181036000830152613bc281613736565b9050919050565b60006020820190508181036000830152613be281613759565b9050919050565b60006020820190508181036000830152613c028161377c565b9050919050565b60006020820190508181036000830152613c228161379f565b9050919050565b60006020820190508181036000830152613c42816137c2565b9050919050565b60006020820190508181036000830152613c62816137e5565b9050919050565b60006020820190508181036000830152613c8281613808565b9050919050565b60006020820190508181036000830152613ca28161382b565b9050919050565b60006020820190508181036000830152613cc28161384e565b9050919050565b60006020820190508181036000830152613ce281613871565b9050919050565b60006020820190508181036000830152613d0281613894565b9050919050565b60006020820190508181036000830152613d22816138b7565b9050919050565b60006020820190508181036000830152613d42816138da565b9050919050565b60006020820190508181036000830152613d62816138fd565b9050919050565b60006020820190508181036000830152613d8281613920565b9050919050565b60006020820190508181036000830152613da281613943565b9050919050565b60006020820190508181036000830152613dc281613966565b9050919050565b60006020820190508181036000830152613de281613989565b9050919050565b60006020820190508181036000830152613e02816139ac565b9050919050565b60006020820190508181036000830152613e22816139cf565b9050919050565b60006020820190508181036000830152613e42816139f2565b9050919050565b60006020820190508181036000830152613e6281613a15565b9050919050565b60006020820190508181036000830152613e8281613a38565b9050919050565b60006020820190508181036000830152613ea281613a5b565b9050919050565b60006020820190508181036000830152613ec281613a7e565b9050919050565b6000602082019050613ede6000830184613ab0565b92915050565b6000613eee613eff565b9050613efa828261420b565b919050565b6000604051905090565b600067ffffffffffffffff821115613f2457613f23614372565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f5057613f4f614372565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f7c57613f7b614372565b5b613f85826143bf565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006140198261418d565b91506140248361418d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614059576140586142b6565b5b828201905092915050565b600061406f8261418d565b915061407a8361418d565b92508261408a576140896142e5565b5b828204905092915050565b60006140a08261418d565b91506140ab8361418d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140e4576140e36142b6565b5b828202905092915050565b60006140fa8261418d565b91506141058361418d565b925082821015614118576141176142b6565b5b828203905092915050565b600061412e8261416d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141c45780820151818401526020810190506141a9565b838111156141d3576000848401525b50505050565b600060028204905060018216806141f157607f821691505b6020821081141561420557614204614314565b5b50919050565b614214826143bf565b810181811067ffffffffffffffff8211171561423357614232614372565b5b80604052505050565b60006142478261418d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561427a576142796142b6565b5b600182019050919050565b60006142908261418d565b915061429b8361418d565b9250826142ab576142aa6142e5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20596f752063616e2774206d696e74206f6e206660008201527f726565206d696e74000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a2066726565206d696e74206973206e6f7420616360008201527f7469766500000000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5452414e53414354494f4e3a2073616c65206973206e6f742061637469766500600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a2050726573616c65206973206e6f74206163746960008201527f7665000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20596f752063616e2774206d696e74206f6e207060008201527f726573616c650000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c756520657863656564732073616c654d6178000000600082015250565b614a8681614123565b8114614a9157600080fd5b50565b614a9d81614135565b8114614aa857600080fd5b50565b614ab481614141565b8114614abf57600080fd5b50565b614acb8161418d565b8114614ad657600080fd5b5056fea264697066735822122043fb16d7d371e1aa64c93fb68cf8b4a24cdb420ecaf62ca820fa2f6c9ddbaf6964736f6c63430008060033

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.