ETH Price: $2,519.68 (+0.18%)

Token

Hedgiez (HDZ)
 

Overview

Max Total Supply

594 HDZ

Holders

235

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 HDZ
0x9482E7044574e056db57de122E8C1db358403D89
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Hedgiez

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 8 of 15: Hedgie.sol
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Counters.sol";
import "./Ownable.sol";
import "./ERC721Enumerable.sol";
import "./ERC721Burnable.sol";

contract Hedgiez is ERC721, Ownable, ERC721Burnable, ERC721Enumerable{
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    bool isMintingLive = false;
    uint[] public deployedHedgiez;
    mapping(address => bool) private admins;
    mapping(address => bool) private superAdmins;
    mapping(address => uint[]) private minterTokenIds;


    uint public maxHedgiez = 10000;

    modifier restricted() {
        require(admins[msg.sender]);
        _;
    }

    modifier superRestricted() {
        require(superAdmins[msg.sender]);
        _;
    }

    modifier mintingLive() {
        require(isMintingLive == true);
        _;
    }


    constructor() ERC721("Hedgiez", "HDZ") {
        superAdmins[msg.sender] = true;
        admins[msg.sender] = true;
    }


    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function addAdmin(address newAdmin) public superRestricted {
        admins[newAdmin] = true;
    }

    function removeAdmin(address admin) public superRestricted {
        admins[admin] = false;
    }

    function addSuperAdmin(address newSuperAdmin) public superRestricted {
        superAdmins[newSuperAdmin] = true;
    }

    function removeSuperAdmin(address superAdmin) public superRestricted {
        superAdmins[superAdmin] = false;
    }

    function withdraw() public payable superRestricted {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function isAdmin() public view returns (bool) {
        return admins[msg.sender];
    }

    function isSuperAdmin() public view returns (bool) {
        return superAdmins[msg.sender];
    }

    function getRemainingHedgiez() public view returns (uint) {
        return maxHedgiez - deployedHedgiez.length;
    }

    function getBalance() public restricted view returns (uint) {
        return address(this).balance;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return "https://api.hedgiez.io/metadata/";
    }

    function createHedgie(uint quantity) public mintingLive payable {
        require(quantity <= 20);
        uint totalCost = quantity * 60000000000000000;
        require(msg.value >= totalCost);
        require((maxHedgiez - _tokenIds.current()) >= quantity);

        for(uint i = 0; i < quantity; i++) {
            _tokenIds.increment();
            uint tokenId = _tokenIds.current();
            _mint(msg.sender, tokenId);
            tokenURI(tokenId);
            addTokenId(tokenId);
            deployedHedgiez.push(tokenId);
        }

    }

    function toggleMintingLive() public restricted {
        isMintingLive = !isMintingLive;
    }

    function createCustomHedgie(address newOwner) public restricted {
        require((maxHedgiez - _tokenIds.current()) >= 1);
        _tokenIds.increment();
        uint tokenId = _tokenIds.current();
        _mint(msg.sender, tokenId);
        tokenURI(tokenId);
        uint[] storage hedgieTokenIds = minterTokenIds[newOwner];
        hedgieTokenIds.push(tokenId);
        deployedHedgiez.push(tokenId);
    }



    function addTokenId(uint tokenId) private {
        uint[] storage hedgieTokenIds = minterTokenIds[msg.sender];
        hedgieTokenIds.push(tokenId);

    }

    function getMinterTokenIds() public view returns (uint[] memory) {
        return minterTokenIds[msg.sender];
    }

    function getDeployedHedgiez() public view returns (uint[] memory) {
        return deployedHedgiez;
    }
}


File 1 of 15: 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 2 of 15: 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 3 of 15: Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

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

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

File 4 of 15: 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 5 of 15: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./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 6 of 15: ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Context.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 7 of 15: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 9 of 15: 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 10 of 15: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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 11 of 15: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 12 of 15: 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 13 of 15: 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 14 of 15: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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 15 of 15: 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);
    }
}

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":"newAdmin","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSuperAdmin","type":"address"}],"name":"addSuperAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"createCustomHedgie","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"createHedgie","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"deployedHedgiez","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":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDeployedHedgiez","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinterTokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRemainingHedgiez","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSuperAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHedgiez","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":"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":[{"internalType":"address","name":"admin","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"superAdmin","type":"address"}],"name":"removeSuperAdmin","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","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":[],"name":"toggleMintingLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600c60006101000a81548160ff0219169083151502179055506127106011553480156200003257600080fd5b506040518060400160405280600781526020017f4865646769657a000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f48445a00000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000b792919062000277565b508060019080519060200190620000d092919062000277565b505050620000f3620000e7620001a960201b60201c565b620001b160201b60201c565b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200038c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002859062000327565b90600052602060002090601f016020900481019282620002a95760008555620002f5565b82601f10620002c457805160ff1916838001178555620002f5565b82800160010185558215620002f5579182015b82811115620002f4578251825591602001919060010190620002d7565b5b50905062000304919062000308565b5090565b5b808211156200032357600081600090555060010162000309565b5090565b600060028204905060018216806200034057607f821691505b602082108114156200035757620003566200035d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6142ec806200039c6000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461075b578063d3f6650914610798578063dc727216146107af578063e985e9c5146107ec578063f2fde38b146108295761020f565b8063a22cb465146106b5578063b3292ff0146106de578063b6db75a014610707578063b88d4fde146107325761020f565b806386a628b8116100e757806386a628b8146105e05780638cff69af146106095780638da5cb5b1461063457806395d89b411461065f57806396312f601461068a5761020f565b8063715018a614610557578063787954881461056e5780637da0c2001461059957806383d68337146105c45761020f565b80633ccfd60b1161019b5780634f6ccce71161016a5780634f6ccce71461044c5780635faa83fc146104895780636352211e146104b457806370480275146104f157806370a082311461051a5761020f565b80633ccfd60b146103c757806342842e0e146103d157806342966c68146103fa5780634902e4aa146104235761020f565b806312065fe0116101e257806312065fe0146102e25780631785f53c1461030d57806318160ddd1461033657806323b872dd146103615780632f745c591461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613082565b610852565b60405161024891906135a4565b60405180910390f35b34801561025d57600080fd5b50610266610864565b60405161027391906135bf565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906130dc565b6108f6565b6040516102b0919061351b565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613042565b61097b565b005b3480156102ee57600080fd5b506102f7610a93565b6040516103049190613841565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612ebf565b610af1565b005b34801561034257600080fd5b5061034b610ba2565b6040516103589190613841565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190612f2c565b610baf565b005b34801561039657600080fd5b506103b160048036038101906103ac9190613042565b610c0f565b6040516103be9190613841565b60405180910390f35b6103cf610cb4565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190612f2c565b610d59565b005b34801561040657600080fd5b50610421600480360381019061041c91906130dc565b610d79565b005b34801561042f57600080fd5b5061044a60048036038101906104459190612ebf565b610dd5565b005b34801561045857600080fd5b50610473600480360381019061046e91906130dc565b610e86565b6040516104809190613841565b60405180910390f35b34801561049557600080fd5b5061049e610ef7565b6040516104ab91906135a4565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d691906130dc565b610f4b565b6040516104e8919061351b565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190612ebf565b610ffd565b005b34801561052657600080fd5b50610541600480360381019061053c9190612ebf565b6110ae565b60405161054e9190613841565b60405180910390f35b34801561056357600080fd5b5061056c611166565b005b34801561057a57600080fd5b506105836111ee565b6040516105909190613841565b60405180910390f35b3480156105a557600080fd5b506105ae6111f4565b6040516105bb9190613582565b60405180910390f35b6105de60048036038101906105d991906130dc565b611289565b005b3480156105ec57600080fd5b5061060760048036038101906106029190612ebf565b611380565b005b34801561061557600080fd5b5061061e6114bf565b60405161062b9190613841565b60405180910390f35b34801561064057600080fd5b506106496114d9565b604051610656919061351b565b60405180910390f35b34801561066b57600080fd5b50610674611503565b60405161068191906135bf565b60405180910390f35b34801561069657600080fd5b5061069f611595565b6040516106ac9190613582565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190613002565b6115ed565b005b3480156106ea57600080fd5b5061070560048036038101906107009190612ebf565b61176e565b005b34801561071357600080fd5b5061071c61181f565b60405161072991906135a4565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190612f7f565b611873565b005b34801561076757600080fd5b50610782600480360381019061077d91906130dc565b6118d5565b60405161078f91906135bf565b60405180910390f35b3480156107a457600080fd5b506107ad61197c565b005b3480156107bb57600080fd5b506107d660048036038101906107d191906130dc565b6119fe565b6040516107e39190613841565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e9190612eec565b611a22565b60405161082091906135a4565b60405180910390f35b34801561083557600080fd5b50610850600480360381019061084b9190612ebf565b611ab6565b005b600061085d82611bae565b9050919050565b60606000805461087390613af9565b80601f016020809104026020016040519081016040528092919081815260200182805461089f90613af9565b80156108ec5780601f106108c1576101008083540402835291602001916108ec565b820191906000526020600020905b8154815290600101906020018083116108cf57829003601f168201915b5050505050905090565b600061090182611c28565b610940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093790613741565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098682610f4b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee906137c1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a16611c94565b73ffffffffffffffffffffffffffffffffffffffff161480610a455750610a4481610a3f611c94565b611a22565b5b610a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7b906136c1565b60405180910390fd5b610a8e8383611c9c565b505050565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610aeb57600080fd5b47905090565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b4757600080fd5b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600980549050905090565b610bc0610bba611c94565b82611d55565b610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf6906137e1565b60405180910390fd5b610c0a838383611e33565b505050565b6000610c1a836110ae565b8210610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c52906135e1565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d0a57600080fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d55573d6000803e3d6000fd5b5050565b610d7483838360405180602001604052806000815250611873565b505050565b610d8a610d84611c94565b82611d55565b610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090613821565b60405180910390fd5b610dd28161208f565b50565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e2b57600080fd5b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610e90610ba2565b8210610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890613801565b60405180910390fd5b60098281548110610ee557610ee4613c92565b5b90600052602060002001549050919050565b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90613701565b60405180910390fd5b80915050919050565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661105357600080fd5b6001600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611116906136e1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61116e611c94565b73ffffffffffffffffffffffffffffffffffffffff1661118c6114d9565b73ffffffffffffffffffffffffffffffffffffffff16146111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990613761565b60405180910390fd5b6111ec60006121a0565b565b60115481565b6060601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561127f57602002820191906000526020600020905b81548152602001906001019080831161126b575b5050505050905090565b60011515600c60009054906101000a900460ff161515146112a957600080fd5b60148111156112b757600080fd5b600066d529ae9e860000826112cc91906139b5565b9050803410156112db57600080fd5b816112e6600b612266565b6011546112f39190613a0f565b10156112fe57600080fd5b60005b8281101561137b57611313600b612274565b600061131f600b612266565b905061132b338261228a565b611334816118d5565b5061133e81612458565b600d81908060018154018082558091505060019003906000526020600020016000909190919091505550808061137390613b5c565b915050611301565b505050565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113d657600080fd5b60016113e2600b612266565b6011546113ef9190613a0f565b10156113fa57600080fd5b611404600b612274565b6000611410600b612266565b905061141c338261228a565b611425816118d5565b506000601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905080829080600181540180825580915050600190039060005260206000200160009091909190915055600d829080600181540180825580915050600190039060005260206000200160009091909190915055505050565b6000600d805490506011546114d49190613a0f565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461151290613af9565b80601f016020809104026020016040519081016040528092919081815260200182805461153e90613af9565b801561158b5780601f106115605761010080835404028352916020019161158b565b820191906000526020600020905b81548152906001019060200180831161156e57829003601f168201915b5050505050905090565b6060600d8054806020026020016040519081016040528092919081815260200182805480156115e357602002820191906000526020600020905b8154815260200190600101908083116115cf575b5050505050905090565b6115f5611c94565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90613681565b60405180910390fd5b8060056000611670611c94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661171d611c94565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176291906135a4565b60405180910390a35050565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117c457600080fd5b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905090565b61188461187e611c94565b83611d55565b6118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba906137e1565b60405180910390fd5b6118cf848484846124c7565b50505050565b60606118e082611c28565b61191f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611916906137a1565b60405180910390fd5b6000611929612523565b905060008151116119495760405180602001604052806000815250611974565b8061195384612560565b6040516020016119649291906134f7565b6040516020818303038152906040525b915050919050565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166119d257600080fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b600d8181548110611a0e57600080fd5b906000526020600020016000915090505481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611abe611c94565b73ffffffffffffffffffffffffffffffffffffffff16611adc6114d9565b73ffffffffffffffffffffffffffffffffffffffff1614611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2990613761565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9990613621565b60405180910390fd5b611bab816121a0565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c215750611c20826126c1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d0f83610f4b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d6082611c28565b611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d96906136a1565b60405180910390fd5b6000611daa83610f4b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e1957508373ffffffffffffffffffffffffffffffffffffffff16611e01846108f6565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e2a5750611e298185611a22565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e5382610f4b565b73ffffffffffffffffffffffffffffffffffffffff1614611ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea090613781565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090613661565b60405180910390fd5b611f248383836127a3565b611f2f600082611c9c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f7f9190613a0f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fd6919061392e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061209a82610f4b565b90506120a8816000846127a3565b6120b3600083611c9c565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121039190613a0f565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190613721565b60405180910390fd5b61230381611c28565b15612343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233a90613641565b60405180910390fd5b61234f600083836127a3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239f919061392e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050808290806001815401808255809150506001900390600052602060002001600090919091909150555050565b6124d2848484611e33565b6124de848484846127b3565b61251d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251490613601565b60405180910390fd5b50505050565b60606040518060400160405280602081526020017f68747470733a2f2f6170692e6865646769657a2e696f2f6d657461646174612f815250905090565b606060008214156125a8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126bc565b600082905060005b600082146125da5780806125c390613b5c565b915050600a826125d39190613984565b91506125b0565b60008167ffffffffffffffff8111156125f6576125f5613cc1565b5b6040519080825280601f01601f1916602001820160405280156126285781602001600182028036833780820191505090505b5090505b600085146126b5576001826126419190613a0f565b9150600a856126509190613ba5565b603061265c919061392e565b60f81b81838151811061267257612671613c92565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ae9190613984565b945061262c565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061278c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061279c575061279b8261294a565b5b9050919050565b6127ae8383836129b4565b505050565b60006127d48473ffffffffffffffffffffffffffffffffffffffff16612ac8565b1561293d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127fd611c94565b8786866040518563ffffffff1660e01b815260040161281f9493929190613536565b602060405180830381600087803b15801561283957600080fd5b505af192505050801561286a57506040513d601f19601f8201168201806040525081019061286791906130af565b60015b6128ed573d806000811461289a576040519150601f19603f3d011682016040523d82523d6000602084013e61289f565b606091505b506000815114156128e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dc90613601565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612942565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6129bf838383612adb565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a02576129fd81612ae0565b612a41565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a4057612a3f8382612b29565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a8457612a7f81612c96565b612ac3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ac257612ac18282612d67565b5b5b505050565b600080823b905060008111915050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612b36846110ae565b612b409190613a0f565b9050600060086000848152602001908152602001600020549050818114612c25576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612caa9190613a0f565b90506000600a6000848152602001908152602001600020549050600060098381548110612cda57612cd9613c92565b5b906000526020600020015490508060098381548110612cfc57612cfb613c92565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612d4b57612d4a613c63565b5b6001900381819060005260206000200160009055905550505050565b6000612d72836110ae565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b6000612df9612df484613881565b61385c565b905082815260208101848484011115612e1557612e14613cf5565b5b612e20848285613ab7565b509392505050565b600081359050612e378161425a565b92915050565b600081359050612e4c81614271565b92915050565b600081359050612e6181614288565b92915050565b600081519050612e7681614288565b92915050565b600082601f830112612e9157612e90613cf0565b5b8135612ea1848260208601612de6565b91505092915050565b600081359050612eb98161429f565b92915050565b600060208284031215612ed557612ed4613cff565b5b6000612ee384828501612e28565b91505092915050565b60008060408385031215612f0357612f02613cff565b5b6000612f1185828601612e28565b9250506020612f2285828601612e28565b9150509250929050565b600080600060608486031215612f4557612f44613cff565b5b6000612f5386828701612e28565b9350506020612f6486828701612e28565b9250506040612f7586828701612eaa565b9150509250925092565b60008060008060808587031215612f9957612f98613cff565b5b6000612fa787828801612e28565b9450506020612fb887828801612e28565b9350506040612fc987828801612eaa565b925050606085013567ffffffffffffffff811115612fea57612fe9613cfa565b5b612ff687828801612e7c565b91505092959194509250565b6000806040838503121561301957613018613cff565b5b600061302785828601612e28565b925050602061303885828601612e3d565b9150509250929050565b6000806040838503121561305957613058613cff565b5b600061306785828601612e28565b925050602061307885828601612eaa565b9150509250929050565b60006020828403121561309857613097613cff565b5b60006130a684828501612e52565b91505092915050565b6000602082840312156130c5576130c4613cff565b5b60006130d384828501612e67565b91505092915050565b6000602082840312156130f2576130f1613cff565b5b600061310084828501612eaa565b91505092915050565b600061311583836134d9565b60208301905092915050565b61312a81613a43565b82525050565b600061313b826138c2565b61314581856138f0565b9350613150836138b2565b8060005b838110156131815781516131688882613109565b9750613173836138e3565b925050600181019050613154565b5085935050505092915050565b61319781613a55565b82525050565b60006131a8826138cd565b6131b28185613901565b93506131c2818560208601613ac6565b6131cb81613d04565b840191505092915050565b60006131e1826138d8565b6131eb8185613912565b93506131fb818560208601613ac6565b61320481613d04565b840191505092915050565b600061321a826138d8565b6132248185613923565b9350613234818560208601613ac6565b80840191505092915050565b600061324d602b83613912565b915061325882613d15565b604082019050919050565b6000613270603283613912565b915061327b82613d64565b604082019050919050565b6000613293602683613912565b915061329e82613db3565b604082019050919050565b60006132b6601c83613912565b91506132c182613e02565b602082019050919050565b60006132d9602483613912565b91506132e482613e2b565b604082019050919050565b60006132fc601983613912565b915061330782613e7a565b602082019050919050565b600061331f602c83613912565b915061332a82613ea3565b604082019050919050565b6000613342603883613912565b915061334d82613ef2565b604082019050919050565b6000613365602a83613912565b915061337082613f41565b604082019050919050565b6000613388602983613912565b915061339382613f90565b604082019050919050565b60006133ab602083613912565b91506133b682613fdf565b602082019050919050565b60006133ce602c83613912565b91506133d982614008565b604082019050919050565b60006133f1602083613912565b91506133fc82614057565b602082019050919050565b6000613414602983613912565b915061341f82614080565b604082019050919050565b6000613437602f83613912565b9150613442826140cf565b604082019050919050565b600061345a602183613912565b91506134658261411e565b604082019050919050565b600061347d603183613912565b91506134888261416d565b604082019050919050565b60006134a0602c83613912565b91506134ab826141bc565b604082019050919050565b60006134c3603083613912565b91506134ce8261420b565b604082019050919050565b6134e281613aad565b82525050565b6134f181613aad565b82525050565b6000613503828561320f565b915061350f828461320f565b91508190509392505050565b60006020820190506135306000830184613121565b92915050565b600060808201905061354b6000830187613121565b6135586020830186613121565b61356560408301856134e8565b8181036060830152613577818461319d565b905095945050505050565b6000602082019050818103600083015261359c8184613130565b905092915050565b60006020820190506135b9600083018461318e565b92915050565b600060208201905081810360008301526135d981846131d6565b905092915050565b600060208201905081810360008301526135fa81613240565b9050919050565b6000602082019050818103600083015261361a81613263565b9050919050565b6000602082019050818103600083015261363a81613286565b9050919050565b6000602082019050818103600083015261365a816132a9565b9050919050565b6000602082019050818103600083015261367a816132cc565b9050919050565b6000602082019050818103600083015261369a816132ef565b9050919050565b600060208201905081810360008301526136ba81613312565b9050919050565b600060208201905081810360008301526136da81613335565b9050919050565b600060208201905081810360008301526136fa81613358565b9050919050565b6000602082019050818103600083015261371a8161337b565b9050919050565b6000602082019050818103600083015261373a8161339e565b9050919050565b6000602082019050818103600083015261375a816133c1565b9050919050565b6000602082019050818103600083015261377a816133e4565b9050919050565b6000602082019050818103600083015261379a81613407565b9050919050565b600060208201905081810360008301526137ba8161342a565b9050919050565b600060208201905081810360008301526137da8161344d565b9050919050565b600060208201905081810360008301526137fa81613470565b9050919050565b6000602082019050818103600083015261381a81613493565b9050919050565b6000602082019050818103600083015261383a816134b6565b9050919050565b600060208201905061385660008301846134e8565b92915050565b6000613866613877565b90506138728282613b2b565b919050565b6000604051905090565b600067ffffffffffffffff82111561389c5761389b613cc1565b5b6138a582613d04565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061393982613aad565b915061394483613aad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561397957613978613bd6565b5b828201905092915050565b600061398f82613aad565b915061399a83613aad565b9250826139aa576139a9613c05565b5b828204905092915050565b60006139c082613aad565b91506139cb83613aad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0457613a03613bd6565b5b828202905092915050565b6000613a1a82613aad565b9150613a2583613aad565b925082821015613a3857613a37613bd6565b5b828203905092915050565b6000613a4e82613a8d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ae4578082015181840152602081019050613ac9565b83811115613af3576000848401525b50505050565b60006002820490506001821680613b1157607f821691505b60208210811415613b2557613b24613c34565b5b50919050565b613b3482613d04565b810181811067ffffffffffffffff82111715613b5357613b52613cc1565b5b80604052505050565b6000613b6782613aad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b9a57613b99613bd6565b5b600182019050919050565b6000613bb082613aad565b9150613bbb83613aad565b925082613bcb57613bca613c05565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61426381613a43565b811461426e57600080fd5b50565b61427a81613a55565b811461428557600080fd5b50565b61429181613a61565b811461429c57600080fd5b50565b6142a881613aad565b81146142b357600080fd5b5056fea2646970667358221220d62117b2cd36a6b461ec1b453f3efbd03ae613fcd3b47fbb46fe9079871a278564736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461075b578063d3f6650914610798578063dc727216146107af578063e985e9c5146107ec578063f2fde38b146108295761020f565b8063a22cb465146106b5578063b3292ff0146106de578063b6db75a014610707578063b88d4fde146107325761020f565b806386a628b8116100e757806386a628b8146105e05780638cff69af146106095780638da5cb5b1461063457806395d89b411461065f57806396312f601461068a5761020f565b8063715018a614610557578063787954881461056e5780637da0c2001461059957806383d68337146105c45761020f565b80633ccfd60b1161019b5780634f6ccce71161016a5780634f6ccce71461044c5780635faa83fc146104895780636352211e146104b457806370480275146104f157806370a082311461051a5761020f565b80633ccfd60b146103c757806342842e0e146103d157806342966c68146103fa5780634902e4aa146104235761020f565b806312065fe0116101e257806312065fe0146102e25780631785f53c1461030d57806318160ddd1461033657806323b872dd146103615780632f745c591461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613082565b610852565b60405161024891906135a4565b60405180910390f35b34801561025d57600080fd5b50610266610864565b60405161027391906135bf565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906130dc565b6108f6565b6040516102b0919061351b565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613042565b61097b565b005b3480156102ee57600080fd5b506102f7610a93565b6040516103049190613841565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612ebf565b610af1565b005b34801561034257600080fd5b5061034b610ba2565b6040516103589190613841565b60405180910390f35b34801561036d57600080fd5b5061038860048036038101906103839190612f2c565b610baf565b005b34801561039657600080fd5b506103b160048036038101906103ac9190613042565b610c0f565b6040516103be9190613841565b60405180910390f35b6103cf610cb4565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190612f2c565b610d59565b005b34801561040657600080fd5b50610421600480360381019061041c91906130dc565b610d79565b005b34801561042f57600080fd5b5061044a60048036038101906104459190612ebf565b610dd5565b005b34801561045857600080fd5b50610473600480360381019061046e91906130dc565b610e86565b6040516104809190613841565b60405180910390f35b34801561049557600080fd5b5061049e610ef7565b6040516104ab91906135a4565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d691906130dc565b610f4b565b6040516104e8919061351b565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190612ebf565b610ffd565b005b34801561052657600080fd5b50610541600480360381019061053c9190612ebf565b6110ae565b60405161054e9190613841565b60405180910390f35b34801561056357600080fd5b5061056c611166565b005b34801561057a57600080fd5b506105836111ee565b6040516105909190613841565b60405180910390f35b3480156105a557600080fd5b506105ae6111f4565b6040516105bb9190613582565b60405180910390f35b6105de60048036038101906105d991906130dc565b611289565b005b3480156105ec57600080fd5b5061060760048036038101906106029190612ebf565b611380565b005b34801561061557600080fd5b5061061e6114bf565b60405161062b9190613841565b60405180910390f35b34801561064057600080fd5b506106496114d9565b604051610656919061351b565b60405180910390f35b34801561066b57600080fd5b50610674611503565b60405161068191906135bf565b60405180910390f35b34801561069657600080fd5b5061069f611595565b6040516106ac9190613582565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190613002565b6115ed565b005b3480156106ea57600080fd5b5061070560048036038101906107009190612ebf565b61176e565b005b34801561071357600080fd5b5061071c61181f565b60405161072991906135a4565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190612f7f565b611873565b005b34801561076757600080fd5b50610782600480360381019061077d91906130dc565b6118d5565b60405161078f91906135bf565b60405180910390f35b3480156107a457600080fd5b506107ad61197c565b005b3480156107bb57600080fd5b506107d660048036038101906107d191906130dc565b6119fe565b6040516107e39190613841565b60405180910390f35b3480156107f857600080fd5b50610813600480360381019061080e9190612eec565b611a22565b60405161082091906135a4565b60405180910390f35b34801561083557600080fd5b50610850600480360381019061084b9190612ebf565b611ab6565b005b600061085d82611bae565b9050919050565b60606000805461087390613af9565b80601f016020809104026020016040519081016040528092919081815260200182805461089f90613af9565b80156108ec5780601f106108c1576101008083540402835291602001916108ec565b820191906000526020600020905b8154815290600101906020018083116108cf57829003601f168201915b5050505050905090565b600061090182611c28565b610940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093790613741565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098682610f4b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee906137c1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a16611c94565b73ffffffffffffffffffffffffffffffffffffffff161480610a455750610a4481610a3f611c94565b611a22565b5b610a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7b906136c1565b60405180910390fd5b610a8e8383611c9c565b505050565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610aeb57600080fd5b47905090565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b4757600080fd5b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600980549050905090565b610bc0610bba611c94565b82611d55565b610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf6906137e1565b60405180910390fd5b610c0a838383611e33565b505050565b6000610c1a836110ae565b8210610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c52906135e1565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d0a57600080fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d55573d6000803e3d6000fd5b5050565b610d7483838360405180602001604052806000815250611873565b505050565b610d8a610d84611c94565b82611d55565b610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090613821565b60405180910390fd5b610dd28161208f565b50565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e2b57600080fd5b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000610e90610ba2565b8210610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890613801565b60405180910390fd5b60098281548110610ee557610ee4613c92565b5b90600052602060002001549050919050565b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90613701565b60405180910390fd5b80915050919050565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661105357600080fd5b6001600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561111f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611116906136e1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61116e611c94565b73ffffffffffffffffffffffffffffffffffffffff1661118c6114d9565b73ffffffffffffffffffffffffffffffffffffffff16146111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990613761565b60405180910390fd5b6111ec60006121a0565b565b60115481565b6060601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561127f57602002820191906000526020600020905b81548152602001906001019080831161126b575b5050505050905090565b60011515600c60009054906101000a900460ff161515146112a957600080fd5b60148111156112b757600080fd5b600066d529ae9e860000826112cc91906139b5565b9050803410156112db57600080fd5b816112e6600b612266565b6011546112f39190613a0f565b10156112fe57600080fd5b60005b8281101561137b57611313600b612274565b600061131f600b612266565b905061132b338261228a565b611334816118d5565b5061133e81612458565b600d81908060018154018082558091505060019003906000526020600020016000909190919091505550808061137390613b5c565b915050611301565b505050565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113d657600080fd5b60016113e2600b612266565b6011546113ef9190613a0f565b10156113fa57600080fd5b611404600b612274565b6000611410600b612266565b905061141c338261228a565b611425816118d5565b506000601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905080829080600181540180825580915050600190039060005260206000200160009091909190915055600d829080600181540180825580915050600190039060005260206000200160009091909190915055505050565b6000600d805490506011546114d49190613a0f565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461151290613af9565b80601f016020809104026020016040519081016040528092919081815260200182805461153e90613af9565b801561158b5780601f106115605761010080835404028352916020019161158b565b820191906000526020600020905b81548152906001019060200180831161156e57829003601f168201915b5050505050905090565b6060600d8054806020026020016040519081016040528092919081815260200182805480156115e357602002820191906000526020600020905b8154815260200190600101908083116115cf575b5050505050905090565b6115f5611c94565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90613681565b60405180910390fd5b8060056000611670611c94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661171d611c94565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176291906135a4565b60405180910390a35050565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117c457600080fd5b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905090565b61188461187e611c94565b83611d55565b6118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba906137e1565b60405180910390fd5b6118cf848484846124c7565b50505050565b60606118e082611c28565b61191f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611916906137a1565b60405180910390fd5b6000611929612523565b905060008151116119495760405180602001604052806000815250611974565b8061195384612560565b6040516020016119649291906134f7565b6040516020818303038152906040525b915050919050565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166119d257600080fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b600d8181548110611a0e57600080fd5b906000526020600020016000915090505481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611abe611c94565b73ffffffffffffffffffffffffffffffffffffffff16611adc6114d9565b73ffffffffffffffffffffffffffffffffffffffff1614611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2990613761565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9990613621565b60405180910390fd5b611bab816121a0565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c215750611c20826126c1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d0f83610f4b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d6082611c28565b611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d96906136a1565b60405180910390fd5b6000611daa83610f4b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e1957508373ffffffffffffffffffffffffffffffffffffffff16611e01846108f6565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e2a5750611e298185611a22565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e5382610f4b565b73ffffffffffffffffffffffffffffffffffffffff1614611ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea090613781565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090613661565b60405180910390fd5b611f248383836127a3565b611f2f600082611c9c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f7f9190613a0f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fd6919061392e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061209a82610f4b565b90506120a8816000846127a3565b6120b3600083611c9c565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121039190613a0f565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190613721565b60405180910390fd5b61230381611c28565b15612343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233a90613641565b60405180910390fd5b61234f600083836127a3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239f919061392e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050808290806001815401808255809150506001900390600052602060002001600090919091909150555050565b6124d2848484611e33565b6124de848484846127b3565b61251d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251490613601565b60405180910390fd5b50505050565b60606040518060400160405280602081526020017f68747470733a2f2f6170692e6865646769657a2e696f2f6d657461646174612f815250905090565b606060008214156125a8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126bc565b600082905060005b600082146125da5780806125c390613b5c565b915050600a826125d39190613984565b91506125b0565b60008167ffffffffffffffff8111156125f6576125f5613cc1565b5b6040519080825280601f01601f1916602001820160405280156126285781602001600182028036833780820191505090505b5090505b600085146126b5576001826126419190613a0f565b9150600a856126509190613ba5565b603061265c919061392e565b60f81b81838151811061267257612671613c92565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ae9190613984565b945061262c565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061278c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061279c575061279b8261294a565b5b9050919050565b6127ae8383836129b4565b505050565b60006127d48473ffffffffffffffffffffffffffffffffffffffff16612ac8565b1561293d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127fd611c94565b8786866040518563ffffffff1660e01b815260040161281f9493929190613536565b602060405180830381600087803b15801561283957600080fd5b505af192505050801561286a57506040513d601f19601f8201168201806040525081019061286791906130af565b60015b6128ed573d806000811461289a576040519150601f19603f3d011682016040523d82523d6000602084013e61289f565b606091505b506000815114156128e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dc90613601565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612942565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6129bf838383612adb565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a02576129fd81612ae0565b612a41565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a4057612a3f8382612b29565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a8457612a7f81612c96565b612ac3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ac257612ac18282612d67565b5b5b505050565b600080823b905060008111915050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612b36846110ae565b612b409190613a0f565b9050600060086000848152602001908152602001600020549050818114612c25576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612caa9190613a0f565b90506000600a6000848152602001908152602001600020549050600060098381548110612cda57612cd9613c92565b5b906000526020600020015490508060098381548110612cfc57612cfb613c92565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612d4b57612d4a613c63565b5b6001900381819060005260206000200160009055905550505050565b6000612d72836110ae565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b6000612df9612df484613881565b61385c565b905082815260208101848484011115612e1557612e14613cf5565b5b612e20848285613ab7565b509392505050565b600081359050612e378161425a565b92915050565b600081359050612e4c81614271565b92915050565b600081359050612e6181614288565b92915050565b600081519050612e7681614288565b92915050565b600082601f830112612e9157612e90613cf0565b5b8135612ea1848260208601612de6565b91505092915050565b600081359050612eb98161429f565b92915050565b600060208284031215612ed557612ed4613cff565b5b6000612ee384828501612e28565b91505092915050565b60008060408385031215612f0357612f02613cff565b5b6000612f1185828601612e28565b9250506020612f2285828601612e28565b9150509250929050565b600080600060608486031215612f4557612f44613cff565b5b6000612f5386828701612e28565b9350506020612f6486828701612e28565b9250506040612f7586828701612eaa565b9150509250925092565b60008060008060808587031215612f9957612f98613cff565b5b6000612fa787828801612e28565b9450506020612fb887828801612e28565b9350506040612fc987828801612eaa565b925050606085013567ffffffffffffffff811115612fea57612fe9613cfa565b5b612ff687828801612e7c565b91505092959194509250565b6000806040838503121561301957613018613cff565b5b600061302785828601612e28565b925050602061303885828601612e3d565b9150509250929050565b6000806040838503121561305957613058613cff565b5b600061306785828601612e28565b925050602061307885828601612eaa565b9150509250929050565b60006020828403121561309857613097613cff565b5b60006130a684828501612e52565b91505092915050565b6000602082840312156130c5576130c4613cff565b5b60006130d384828501612e67565b91505092915050565b6000602082840312156130f2576130f1613cff565b5b600061310084828501612eaa565b91505092915050565b600061311583836134d9565b60208301905092915050565b61312a81613a43565b82525050565b600061313b826138c2565b61314581856138f0565b9350613150836138b2565b8060005b838110156131815781516131688882613109565b9750613173836138e3565b925050600181019050613154565b5085935050505092915050565b61319781613a55565b82525050565b60006131a8826138cd565b6131b28185613901565b93506131c2818560208601613ac6565b6131cb81613d04565b840191505092915050565b60006131e1826138d8565b6131eb8185613912565b93506131fb818560208601613ac6565b61320481613d04565b840191505092915050565b600061321a826138d8565b6132248185613923565b9350613234818560208601613ac6565b80840191505092915050565b600061324d602b83613912565b915061325882613d15565b604082019050919050565b6000613270603283613912565b915061327b82613d64565b604082019050919050565b6000613293602683613912565b915061329e82613db3565b604082019050919050565b60006132b6601c83613912565b91506132c182613e02565b602082019050919050565b60006132d9602483613912565b91506132e482613e2b565b604082019050919050565b60006132fc601983613912565b915061330782613e7a565b602082019050919050565b600061331f602c83613912565b915061332a82613ea3565b604082019050919050565b6000613342603883613912565b915061334d82613ef2565b604082019050919050565b6000613365602a83613912565b915061337082613f41565b604082019050919050565b6000613388602983613912565b915061339382613f90565b604082019050919050565b60006133ab602083613912565b91506133b682613fdf565b602082019050919050565b60006133ce602c83613912565b91506133d982614008565b604082019050919050565b60006133f1602083613912565b91506133fc82614057565b602082019050919050565b6000613414602983613912565b915061341f82614080565b604082019050919050565b6000613437602f83613912565b9150613442826140cf565b604082019050919050565b600061345a602183613912565b91506134658261411e565b604082019050919050565b600061347d603183613912565b91506134888261416d565b604082019050919050565b60006134a0602c83613912565b91506134ab826141bc565b604082019050919050565b60006134c3603083613912565b91506134ce8261420b565b604082019050919050565b6134e281613aad565b82525050565b6134f181613aad565b82525050565b6000613503828561320f565b915061350f828461320f565b91508190509392505050565b60006020820190506135306000830184613121565b92915050565b600060808201905061354b6000830187613121565b6135586020830186613121565b61356560408301856134e8565b8181036060830152613577818461319d565b905095945050505050565b6000602082019050818103600083015261359c8184613130565b905092915050565b60006020820190506135b9600083018461318e565b92915050565b600060208201905081810360008301526135d981846131d6565b905092915050565b600060208201905081810360008301526135fa81613240565b9050919050565b6000602082019050818103600083015261361a81613263565b9050919050565b6000602082019050818103600083015261363a81613286565b9050919050565b6000602082019050818103600083015261365a816132a9565b9050919050565b6000602082019050818103600083015261367a816132cc565b9050919050565b6000602082019050818103600083015261369a816132ef565b9050919050565b600060208201905081810360008301526136ba81613312565b9050919050565b600060208201905081810360008301526136da81613335565b9050919050565b600060208201905081810360008301526136fa81613358565b9050919050565b6000602082019050818103600083015261371a8161337b565b9050919050565b6000602082019050818103600083015261373a8161339e565b9050919050565b6000602082019050818103600083015261375a816133c1565b9050919050565b6000602082019050818103600083015261377a816133e4565b9050919050565b6000602082019050818103600083015261379a81613407565b9050919050565b600060208201905081810360008301526137ba8161342a565b9050919050565b600060208201905081810360008301526137da8161344d565b9050919050565b600060208201905081810360008301526137fa81613470565b9050919050565b6000602082019050818103600083015261381a81613493565b9050919050565b6000602082019050818103600083015261383a816134b6565b9050919050565b600060208201905061385660008301846134e8565b92915050565b6000613866613877565b90506138728282613b2b565b919050565b6000604051905090565b600067ffffffffffffffff82111561389c5761389b613cc1565b5b6138a582613d04565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061393982613aad565b915061394483613aad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561397957613978613bd6565b5b828201905092915050565b600061398f82613aad565b915061399a83613aad565b9250826139aa576139a9613c05565b5b828204905092915050565b60006139c082613aad565b91506139cb83613aad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0457613a03613bd6565b5b828202905092915050565b6000613a1a82613aad565b9150613a2583613aad565b925082821015613a3857613a37613bd6565b5b828203905092915050565b6000613a4e82613a8d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ae4578082015181840152602081019050613ac9565b83811115613af3576000848401525b50505050565b60006002820490506001821680613b1157607f821691505b60208210811415613b2557613b24613c34565b5b50919050565b613b3482613d04565b810181811067ffffffffffffffff82111715613b5357613b52613cc1565b5b80604052505050565b6000613b6782613aad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b9a57613b99613bd6565b5b600182019050919050565b6000613bb082613aad565b9150613bbb83613aad565b925082613bcb57613bca613c05565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61426381613a43565b811461426e57600080fd5b50565b61427a81613a55565b811461428557600080fd5b50565b61429181613a61565b811461429c57600080fd5b50565b6142a881613aad565b81146142b357600080fd5b5056fea2646970667358221220d62117b2cd36a6b461ec1b453f3efbd03ae613fcd3b47fbb46fe9079871a278564736f6c63430008070033

Deployed Bytecode Sourcemap

329:3944:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1356:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2426:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3985:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3508:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2502:107:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1644:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1577:113:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4875:339:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1245:256:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2007:154:7;;;:::i;:::-;;5285:185:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;456:245:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1880:119:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1767:233:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2267:100:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2120:239:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1535:101:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1850:208:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1650:94:13;;;;;;;;;;;;;:::i;:::-;;714:30:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4038:117;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2760:567;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3439:419;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2375:119;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;999:87:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2595:104:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4163:107:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4278:295:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1751:121:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2169:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5541:328:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2770:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3335:96:7;;;;;;;;;;;;;:::i;:::-;;521:29;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4644:164:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1899:192:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1356:171:7;1459:4;1483:36;1507:11;1483:23;:36::i;:::-;1476:43;;1356:171;;;:::o;2426:100:4:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;4089:16;4097:7;4089;:16::i;:::-;4081:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4174:15;:24;4190:7;4174:24;;;;;;;;;;;;;;;;;;;;;4167:31;;3985:221;;;:::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;3647:11;;:2;:11;;;;3639:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3747:5;3731:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3756:37;3773:5;3780:12;:10;:12::i;:::-;3756:16;:37::i;:::-;3731:62;3709:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3578:341;3508:411;;:::o;2502:107:7:-;2556:4;794:6;:18;801:10;794:18;;;;;;;;;;;;;;;;;;;;;;;;;786:27;;;;;;2580:21:::1;2573:28;;2502:107:::0;:::o;1644:99::-;887:11;:23;899:10;887:23;;;;;;;;;;;;;;;;;;;;;;;;;879:32;;;;;;1730:5:::1;1714:6;:13;1721:5;1714:13;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;1644:99:::0;:::o;1577:113:6:-;1638:7;1665:10;:17;;;;1658:24;;1577:113;:::o;4875:339:4:-;5070:41;5089:12;:10;:12::i;:::-;5103:7;5070:18;:41::i;:::-;5062:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;:::-;4875:339;;;:::o;1245:256:6:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1467:12;:19;1480:5;1467:19;;;;;;;;;;;;;;;:26;1487:5;1467:26;;;;;;;;;;;;1460:33;;1245:256;;;;:::o;2007:154:7:-;887:11;:23;899:10;887:23;;;;;;;;;;;;;;;;;;;;;;;;;879:32;;;;;;2069:12:::1;2084:21;2069:36;;2124:10;2116:28;;:37;2145:7;2116:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2058:103;2007:154::o:0;5285:185:4:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;:::-;5285:185;;;:::o;456:245:5:-;574:41;593:12;:10;:12::i;:::-;607:7;574:18;:41::i;:::-;566:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;679:14;685:7;679:5;:14::i;:::-;456:245;:::o;1880:119:7:-;887:11;:23;899:10;887:23;;;;;;;;;;;;;;;;;;;;;;;;;879:32;;;;;;1986:5:::1;1960:11;:23;1972:10;1960:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;1880:119:::0;:::o;1767:233:6:-;1842:7;1878:30;:28;:30::i;:::-;1870:5;:38;1862:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1975:10;1986:5;1975:17;;;;;;;;:::i;:::-;;;;;;;;;;1968:24;;1767:233;;;:::o;2267:100:7:-;2312:4;2336:11;:23;2348:10;2336:23;;;;;;;;;;;;;;;;;;;;;;;;;2329:30;;2267:100;:::o;2120:239:4:-;2192:7;2212:13;2228:7;:16;2236:7;2228:16;;;;;;;;;;;;;;;;;;;;;2212:32;;2280:1;2263:19;;:5;:19;;;;2255:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2346:5;2339:12;;;2120:239;;;:::o;1535:101:7:-;887:11;:23;899:10;887:23;;;;;;;;;;;;;;;;;;;;;;;;;879:32;;;;;;1624:4:::1;1605:6;:16;1612:8;1605:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;1535:101:::0;:::o;1850:208:4:-;1922:7;1967:1;1950:19;;:5;:19;;;;1942:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2034:9;:16;2044:5;2034:16;;;;;;;;;;;;;;;;2027:23;;1850:208;;;:::o;1650:94:13:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;714:30:7:-;;;;:::o;4038:117::-;4088:13;4121:14;:26;4136:10;4121:26;;;;;;;;;;;;;;;4114:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4038:117;:::o;2760:567::-;998:4;981:21;;:13;;;;;;;;;;;:21;;;973:30;;;;;;2855:2:::1;2843:8;:14;;2835:23;;;::::0;::::1;;2869:14;2897:17;2886:8;:28;;;;:::i;:::-;2869:45;;2946:9;2933;:22;;2925:31;;;::::0;::::1;;3013:8;2989:19;:9;:17;:19::i;:::-;2976:10;;:32;;;;:::i;:::-;2975:46;;2967:55;;;::::0;::::1;;3039:6;3035:283;3055:8;3051:1;:12;3035:283;;;3085:21;:9;:19;:21::i;:::-;3121:12;3136:19;:9;:17;:19::i;:::-;3121:34;;3170:26;3176:10;3188:7;3170:5;:26::i;:::-;3211:17;3220:7;3211:8;:17::i;:::-;;3243:19;3254:7;3243:10;:19::i;:::-;3277:15;3298:7;3277:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3070:248;3065:3;;;;;:::i;:::-;;;;3035:283;;;;2824:503;2760:567:::0;:::o;3439:419::-;794:6;:18;801:10;794:18;;;;;;;;;;;;;;;;;;;;;;;;;786:27;;;;;;3560:1:::1;3536:19;:9;:17;:19::i;:::-;3523:10;;:32;;;;:::i;:::-;3522:39;;3514:48;;;::::0;::::1;;3573:21;:9;:19;:21::i;:::-;3605:12;3620:19;:9;:17;:19::i;:::-;3605:34;;3650:26;3656:10;3668:7;3650:5;:26::i;:::-;3687:17;3696:7;3687:8;:17::i;:::-;;3715:29;3747:14;:24;3762:8;3747:24;;;;;;;;;;;;;;;3715:56;;3782:14;3802:7;3782:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3821:15;3842:7;3821:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3503:355;;3439:419:::0;:::o;2375:119::-;2427:4;2464:15;:22;;;;2451:10;;:35;;;;:::i;:::-;2444:42;;2375:119;:::o;999:87:13:-;1045:7;1072:6;;;;;;;;;;;1065:13;;999:87;:::o;2595:104:4:-;2651:13;2684:7;2677:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2595:104;:::o;4163:107:7:-;4214:13;4247:15;4240:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4163:107;:::o;4278:295:4:-;4393:12;:10;:12::i;:::-;4381:24;;:8;:24;;;;4373:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4493:8;4448:18;:32;4467:12;:10;:12::i;:::-;4448:32;;;;;;;;;;;;;;;:42;4481:8;4448:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4546:8;4517:48;;4532:12;:10;:12::i;:::-;4517:48;;;4556:8;4517:48;;;;;;:::i;:::-;;;;;;;;4278:295;;:::o;1751:121:7:-;887:11;:23;899:10;887:23;;;;;;;;;;;;;;;;;;;;;;;;;879:32;;;;;;1860:4:::1;1831:11;:26;1843:13;1831:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;1751:121:::0;:::o;2169:90::-;2209:4;2233:6;:18;2240:10;2233:18;;;;;;;;;;;;;;;;;;;;;;;;;2226:25;;2169:90;:::o;5541:328:4:-;5716:41;5735:12;:10;:12::i;:::-;5749:7;5716:18;:41::i;:::-;5708:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;:::-;5541:328;;;;:::o;2770:334::-;2843:13;2877:16;2885:7;2877;:16::i;:::-;2869:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2958:21;2982:10;:8;:10::i;:::-;2958:34;;3034:1;3016:7;3010:21;:25;:86;;;;;;;;;;;;;;;;;3062:7;3071:18;:7;:16;:18::i;:::-;3045:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3010:86;3003:93;;;2770:334;;;:::o;3335:96:7:-;794:6;:18;801:10;794:18;;;;;;;;;;;;;;;;;;;;;;;;;786:27;;;;;;3410:13:::1;;;;;;;;;;;3409:14;3393:13;;:30;;;;;;;;;;;;;;;;;;3335:96::o:0;521:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4644:164:4:-;4741:4;4765:18;:25;4784:5;4765:25;;;;;;;;;;;;;;;:35;4791:8;4765:35;;;;;;;;;;;;;;;;;;;;;;;;;4758:42;;4644:164;;;;:::o;1899:192:13:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2008:1:::1;1988:22;;:8;:22;;;;1980:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;937:224:6:-;1039:4;1078:35;1063:50;;;:11;:50;;;;:90;;;;1117:36;1141:11;1117:23;:36::i;:::-;1063:90;1056:97;;937:224;;;:::o;7379:127:4:-;7444:4;7496:1;7468:30;;:7;:16;7476:7;7468:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7461:37;;7379:127;;;:::o;602:98:1:-;655:7;682:10;675:17;;602:98;:::o;11361:174:4:-;11463:2;11436:15;:24;11452:7;11436:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11519:7;11515:2;11481:46;;11490:23;11505:7;11490:14;:23::i;:::-;11481:46;;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7791:16;7799:7;7791;:16::i;:::-;7783:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;7925:16;;:7;:16;;;:51;;;;7969:7;7945:31;;:20;7957:7;7945:11;:20::i;:::-;:31;;;7925:51;:87;;;;7980:32;7997:5;8004:7;7980:16;:32::i;:::-;7925:87;7917:96;;;7673:348;;;;:::o;10665:578::-;10824:4;10797:31;;:23;10812:7;10797:14;:23::i;:::-;:31;;;10789:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10907:1;10893:16;;:2;:16;;;;10885:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;11128:1;11109:9;:15;11119:4;11109:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;11157:1;11140:9;:13;11150:2;11140:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;11188:2;11169:7;:16;11177:7;11169:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;11227:7;11223:2;11208:27;;11217:4;11208:27;;;;;;;;;;;;10665:578;;;:::o;9968:360::-;10028:13;10044:23;10059:7;10044:14;:23::i;:::-;10028:39;;10080:48;10101:5;10116:1;10120:7;10080:20;:48::i;:::-;10169:29;10186:1;10190:7;10169:8;:29::i;:::-;10231:1;10211:9;:16;10221:5;10211:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;10250:7;:16;10258:7;10250:16;;;;;;;;;;;;10243:23;;;;;;;;;;;10312:7;10308:1;10284:36;;10293:5;10284:36;;;;;;;;;;;;10017:311;9968:360;:::o;2099:173:13:-;2155:16;2174:6;;;;;;;;;;;2155:25;;2200:8;2191:6;;:17;;;;;;;;;;;;;;;;;;2255:8;2224:40;;2245:8;2224:40;;;;;;;;;;;;2144:128;2099:173;:::o;793:114:2:-;858:7;885;:14;;;878:21;;793:114;;;:::o;915:127::-;1022:1;1004:7;:14;;;:19;;;;;;;;;;;915:127;:::o;9357:382:4:-;9451:1;9437:16;;:2;:16;;;;9429:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9510:16;9518:7;9510;:16::i;:::-;9509:17;9501:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;9647:1;9630:9;:13;9640:2;9630:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9678:2;9659:7;:16;9667:7;9659:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9723:7;9719:2;9698:33;;9715:1;9698:33;;;;;;;;;;;;9357:382;;:::o;3870:160:7:-;3923:29;3955:14;:26;3970:10;3955:26;;;;;;;;;;;;;;;3923:58;;3992:14;4012:7;3992:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3912:118;3870:160;:::o;6751:315:4:-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6751:315;;;;:::o;2617:135:7:-;2677:13;2703:41;;;;;;;;;;;;;;;;;;;2617:135;:::o;288:723:14:-;344:13;574:1;565:5;:10;561:53;;;592:10;;;;;;;;;;;;;;;;;;;;;561:53;624:12;639:5;624:20;;655:14;680:78;695:1;687:4;:9;680:78;;713:8;;;;;:::i;:::-;;;;744:2;736:10;;;;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;768:39;;818:154;834:1;825:5;:10;818:154;;862:1;852:11;;;;;:::i;:::-;;;929:2;921:5;:10;;;;:::i;:::-;908:2;:24;;;;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;958:2;949:11;;;;;:::i;:::-;;;818:154;;;996:6;982:21;;;;;288:723;;;;:::o;1481:305:4:-;1583:4;1635:25;1620:40;;;:11;:40;;;;:105;;;;1692:33;1677:48;;;:11;:48;;;;1620:105;:158;;;;1742:36;1766:11;1742:23;:36::i;:::-;1620:158;1600:178;;1481:305;;;:::o;1167:181:7:-;1295:45;1322:4;1328:2;1332:7;1295:26;:45::i;:::-;1167:181;;;:::o;12100:799:4:-;12255:4;12276:15;:2;:13;;;:15::i;:::-;12272:620;;;12328:2;12312:36;;;12349:12;:10;:12::i;:::-;12363:4;12369:7;12378:5;12312:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12308:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12571:1;12554:6;:13;:18;12550:272;;;12597:60;;;;;;;;;;:::i;:::-;;;;;;;;12550:272;12772:6;12766:13;12757:6;12753:2;12749:15;12742:38;12308:529;12445:41;;;12435:51;;;:6;:51;;;;12428:58;;;;;12272:620;12876:4;12869:11;;12100:799;;;;;;;:::o;787:157:3:-;872:4;911:25;896:40;;;:11;:40;;;;889:47;;787:157;;;:::o;2613:589:6:-;2757:45;2784:4;2790:2;2794:7;2757:26;:45::i;:::-;2835:1;2819:18;;:4;:18;;;2815:187;;;2854:40;2886:7;2854:31;:40::i;:::-;2815:187;;;2924:2;2916:10;;:4;:10;;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;2912:90;2815:187;3030:1;3016:16;;:2;:16;;;3012:183;;;3049:45;3086:7;3049:36;:45::i;:::-;3012:183;;;3122:4;3116:10;;:2;:10;;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;:::-;3112:83;3012:183;2613:589;;;:::o;743:387:0:-;803:4;1011:12;1078:7;1066:20;1058:28;;1121:1;1114:4;:8;1107:15;;;743:387;;;:::o;13471:126:4:-;;;;:::o;3925:164:6:-;4029:10;:17;;;;4002:15;:24;4018:7;4002:24;;;;;;;;;;;:44;;;;4057:10;4073:7;4057:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3925:164;:::o;4716:988::-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;4982:51;;5044:18;5065:17;:26;5083:7;5065:26;;;;;;;;;;;;5044:47;;5212:14;5198:10;:28;5194:328;;5243:19;5265:12;:18;5278:4;5265:18;;;;;;;;;;;;;;;:34;5284:14;5265:34;;;;;;;;;;;;5243:56;;5349:11;5316:12;:18;5329:4;5316:18;;;;;;;;;;;;;;;:30;5335:10;5316:30;;;;;;;;;;;:44;;;;5466:10;5433:17;:30;5451:11;5433:30;;;;;;;;;;;:43;;;;5228:294;5194:328;5618:17;:26;5636:7;5618:26;;;;;;;;;;;5611:33;;;5662:12;:18;5675:4;5662:18;;;;;;;;;;;;;;;:34;5681:14;5662:34;;;;;;;;;;;5655:41;;;4797:907;;4716:988;;:::o;5999:1079::-;6252:22;6297:1;6277:10;:17;;;;:21;;;;:::i;:::-;6252:46;;6309:18;6330:15;:24;6346:7;6330:24;;;;;;;;;;;;6309:45;;6681:19;6703:10;6714:14;6703:26;;;;;;;;:::i;:::-;;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6878:10;6847:15;:28;6863:11;6847:28;;;;;;;;;;;:41;;;;7019:15;:24;7035:7;7019:24;;;;;;;;;;;7012:31;;;7054:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6070:1008;;;5999:1079;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;3588:37;;3663:7;3636:12;:16;3649:2;3636:16;;;;;;;;;;;;;;;:24;3653:6;3636:24;;;;;;;;;;;:34;;;;3710:6;3681:17;:26;3699:7;3681:26;;;;;;;;;;;:35;;;;3577:147;3503:221;;:::o;7:410:15:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1354:139::-;1400:5;1438:6;1425:20;1416:29;;1454:33;1481:5;1454:33;:::i;:::-;1354:139;;;;:::o;1499:329::-;1558:6;1607:2;1595:9;1586:7;1582:23;1578:32;1575:119;;;1613:79;;:::i;:::-;1575:119;1733:1;1758:53;1803:7;1794:6;1783:9;1779:22;1758:53;:::i;:::-;1748:63;;1704:117;1499:329;;;;:::o;1834:474::-;1902:6;1910;1959:2;1947:9;1938:7;1934:23;1930:32;1927:119;;;1965:79;;:::i;:::-;1927:119;2085:1;2110:53;2155:7;2146:6;2135:9;2131:22;2110:53;:::i;:::-;2100:63;;2056:117;2212:2;2238:53;2283:7;2274:6;2263:9;2259:22;2238:53;:::i;:::-;2228:63;;2183:118;1834:474;;;;;:::o;2314:619::-;2391:6;2399;2407;2456:2;2444:9;2435:7;2431:23;2427:32;2424:119;;;2462:79;;:::i;:::-;2424:119;2582:1;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2553:117;2709:2;2735:53;2780:7;2771:6;2760:9;2756:22;2735:53;:::i;:::-;2725:63;;2680:118;2837:2;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2808:118;2314:619;;;;;:::o;2939:943::-;3034:6;3042;3050;3058;3107:3;3095:9;3086:7;3082:23;3078:33;3075:120;;;3114:79;;:::i;:::-;3075:120;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3645:2;3634:9;3630:18;3617:32;3676:18;3668:6;3665:30;3662:117;;;3698:79;;:::i;:::-;3662:117;3803:62;3857:7;3848:6;3837:9;3833:22;3803:62;:::i;:::-;3793:72;;3588:287;2939:943;;;;;;;:::o;3888:468::-;3953:6;3961;4010:2;3998:9;3989:7;3985:23;3981:32;3978:119;;;4016:79;;:::i;:::-;3978:119;4136:1;4161:53;4206:7;4197:6;4186:9;4182:22;4161:53;:::i;:::-;4151:63;;4107:117;4263:2;4289:50;4331:7;4322:6;4311:9;4307:22;4289:50;:::i;:::-;4279:60;;4234:115;3888:468;;;;;:::o;4362:474::-;4430:6;4438;4487:2;4475:9;4466:7;4462:23;4458:32;4455:119;;;4493:79;;:::i;:::-;4455:119;4613:1;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4584:117;4740:2;4766:53;4811:7;4802:6;4791:9;4787:22;4766:53;:::i;:::-;4756:63;;4711:118;4362:474;;;;;:::o;4842:327::-;4900:6;4949:2;4937:9;4928:7;4924:23;4920:32;4917:119;;;4955:79;;:::i;:::-;4917:119;5075:1;5100:52;5144:7;5135:6;5124:9;5120:22;5100:52;:::i;:::-;5090:62;;5046:116;4842:327;;;;:::o;5175:349::-;5244:6;5293:2;5281:9;5272:7;5268:23;5264:32;5261:119;;;5299:79;;:::i;:::-;5261:119;5419:1;5444:63;5499:7;5490:6;5479:9;5475:22;5444:63;:::i;:::-;5434:73;;5390:127;5175:349;;;;:::o;5530:329::-;5589:6;5638:2;5626:9;5617:7;5613:23;5609:32;5606:119;;;5644:79;;:::i;:::-;5606:119;5764:1;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5735:117;5530:329;;;;:::o;5865:179::-;5934:10;5955:46;5997:3;5989:6;5955:46;:::i;:::-;6033:4;6028:3;6024:14;6010:28;;5865:179;;;;:::o;6050:118::-;6137:24;6155:5;6137:24;:::i;:::-;6132:3;6125:37;6050:118;;:::o;6204:732::-;6323:3;6352:54;6400:5;6352:54;:::i;:::-;6422:86;6501:6;6496:3;6422:86;:::i;:::-;6415:93;;6532:56;6582:5;6532:56;:::i;:::-;6611:7;6642:1;6627:284;6652:6;6649:1;6646:13;6627:284;;;6728:6;6722:13;6755:63;6814:3;6799:13;6755:63;:::i;:::-;6748:70;;6841:60;6894:6;6841:60;:::i;:::-;6831:70;;6687:224;6674:1;6671;6667:9;6662:14;;6627:284;;;6631:14;6927:3;6920:10;;6328:608;;;6204:732;;;;:::o;6942:109::-;7023:21;7038:5;7023:21;:::i;:::-;7018:3;7011:34;6942:109;;:::o;7057:360::-;7143:3;7171:38;7203:5;7171:38;:::i;:::-;7225:70;7288:6;7283:3;7225:70;:::i;:::-;7218:77;;7304:52;7349:6;7344:3;7337:4;7330:5;7326:16;7304:52;:::i;:::-;7381:29;7403:6;7381:29;:::i;:::-;7376:3;7372:39;7365:46;;7147:270;7057:360;;;;:::o;7423:364::-;7511:3;7539:39;7572:5;7539:39;:::i;:::-;7594:71;7658:6;7653:3;7594:71;:::i;:::-;7587:78;;7674:52;7719:6;7714:3;7707:4;7700:5;7696:16;7674:52;:::i;:::-;7751:29;7773:6;7751:29;:::i;:::-;7746:3;7742:39;7735:46;;7515:272;7423:364;;;;:::o;7793:377::-;7899:3;7927:39;7960:5;7927:39;:::i;:::-;7982:89;8064:6;8059:3;7982:89;:::i;:::-;7975:96;;8080:52;8125:6;8120:3;8113:4;8106:5;8102:16;8080:52;:::i;:::-;8157:6;8152:3;8148:16;8141:23;;7903:267;7793:377;;;;:::o;8176:366::-;8318:3;8339:67;8403:2;8398:3;8339:67;:::i;:::-;8332:74;;8415:93;8504:3;8415:93;:::i;:::-;8533:2;8528:3;8524:12;8517:19;;8176:366;;;:::o;8548:::-;8690:3;8711:67;8775:2;8770:3;8711:67;:::i;:::-;8704:74;;8787:93;8876:3;8787:93;:::i;:::-;8905:2;8900:3;8896:12;8889:19;;8548:366;;;:::o;8920:::-;9062:3;9083:67;9147:2;9142:3;9083:67;:::i;:::-;9076:74;;9159:93;9248:3;9159:93;:::i;:::-;9277:2;9272:3;9268:12;9261:19;;8920:366;;;:::o;9292:::-;9434:3;9455:67;9519:2;9514:3;9455:67;:::i;:::-;9448:74;;9531:93;9620:3;9531:93;:::i;:::-;9649:2;9644:3;9640:12;9633:19;;9292:366;;;:::o;9664:::-;9806:3;9827:67;9891:2;9886:3;9827:67;:::i;:::-;9820:74;;9903:93;9992:3;9903:93;:::i;:::-;10021:2;10016:3;10012:12;10005:19;;9664:366;;;:::o;10036:::-;10178:3;10199:67;10263:2;10258:3;10199:67;:::i;:::-;10192:74;;10275:93;10364:3;10275:93;:::i;:::-;10393:2;10388:3;10384:12;10377:19;;10036:366;;;:::o;10408:::-;10550:3;10571:67;10635:2;10630:3;10571:67;:::i;:::-;10564:74;;10647:93;10736:3;10647:93;:::i;:::-;10765:2;10760:3;10756:12;10749:19;;10408:366;;;:::o;10780:::-;10922:3;10943:67;11007:2;11002:3;10943:67;:::i;:::-;10936:74;;11019:93;11108:3;11019:93;:::i;:::-;11137:2;11132:3;11128:12;11121:19;;10780:366;;;:::o;11152:::-;11294:3;11315:67;11379:2;11374:3;11315:67;:::i;:::-;11308:74;;11391:93;11480:3;11391:93;:::i;:::-;11509:2;11504:3;11500:12;11493:19;;11152:366;;;:::o;11524:::-;11666:3;11687:67;11751:2;11746:3;11687:67;:::i;:::-;11680:74;;11763:93;11852:3;11763:93;:::i;:::-;11881:2;11876:3;11872:12;11865:19;;11524:366;;;:::o;11896:::-;12038:3;12059:67;12123:2;12118:3;12059:67;:::i;:::-;12052:74;;12135:93;12224:3;12135:93;:::i;:::-;12253:2;12248:3;12244:12;12237:19;;11896:366;;;:::o;12268:::-;12410:3;12431:67;12495:2;12490:3;12431:67;:::i;:::-;12424:74;;12507:93;12596:3;12507:93;:::i;:::-;12625:2;12620:3;12616:12;12609:19;;12268:366;;;:::o;12640:::-;12782:3;12803:67;12867:2;12862:3;12803:67;:::i;:::-;12796:74;;12879:93;12968:3;12879:93;:::i;:::-;12997:2;12992:3;12988:12;12981:19;;12640:366;;;:::o;13012:::-;13154:3;13175:67;13239:2;13234:3;13175:67;:::i;:::-;13168:74;;13251:93;13340:3;13251:93;:::i;:::-;13369:2;13364:3;13360:12;13353:19;;13012:366;;;:::o;13384:::-;13526:3;13547:67;13611:2;13606:3;13547:67;:::i;:::-;13540:74;;13623:93;13712:3;13623:93;:::i;:::-;13741:2;13736:3;13732:12;13725:19;;13384:366;;;:::o;13756:::-;13898:3;13919:67;13983:2;13978:3;13919:67;:::i;:::-;13912:74;;13995:93;14084:3;13995:93;:::i;:::-;14113:2;14108:3;14104:12;14097:19;;13756:366;;;:::o;14128:::-;14270:3;14291:67;14355:2;14350:3;14291:67;:::i;:::-;14284:74;;14367:93;14456:3;14367:93;:::i;:::-;14485:2;14480:3;14476:12;14469:19;;14128:366;;;:::o;14500:::-;14642:3;14663:67;14727:2;14722:3;14663:67;:::i;:::-;14656:74;;14739:93;14828:3;14739:93;:::i;:::-;14857:2;14852:3;14848:12;14841:19;;14500:366;;;:::o;14872:::-;15014:3;15035:67;15099:2;15094:3;15035:67;:::i;:::-;15028:74;;15111:93;15200:3;15111:93;:::i;:::-;15229:2;15224:3;15220:12;15213:19;;14872:366;;;:::o;15244:108::-;15321:24;15339:5;15321:24;:::i;:::-;15316:3;15309:37;15244:108;;:::o;15358:118::-;15445:24;15463:5;15445:24;:::i;:::-;15440:3;15433:37;15358:118;;:::o;15482:435::-;15662:3;15684:95;15775:3;15766:6;15684:95;:::i;:::-;15677:102;;15796:95;15887:3;15878:6;15796:95;:::i;:::-;15789:102;;15908:3;15901:10;;15482:435;;;;;:::o;15923:222::-;16016:4;16054:2;16043:9;16039:18;16031:26;;16067:71;16135:1;16124:9;16120:17;16111:6;16067:71;:::i;:::-;15923:222;;;;:::o;16151:640::-;16346:4;16384:3;16373:9;16369:19;16361:27;;16398:71;16466:1;16455:9;16451:17;16442:6;16398:71;:::i;:::-;16479:72;16547:2;16536:9;16532:18;16523:6;16479:72;:::i;:::-;16561;16629:2;16618:9;16614:18;16605:6;16561:72;:::i;:::-;16680:9;16674:4;16670:20;16665:2;16654:9;16650:18;16643:48;16708:76;16779:4;16770:6;16708:76;:::i;:::-;16700:84;;16151:640;;;;;;;:::o;16797:373::-;16940:4;16978:2;16967:9;16963:18;16955:26;;17027:9;17021:4;17017:20;17013:1;17002:9;16998:17;16991:47;17055:108;17158:4;17149:6;17055:108;:::i;:::-;17047:116;;16797:373;;;;:::o;17176:210::-;17263:4;17301:2;17290:9;17286:18;17278:26;;17314:65;17376:1;17365:9;17361:17;17352:6;17314:65;:::i;:::-;17176:210;;;;:::o;17392:313::-;17505:4;17543:2;17532:9;17528:18;17520:26;;17592:9;17586:4;17582:20;17578:1;17567:9;17563:17;17556:47;17620:78;17693:4;17684:6;17620:78;:::i;:::-;17612:86;;17392:313;;;;:::o;17711:419::-;17877:4;17915:2;17904:9;17900:18;17892:26;;17964:9;17958:4;17954:20;17950:1;17939:9;17935:17;17928:47;17992:131;18118:4;17992:131;:::i;:::-;17984:139;;17711:419;;;:::o;18136:::-;18302:4;18340:2;18329:9;18325:18;18317:26;;18389:9;18383:4;18379:20;18375:1;18364:9;18360:17;18353:47;18417:131;18543:4;18417:131;:::i;:::-;18409:139;;18136:419;;;:::o;18561:::-;18727:4;18765:2;18754:9;18750:18;18742:26;;18814:9;18808:4;18804:20;18800:1;18789:9;18785:17;18778:47;18842:131;18968:4;18842:131;:::i;:::-;18834:139;;18561:419;;;:::o;18986:::-;19152:4;19190:2;19179:9;19175:18;19167:26;;19239:9;19233:4;19229:20;19225:1;19214:9;19210:17;19203:47;19267:131;19393:4;19267:131;:::i;:::-;19259:139;;18986:419;;;:::o;19411:::-;19577:4;19615:2;19604:9;19600:18;19592:26;;19664:9;19658:4;19654:20;19650:1;19639:9;19635:17;19628:47;19692:131;19818:4;19692:131;:::i;:::-;19684:139;;19411:419;;;:::o;19836:::-;20002:4;20040:2;20029:9;20025:18;20017:26;;20089:9;20083:4;20079:20;20075:1;20064:9;20060:17;20053:47;20117:131;20243:4;20117:131;:::i;:::-;20109:139;;19836:419;;;:::o;20261:::-;20427:4;20465:2;20454:9;20450:18;20442:26;;20514:9;20508:4;20504:20;20500:1;20489:9;20485:17;20478:47;20542:131;20668:4;20542:131;:::i;:::-;20534:139;;20261:419;;;:::o;20686:::-;20852:4;20890:2;20879:9;20875:18;20867:26;;20939:9;20933:4;20929:20;20925:1;20914:9;20910:17;20903:47;20967:131;21093:4;20967:131;:::i;:::-;20959:139;;20686:419;;;:::o;21111:::-;21277:4;21315:2;21304:9;21300:18;21292:26;;21364:9;21358:4;21354:20;21350:1;21339:9;21335:17;21328:47;21392:131;21518:4;21392:131;:::i;:::-;21384:139;;21111:419;;;:::o;21536:::-;21702:4;21740:2;21729:9;21725:18;21717:26;;21789:9;21783:4;21779:20;21775:1;21764:9;21760:17;21753:47;21817:131;21943:4;21817:131;:::i;:::-;21809:139;;21536:419;;;:::o;21961:::-;22127:4;22165:2;22154:9;22150:18;22142:26;;22214:9;22208:4;22204:20;22200:1;22189:9;22185:17;22178:47;22242:131;22368:4;22242:131;:::i;:::-;22234:139;;21961:419;;;:::o;22386:::-;22552:4;22590:2;22579:9;22575:18;22567:26;;22639:9;22633:4;22629:20;22625:1;22614:9;22610:17;22603:47;22667:131;22793:4;22667:131;:::i;:::-;22659:139;;22386:419;;;:::o;22811:::-;22977:4;23015:2;23004:9;23000:18;22992:26;;23064:9;23058:4;23054:20;23050:1;23039:9;23035:17;23028:47;23092:131;23218:4;23092:131;:::i;:::-;23084:139;;22811:419;;;:::o;23236:::-;23402:4;23440:2;23429:9;23425:18;23417:26;;23489:9;23483:4;23479:20;23475:1;23464:9;23460:17;23453:47;23517:131;23643:4;23517:131;:::i;:::-;23509:139;;23236:419;;;:::o;23661:::-;23827:4;23865:2;23854:9;23850:18;23842:26;;23914:9;23908:4;23904:20;23900:1;23889:9;23885:17;23878:47;23942:131;24068:4;23942:131;:::i;:::-;23934:139;;23661:419;;;:::o;24086:::-;24252:4;24290:2;24279:9;24275:18;24267:26;;24339:9;24333:4;24329:20;24325:1;24314:9;24310:17;24303:47;24367:131;24493:4;24367:131;:::i;:::-;24359:139;;24086:419;;;:::o;24511:::-;24677:4;24715:2;24704:9;24700:18;24692:26;;24764:9;24758:4;24754:20;24750:1;24739:9;24735:17;24728:47;24792:131;24918:4;24792:131;:::i;:::-;24784:139;;24511:419;;;:::o;24936:::-;25102:4;25140:2;25129:9;25125:18;25117:26;;25189:9;25183:4;25179:20;25175:1;25164:9;25160:17;25153:47;25217:131;25343:4;25217:131;:::i;:::-;25209:139;;24936:419;;;:::o;25361:::-;25527:4;25565:2;25554:9;25550:18;25542:26;;25614:9;25608:4;25604:20;25600:1;25589:9;25585:17;25578:47;25642:131;25768:4;25642:131;:::i;:::-;25634:139;;25361:419;;;:::o;25786:222::-;25879:4;25917:2;25906:9;25902:18;25894:26;;25930:71;25998:1;25987:9;25983:17;25974:6;25930:71;:::i;:::-;25786:222;;;;:::o;26014:129::-;26048:6;26075:20;;:::i;:::-;26065:30;;26104:33;26132:4;26124:6;26104:33;:::i;:::-;26014:129;;;:::o;26149:75::-;26182:6;26215:2;26209:9;26199:19;;26149:75;:::o;26230:307::-;26291:4;26381:18;26373:6;26370:30;26367:56;;;26403:18;;:::i;:::-;26367:56;26441:29;26463:6;26441:29;:::i;:::-;26433:37;;26525:4;26519;26515:15;26507:23;;26230:307;;;:::o;26543:132::-;26610:4;26633:3;26625:11;;26663:4;26658:3;26654:14;26646:22;;26543:132;;;:::o;26681:114::-;26748:6;26782:5;26776:12;26766:22;;26681:114;;;:::o;26801:98::-;26852:6;26886:5;26880:12;26870:22;;26801:98;;;:::o;26905:99::-;26957:6;26991:5;26985:12;26975:22;;26905:99;;;:::o;27010:113::-;27080:4;27112;27107:3;27103:14;27095:22;;27010:113;;;:::o;27129:184::-;27228:11;27262:6;27257:3;27250:19;27302:4;27297:3;27293:14;27278:29;;27129:184;;;;:::o;27319:168::-;27402:11;27436:6;27431:3;27424:19;27476:4;27471:3;27467:14;27452:29;;27319:168;;;;:::o;27493:169::-;27577:11;27611:6;27606:3;27599:19;27651:4;27646:3;27642:14;27627:29;;27493:169;;;;:::o;27668:148::-;27770:11;27807:3;27792:18;;27668:148;;;;:::o;27822:305::-;27862:3;27881:20;27899:1;27881:20;:::i;:::-;27876:25;;27915:20;27933:1;27915:20;:::i;:::-;27910:25;;28069:1;28001:66;27997:74;27994:1;27991:81;27988:107;;;28075:18;;:::i;:::-;27988:107;28119:1;28116;28112:9;28105:16;;27822:305;;;;:::o;28133:185::-;28173:1;28190:20;28208:1;28190:20;:::i;:::-;28185:25;;28224:20;28242:1;28224:20;:::i;:::-;28219:25;;28263:1;28253:35;;28268:18;;:::i;:::-;28253:35;28310:1;28307;28303:9;28298:14;;28133:185;;;;:::o;28324:348::-;28364:7;28387:20;28405:1;28387:20;:::i;:::-;28382:25;;28421:20;28439:1;28421:20;:::i;:::-;28416:25;;28609:1;28541:66;28537:74;28534:1;28531:81;28526:1;28519:9;28512:17;28508:105;28505:131;;;28616:18;;:::i;:::-;28505:131;28664:1;28661;28657:9;28646:20;;28324:348;;;;:::o;28678:191::-;28718:4;28738:20;28756:1;28738:20;:::i;:::-;28733:25;;28772:20;28790:1;28772:20;:::i;:::-;28767:25;;28811:1;28808;28805:8;28802:34;;;28816:18;;:::i;:::-;28802:34;28861:1;28858;28854:9;28846:17;;28678:191;;;;:::o;28875:96::-;28912:7;28941:24;28959:5;28941:24;:::i;:::-;28930:35;;28875:96;;;:::o;28977:90::-;29011:7;29054:5;29047:13;29040:21;29029:32;;28977:90;;;:::o;29073:149::-;29109:7;29149:66;29142:5;29138:78;29127:89;;29073:149;;;:::o;29228:126::-;29265:7;29305:42;29298:5;29294:54;29283:65;;29228:126;;;:::o;29360:77::-;29397:7;29426:5;29415:16;;29360:77;;;:::o;29443:154::-;29527:6;29522:3;29517;29504:30;29589:1;29580:6;29575:3;29571:16;29564:27;29443:154;;;:::o;29603:307::-;29671:1;29681:113;29695:6;29692:1;29689:13;29681:113;;;29780:1;29775:3;29771:11;29765:18;29761:1;29756:3;29752:11;29745:39;29717:2;29714:1;29710:10;29705:15;;29681:113;;;29812:6;29809:1;29806:13;29803:101;;;29892:1;29883:6;29878:3;29874:16;29867:27;29803:101;29652:258;29603:307;;;:::o;29916:320::-;29960:6;29997:1;29991:4;29987:12;29977:22;;30044:1;30038:4;30034:12;30065:18;30055:81;;30121:4;30113:6;30109:17;30099:27;;30055:81;30183:2;30175:6;30172:14;30152:18;30149:38;30146:84;;;30202:18;;:::i;:::-;30146:84;29967:269;29916:320;;;:::o;30242:281::-;30325:27;30347:4;30325:27;:::i;:::-;30317:6;30313:40;30455:6;30443:10;30440:22;30419:18;30407:10;30404:34;30401:62;30398:88;;;30466:18;;:::i;:::-;30398:88;30506:10;30502:2;30495:22;30285:238;30242:281;;:::o;30529:233::-;30568:3;30591:24;30609:5;30591:24;:::i;:::-;30582:33;;30637:66;30630:5;30627:77;30624:103;;;30707:18;;:::i;:::-;30624:103;30754:1;30747:5;30743:13;30736:20;;30529:233;;;:::o;30768:176::-;30800:1;30817:20;30835:1;30817:20;:::i;:::-;30812:25;;30851:20;30869:1;30851:20;:::i;:::-;30846:25;;30890:1;30880:35;;30895:18;;:::i;:::-;30880:35;30936:1;30933;30929:9;30924:14;;30768:176;;;;:::o;30950:180::-;30998:77;30995:1;30988:88;31095:4;31092:1;31085:15;31119:4;31116:1;31109:15;31136:180;31184:77;31181:1;31174:88;31281:4;31278:1;31271:15;31305:4;31302:1;31295:15;31322:180;31370:77;31367:1;31360:88;31467:4;31464:1;31457:15;31491:4;31488:1;31481:15;31508:180;31556:77;31553:1;31546:88;31653:4;31650:1;31643:15;31677:4;31674:1;31667:15;31694:180;31742:77;31739:1;31732:88;31839:4;31836:1;31829:15;31863:4;31860:1;31853:15;31880:180;31928:77;31925:1;31918:88;32025:4;32022:1;32015:15;32049:4;32046:1;32039:15;32066:117;32175:1;32172;32165:12;32189:117;32298:1;32295;32288:12;32312:117;32421:1;32418;32411:12;32435:117;32544:1;32541;32534:12;32558:102;32599:6;32650:2;32646:7;32641:2;32634:5;32630:14;32626:28;32616:38;;32558:102;;;:::o;32666:230::-;32806:34;32802:1;32794:6;32790:14;32783:58;32875:13;32870:2;32862:6;32858:15;32851:38;32666:230;:::o;32902:237::-;33042:34;33038:1;33030:6;33026:14;33019:58;33111:20;33106:2;33098:6;33094:15;33087:45;32902:237;:::o;33145:225::-;33285:34;33281:1;33273:6;33269:14;33262:58;33354:8;33349:2;33341:6;33337:15;33330:33;33145:225;:::o;33376:178::-;33516:30;33512:1;33504:6;33500:14;33493:54;33376:178;:::o;33560:223::-;33700:34;33696:1;33688:6;33684:14;33677:58;33769:6;33764:2;33756:6;33752:15;33745:31;33560:223;:::o;33789:175::-;33929:27;33925:1;33917:6;33913:14;33906:51;33789:175;:::o;33970:231::-;34110:34;34106:1;34098:6;34094:14;34087:58;34179:14;34174:2;34166:6;34162:15;34155:39;33970:231;:::o;34207:243::-;34347:34;34343:1;34335:6;34331:14;34324:58;34416:26;34411:2;34403:6;34399:15;34392:51;34207:243;:::o;34456:229::-;34596:34;34592:1;34584:6;34580:14;34573:58;34665:12;34660:2;34652:6;34648:15;34641:37;34456:229;:::o;34691:228::-;34831:34;34827:1;34819:6;34815:14;34808:58;34900:11;34895:2;34887:6;34883:15;34876:36;34691:228;:::o;34925:182::-;35065:34;35061:1;35053:6;35049:14;35042:58;34925:182;:::o;35113:231::-;35253:34;35249:1;35241:6;35237:14;35230:58;35322:14;35317:2;35309:6;35305:15;35298:39;35113:231;:::o;35350:182::-;35490:34;35486:1;35478:6;35474:14;35467:58;35350:182;:::o;35538:228::-;35678:34;35674:1;35666:6;35662:14;35655:58;35747:11;35742:2;35734:6;35730:15;35723:36;35538:228;:::o;35772:234::-;35912:34;35908:1;35900:6;35896:14;35889:58;35981:17;35976:2;35968:6;35964:15;35957:42;35772:234;:::o;36012:220::-;36152:34;36148:1;36140:6;36136:14;36129:58;36221:3;36216:2;36208:6;36204:15;36197:28;36012:220;:::o;36238:236::-;36378:34;36374:1;36366:6;36362:14;36355:58;36447:19;36442:2;36434:6;36430:15;36423:44;36238:236;:::o;36480:231::-;36620:34;36616:1;36608:6;36604:14;36597:58;36689:14;36684:2;36676:6;36672:15;36665:39;36480:231;:::o;36717:235::-;36857:34;36853:1;36845:6;36841:14;36834:58;36926:18;36921:2;36913:6;36909:15;36902:43;36717:235;:::o;36958:122::-;37031:24;37049:5;37031:24;:::i;:::-;37024:5;37021:35;37011:63;;37070:1;37067;37060:12;37011:63;36958:122;:::o;37086:116::-;37156:21;37171:5;37156:21;:::i;:::-;37149:5;37146:32;37136:60;;37192:1;37189;37182:12;37136:60;37086:116;:::o;37208:120::-;37280:23;37297:5;37280:23;:::i;:::-;37273:5;37270:34;37260:62;;37318:1;37315;37308:12;37260:62;37208:120;:::o;37334:122::-;37407:24;37425:5;37407:24;:::i;:::-;37400:5;37397:35;37387:63;;37446:1;37443;37436:12;37387:63;37334:122;:::o

Swarm Source

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